30587
|
1 /* machine description file for the IA-64 architecture.
|
108506
|
2
|
|
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
|
|
4 2009, 2010 Free Software Foundation, Inc.
|
|
5
|
|
6 Contributed by David Mosberger <davidm@hpl.hp.com>
|
30587
|
7
|
|
8 This file is part of GNU Emacs.
|
|
9
|
94714
|
10 GNU Emacs is free software: you can redistribute it and/or modify
|
30587
|
11 it under the terms of the GNU General Public License as published by
|
94714
|
12 the Free Software Foundation, either version 3 of the License, or
|
|
13 (at your option) any later version.
|
30587
|
14
|
|
15 GNU Emacs is distributed in the hope that it will be useful,
|
|
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 GNU General Public License for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
94714
|
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
30587
|
22
|
|
23 #define BITS_PER_LONG 64
|
|
24 #define BITS_PER_EMACS_INT 64
|
|
25
|
78499
|
26 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
|
30587
|
27 is the most significant byte. */
|
|
28 #undef WORDS_BIG_ENDIAN
|
|
29
|
|
30 /* Now define a symbol for the cpu type, if your compiler
|
96724
e50b24691c01
* m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
Dan Nicolaescu <dann@ics.uci.edu>
diff
changeset
|
31 does not define it automatically. */
|
30587
|
32 /* __ia64__ defined automatically */
|
|
33
|
|
34 /* Define the type to use. */
|
|
35 #define EMACS_INT long
|
|
36 #define EMACS_UINT unsigned long
|
|
37
|
|
38 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
|
|
39 the 24-bit bit field into an int. In other words, if bit fields
|
|
40 are always unsigned.
|
|
41
|
96602
|
42 This flag only matters if you use USE_LISP_UNION_TYPE. */
|
30587
|
43 #define EXPLICIT_SIGN_EXTEND
|
|
44
|
|
45 /* Data type of load average, as read out of kmem. */
|
|
46 #define LOAD_AVE_TYPE long
|
|
47
|
|
48 /* Convert that into an integer that is 100 for a load average of 1.0 */
|
|
49 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
|
|
50
|
48536
|
51 #ifndef NOT_C_CODE
|
|
52
|
30587
|
53 #ifdef REL_ALLOC
|
|
54 #ifndef _MALLOC_INTERNAL
|
|
55 /* "char *" because ralloc.c defines it that way. gmalloc.c thinks it
|
|
56 is allowed to prototype these as "void *" so we don't prototype in
|
|
57 that case. You're right: it stinks! */
|
|
58 extern char *r_alloc (), *r_re_alloc ();
|
|
59 extern void r_alloc_free ();
|
|
60 #endif /* not _MALLOC_INTERNAL */
|
|
61 #endif /* REL_ALLOC */
|
|
62
|
|
63 #endif /* not NOT_C_CODE */
|
|
64
|
|
65 #define HAVE_TEXT_START
|
52401
|
66
|
|
67 /* arch-tag: 9b8e9fb2-2e49-4c22-b68f-11a488e77c66
|
|
68 (do not change this comment) */
|