annotate src/m/macppc.h @ 96602:0e3e875ffade

* lisp.h: * w32heap.c: * emacs.c: * alloc.c: Replace all references of NO_UNION_TYPE with USE_LISP_UNION_TYPE. * m/xtensa.h (NO_UNION_TYPE): * m/vax.h (NO_UNION_TYPE): * m/template.h (NO_UNION_TYPE): * m/sparc.h (NO_UNION_TYPE): * m/mips.h (NO_UNION_TYPE): * m/macppc.h (NO_UNION_TYPE): * m/m68k.h (NO_UNION_TYPE): * m/iris4d.h (NO_UNION_TYPE): * m/intel386.h (NO_UNION_TYPE): * m/ibms390x.h (NO_UNION_TYPE): * m/ibms390.h (NO_UNION_TYPE): * m/ibmrs6000.h (NO_UNION_TYPE): * m/ia64.h (NO_UNION_TYPE): * m/hp800.h (NO_UNION_TYPE): * m/arm.h (NO_UNION_TYPE): * m/amdx86-64.h (NO_UNION_TYPE): * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were defining it the same.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 11 Jul 2008 02:29:43 +0000
parents e1043d6b0d2b
children 79121a8f01e3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
1 /* machine description file For the powerpc Macintosh.
94714
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
2 Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
3 2008 Free Software Foundation, Inc.
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
4
Dave Love <fx@gnu.org>
parents:
diff changeset
5 This file is part of GNU Emacs.
Dave Love <fx@gnu.org>
parents:
diff changeset
6
94714
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
7 GNU Emacs is free software: you can redistribute it and/or modify
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
94714
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
10 (at your option) any later version.
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
11
Dave Love <fx@gnu.org>
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
Dave Love <fx@gnu.org>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
Dave Love <fx@gnu.org>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Dave Love <fx@gnu.org>
parents:
diff changeset
15 GNU General Public License for more details.
Dave Love <fx@gnu.org>
parents:
diff changeset
16
Dave Love <fx@gnu.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
94714
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 79755
diff changeset
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
19
78499
49b363c28dce Replace `iff' in comments.
Glenn Morris <rgm@gnu.org>
parents: 78258
diff changeset
20 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
25834
Dave Love <fx@gnu.org>
parents:
diff changeset
21 is the most significant byte. */
Dave Love <fx@gnu.org>
parents:
diff changeset
22
Dave Love <fx@gnu.org>
parents:
diff changeset
23 #define WORDS_BIG_ENDIAN
Dave Love <fx@gnu.org>
parents:
diff changeset
24
Dave Love <fx@gnu.org>
parents:
diff changeset
25 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
Dave Love <fx@gnu.org>
parents:
diff changeset
26 * group of arguments and treat it as an array of the arguments. */
Dave Love <fx@gnu.org>
parents:
diff changeset
27
Dave Love <fx@gnu.org>
parents:
diff changeset
28 #define NO_ARG_ARRAY
Dave Love <fx@gnu.org>
parents:
diff changeset
29
Dave Love <fx@gnu.org>
parents:
diff changeset
30 /* Now define a symbol for the cpu type, if your compiler
Dave Love <fx@gnu.org>
parents:
diff changeset
31 does not define it automatically:
Dave Love <fx@gnu.org>
parents:
diff changeset
32 Ones defined so far include vax, m68000, ns16000, pyramid,
Dave Love <fx@gnu.org>
parents:
diff changeset
33 orion, tahoe, APOLLO and many others */
Dave Love <fx@gnu.org>
parents:
diff changeset
34
Dave Love <fx@gnu.org>
parents:
diff changeset
35 /* Data type of load average, as read out of kmem. */
Dave Love <fx@gnu.org>
parents:
diff changeset
36
Dave Love <fx@gnu.org>
parents:
diff changeset
37 #define LOAD_AVE_TYPE long
Dave Love <fx@gnu.org>
parents:
diff changeset
38
Dave Love <fx@gnu.org>
parents:
diff changeset
39 /* Convert that into an integer that is 100 for a load average of 1.0 */
Dave Love <fx@gnu.org>
parents:
diff changeset
40
Dave Love <fx@gnu.org>
parents:
diff changeset
41 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
Dave Love <fx@gnu.org>
parents:
diff changeset
42
Dave Love <fx@gnu.org>
parents:
diff changeset
43 /* Some really obscure 4.2-based systems (like Sequent DYNIX)
Dave Love <fx@gnu.org>
parents:
diff changeset
44 * do not support asynchronous I/O (using SIGIO) on sockets,
Dave Love <fx@gnu.org>
parents:
diff changeset
45 * even though it works fine on tty's. If you have one of
Dave Love <fx@gnu.org>
parents:
diff changeset
46 * these systems, define the following, and then use it in
Dave Love <fx@gnu.org>
parents:
diff changeset
47 * config.h (or elsewhere) to decide when (not) to use SIGIO.
Dave Love <fx@gnu.org>
parents:
diff changeset
48 *
Dave Love <fx@gnu.org>
parents:
diff changeset
49 * You'd think this would go in an operating-system description file,
Dave Love <fx@gnu.org>
parents:
diff changeset
50 * but since it only occurs on some, but not all, BSD systems, the
Dave Love <fx@gnu.org>
parents:
diff changeset
51 * reasonable place to select for it is in the machine description
Dave Love <fx@gnu.org>
parents:
diff changeset
52 * file.
Dave Love <fx@gnu.org>
parents:
diff changeset
53 */
Dave Love <fx@gnu.org>
parents:
diff changeset
54
Dave Love <fx@gnu.org>
parents:
diff changeset
55 /* #define NO_SOCK_SIGIO */
Dave Love <fx@gnu.org>
parents:
diff changeset
56
Dave Love <fx@gnu.org>
parents:
diff changeset
57 #if defined (LINUX) || defined (__NetBSD__) || defined (__OpenBSD__)
Dave Love <fx@gnu.org>
parents:
diff changeset
58 # define TEXT_END ({ extern int _etext; &_etext; })
Dave Love <fx@gnu.org>
parents:
diff changeset
59 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
60
Dave Love <fx@gnu.org>
parents:
diff changeset
61 #if (defined (__NetBSD__) || defined (__OpenBSD__)) && defined (__ELF__)
Dave Love <fx@gnu.org>
parents:
diff changeset
62 #define HAVE_TEXT_START
Dave Love <fx@gnu.org>
parents:
diff changeset
63 #endif
30011
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
64
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
65 /* NAKAJI Hiroyuki <nakaji@tutrp.tut.ac.jp> says this is needed
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
66 For MkLinux/LinuxPPC. */
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
67
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
68 #ifdef LINUX
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
69 #define LINKER $(CC) -nostdlib
40198
0bd966523c89 [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents: 39492
diff changeset
70 /* s/gnu-linux.h defines this to `-z nocombreloc' which does not work here
0bd966523c89 [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents: 39492
diff changeset
71 because prefix-args is not used. */
0bd966523c89 [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents: 39492
diff changeset
72 #undef LD_SWITCH_SYSTEM_TEMACS
0bd966523c89 [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents: 39492
diff changeset
73 #define LD_SWITCH_MACHINE_TEMACS -Xlinker -znocombreloc
61753
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
74 #ifdef _ARCH_PPC64
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
75 #undef START_FILES
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
76 #define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
77 #undef LIB_STANDARD
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
78 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
79 #endif
30011
aa56df73f23a (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 28646
diff changeset
80 #endif
39311
ac26c99a7a0c (DATA_SEG_BITS) [__linux__]: Define for GCC
Gerd Moellmann <gerd@gnu.org>
parents: 30011
diff changeset
81
61753
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
82 #ifdef _ARCH_PPC64
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
83 #ifndef _LP64
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
84 #define _LP64
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
85 #endif
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
86 #endif
d555a0a5114c (LD_SWITCH_MACHINE) [LINUX]: Don't define.
Andreas Schwab <schwab@suse.de>
parents: 52401
diff changeset
87
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 44601
diff changeset
88 /* arch-tag: 41913e4e-e7d1-4023-aadb-210cc31712ed
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 44601
diff changeset
89 (do not change this comment) */