diff options
| author | Dave Love | 1999-09-29 22:08:57 +0000 |
|---|---|---|
| committer | Dave Love | 1999-09-29 22:08:57 +0000 |
| commit | 863c15b6e762fbe1da302fc9b6e3515f9f1769e6 (patch) | |
| tree | f8ef2d9d8ea8c2291fd999d0aa80d1ca2eeb3ce5 /src | |
| parent | 0963334d8f320b15bcc089146d40f21a5b9a5b1a (diff) | |
| download | emacs-863c15b6e762fbe1da302fc9b6e3515f9f1769e6.tar.gz emacs-863c15b6e762fbe1da302fc9b6e3515f9f1769e6.zip | |
#
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/README | 7 | ||||
| -rw-r--r-- | src/m/ibmrs6000.inp | 2 | ||||
| -rw-r--r-- | src/m/macppc.h | 91 | ||||
| -rw-r--r-- | src/m/powerpcle.h | 78 | ||||
| -rw-r--r-- | src/m/pyrmips.h | 9 |
5 files changed, 187 insertions, 0 deletions
diff --git a/src/m/README b/src/m/README new file mode 100644 index 00000000000..ad91167648e --- /dev/null +++ b/src/m/README | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | This directory contains C header files containing machine-specific | ||
| 2 | definitions. Each file describes a particular machine. The emacs | ||
| 3 | configuration script edits ../config.h to include the appropriate one of | ||
| 4 | these files, and then each emacs source file includes config.h. | ||
| 5 | |||
| 6 | template.h is a generic template for machine descriptions; it | ||
| 7 | describes the parameters a machine file can specify. | ||
diff --git a/src/m/ibmrs6000.inp b/src/m/ibmrs6000.inp new file mode 100644 index 00000000000..d28a3aedae1 --- /dev/null +++ b/src/m/ibmrs6000.inp | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | #! | ||
| 2 | pthread_yield | ||
diff --git a/src/m/macppc.h b/src/m/macppc.h new file mode 100644 index 00000000000..0a62c514513 --- /dev/null +++ b/src/m/macppc.h | |||
| @@ -0,0 +1,91 @@ | |||
| 1 | /* machine description file For the powerpc Macintosh. | ||
| 2 | Copyright (C) 1994 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This file is part of GNU Emacs. | ||
| 5 | |||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 1, or (at your option) | ||
| 9 | any later version. | ||
| 10 | |||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | ||
| 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 19 | Boston, MA 02111-1307, USA. */ | ||
| 20 | |||
| 21 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | ||
| 22 | is the most significant byte. */ | ||
| 23 | |||
| 24 | #define WORDS_BIG_ENDIAN | ||
| 25 | |||
| 26 | /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | ||
| 27 | * group of arguments and treat it as an array of the arguments. */ | ||
| 28 | |||
| 29 | #define NO_ARG_ARRAY | ||
| 30 | |||
| 31 | /* Define WORD_MACHINE if addresses and such have | ||
| 32 | * to be corrected before they can be used as byte counts. */ | ||
| 33 | |||
| 34 | /* #define WORD_MACHINE */ | ||
| 35 | |||
| 36 | /* Now define a symbol for the cpu type, if your compiler | ||
| 37 | does not define it automatically: | ||
| 38 | Ones defined so far include vax, m68000, ns16000, pyramid, | ||
| 39 | orion, tahoe, APOLLO and many others */ | ||
| 40 | |||
| 41 | /* Use type EMACS_INT rather than a union, to represent Lisp_Object */ | ||
| 42 | /* This is desirable for most machines. */ | ||
| 43 | |||
| 44 | #define NO_UNION_TYPE | ||
| 45 | |||
| 46 | /* Data type of load average, as read out of kmem. */ | ||
| 47 | |||
| 48 | #define LOAD_AVE_TYPE long | ||
| 49 | |||
| 50 | /* Convert that into an integer that is 100 for a load average of 1.0 */ | ||
| 51 | |||
| 52 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | ||
| 53 | |||
| 54 | /* Define C_ALLOCA if this machine does not support a true alloca | ||
| 55 | and the one written in C should be used instead. | ||
| 56 | Define HAVE_ALLOCA to say that the system provides a properly | ||
| 57 | working alloca function and it should be used. | ||
| 58 | Define neither one if an assembler-language alloca | ||
| 59 | in the file alloca.s should be used. */ | ||
| 60 | |||
| 61 | #define HAVE_ALLOCA | ||
| 62 | |||
| 63 | /* Some really obscure 4.2-based systems (like Sequent DYNIX) | ||
| 64 | * do not support asynchronous I/O (using SIGIO) on sockets, | ||
| 65 | * even though it works fine on tty's. If you have one of | ||
| 66 | * these systems, define the following, and then use it in | ||
| 67 | * config.h (or elsewhere) to decide when (not) to use SIGIO. | ||
| 68 | * | ||
| 69 | * You'd think this would go in an operating-system description file, | ||
| 70 | * but since it only occurs on some, but not all, BSD systems, the | ||
| 71 | * reasonable place to select for it is in the machine description | ||
| 72 | * file. | ||
| 73 | */ | ||
| 74 | |||
| 75 | /* #define NO_SOCK_SIGIO */ | ||
| 76 | |||
| 77 | #if defined(__NetBSD__) || defined(__OpenBSD__) | ||
| 78 | #define ORDINARY_LINK | ||
| 79 | #endif | ||
| 80 | |||
| 81 | #define UNEXEC unexelf.o | ||
| 82 | |||
| 83 | #define NO_TERMIO | ||
| 84 | |||
| 85 | #if defined (LINUX) || defined (__NetBSD__) || defined (__OpenBSD__) | ||
| 86 | # define TEXT_END ({ extern int _etext; &_etext; }) | ||
| 87 | #endif | ||
| 88 | |||
| 89 | #if (defined (__NetBSD__) || defined (__OpenBSD__)) && defined (__ELF__) | ||
| 90 | #define HAVE_TEXT_START | ||
| 91 | #endif | ||
diff --git a/src/m/powerpcle.h b/src/m/powerpcle.h new file mode 100644 index 00000000000..69442a146e3 --- /dev/null +++ b/src/m/powerpcle.h | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | /* machine description file for PowerPC. | ||
| 2 | Copyright (C) 1987 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This file is part of GNU Emacs. | ||
| 5 | |||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation; either version 2, or (at your option) | ||
| 9 | any later version. | ||
| 10 | |||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | ||
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | ||
| 19 | |||
| 20 | /* The following line tells the configuration script what sort of | ||
| 21 | operating system this machine is likely to run. | ||
| 22 | USUAL-OPSYS="Solaris2.5.1 Windows/NT AIX 4.1.2" | ||
| 23 | |||
| 24 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | ||
| 25 | is the most significant byte. */ | ||
| 26 | |||
| 27 | #undef WORDS_BIG_ENDIAN | ||
| 28 | |||
| 29 | /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | ||
| 30 | * group of arguments and treat it as an array of the arguments. */ | ||
| 31 | |||
| 32 | #define NO_ARG_ARRAY | ||
| 33 | |||
| 34 | /* Say this machine is a PowerPC Refernce Platform */ | ||
| 35 | |||
| 36 | #ifndef prep | ||
| 37 | #define prep | ||
| 38 | #endif | ||
| 39 | |||
| 40 | #ifdef __GNUC__ | ||
| 41 | # define C_OPTIMIZE_SWITCH -O | ||
| 42 | #else | ||
| 43 | /* This level of optimization is reported to work. */ | ||
| 44 | # define C_OPTIMIZE_SWITCH -O2 | ||
| 45 | #endif | ||
| 46 | |||
| 47 | /* Use type int rather than a union, to represent Lisp_Object */ | ||
| 48 | |||
| 49 | #define NO_UNION_TYPE | ||
| 50 | |||
| 51 | /* XINT must explicitly sign-extend */ | ||
| 52 | |||
| 53 | #define EXPLICIT_SIGN_EXTEND | ||
| 54 | |||
| 55 | /* Data type of load average, as read out of kmem. */ | ||
| 56 | |||
| 57 | #define LOAD_AVE_TYPE long | ||
| 58 | |||
| 59 | /* Convert that into an integer that is 100 for a load average of 1.0 */ | ||
| 60 | |||
| 61 | #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | ||
| 62 | |||
| 63 | /* Define C_ALLOCA if this machine does not support a true alloca | ||
| 64 | and the one written in C should be used instead. | ||
| 65 | Define HAVE_ALLOCA to say that the system provides a properly | ||
| 66 | working alloca function and it should be used. | ||
| 67 | Define neither one if an assembler-language alloca | ||
| 68 | in the file alloca.s should be used. */ | ||
| 69 | |||
| 70 | #define HAVE_ALLOCA | ||
| 71 | #ifndef NOT_C_CODE | ||
| 72 | #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */ | ||
| 73 | #include <alloca.h> | ||
| 74 | #endif | ||
| 75 | #endif | ||
| 76 | |||
| 77 | /* Control a conditional in unexelf.c. */ | ||
| 78 | #define SOLARIS_POWERPC | ||
diff --git a/src/m/pyrmips.h b/src/m/pyrmips.h new file mode 100644 index 00000000000..7887f6858d2 --- /dev/null +++ b/src/m/pyrmips.h | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | /* Configuration file for the Pyramid machine that uses the MIPS cpu. */ | ||
| 2 | /* This does not fully work. */ | ||
| 3 | |||
| 4 | #include "m-pyramid.h" | ||
| 5 | |||
| 6 | #define SYSTEM_MALLOC | ||
| 7 | #define HAVE_ALLOCA | ||
| 8 | #define CANNOT_DUMP | ||
| 9 | |||