annotate src/m/alpha.h @ 112307:161cf5d0fd8b

* mktime.c: Remove; moving to ../lib.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 08 Jan 2011 20:33:54 -0800
parents 2278399d2eb9
children e567154bfaa7 417b1e4d63cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
101108
2a093594f65a Comment (add Author:, based on authors.el).
Glenn Morris <rgm@gnu.org>
parents: 100951
diff changeset
1 /* Machine description file for the alpha chip.
108506
6fcaca6266ae Minor comment reformatting for some src/m/*.h files.
Glenn Morris <rgm@gnu.org>
parents: 108260
diff changeset
2
6fcaca6266ae Minor comment reformatting for some src/m/*.h files.
Glenn Morris <rgm@gnu.org>
parents: 108260
diff changeset
3 Copyright (C) 1994, 1997, 1999, 2001, 2002, 2003, 2004, 2005, 2006,
6fcaca6266ae Minor comment reformatting for some src/m/*.h files.
Glenn Morris <rgm@gnu.org>
parents: 108260
diff changeset
4 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
101108
2a093594f65a Comment (add Author:, based on authors.el).
Glenn Morris <rgm@gnu.org>
parents: 100951
diff changeset
6 Author: Rainer Schoepf
2a093594f65a Comment (add Author:, based on authors.el).
Glenn Morris <rgm@gnu.org>
parents: 100951
diff changeset
7 (according to authors.el)
2a093594f65a Comment (add Author:, based on authors.el).
Glenn Morris <rgm@gnu.org>
parents: 100951
diff changeset
8
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 This file is part of GNU Emacs.
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
94714
7e5b32f86a4c Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87649
diff changeset
11 GNU Emacs is free software: you can redistribute it and/or modify
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 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: 87649
diff changeset
13 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: 87649
diff changeset
14 (at your option) any later version.
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 GNU Emacs is distributed in the hope that it will be useful,
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 GNU General Public License for more details.
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 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: 87649
diff changeset
22 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23
28647
2f596fe26c71 (_LP64) [!_LP64]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 26527
diff changeset
24 #ifndef _LP64
108260
ddb9a8f686bd Comment changes for some src/m/*.h files.
Glenn Morris <rgm@gnu.org>
parents: 108227
diff changeset
25 #define _LP64 /* This doesn't appear to be necessary on OSF 4/5 -- fx. */
28647
2f596fe26c71 (_LP64) [!_LP64]: Define.
Gerd Moellmann <gerd@gnu.org>
parents: 26527
diff changeset
26 #endif
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 /* Now define a symbol for the cpu type, if your compiler
96732
1e0b67e40d48 * systty.h: Remove code for Aix on 386, unsupported platform.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96643
diff changeset
29 does not define it automatically. */
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 /* __alpha defined automatically */
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 /* Data type of load average, as read out of kmem. */
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 #define LOAD_AVE_TYPE long
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 /* Convert that into an integer that is 100 for a load average of 1.0 */
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38
15850
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
39 #ifdef __ELF__
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
40
107036
467d1fce4215 Fixes for NetBSD (Bug#4629, Bug#2072).
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
41 #if !defined(GNU_LINUX) && !defined(__NetBSD__)
46651
9f027dd3047f (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
Ken Raeburn <raeburn@raeburn.org>
parents: 44601
diff changeset
42 #define DATA_START 0x140000000
15851
9aaeb5dc2851 [__ELF__] (UNEXEC): Use unexelf1.c.
Richard M. Stallman <rms@gnu.org>
parents: 15850
diff changeset
43 #endif
96643
79121a8f01e3 * config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96602
diff changeset
44
79121a8f01e3 * config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96602
diff changeset
45 #else /* not __ELF__ */
15850
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
46
8836
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 /* Describe layout of the address space in an executing process. */
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 #define DATA_START 0x140000000
2afe507ed505 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49
96643
79121a8f01e3 * config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96602
diff changeset
50 #endif /* __ELF__ */
15850
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
51
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
52 /* On the Alpha it's best to avoid including TERMIO since struct
d6c4d581ad25 [__ELF__ && __GNUC__] (C_SWITCH_MACHINE): Add -fno-common.
Richard M. Stallman <rms@gnu.org>
parents: 15719
diff changeset
53 termio and struct termios are mutually incompatible. */
12827
b0f8f54fe739 [linux] (COFF, NO_TERMIO): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 12825
diff changeset
54 #define NO_TERMIO
b0f8f54fe739 [linux] (COFF, NO_TERMIO): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 12825
diff changeset
55
20201
09b52c2bc2f1 (DBL_MIN_REPLACEMENT): New macro.
Paul Eggert <eggert@twinsun.com>
parents: 20031
diff changeset
56 /* Many Alpha implementations (e.g. gas 2.8) can't handle DBL_MIN:
09b52c2bc2f1 (DBL_MIN_REPLACEMENT): New macro.
Paul Eggert <eggert@twinsun.com>
parents: 20031
diff changeset
57 they generate code that uses a signaling NaN instead of DBL_MIN.
09b52c2bc2f1 (DBL_MIN_REPLACEMENT): New macro.
Paul Eggert <eggert@twinsun.com>
parents: 20031
diff changeset
58 Define DBL_MIN_REPLACEMENT to be the next value larger than DBL_MIN:
09b52c2bc2f1 (DBL_MIN_REPLACEMENT): New macro.
Paul Eggert <eggert@twinsun.com>
parents: 20031
diff changeset
59 this avoids the assembler bug. */
09b52c2bc2f1 (DBL_MIN_REPLACEMENT): New macro.
Paul Eggert <eggert@twinsun.com>
parents: 20031
diff changeset
60 #define DBL_MIN_REPLACEMENT 2.2250738585072019e-308
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
61
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
62 /* arch-tag: 978cb578-1e25-4a60-819b-adae0972aa78
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
63 (do not change this comment) */