-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmachine.lisp
More file actions
244 lines (216 loc) · 5.85 KB
/
machine.lisp
File metadata and controls
244 lines (216 loc) · 5.85 KB
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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
(in-package :cl-nutes)
;; Defining the main structures:
; For the actual virtual machines
; The 'special' field is reserved for IO and other later extensions
(defstruct tape
width
power
range
position
flex
vector
length
halted
special
counter
)
; For the assembled code
(defstruct program
id
direction
entry
data
code
labels
first
last
length
)
; Constants for standard tapes according to the system architecture
(if (> (floor (log most-positive-fixnum 3)) 36)
(defconstant st-width 36)
(defconstant st-width 18))
(defconstant st-width 36)
(defconstant st-power (expt 3 st-width))
(defconstant st-range (/ (1- st-power) 2))
(defparameter width st-width)
; Setting the default word width of flexible machines
(defun create-tape
(length &key (pos 0) (count 0) (flex nil) (width width))
(let ((p)(r))
(setf flex (if (> width 39) t flex)
p (expt 3 width)
r (/ (1- p) 2))
(make-tape
:width width
:power p
:range r
:position pos
:flex flex
:vector (if flex
(make-array length)
(if (<= width 9)
(make-array length :element-type '(signed-byte 16))
(if (<= width 19)
(make-array length :element-type '(signed-byte 32))
(make-array length :element-type 'fixnum))))
:length length
:halted nil
:special nil
:counter count)))
;; We convert integers to balanced ternary numbers of a given range
(defun coerce-width (x &key (width st-width))
(let*
((power (expt 3 width))
(range (/ (1- power) 2))
(n (mod x power)))
(if (> n range)
(- n power) n)))
;; Sign sum function. Not used in the machine, but may be useful elsewhere.
(defun sign-sum (x y)
(signum (+ (signum x)(signum y))))
;; Our 'CPU'
(declaim (inline one-step signum tape-position tape-vector tape-counter tape-halted tape-special mod))
(defun one-step (tape)
(declare (optimize (speed 3) (safety 0)(debug 0)))
(let
((l (tape-length tape))
(p (tape-position tape))
(v (tape-vector tape))
(power (tape-power tape))
(range (tape-range tape))
(p+ 0) (p- 0) (j 0) (new-jmp 0) (m+ 0) (m- 0) (a+ 0) (a- 0) (sub 0) (sign 0))
(declare (type fixnum l p p+ p- j new-jmp m+ m- a+ a- sub sign power range))
(if (plusp p)
(if (= 1 (- l p))
(setf p+ (aref v 0) p- (aref v (1- p)))
(setf p- (aref v (1- p)) p+ (aref v (1+ p))))
(setf p- (aref v (1- l)) p+ (aref v (1+ p))))
(setf j (mod (+ (aref v p) p) l)
m+ (mod (+ p p+) l)
m- (mod (+ p p-) l)
a+ (aref v m+)
a- (aref v m-)
sub (let ((n (- a+ a-)))
(if (> n range) (- n power)
(if (< n (- range)) (+ power n)
n)))
sign (+ (signum a+)(signum a-)))
(if (zerop sign)
(setf new-jmp (aref v j))
(if (plusp sign)
(setf new-jmp
(if (plusp j)
(if (= 1 (- l j))
(aref v 0)
(aref v (1+ j)))
(aref v (1+ j))))
(setf new-jmp
(if (plusp j)
(if (= 1 (- l j))
(aref v (1- j))
(aref v (1- j)))
(aref v (1- l))))))
(incf (tape-counter tape))
(if (and (zerop new-jmp) (zerop sign))
(progn
(setf (tape-halted tape) t
(tape-special tape)
(if (> (abs a-)(abs a+))
a-
(if (< (abs a-)(abs a+))
a+
0)))
(run-io-engine tape))
(progn
(setf (tape-position tape) (mod (+ p new-jmp) l)
(aref v m+) sub
(aref v m-) (- sub))
t))))
;; Flexible word width version not optimized for fixnums
(defun one-step-flex (tape)
(declare (optimize (speed 3) (safety 0)(debug 0)))
(let*
((l (tape-length tape))
(p (tape-position tape))
(v (tape-vector tape))
(power (tape-power tape))
(range (tape-range tape))
p+ p- j pj j- j+ j0 m- m+ a+ a- sub sign)
(if (plusp p)
(if (= 1 (- l p))
(setf p+ (aref v 0) p- (aref v (1- p)))
(setf p- (aref v (1- p)) p+ (aref v (1+ p))))
(setf p- (aref v (1- l)) p+ (aref v (1+ p))))
(setf j (mod (+ (aref v p) p) l)
m+ (mod (+ p p+) l)
m- (mod (+ p p-) l)
a+ (aref v m+)
a- (aref v m-)
sub (let ((n (- a+ a-)))
(if (> n range) (- n power)
(if (< n (- range)) (+ power n)
n)))
sign (+ (signum a+)(signum a-)))
(if (zerop sign)
(setf new-jmp (aref v j))
(if (plusp sign)
(setf new-jmp
(if (plusp j)
(if (= 1 (- l j))
(aref v 0)
(aref v (1+ j)))
(aref v (1+ j))))
(setf new-jmp
(if (plusp j)
(if (= 1 (- l j))
(aref v (1- j))
(aref v (1- j)))
(aref v (1- l))))))
(incf (tape-counter tape))
(if (and (zerop new-jmp) (zerop sign))
(progn
(setf (tape-halted tape) t
(tape-special tape)
(if (> (abs a-)(abs a+))
a-
(if (< (abs a-)(abs a+))
a+
0)))
(run-io-engine tape))
(progn
(setf (tape-position tape) (mod (+ p new-jmp) l)
(aref v m+) sub
(aref v m-) (- sub))
t))))
;; Write your program using the tools provides by instructions.lisp and feed it to the tape
(defun load-tape (tape prg &key (offset 0) (middle nil))
(let ((list))
(if middle (setf offset (+ (floor (/ (tape-length tape) 2)) offset)))
(if
(listp prg)
(setf list prg)
(setf list (append (program-data prg) (program-code prg))
(tape-position tape) (mod offset (tape-length tape))
offset (+ offset (program-first prg))))
(loop for p from 0 to (1- (length list))
do (setf (elt (tape-vector tape)
(mod (+ p offset) (tape-length tape)))
(coerce-width (pop list) :width (tape-width tape))))))
;; Running our tape
; By a certain number of steps
(defun step-tape (tape &optional (n 1))
(if (< n 1) (setf n 1))
(loop for x from 1 to n unless (tape-halted tape) do
(if (tape-flex tape)
(one-step-flex tape)
(one-step tape))))
; Indefinitely
(defun run-tape (tape)
(if (tape-flex tape)
(loop do
(one-step-flex tape)
while (not (tape-halted tape)))
(loop do
(one-step tape)
while (not (tape-halted tape)))))