0.6.12.3:
[sbcl.git] / src / compiler / alpha / backend-parms.lisp
1 ;;;; that part of the parms.lisp file from original CMU CL which is defined in
2 ;;;; terms of the BACKEND structure
3 ;;;;
4 ;;;; FIXME: When we break up the BACKEND structure, this might be mergeable
5 ;;;; back into the parms.lisp file.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
15
16
17
18 (in-package "SB!VM")
19
20 \f
21 ;;;; compiler constants
22
23 (setf *backend-fasl-file-type* "axpf")
24 (setf *backend-fasl-file-implementation* :alpha)
25 (setf *backend-fasl-file-version* 2)
26 ;;;(setf *backend-fasl-file-version* 8)
27 ;;; 8 = sbcl-0.6.10.4 revived Gray stream support, changing stream layouts
28
29
30 (setf *backend-register-save-penalty* 3)
31
32 (setf *backend-byte-order* :little-endian)
33
34 ;;; XXX the C runtime gets page size using getpagesize() - can't we
35 ;;; look at that instead of hardcoding it here too?
36 (setf *backend-page-size* 8192)
37