annotate src/m/ibmrs6000.h @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents a86b2b5e0111
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* R2 AIX machine/system dependent defines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1988 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 207
diff changeset
23 /* The following line tells the configuration script what sort of
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 operating system this machine is likely to run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 USUAL-OPSYS="aix3-1" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Now define a symbol for the cpu type, if your compiler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 does not define it automatically. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #define IBMR2AIX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* Define CANNOT_DUMP on machines where unexec does not work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 Then the function dump-emacs will not be defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 and temacs will do (load "loadup") automatically unless told otherwise. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #ifdef USG5_4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #define CANNOT_DUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #ifndef UNEXEC
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
40 #define UNEXEC "unexaix.o"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 /* Define addresses, macros, change some setup for dump */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #define NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #ifndef USG5_4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define TEXT_START 0x10000000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #define TEXT_END 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define DATA_START 0x20000000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #define DATA_END 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
54 /* The data segment in this machine always starts at address 0x20000000.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
55 An address of data cannot be stored correctly in a Lisp object;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
56 we always lose the high bits. We must tell XPNTR to add them back. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
57
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
58 #ifndef USG5_4
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
59 #define DATA_SEG_BITS 0x20000000
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
60 #else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
61 #define DATA_SEG_BITS 0
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
62 #endif
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
63
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
64 #ifdef CANNOT_DUMP
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
65 /* Define shared memory segment symbols */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
66
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
67 #define PURE_SEG_BITS 0x30000000
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
68
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
69 /* Use shared memory. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
70 /* This is turned off because it does not always work. See etc/AIX.DUMP. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
71 /* #define HAVE_SHM */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
72 #define SHMKEY 5305035 /* used for shared memory code segments */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
73 #endif /* CANNOT_DUMP */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 400
diff changeset
74
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #define N_BADMAG(x) BADMAG(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #define N_TXTOFF(x) A_TEXTPOS(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #define N_SYMOFF(x) A_SYMPOS(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #define A_TEXT_OFFSET(HDR) sizeof(HDR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 /* #define ADJUST_EXEC_HEADER \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 unexec_text_start += sizeof(hdr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 unexec_data_start = ohdr.a_dbase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #undef ADDR_CORRECT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #define ADDR_CORRECT(x) ((int)(x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* Define C_ALLOCA if this machine does not support a true alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 and the one written in C should be used instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Define HAVE_ALLOCA to say that the system provides a properly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 working alloca function and it should be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Define neither one if an assembler-language alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 in the file alloca.s should be used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* Note: aix3-2.h defines HAVE_ALLOCA; aix3-1.h doesn't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 #ifndef HAVE_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #define C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 #define STACK_DIRECTION -1 /* tell alloca.c which way it grows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* Specify the font for X to use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 This used to be Rom14.500; that's nice on the X server shipped with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 the RS/6000, but it's not available on other servers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #define X_DEFAULT_FONT "fixed"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* Here override various assumptions in ymakefile */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #ifdef AIXHFT
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
107 #define OBJECTS_MACHINE "hftctl.o"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #ifndef USG5_4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* XEmacs change -- commented out: dkeller@vnet.ibm.com */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* #define C_SWITCH_MACHINE -D_BSD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #ifdef AIX3_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 /* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 on older versions of X where it happens to exist. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #ifdef HAVE_LIBPTHREADS
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
119 #define LIBS_MACHINE "-lrts -lIM -liconv -lpthreads"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
122 #define LIBS_MACHINE "-lrts -lIM -liconv"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 #ifdef USG5_4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #define LIBS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #else
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
128 #define LIBS_MACHINE "-lIM"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 /* Don't try to include sioctl.h or ptem.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 #undef NEED_SIOCTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #undef NEED_PTEM_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #define ORDINARY_LINK