Simplify code for HP machines.
[emacs.git] / src / m / hp800.h
blobd95da6643abfdc810f3ed36c1f9d4ccd619564e5
1 /* machine description file for hp9000 series 800 machines.
2 Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009, 2010 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* The following line tells the configuration script what sort of
22 operating system this machine is likely to run.
23 USUAL-OPSYS="hpux" */
25 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
26 is the most significant byte. */
28 #define WORDS_BIG_ENDIAN
30 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
31 * group of arguments and treat it as an array of the arguments. */
33 #define NO_ARG_ARRAY
35 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
36 the bit field into an int. In other words, if bit fields
37 are always unsigned.
39 This flag only matters if you use USE_LISP_UNION_TYPE. */
41 #define EXPLICIT_SIGN_EXTEND
44 /* Stuff for just HPUX. */
46 #if defined (__hpux)
48 /* Define NO_REMAP if memory segmentation makes it not work well
49 to change the boundary between the text section and data section
50 when Emacs is dumped. If you define this, the preloaded Lisp
51 code will not be sharable; but that's better than failing completely. */
53 #define NO_REMAP
55 /* Define VIRT_ADDR_VARIES if the virtual addresses of
56 pure and impure space as loaded can vary, and even their
57 relative order cannot be relied on.
59 Otherwise Emacs assumes that text space precedes data space,
60 numerically. */
62 #define VIRT_ADDR_VARIES
64 /* the data segment on this machine always starts at address 0x40000000. */
66 #define DATA_SEG_BITS 0x40000000
68 #define DATA_START 0x40000000
69 #define TEXT_START 0x00000000
71 /* Data type of load average, as read out of kmem. */
73 #define LOAD_AVE_TYPE double
75 /* Convert that into an integer that is 100 for a load average of 1.0 */
77 #define LOAD_AVE_CVT(x) ((int) (x * 100.0))
79 /* The symbol in the kernel where the load average is found
80 is named _avenrun. At this time there are two major flavors
81 of hp-ux (there is the s800 and s300 (s200) flavors). The
82 differences are thusly moved to the corresponding machine description file.
85 /* no underscore please */
86 #define LDAV_SYMBOL "avenrun"
88 /* On USG systems these have different names. */
90 #define index strchr
91 #define rindex strrchr
93 #endif /* __hpux */
95 /* Systems with GCC don't need to lose. */
96 #ifdef __NetBSD__
97 # ifdef __GNUC__
98 # define alloca __builtin_alloca
99 # define HAVE_ALLOCA
100 # endif /* __GNUC__ */
101 #endif /* __NetBSD__ */
103 /* arch-tag: 809436e6-1645-4b92-b40d-2de5d6e7227c
104 (do not change this comment) */