root/trunk/src/m/att3b.h

Revision 4220, 4.9 kB (checked in by miyoshi, 8 months ago)

Sync up with Emacs22.2.

  • Property svn:eol-style set to native
Line 
1 /* Machine-dependent configuration for GNU Emacs for AT&T 3b machines.
2    Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005,
3                  2006, 2007, 2008  Free Software Foundation, Inc.
4
5    Modified by David Robinson (daver@csvax.caltech.edu) 6/6/86
6
7 This file is part of GNU Emacs.
8
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING.  If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA.  */
23
24
25 /* The following line tells the configuration script what sort of
26    operating system this machine is likely to run.
27    USUAL-OPSYS="usg5-2-2"  */
28
29 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
30    is the most significant byte.  */
31
32 #define WORDS_BIG_ENDIAN
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 /* #define WORD_MACHINE */
43
44 /* Now define a symbol for the cpu type, if your compiler
45    does not define it automatically */
46 #define ATT3B
47
48 /* Use type int rather than a union, to represent Lisp_Object */
49 /* This is desirable for most machines.  */
50
51 #define NO_UNION_TYPE
52
53 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
54    the bit field into an int.  In other words, if bit fields
55    are always unsigned.
56
57    If you use NO_UNION_TYPE, this flag does not matter.  */
58
59 #define EXPLICIT_SIGN_EXTEND
60
61 /* Data type of load average, as read out of kmem.  */
62 /* #define LOAD_AVE_TYPE long */
63
64 /* Convert that into an integer that is 100 for a load average of 1.0  */
65
66 /* #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) */
67
68 /* Define CANNOT_DUMP on machines where unexec does not work.
69    Then the function dump-emacs will not be defined
70    and temacs will do (load "loadup") automatically unless told otherwise.  */
71 /* #define CANNOT_DUMP */
72
73 /* Define VIRT_ADDR_VARIES if the virtual addresses of
74    pure and impure space as loaded can vary, and even their
75    relative order cannot be relied on.
76
77    Otherwise Emacs assumes that text space precedes data space,
78    numerically.  */
79
80 /* #define VIRT_ADDR_VARIES */  /* Karl Kleinpaste says this isn't needed.  */
81
82 /* Define C_ALLOCA if this machine does not support a true alloca
83    and the one written in C should be used instead.
84    Define HAVE_ALLOCA to say that the system provides a properly
85    working alloca function and it should be used.
86    Define neither one if an assembler-language alloca
87    in the file alloca.s should be used.  */
88
89 /* SysV has alloca in the PW library */
90
91 #define LIB_STANDARD -lPW -lc
92 #define HAVE_ALLOCA
93
94 /* Define NO_REMAP if memory segmentation makes it not work well
95    to change the boundary between the text section and data section
96    when Emacs is dumped.  If you define this, the preloaded Lisp
97    code will not be sharable; but that's better than failing completely.  */
98
99 #define NO_REMAP
100
101 /* #define LD_SWITCH_MACHINE -N */
102
103 /* Use Terminfo, not Termcap.  */
104
105 #define TERMINFO
106
107 /* -O has been observed to make correct C code in Emacs not work.
108    So don't try to use it.  */
109
110 #if u3b2 || u3b5 || u3b15
111 #define C_OPTIMIZE_SWITCH
112 #endif
113
114 /* Define our page size.  */
115
116 #define NBPC 2048
117
118 /* The usual definition of XINT, which involves shifting, does not
119    sign-extend properly on this machine.  */
120
121 #define XINT(i) (((sign_extend_temp=(i)) & 0x00800000) \
122                  ? (sign_extend_temp | 0xFF000000) \
123                  : (sign_extend_temp & 0x00FFFFFF))
124
125 #ifdef emacs /* Don't do this when making xmakefile! */
126 extern int sign_extend_temp;
127 #endif
128
129 #if u3b2 || u3b5 || u3b15
130
131 /* On 3b2/5/15, data space has high order bit on. */
132 #define VALBITS 27
133 #define VALMASK (((1<<VALBITS) - 1) | (1 << 31))
134 #define XTYPE(a) ((enum Lisp_Type) (((a) >> VALBITS) & GCTYPEMASK))
135
136 #endif /* 3b2, 3b5 or 3b15 */
137
138 #define TEXT_START 0
139
140
141 /* For alloca.c (not actually used, since HAVE_ALLOCA) */
142 #define STACK_DIRECTION 1
143
144 /* (short) negative-int doesn't sign-extend correctly */
145 #define SHORT_CAST_BUG
146
147 /* 3B2s with WIN/3B have winsize defined in ptem.h */
148 #if u3b2
149 #define NEED_PTEM_H
150 #endif /* u3b2 */
151
152 /* 3b2 does not have memmove, I'm told.  */
153 /* It is safe to have no parens around the args in the safe_bcopy call,
154    and parens would screw up the prototype decl for memmove.  */
155 #define memmove(d, s, n) safe_bcopy (s, d, n)
156
157 /* This affects filemode.c.  */
158 #define NO_MODE_T
Note: See TracBrowser for help on using the browser.