root/trunk/src/m/gould.h
| Revision 4220, 5.9 kB (checked in by miyoshi, 8 months ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /* machine description file for Gould PowerNodes with UTX/32 2.0 and 2.1. |
| 2 | (See MACHINES for older versions.) |
| 3 | |
| 4 | * NOTE: If you are running a pre-release of UTX/32 2.1 you should #define |
| 5 | * RELEASE2_1 in config.h. This may also be necessary with un-updated |
| 6 | * official releases of 2.1 |
| 7 | |
| 8 | Copyright (C) 1986, 2002, 2003, 2004, 2005, |
| 9 | 2006, 2007, 2008 Free Software Foundation, Inc. |
| 10 | |
| 11 | This file is part of GNU Emacs. |
| 12 | |
| 13 | GNU Emacs is free software; you can redistribute it and/or modify |
| 14 | it under the terms of the GNU General Public License as published by |
| 15 | the Free Software Foundation; either version 3, or (at your option) |
| 16 | any later version. |
| 17 | |
| 18 | GNU Emacs is distributed in the hope that it will be useful, |
| 19 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | GNU General Public License for more details. |
| 22 | |
| 23 | You should have received a copy of the GNU General Public License |
| 24 | along with GNU Emacs; see the file COPYING. If not, write to |
| 25 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 26 | Boston, MA 02110-1301, USA. */ |
| 27 | |
| 28 | |
| 29 | /* The following line tells the configuration script what sort of |
| 30 | operating system this machine is likely to run. |
| 31 | USUAL-OPSYS="note" |
| 32 | |
| 33 | NOTE-START |
| 34 | Gould Power Node (-machine=gould -opsystem=bsd4-2 or bsd4-3) |
| 35 | (gould.h; s-bsd4-2.h or s-bsd4-3.h) |
| 36 | |
| 37 | 18.36 worked on versions 1.2 and 2.0 of the operating system. |
| 38 | |
| 39 | On UTX/32 2.0, use -opsystem=bsd4-3 |
| 40 | |
| 41 | On UTX/32 1.2 and UTX/32S 1.0, use -opsystem=bsd4-2 and note that compiling |
| 42 | lib-src/sorted-doc tickles a compiler bug: remove the -g flag to cc in the |
| 43 | makefile. |
| 44 | |
| 45 | UTX/32 1.3 has a bug in the bcopy library routine. Fix it by |
| 46 | #undef BSTRING in gould.h. |
| 47 | |
| 48 | Version 19 incorporates support for releases 2.1 and later of UTX/32. |
| 49 | A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. |
| 50 | NOTE-END */ |
| 51 | |
| 52 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 53 | is the most significant byte. */ |
| 54 | |
| 55 | #define WORDS_BIG_ENDIAN |
| 56 | |
| 57 | /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
| 58 | * group of arguments and treat it as an array of the arguments. */ |
| 59 | |
| 60 | #define NO_ARG_ARRAY |
| 61 | |
| 62 | /* Define WORD_MACHINE if addresses and such have |
| 63 | * to be corrected before they can be used as byte counts. */ |
| 64 | |
| 65 | /* #define WORD_MACHINE */ |
| 66 | |
| 67 | /* Now define a symbol for the cpu type, if your compiler |
| 68 | does not define it automatically */ |
| 69 | |
| 70 | #ifndef GOULD |
| 71 | #define GOULD |
| 72 | #endif |
| 73 | |
| 74 | /* sel is an old preprocessor name on gould machines |
| 75 | - it is no longer needed and interferes with a variable in xmenu.c */ |
| 76 | #undef sel |
| 77 | |
| 78 | /* Use type int rather than a union, to represent Lisp_Object */ |
| 79 | /* This is desirable for most machines. */ |
| 80 | |
| 81 | #define NO_UNION_TYPE |
| 82 | |
| 83 | /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend |
| 84 | the 24-bit bit field into an int. In other words, if bit fields |
| 85 | are always unsigned. |
| 86 | |
| 87 | If you use NO_UNION_TYPE, this flag does not matter. */ |
| 88 | |
| 89 | #define EXPLICIT_SIGN_EXTEND |
| 90 | |
| 91 | /* Data type of load average, as read out of kmem. */ |
| 92 | |
| 93 | #define LOAD_AVE_TYPE double |
| 94 | |
| 95 | /* Convert that into an integer that is 100 for a load average of 1.0 */ |
| 96 | |
| 97 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0) |
| 98 | |
| 99 | /* Define CANNOT_DUMP on machines where unexec does not work. |
| 100 | Then the function dump-emacs will not be defined |
| 101 | and temacs will do (load "loadup") automatically unless told otherwise. */ |
| 102 | |
| 103 | /* #define CANNOT_DUMP */ |
| 104 | |
| 105 | /* Define VIRT_ADDR_VARIES if the virtual addresses of |
| 106 | pure and impure space as loaded can vary, and even their |
| 107 | relative order cannot be relied on. |
| 108 | |
| 109 | Otherwise Emacs assumes that text space precedes data space, |
| 110 | numerically. */ |
| 111 | |
| 112 | #define VIRT_ADDR_VARIES |
| 113 | |
| 114 | /* Define C_ALLOCA if this machine does not support a true alloca |
| 115 | and the one written in C should be used instead. |
| 116 | Define HAVE_ALLOCA to say that the system provides a properly |
| 117 | working alloca function and it should be used. |
| 118 | Define neither one if an assembler-language alloca |
| 119 | in the file alloca.s should be used. */ |
| 120 | |
| 121 | #define C_ALLOCA |
| 122 | #define STACK_DIRECTION -1 /* grows towards lower addresses on Gould UTX/32 */ |
| 123 | |
| 124 | /* No need to extend the user stack. */ |
| 125 | |
| 126 | /* If this is a 2.1 system, COFF will be predefined by cpp. If it's */ |
| 127 | /* pre-2.1 COFF won't be defined, which is as it should be. */ |
| 128 | |
| 129 | #ifdef COFF |
| 130 | |
| 131 | #define HEADER_INCL_IN_TEXT |
| 132 | #define COFF_BSD_SYMBOLS |
| 133 | |
| 134 | /* Seems to be necessary with coff */ |
| 135 | #define NO_REMAP |
| 136 | |
| 137 | #ifndef GOULD_NP1 |
| 138 | /* gould-np1.h includes this file */ |
| 139 | /* keep the old value - don't skip over the headers */ |
| 140 | #define KEEP_OLD_TEXT_SCNPTR |
| 141 | #define KEEP_OLD_PADDR |
| 142 | #ifndef RELEASE2_1 |
| 143 | #define ADJUST_TEXTBASE |
| 144 | #endif /*RELEASE2_1*/ |
| 145 | #endif /* GOULD_NP1 */ |
| 146 | |
| 147 | #ifdef IN_UNEXEC |
| 148 | /* make Gould NP and PN COFF look like USG COFF */ |
| 149 | /* PN COFF */ |
| 150 | #define aouthdr old_exec |
| 151 | /* PN COFF doesn't have a data_start or a_dtbase field in its */ |
| 152 | /* optional header, so substitute a junk field */ |
| 153 | #define a_dtbase a_ccvers |
| 154 | /* Gould COFF */ |
| 155 | #define magic a_magic |
| 156 | #define tsize a_text |
| 157 | #define dsize a_data |
| 158 | #define bsize a_bss |
| 159 | #define entry a_entry |
| 160 | #define text_start a_txbase |
| 161 | #define data_start a_dtbase |
| 162 | #endif /* IN_UNEXEC */ |
| 163 | |
| 164 | /* Define how to search all pty names. |
| 165 | * This is for UTX 2.1 and greater on PN and all NP versions. It is only |
| 166 | * accident that this happens to correspond to the same versions of UTX |
| 167 | * as COFF does, but we'll take advantage of that here. |
| 168 | */ |
| 169 | |
| 170 | /*#define USE_PTY_PAIR*/ |
| 171 | |
| 172 | #endif /* COFF */ |
| 173 | |
| 174 | /* -g is sometimes broken on the Gould. */ |
| 175 | |
| 176 | #define C_DEBUG_SWITCH |
| 177 | |
| 178 | /* Comparing pointers as unsigned ints tickles a bug in older compilers. */ |
| 179 | |
| 180 | #define PNTR_COMPARISON_TYPE int |
| 181 | |
| 182 | /* The GOULD machine counts the a.out file header as part of the text. */ |
| 183 | |
| 184 | #define A_TEXT_OFFSET(HDR) sizeof (HDR) |
| 185 | |
| 186 | /* Machine-dependent action when about to dump an executable file. */ |
| 187 | |
| 188 | #ifndef COFF |
| 189 | #define ADJUST_EXEC_HEADER \ |
| 190 | unexec_text_start = hdr.a_txbase + sizeof (hdr); |
| 191 | #endif |
| 192 | |
| 193 | /* We use the system's crt0.o. Somehow it avoids losing |
| 194 | with `environ' the way most standard crt0.o's do. */ |
| 195 | |
| 196 | #define START_FILES pre-crt0.o /lib/crt0.o |
Note: See TracBrowser for help on using the browser.
