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