Newer
Older
;; Basic cross-compile script for cross-compiling from x86 to x86.
;; May require tweaking for more difficult cross-compiles.
(in-package :cl-user)
;;; Rename the X86 package and backend so that new-backend does the
;;; right thing.
(rename-package "X86" "OLD-X86")
(setf (c:backend-name c:*native-backend*) "OLD-X86")
(c::new-backend "X86"
;; Features to add here. These are just examples. You may not
;; need to list anything here. We list them here anyway as a
;; record of typical features for all x86 ports.
'(:x86 :i486 :pentium
:stack-checking ; Catches stack overflow
:heap-overflow-check ; Catches heap overflows
:relative-package-names ; relative package names
:mp ; multiprocessing
:gencgc ; Generational GC
:conservative-float-type
:hash-new
:random-mt19937
:cmu :cmu19 :cmu19e ; Version features
:double-double ; double-double float support
;; Features to remove from current *features* here. Normally don't
;; need to list anything here unless you are trying to remove a
;; feature.
'(:x86-bootstrap
;; :alpha :osf1 :mips
:propagate-fun-type :propagate-float-type :constrain-float-type
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
:long-float :new-random :small))
;;; Compile the new backend.
(pushnew :bootstrap *features*)
(pushnew :building-cross-compiler *features*)
(load "target:tools/comcom")
;;; Load the new backend.
(setf (search-list "c:")
'("target:compiler/"))
(setf (search-list "vm:")
'("c:x86/" "c:generic/"))
(setf (search-list "assem:")
'("target:assembly/" "target:assembly/x86/"))
;; Load the backend of the compiler.
(in-package "C")
(load "vm:vm-macs")
(load "vm:parms")
(load "vm:objdef")
(load "vm:interr")
(load "assem:support")
(load "target:compiler/srctran")
(load "vm:vm-typetran")
(load "target:compiler/float-tran")
(load "target:compiler/saptran")
(load "vm:macros")
(load "vm:utils")
(load "vm:vm")
(load "vm:insts")
(load "vm:primtype")
(load "vm:move")
(load "vm:sap")
(load "vm:system")
(load "vm:char")
(load "vm:float")
(load "vm:memory")
(load "vm:static-fn")
(load "vm:arith")
(load "vm:cell")
(load "vm:subprim")
(load "vm:debug")
(load "vm:c-call")
(load "vm:print")
(load "vm:alloc")
(load "vm:call")
(load "vm:nlx")
(load "vm:values")
(load "vm:array")
(load "vm:pred")
(load "vm:type-vops")
(load "assem:assem-rtns")
(load "assem:array")
(load "assem:arith")
(load "assem:alloc")
(load "c:pseudo-vops")
(check-move-function-consistency)
(load "vm:new-genesis")
;;; OK, the cross compiler backend is loaded.
(setf *features* (remove :building-cross-compiler *features*))
;;; Info environment hacks.
(macrolet ((frob (&rest syms)
`(progn ,@(mapcar #'(lambda (sym)
`(defconstant ,sym
(symbol-value
(find-symbol ,(symbol-name sym)
:vm))))
syms))))
(frob OLD-X86:BYTE-BITS OLD-X86:WORD-BITS
#+long-float OLD-X86:SIMPLE-ARRAY-LONG-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-DOUBLE-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-SINGLE-FLOAT-TYPE
#+long-float OLD-X86:SIMPLE-ARRAY-COMPLEX-LONG-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-COMPLEX-DOUBLE-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-COMPLEX-SINGLE-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-UNSIGNED-BYTE-2-TYPE
OLD-X86:SIMPLE-ARRAY-UNSIGNED-BYTE-4-TYPE
OLD-X86:SIMPLE-ARRAY-UNSIGNED-BYTE-8-TYPE
OLD-X86:SIMPLE-ARRAY-UNSIGNED-BYTE-16-TYPE
OLD-X86:SIMPLE-ARRAY-UNSIGNED-BYTE-32-TYPE
OLD-X86:SIMPLE-ARRAY-SIGNED-BYTE-8-TYPE
OLD-X86:SIMPLE-ARRAY-SIGNED-BYTE-16-TYPE
OLD-X86:SIMPLE-ARRAY-SIGNED-BYTE-30-TYPE
OLD-X86:SIMPLE-ARRAY-SIGNED-BYTE-32-TYPE
OLD-X86:SIMPLE-BIT-VECTOR-TYPE
OLD-X86:SIMPLE-STRING-TYPE OLD-X86:SIMPLE-VECTOR-TYPE
OLD-X86:SIMPLE-ARRAY-TYPE OLD-X86:VECTOR-DATA-OFFSET
OLD-X86:DOUBLE-FLOAT-EXPONENT-BYTE
OLD-X86:DOUBLE-FLOAT-NORMAL-EXPONENT-MAX
OLD-X86:DOUBLE-FLOAT-SIGNIFICAND-BYTE
OLD-X86:SINGLE-FLOAT-EXPONENT-BYTE
OLD-X86:SINGLE-FLOAT-NORMAL-EXPONENT-MAX
OLD-X86:SINGLE-FLOAT-SIGNIFICAND-BYTE
)
#+double-double
(frob OLD-X86:SIMPLE-ARRAY-COMPLEX-DOUBLE-DOUBLE-FLOAT-TYPE
OLD-X86:SIMPLE-ARRAY-DOUBLE-DOUBLE-FLOAT-TYPE))
;; Modular arith hacks
(setf (fdefinition 'vm::ash-left-mod32) #'old-x86::ash-left-mod32)
(setf (fdefinition 'vm::lognot-mod32) #'old-x86::lognot-mod32)
;; End arith hacks
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
(let ((function (symbol-function 'kernel:error-number-or-lose)))
(let ((*info-environment* (c:backend-info-environment c:*target-backend*)))
(setf (symbol-function 'kernel:error-number-or-lose) function)
(setf (info function kind 'kernel:error-number-or-lose) :function)
(setf (info function where-from 'kernel:error-number-or-lose) :defined)))
(defun fix-class (name)
(let* ((new-value (find-class name))
(new-layout (kernel::%class-layout new-value))
(new-cell (kernel::find-class-cell name))
(*info-environment* (c:backend-info-environment c:*target-backend*)))
(remhash name kernel::*forward-referenced-layouts*)
(kernel::%note-type-defined name)
(setf (info type kind name) :instance)
(setf (info type class name) new-cell)
(setf (info type compiler-layout name) new-layout)
new-value))
(fix-class 'c::vop-parse)
(fix-class 'c::operand-parse)
#+random-mt19937
(declaim (notinline kernel:random-chunk))
(setf c:*backend* c:*target-backend*)
;;; Extern-alien-name for the new backend.
(in-package :vm)
(defun extern-alien-name (name)
(declare (type simple-string name))
name)
(export 'extern-alien-name)
(export 'fixup-code-object)
(export 'sanctify-for-execution)
(in-package :cl-user)
;;; Don't load compiler parts from the target compilation
(defparameter *load-stuff* nil)
;; hack, hack, hack: Make old-x86::any-reg the same as
;; x86::any-reg as an SC. Do this by adding old-x86::any-reg
;; to the hash table with the same value as x86::any-reg.
(let ((ht (c::backend-sc-names c::*target-backend*)))
(setf (gethash 'old-x86::any-reg ht)
(gethash 'x86::any-reg ht)))