Mercurial > emacs
annotate src/m/hp800.h @ 8892:191acacfa1ec
Delete obsolete symbols.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sun, 18 Sep 1994 21:12:31 +0000 |
parents | 2b5401aa9630 |
children | 7e3abfe0261a |
rev | line source |
---|---|
456 | 1 /* machine description file for hp9000 series 800 machines. |
2 Copyright (C) 1987 Free Software Foundation, Inc. | |
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 | |
3699 | 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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 /* The following line tells the configuration script what sort of | |
22 operating system this machine is likely to run. | |
23 USUAL-OPSYS="hpux" */ | |
24 | |
25 /* The following three symbols give information on | |
26 the size of various data types. */ | |
27 | |
28 #define SHORTBITS 16 /* Number of bits in a short */ | |
29 | |
30 #define INTBITS 32 /* Number of bits in an int */ | |
31 | |
32 #define LONGBITS 32 /* Number of bits in a long */ | |
33 | |
34 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | |
35 * group of arguments and treat it as an array of the arguments. */ | |
36 | |
37 #define NO_ARG_ARRAY | |
38 | |
39 /* Define WORD_MACHINE if addresses and such have | |
40 * to be corrected before they can be used as byte counts. */ | |
41 | |
42 #undef WORD_MACHINE | |
43 | |
44 /* Now define a symbol for the cpu type, if your compiler | |
45 does not define it automatically: | |
46 Ones defined so far include vax, m68000, ns16000, pyramid, | |
47 orion, tahoe, APOLLO and many others */ | |
7159
2b5401aa9630
Renamed from hp9000s800.h.
Richard M. Stallman <rms@gnu.org>
parents:
7146
diff
changeset
|
48 #ifndef hp9000s800 |
2b5401aa9630
Renamed from hp9000s800.h.
Richard M. Stallman <rms@gnu.org>
parents:
7146
diff
changeset
|
49 # define hp9000s800 |
456 | 50 #endif |
51 | |
52 /* Use type int rather than a union, to represent Lisp_Object */ | |
53 /* This is desirable for most machines. */ | |
54 | |
55 #define NO_UNION_TYPE | |
56 | |
57 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
58 the 24-bit bit field into an int. In other words, if bit fields | |
59 are always unsigned. | |
60 | |
61 If you use NO_UNION_TYPE, this flag does not matter. */ | |
62 | |
63 #define EXPLICIT_SIGN_EXTEND | |
64 | |
65 /* Data type of load average, as read out of kmem. */ | |
66 | |
67 #define LOAD_AVE_TYPE double | |
68 | |
69 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
70 | |
71 #define LOAD_AVE_CVT(x) ((int) (x * 100.0)) | |
72 | |
73 | |
74 /* Define CANNOT_DUMP on machines where unexec does not work. | |
75 Then the function dump-emacs will not be defined | |
76 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
77 | |
78 #undef CANNOT_DUMP | |
79 | |
80 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
81 pure and impure space as loaded can vary, and even their | |
82 relative order cannot be relied on. | |
83 | |
84 Otherwise Emacs assumes that text space precedes data space, | |
85 numerically. */ | |
86 | |
87 #define VIRT_ADDR_VARIES | |
88 | |
89 /* Define C_ALLOCA if this machine does not support a true alloca | |
90 and the one written in C should be used instead. | |
91 Define HAVE_ALLOCA to say that the system provides a properly | |
92 working alloca function and it should be used. | |
93 Define neither one if an assembler-language alloca | |
94 in the file alloca.s should be used. */ | |
95 | |
96 #define C_ALLOCA | |
97 /* #define HAVE_ALLOCA */ | |
98 | |
99 /* the data segment on this machine always starts at address 0x40000000. */ | |
100 | |
101 #define DATA_SEG_BITS 0x40000000 | |
102 | |
103 #define VALBITS 26 | |
104 #define GCTYPEBITS 5 | |
105 | |
106 #define DATA_START 0x40000000 | |
107 #define TEXT_START 0x00000000 | |
108 | |
109 #define STACK_DIRECTION 1 | |
110 | |
111 /* Define NO_REMAP if memory segmentation makes it not work well | |
112 to change the boundary between the text section and data section | |
113 when Emacs is dumped. If you define this, the preloaded Lisp | |
114 code will not be sharable; but that's better than failing completely. */ | |
115 | |
116 #define NO_REMAP | |
117 | |
118 /* This machine requires completely different unexec code | |
119 which lives in a separate file. Specify the file name. */ | |
120 | |
121 #define UNEXEC unexhp9k800.o | |
122 | |
123 #define LIBS_MACHINE | |
124 #define LIBS_DEBUG | |
125 | |
126 /* Define NEED_BSDTTY if you have such. */ | |
127 | |
128 #define NEED_BSDTTY | |
129 | |
130 /* The standard definitions of these macros would work ok, | |
131 but these are faster because the constants are short. */ | |
132 | |
133 | |
134 #define XUINT(a) (((unsigned)(a) << INTBITS-VALBITS) >> INTBITS-VALBITS) | |
135 | |
136 #define XSET(var, type, ptr) \ | |
137 ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << INTBITS-VALBITS) >> INTBITS-VALBITS)) | |
138 | |
139 #define XSETINT(a, b) XSET(a, XTYPE(a), b) | |
140 #define XSETUINT(a, b) XSET(a, XTYPE(a), b) | |
141 #define XSETPNTR(a, b) XSET(a, XTYPE(a), b) | |
142 #define XMARKBIT(a) ((a) < 0) | |
143 #define XSETMARKBIT(a,b) ((a) = ((b) ? (a)|MARKBIT : (a) & ~MARKBIT)) | |
144 | |
145 #if 0 /* Loses when sign bit of type field is set. */ | |
146 #define XUNMARK(a) ((a) = (((a) << INTBITS-GCTYPEBITS-VALBITS) >> INTBITS-GCTYPEBITS-VALBITS)) | |
147 #endif | |
148 | |
149 /* The symbol in the kernel where the load average is found | |
150 is named _avenrun. At this time there are two major flavors | |
151 of hp-ux (there is the s800 and s300 (s200) flavors). The | |
152 differences are thusly moved to the corresponding machine description file. | |
153 */ | |
154 | |
155 /* no underscore please */ | |
156 #define LDAV_SYMBOL "avenrun" | |
157 #define CPTIME_SYMBOL "cp_time" | |
158 #define DKXFER_SYMBOL "dk_xfer" | |
159 | |
160 #if 0 /* Supposedly no longer true. */ | |
161 /* In hpux, for unknown reasons, S_IFLNK is defined even though | |
162 symbolic links do not exist. | |
163 Make sure our conditionals based on S_IFLNK are not confused. | |
164 | |
165 Here we assume that stat.h is included before config.h | |
166 so that we can override it here. */ | |
167 | |
168 #undef S_IFLNK | |
169 #endif | |
170 | |
171 /* Define the BSTRING functions in terms of the sysV functions. */ | |
5175
7099e53fe4eb
(bcopy, bzero, bcmp): If HAVE_BCOPY, don't #define.
Richard M. Stallman <rms@gnu.org>
parents:
3699
diff
changeset
|
172 /* On HPUX 8.05, including types.h can include strings.h |
5176 | 173 which declares these as functions. Hence the #ifndef. */ |
456 | 174 |
5175
7099e53fe4eb
(bcopy, bzero, bcmp): If HAVE_BCOPY, don't #define.
Richard M. Stallman <rms@gnu.org>
parents:
3699
diff
changeset
|
175 #ifndef HAVE_BCOPY |
456 | 176 #define bcopy(a,b,s) memcpy (b,a,s) |
177 #define bzero(a,s) memset (a,0,s) | |
178 #define bcmp memcmp | |
5175
7099e53fe4eb
(bcopy, bzero, bcmp): If HAVE_BCOPY, don't #define.
Richard M. Stallman <rms@gnu.org>
parents:
3699
diff
changeset
|
179 #endif |
456 | 180 |
181 /* On USG systems these have different names. */ | |
182 | |
183 #define index strchr | |
184 #define rindex strrchr | |
185 | |
186 /* Include the file bsdtty.h, since this machine has job control. */ | |
187 #define NEED_BSDTTY |