1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
1999-12-09 10:53:52 -08:00
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-08-09 07:52:04 -07:00
|
|
|
/* Processor dependencies */
|
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
#define ARCH_SIXTYFOUR
|
1996-02-13 08:29:09 -08:00
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
/* Define ARCH_SIXTYFOUR if the processor has a natural word size of 64 bits.
|
1996-02-13 08:29:09 -08:00
|
|
|
That is, both sizeof(long) = 8 and sizeof(char *) = 8.
|
1996-07-01 05:43:28 -07:00
|
|
|
Otherwise, leave ARCH_SIXTYFOUR undefined. This assumes
|
1996-02-13 08:29:09 -08:00
|
|
|
sizeof(long) = sizeof(char *) = 4. */
|
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
#define ARCH_BIG_ENDIAN
|
1995-08-09 07:52:04 -07:00
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
/* Define ARCH_BIG_ENDIAN if the processor is big endian (the most
|
|
|
|
significant byte of an integer stored in memory comes first).
|
|
|
|
Leave ARCH_BIG_ENDIAN undefined if the processor is little-endian
|
|
|
|
(the least significant byte comes first).
|
1995-08-09 07:52:04 -07:00
|
|
|
*/
|
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
#define ARCH_ALIGN_DOUBLE
|
1995-08-09 07:52:04 -07:00
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
/* Define ARCH_ALIGN_DOUBLE if the processor requires doubles to be
|
|
|
|
doubleword-aligned. Leave ARCH_ALIGN_DOUBLE undefined if the processor
|
|
|
|
supports word-aligned doubles. */
|
1996-02-13 08:29:09 -08:00
|
|
|
|
1997-04-28 08:51:29 -07:00
|
|
|
#undef ARCH_CODE32
|
|
|
|
|
|
|
|
/* Define ARCH_CODE32 if, on a 64-bit machine, code pointers fit in 32 bits,
|
|
|
|
i.e. the code segment resides in the low 4G of the addressing space.
|
|
|
|
ARCH_CODE32 is ignored on 32-bit machines. */
|
1998-06-23 06:39:54 -07:00
|
|
|
|
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_LONG 4
|
|
|
|
#define SIZEOF_SHORT 2
|
|
|
|
|
|
|
|
/* Define SIZEOF_INT, SIZEOF_LONG and SIZEOF_SHORT to the sizes in byte
|
|
|
|
of the C types "int", "long" and "short", respectively. */
|
2000-02-11 04:03:31 -08:00
|
|
|
|
2000-02-11 07:47:09 -08:00
|
|
|
#define ARCH_INT64_TYPE long long
|
|
|
|
#define ARCH_UINT64_TYPE unsigned long long
|
2000-02-11 04:03:31 -08:00
|
|
|
|
2000-02-11 07:47:09 -08:00
|
|
|
/* Define ARCH_INT64_TYPE and ARCH_UINT64_TYPE to 64-bit integer types,
|
|
|
|
typically "long long" and "unsigned long long" on 32-bit platforms,
|
|
|
|
and "long" and "unsigned long" on 64-bit platforms.
|
|
|
|
If the C compiler doesn't support any 64-bit integer type,
|
|
|
|
leave both ARCH_INT64_TYPE and ARCH_UINT64_TYPE undefined. */
|
|
|
|
|
|
|
|
#define ARCH_INT64_PRINTF_FORMAT "ll"
|
|
|
|
|
|
|
|
/* Define ARCH_INT64_PRINTF_FORMAT to the printf format used for formatting
|
|
|
|
values of type ARCH_INT64_TYPE. This is usually "ll" on 32-bit
|
|
|
|
platforms and "l" on 64-bit platforms.
|
|
|
|
Leave undefined if ARCH_INT64_TYPE is undefined. */
|