Mercurial > emacs
annotate src/m/mips.h @ 65512:57e2d117929e
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 14 Sep 2005 16:19:18 +0000 |
parents | 11814686b09f |
children | 3bd95f4f2941 2d92f5c9d6ae |
rev | line source |
---|---|
1113 | 1 /* m- file for Mips machines. |
64767
11814686b09f
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64083
diff
changeset
|
2 Copyright (C) 1987, 1992, 1999, 2002, 2003, 2004, |
11814686b09f
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64083
diff
changeset
|
3 2005 Free Software Foundation, Inc. |
456 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
1113 | 9 the Free Software Foundation; either version 2, or (at your option) |
456 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
456 | 21 |
22 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48552
diff
changeset
|
23 /* The following line tells the configuration script what sort of |
456 | 24 operating system this machine is likely to run. |
25 USUAL-OPSYS="note" | |
26 | |
27 NOTE-START | |
48552
b5cd6d8c8889
(WORDS_BIG_ENDIAN): Define conditionally.
Dave Love <fx@gnu.org>
parents:
44601
diff
changeset
|
28 Use mips4.h for RISCOS version 4; use s-bsd4-3.h with the BSD world. |
b5cd6d8c8889
(WORDS_BIG_ENDIAN): Define conditionally.
Dave Love <fx@gnu.org>
parents:
44601
diff
changeset
|
29 Note that the proper m file for the Decstation is pmax.h. |
456 | 30 NOTE-END */ |
31 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
32 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
33 is the most significant byte. */ |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
34 |
48552
b5cd6d8c8889
(WORDS_BIG_ENDIAN): Define conditionally.
Dave Love <fx@gnu.org>
parents:
44601
diff
changeset
|
35 #if ! (defined (__MIPSEL__) || defined (MIPSEL) || defined (_MIPSEL)) |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
36 #define WORDS_BIG_ENDIAN |
48552
b5cd6d8c8889
(WORDS_BIG_ENDIAN): Define conditionally.
Dave Love <fx@gnu.org>
parents:
44601
diff
changeset
|
37 #endif |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
38 |
456 | 39 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
40 * group of arguments and treat it as an array of the arguments. */ | |
41 | |
42 #define NO_ARG_ARRAY | |
43 | |
44 /* Define WORD_MACHINE if addresses and such have | |
45 * to be corrected before they can be used as byte counts. */ | |
46 | |
47 #undef WORD_MACHINE | |
48 | |
1113 | 49 /* Define how to take a char and sign-extend into an int. |
50 On machines where char is signed, this is a no-op. */ | |
51 | |
52 #define SIGN_EXTEND_CHAR(c) ((signed char)(c)) | |
53 | |
456 | 54 /* Now define a symbol for the cpu type, if your compiler |
55 does not define it automatically: | |
56 Ones defined so far include vax, m68000, ns16000, pyramid, | |
57 orion, tahoe, APOLLO and many others */ | |
58 #ifndef mips | |
59 # define mips | |
60 #endif | |
61 | |
62 /* Use type int rather than a union, to represent Lisp_Object */ | |
63 /* This is desirable for most machines. */ | |
64 | |
65 #define NO_UNION_TYPE | |
66 | |
67 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
68 the 24-bit bit field into an int. In other words, if bit fields | |
69 are always unsigned. | |
70 | |
71 If you use NO_UNION_TYPE, this flag does not matter. */ | |
72 | |
73 #define EXPLICIT_SIGN_EXTEND | |
74 | |
75 /* Data type of load average, as read out of kmem. */ | |
76 | |
77 #define LOAD_AVE_TYPE long | |
78 | |
79 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
80 | |
81 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / 256.0) | |
82 | |
3326
84fa80cf7087
* m/mips.h (KERNEL_FILE): Set this to "/unix".
Jim Blandy <jimb@redhat.com>
parents:
2641
diff
changeset
|
83 /* CDC EP/IX 1.4.3 uses /unix */ |
84fa80cf7087
* m/mips.h (KERNEL_FILE): Set this to "/unix".
Jim Blandy <jimb@redhat.com>
parents:
2641
diff
changeset
|
84 |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
85 #ifndef __linux__ |
3326
84fa80cf7087
* m/mips.h (KERNEL_FILE): Set this to "/unix".
Jim Blandy <jimb@redhat.com>
parents:
2641
diff
changeset
|
86 #undef KERNEL_FILE |
84fa80cf7087
* m/mips.h (KERNEL_FILE): Set this to "/unix".
Jim Blandy <jimb@redhat.com>
parents:
2641
diff
changeset
|
87 #define KERNEL_FILE "/unix" |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
88 #endif /* not __linux__ */ |
3326
84fa80cf7087
* m/mips.h (KERNEL_FILE): Set this to "/unix".
Jim Blandy <jimb@redhat.com>
parents:
2641
diff
changeset
|
89 |
456 | 90 /* Define CANNOT_DUMP on machines where unexec does not work. |
91 Then the function dump-emacs will not be defined | |
92 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
93 | |
94 #undef CANNOT_DUMP | |
95 | |
96 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
97 pure and impure space as loaded can vary, and even their | |
98 relative order cannot be relied on. | |
99 | |
100 Otherwise Emacs assumes that text space precedes data space, | |
101 numerically. */ | |
102 | |
103 /* #define VIRT_ADDR_VARIES */ | |
104 | |
105 /* Define NO_REMAP if memory segmentation makes it not work well | |
106 to change the boundary between the text section and data section | |
107 when Emacs is dumped. If you define this, the preloaded Lisp | |
108 code will not be sharable; but that's better than failing completely. */ | |
109 | |
110 #define NO_REMAP | |
111 | |
112 /* This machine requires completely different unexec code | |
113 which lives in a separate file. Specify the file name. */ | |
114 | |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
115 #ifndef __linux__ |
16441
9dc3983ef65f
(UNEXEC): Undef before defining.
Richard M. Stallman <rms@gnu.org>
parents:
16220
diff
changeset
|
116 #undef UNEXEC |
456 | 117 #define UNEXEC unexmips.o |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
118 #endif /* not __linux__ */ |
456 | 119 |
120 /* Describe layout of the address space in an executing process. */ | |
121 | |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
122 #ifdef __linux__ |
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
123 #define TEXT_START 0x00400000 |
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
124 #define DATA_START 0x10000000 |
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
125 #define DATA_SEG_BITS 0x10000000 |
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
126 #else /* not __linux__ */ |
456 | 127 #define TEXT_START 0x400000 |
128 #define DATA_START 0x800000 | |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
129 #endif /* __linux__ */ |
456 | 130 |
131 /* Alter some of the options used when linking. */ | |
132 | |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
133 #if !defined(NEWSOS5) && !defined(__linux__) |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15773
diff
changeset
|
134 #ifdef BSD_SYSTEM |
456 | 135 |
1113 | 136 /* DECstations don't have this library. |
456 | 137 #define LIBS_MACHINE -lmld */ |
138 | |
139 #define LD_SWITCH_MACHINE -D 800000 | |
140 #define LIBS_DEBUG | |
141 | |
27924
1efb3140e4b2
(LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
Gerd Moellmann <gerd@gnu.org>
parents:
26089
diff
changeset
|
142 #if defined (__NetBSD__) || defined (__OpenBSD__) |
1efb3140e4b2
(LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
Gerd Moellmann <gerd@gnu.org>
parents:
26089
diff
changeset
|
143 #else /* bsd with elf */ |
1113 | 144 #define LINKER /bsd43/bin/ld |
27924
1efb3140e4b2
(LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
Gerd Moellmann <gerd@gnu.org>
parents:
26089
diff
changeset
|
145 #endif /* bsd with elf */ |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15773
diff
changeset
|
146 #else /* not BSD_SYSTEM */ |
456 | 147 |
15773
e68aaf2bb5ac
(LIBS_MACHINE) [__GNUC__ and ABIN32]: Define as empty.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
148 #if defined(__GNUC__) && defined(_ABIN32) |
e68aaf2bb5ac
(LIBS_MACHINE) [__GNUC__ and ABIN32]: Define as empty.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
149 #define LIBS_MACHINE |
e68aaf2bb5ac
(LIBS_MACHINE) [__GNUC__ and ABIN32]: Define as empty.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
150 #else |
456 | 151 #define LIBS_MACHINE -lmld |
15773
e68aaf2bb5ac
(LIBS_MACHINE) [__GNUC__ and ABIN32]: Define as empty.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
152 #endif |
e68aaf2bb5ac
(LIBS_MACHINE) [__GNUC__ and ABIN32]: Define as empty.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
153 |
456 | 154 #define LD_SWITCH_MACHINE -D 800000 -g3 |
155 #define START_FILES pre-crt0.o /usr/lib/crt1.o | |
156 #define LIB_STANDARD -lbsd -lc /usr/lib/crtn.o | |
157 #define LIBS_TERMCAP -lcurses | |
158 | |
1113 | 159 #define C_SWITCH_MACHINE -I/usr/include/bsd |
456 | 160 #define C_DEBUG_SWITCH -O -g3 |
161 | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15773
diff
changeset
|
162 #endif /* not BSD_SYSTEM */ |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
163 #endif /* not NEWSOS5 && not __linux__ */ |
456 | 164 |
165 /* The standard definitions of these macros would work ok, | |
166 but these are faster because the constants are short. */ | |
167 | |
13365
2cd15d90fec6
(SHORTBITS, INTBITS, LONGBITS): Deleted; now in config.h
Karl Heuer <kwzh@gnu.org>
parents:
9258
diff
changeset
|
168 #define XUINT(a) (((unsigned)(a) << (BITS_PER_INT-VALBITS)) >> (BITS_PER_INT-VALBITS)) |
456 | 169 |
1113 | 170 #define XSET(var, type, ptr) \ |
171 ((var) = \ | |
172 ((int)(type) << VALBITS) \ | |
13365
2cd15d90fec6
(SHORTBITS, INTBITS, LONGBITS): Deleted; now in config.h
Karl Heuer <kwzh@gnu.org>
parents:
9258
diff
changeset
|
173 + (((unsigned) (ptr) << (BITS_PER_INT-VALBITS)) >> (BITS_PER_INT-VALBITS))) |
1113 | 174 |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
175 #if !defined (NEWSOS5) && !defined (__linux__) |
456 | 176 #ifdef USG |
177 | |
178 /* Cancel certain parts of standard sysV support. */ | |
179 #undef NONSYSTEM_DIR_LIBRARY | |
180 #define SYSV_SYSTEM_DIR | |
181 #undef static | |
182 | |
183 /* Don't try to use SIGIO or FIONREAD even though they are defined. */ | |
26089
1a4c3573a216
* m/alpha.h: Do not include <stdlib.h>, as <config.h> does this now.
Paul Eggert <eggert@twinsun.com>
parents:
18397
diff
changeset
|
184 #define BROKEN_SIGIO |
456 | 185 #define BROKEN_FIONREAD |
186 | |
187 /* Describe special kernel features. */ | |
188 | |
189 #define HAVE_SYSVIPC | |
190 | |
1113 | 191 #if defined(emacs) && !defined(INHIBIT_BSD_TIME) |
456 | 192 #include <bsd/sys/time.h> |
193 #endif | |
194 | |
8892 | 195 /* The `select' in the system won't work for pipes, so don't use it. */ |
196 #undef HAVE_SELECT /* override configuration decision */ | |
456 | 197 |
198 #define HAVE_PTYS | |
199 #define HAVE_SOCKETS | |
200 | |
201 #undef NOMULTIPLEJOBS | |
202 | |
203 /* ??? */ | |
204 #define IRIS | |
205 | |
1113 | 206 #endif /* USG */ |
456 | 207 |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15773
diff
changeset
|
208 #ifdef BSD_SYSTEM |
456 | 209 #define COFF |
210 #define TERMINFO | |
211 #undef MAIL_USE_FLOCK /* Someone should check this. */ | |
212 #undef HAVE_UNION_WAIT | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15773
diff
changeset
|
213 #endif /* BSD_SYSTEM */ |
1113 | 214 |
18397
2af6faafc827
Test __linux__ along with NEWSOS5.
Richard M. Stallman <rms@gnu.org>
parents:
16441
diff
changeset
|
215 #endif /* not NEWSOS5 && not __linux__ */ |
52401 | 216 |
217 /* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee | |
218 (do not change this comment) */ |