-
Notifications
You must be signed in to change notification settings - Fork 1
/
compile-alpha-emulator.lisp
86 lines (72 loc) · 3.52 KB
/
compile-alpha-emulator.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
;;; -*- Mode: LISP; Syntax: Common-Lisp; Package: COMMON-LISP-USER; Base: 10; Lowercase: Yes -*-
(in-package "COMMON-LISP-USER")
;;; Compile the Alpha AXP (G5) assembly source files using OpenMCL
;;; TODO: Integrate with MAKE?
(setf (logical-pathname-translations "VLM")
(let* ((parent
(make-pathname :name nil :type nil :version nil :defaults *load-truename*))
(target (format nil "~A/**/" parent)))
`(("VLM:VLM;**;" ,target)
("VLM:**;" ,target))))
(defun compile-if-needed (file &optional force? &rest compile-options)
(let* ((input (merge-pathnames file (make-pathname :type "lisp")))
(output (apply #'compile-file-pathname input compile-options)))
(if (and (not force?)
(probe-file output)
(> (file-write-date output) (file-write-date input)))
(load output :verbose t)
(apply #'compile-file input :verbose t :load t compile-options))))
(defun dsdl-if-needed (file &optional force?)
(let* ((input (pathname file))
(output (merge-pathnames (make-pathname :type "lisp") input)))
(when (or force?
(not (probe-file output))
(> (file-write-date input) (file-write-date output)))
(let ((*package* (find-package "ALPHA-AXP-INTERNALS")))
(format t "~&;Translating ~S... " input)
(funcall (intern "DSDL" "ALPHA-AXP-INTERNALS") input '(:c :asm :lisp))))
(load output :verbose t)))
(defun assemble (file)
(let* ((input (merge-pathnames file (make-pathname :type "as")))
(output (merge-pathnames (make-pathname :type "s") input)))
(format t "~&;Translating ~S... " input)
(funcall (intern "PROCESS-ASM-SOURCE" "ALPHA-AXP-INTERNALS") input output)))
(defun translate ()
;; The actual emulator core
(dolist (file '("ifunhead" "idispat" "ifuncom1" "ifuncom2"
"ifungene" "ifunfcal" "ifunloop" "ifunlist"
"ifuninst" "ifunmath" "ifunarra" "ifunmove"
"ifunpred" "ifunsubp" "ifunfext" "ifunlexi"
"ifunbits" "ifunblok" "ifunbind" "ifunfull"
"ifunbnum" "ifuntrap" "ihalt" "idouble"
"ifunjosh" "ifuntran"))
(assemble (format nil "vlm:alpha-emulator;~A" file))))
(defun build (&optional force?)
;; Provide several Genera only packages and a number of definitions
;; from the SYSTEM (SYS) package that are used by the assembler and
;; emulator macros. (In theory, these files should work with Lisp
;; implementations other than OpenMCL with only minor tweaks.)
(load "vlm:support;openmcl-packages" :verbose t)
(compile-if-needed "vlm:support;openmcl-support" force?)
;; Alpha AXP Assembler
(load "vlm:assembler;alphapckg.lisp" :verbose t)
(compile-if-needed "vlm:assembler;alphadsdl" force?)
(compile-if-needed "vlm:assembler;alpha" force?)
;; Ivory data structures and type definitions used by the core emulator
;; NOTE: These files are not automatically regenerated as they live
;; in the CVS repository and there's no need to generate extra
;; commits when all that changes is the header and trailer comments.
(dsdl-if-needed "vlm:alpha-emulator;aistat.sid")
(dsdl-if-needed "vlm:emulator;aihead.sid")
(dsdl-if-needed "vlm:emulator;traps.sid")
(compile-if-needed "vlm:emulator;errortbl" force? :output-file "vlm:alpha-emulator;")
;; Macros
(dolist (file '("alphamac" "intrpmac" "stacklis"
"memoryem" "imaclist" "fcallmac" "imacbits"
"imacblok" "imaclexi" "imacgene" "imacinst" "imacialu"
"imacloop" "imacmath" "imacbind" "imacjosh" "imacarra"
"imacpred" "imacsubp" "imactrap"))
(compile-if-needed (format nil "vlm:alpha-emulator;~A" file) force?))
;; The actual emulator core
(translate))
(build)