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