diff options
| author | Chong Yidong | 2007-01-29 17:05:29 +0000 |
|---|---|---|
| committer | Chong Yidong | 2007-01-29 17:05:29 +0000 |
| commit | cf1aff89561eea94ec8b89edba5720881a5f28af (patch) | |
| tree | 191ff77332f3d4c8880f2d97996de0f2fd98b9c3 /src/m | |
| parent | 13aadc96ed9d938084fe640d457ddbbb6c726491 (diff) | |
| download | emacs-cf1aff89561eea94ec8b89edba5720881a5f28af.tar.gz emacs-cf1aff89561eea94ec8b89edba5720881a5f28af.zip | |
Restore, removing HP-UX support.
Diffstat (limited to 'src/m')
| -rw-r--r-- | src/m/hp800.h | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/src/m/hp800.h b/src/m/hp800.h new file mode 100644 index 00000000000..eed53183569 --- /dev/null +++ b/src/m/hp800.h | |||
| @@ -0,0 +1,116 @@ | |||
| 1 | /* machine description file for hp9000 series 800 machines. | ||
| 2 | Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, | ||
| 3 | 2006, 2007 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software; you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation; either version 2, or (at your option) | ||
| 10 | any later version. | ||
| 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 | ||
| 18 | along with GNU Emacs; see the file COPYING. If not, write to | ||
| 19 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
| 20 | Boston, MA 02110-1301, USA. */ | ||
| 21 | |||
| 22 | |||
| 23 | /* The following line tells the configuration script what sort of | ||
| 24 | operating system this machine is likely to run. | ||
| 25 | USUAL-OPSYS="hpux" */ | ||
| 26 | |||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | ||
| 28 | is the most significant byte. */ | ||
| 29 | |||
| 30 | #define WORDS_BIG_ENDIAN | ||
| 31 | |||
| 32 | /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | ||
| 33 | * group of arguments and treat it as an array of the arguments. */ | ||
| 34 | |||
| 35 | #define NO_ARG_ARRAY | ||
| 36 | |||
| 37 | /* Define WORD_MACHINE if addresses and such have | ||
| 38 | * to be corrected before they can be used as byte counts. */ | ||
| 39 | |||
| 40 | #undef WORD_MACHINE | ||
| 41 | |||
| 42 | /* Now define a symbol for the cpu type, if your compiler | ||
| 43 | does not define it automatically: | ||
| 44 | Ones defined so far include vax, m68000, ns16000, pyramid, | ||
| 45 | orion, tahoe, APOLLO and many others */ | ||
| 46 | #ifndef hp9000s800 | ||
| 47 | # define hp9000s800 | ||
| 48 | #endif | ||
| 49 | |||
| 50 | /* Use type int rather than a union, to represent Lisp_Object */ | ||
| 51 | /* This is desirable for most machines. */ | ||
| 52 | |||
| 53 | #define NO_UNION_TYPE | ||
| 54 | |||
| 55 | /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | ||
| 56 | the bit field into an int. In other words, if bit fields | ||
| 57 | are always unsigned. | ||
| 58 | |||
| 59 | If you use NO_UNION_TYPE, this flag does not matter. */ | ||
| 60 | |||
| 61 | #define EXPLICIT_SIGN_EXTEND | ||
| 62 | |||
| 63 | /* The standard definitions of these macros would work ok, | ||
| 64 | but these are faster because the constants are short. */ | ||
| 65 | |||
| 66 | |||
| 67 | #define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) | ||
| 68 | |||
| 69 | #define XSET(var, type, ptr) \ | ||
| 70 | ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) | ||
| 71 | |||
| 72 | /* Definitions for GNU/Linux. (HP/UX is unsupported because of the | ||
| 73 | removal of unexhp9k800.c due to lack of legal papers.) */ | ||
| 74 | |||
| 75 | #ifdef GNU_LINUX | ||
| 76 | /* Now define a symbol for the cpu type, if your compiler | ||
| 77 | does not define it automatically: | ||
| 78 | Ones defined so far include vax, m68000, ns16000, pyramid, | ||
| 79 | orion, tahoe, APOLLO and many others */ | ||
| 80 | #ifndef hp9000s800 | ||
| 81 | # define hp9000s800 | ||
| 82 | #endif | ||
| 83 | |||
| 84 | /* Define CANNOT_DUMP on machines where unexec does not work. | ||
| 85 | Then the function dump-emacs will not be defined | ||
| 86 | and temacs will do (load "loadup") automatically unless told otherwise. */ | ||
| 87 | |||
| 88 | #undef CANNOT_DUMP | ||
| 89 | |||
| 90 | /* Define NO_REMAP if memory segmentation makes it not work well | ||
| 91 | to change the boundary between the text section and data section | ||
| 92 | when Emacs is dumped. If you define this, the preloaded Lisp | ||
| 93 | code will not be sharable; but that's better than failing completely. */ | ||
| 94 | |||
| 95 | #define NO_REMAP | ||
| 96 | |||
| 97 | /* Data type of load average, as read out of kmem. */ | ||
| 98 | |||
| 99 | #define LOAD_AVE_TYPE long | ||
| 100 | |||
| 101 | /* Convert that into an integer that is 100 for a load average of 1.0 */ | ||
| 102 | |||
| 103 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | ||
| 104 | |||
| 105 | #endif /* GNU_LINUX */ | ||
| 106 | |||
| 107 | /* Systems with GCC don't need to lose. */ | ||
| 108 | #ifdef __NetBSD__ | ||
| 109 | # ifdef __GNUC__ | ||
| 110 | # define alloca __builtin_alloca | ||
| 111 | # define HAVE_ALLOCA | ||
| 112 | # endif /* __GNUC__ */ | ||
| 113 | #endif /* __NetBSD__ */ | ||
| 114 | |||
| 115 | /* arch-tag: 809436e6-1645-4b92-b40d-2de5d6e7227c | ||
| 116 | (do not change this comment) */ | ||