aboutsummaryrefslogtreecommitdiff
path: root/scaf/system/scafmacro.s
blob: 04e65374366d4e00027bdc6961a3061f485fb84c (plain)
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
	#    Pure Data Packet - scaf assembler macros.
	#    Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
	# 
	#    This program is free software; you can redistribute it and/or modify
	#    it under the terms of the GNU General Public License as published by
	#    the Free Software Foundation; either version 2 of the License, or
	#    (at your option) any later version.
	# 
	#    This program is distributed in the hope that it will be useful,
	#    but WITHOUT ANY WARRANTY; without even the implied warranty of
	#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	#    GNU General Public License for more details.
	# 
	#    You should have received a copy of the GNU General Public License
	#    along with this program; if not, write to the Free Software
	#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
	#


	# this file contains pure asm macros. it is to be included before assembly
	# after scaforth.pl has processed the .scaf file

	# *************************** JMP CALL RET **************************************
	# j c r
	
	.macro j address
	jmp \address
	.endm

	.macro c address
	call \address
	.endm

	.macro r
	ret
	.endm
		

	# *************************** CA CELL ACCESS MACROS *****************************
	# dropldTL - dropldBR

	# shift / load rectangle macros:

	# shift rectangle horizontal	
	# result is in reg1
	.macro shift reg1 reg2 count
	psllq $(16-\count), \reg1
	psrlq $(16+\count), \reg2
	psrlq $32, \reg1
	psllq $32, \reg2
	por \reg2, \reg1
	.endm

	.macro ldtop reg1 reg2
	movq (%edi), \reg1
	movq 8(%edi), \reg2
	.endm

	.macro ldcenter reg1 reg2
	movq 8(%edi), \reg1
	movq 16(%edi), \reg2
	.endm

	.macro ldbottom reg1 reg2
	movq 16(%edi), \reg1
	movq 24(%edi), \reg2
	.endm
	

	# dropld from top row

	# dropld the top left square
	.macro dropldTL
	ldtop %mm0, %mm1
	shift %mm0, %mm1, -1
	.endm

	# dropld the top mid square
	.macro dropldTM
	ldtop %mm0, %mm1
	shift %mm0, %mm1, 0
	.endm

	# dropld the top right square
	.macro dropldTR
	ldtop %mm0, %mm1
	shift %mm0, %mm1, 1
	.endm


	
	# dropld from center row

	# dropld the mid left square
	.macro dropldML
	ldcenter %mm0, %mm1
	shift %mm0, %mm1, -1
	.endm

	# dropld the mid mid square
	.macro dropldMM
	ldcenter %mm0, %mm1
	shift %mm0, %mm1, 0
	.endm

	# dropld the mid right square
	.macro dropldMR
	ldcenter %mm0, %mm1
	shift %mm0, %mm1, 1
	.endm


	

			
	# dropld from bottom row

	# dropld the bottom left square
	.macro dropldBL
	ldbottom %mm0, %mm1
	shift %mm0, %mm1, -1
	.endm

	# dropld the bottom mid square
	.macro dropldBM
	ldbottom %mm0, %mm1
	shift %mm0, %mm1, 0
	.endm

	# dropld the bottom right square
	.macro dropldBR
	ldbottom %mm0, %mm1
	shift %mm0, %mm1, 1
	.endm



	# *************************** CA STACK MANIP MACROS *****************************
	# these are the only asm macros that have a stack effect other than
	# just replacing the TOS
	#
	# dup drop dropdup swap nip dropover

	.macro dup
	lea -8(%esi), %esi
	movq %mm0, (%esi)	
	.endm

	.macro drop
	movq (%esi), %mm0
	lea 8(%esi), %esi
	.endm

	.macro dropdup
	movq (%esi), %mm0
	.endm

	.macro nipdup
	movq %mm0, (%esi)
	.endm

	.macro swap
	movq (%esi), %mm1
	movq %mm0, (%esi)
	movq %mm1, %mm0
	.endm

	.macro nip
	lea 8(%esi), %esi
	.endm

	.macro dropover
	movq 8(%esi), %mm0
	.endm


	# *************************** CA BOOLEAN LOGIC MACROS *****************************
	# overxor overand overor not
	
	.macro overxor
	pxor (%esi), %mm0
	.endm	

	.macro overand
	pand (%esi), %mm0
	.endm	

	.macro overor
	por (%esi), %mm0
	.endm	

	.macro not
	pxor %mm3, %mm0
	.endm
	


	# *************************** CONSTANTS  *****************************
	# dropzero dropone 

	.macro dropzero
	pxor %mm0, %mm0
	.endm

	.macro dropone
	pcmpeqw %mm0, %mm0
	.endm
	
	
	# *************************** 4 BIT REG ACCESS  ******************************
	# dupsta0 - dupsta4   droplda0 - droplda4
	# store bit in accumulator

	# bit store
	
	.macro dupsta0
	movq %mm0, %mm4
	.endm

	.macro dupsta1
	movq %mm0, %mm5
	.endm
	
	.macro dupsta2
	movq %mm0, %mm6
	.endm
	
	.macro dupsta3
	movq %mm0, %mm7
	.endm

	# load bit from accumulator

	.macro droplda0
	movq %mm4, %mm0
	.endm

	.macro droplda1
	movq %mm5, %mm0
	.endm
	
	.macro droplda2
	movq %mm6, %mm0
	.endm

	.macro droplda3
	movq %mm7, %mm0
	.endm


	# *************************** LOAD 4 BIT CONSTANT IN REG  ******************************
	# a0000 - a1111
	
	.macro ldbit0 value
	.ifeq \value
	movq %mm1, %mm4
	.else
	movq %mm3, %mm4
	.endif
	.endm

	.macro ldbit1 value
	.ifeq \value
	movq %mm1, %mm5
	.else
	movq %mm3, %mm5
	.endif
	.endm

	.macro ldbit2 value
	.ifeq \value
	movq %mm1, %mm6
	.else
	movq %mm3, %mm6
	.endif
	.endm

	.macro ldbit3 value
	.ifeq \value
	movq %mm1, %mm7
	.else
	movq %mm3, %mm7
	.endif
	.endm

	.macro ldbin b3 b2 b1 b0
	pxor %mm1, %mm1
	ldbit0 \b0
	ldbit1 \b1
	ldbit2 \b2
	ldbit3 \b3
	.endm
	
	.macro a0000
	ldbin 0 0 0 0
	.endm

	.macro a0001
	ldbin 0 0 0 1
	.endm

	.macro a0010
	ldbin 0 0 1 0
	.endm

	.macro a0011
	ldbin 0 0 1 1
	.endm

	.macro a0100
	ldbin 0 1 0 0
	.endm

	.macro a0101
	ldbin 0 1 0 1
	.endm

	.macro a0110
	ldbin 0 1 1 0
	.endm

	.macro a0111
	ldbin 0 1 1 1
	.endm

	.macro a1000
	ldbin 1 0 0 0
	.endm

	.macro a1001
	ldbin 1 0 0 1
	.endm

	.macro a1010
	ldbin 1 0 1 0
	.endm

	.macro a1011
	ldbin 1 0 1 1
	.endm

	.macro a1100
	ldbin 1 1 0 0
	.endm

	.macro a1101
	ldbin 1 1 0 1
	.endm

	.macro a1110
	ldbin 1 1 1 0
	.endm

	.macro a1111
	ldbin 1 1 1 1
	.endm

	
	
		
	# *************************** 4 BIT COUNTER  ******************************
	# adds TOS to bit of counter and returns carry in TOS
	#
	# adb0 - adb3


	.macro adb0
	movq %mm4, %mm2
	pxor %mm0, %mm4
	pand %mm2, %mm0
	.endm

	.macro adb1
	movq %mm5, %mm2
	pxor %mm0, %mm5
	pand %mm2, %mm0
	.endm

	.macro adb2
	movq %mm6, %mm2
	pxor %mm0, %mm6
	pand %mm2, %mm0
	.endm

	.macro adb3
	movq %mm7, %mm2
	pxor %mm0, %mm7
	pand %mm2, %mm0
	.endm


	# *************************** ACCUMULATOR TESTS ***************************
	# dropisnonzero4 - dropisnonzero1

	.macro dropisnonzero4
	movq %mm4, %mm0
	por %mm5, %mm0
	por %mm6, %mm0
	por %mm7, %mm0
	.endm
	
	.macro dropisnonzero3
	movq %mm4, %mm0
	por %mm5, %mm0
	por %mm6, %mm0
	.endm
	
	.macro dropisnonzero2
	movq %mm4, %mm0
	por %mm5, %mm0
	.endm
	
	.macro dropisnonzero1
	movq %mm4, %mm0
	.endm
	

	# *************************** REGISTER SHIFT OPERATIONS **********************
	# shift and leave shifted out byte on stack
	# rotate trough top of stack

	.macro dropshiftright
	movq %mm4, %mm0
	movq %mm5, %mm4	
	movq %mm6, %mm5	
	movq %mm7, %mm6
	pxor %mm7, %mm7
	.endm

	.macro dropshiftleft
	movq %mm7, %mm0
	movq %mm6, %mm7	
	movq %mm5, %mm6	
	movq %mm4, %mm5
	pxor %mm4, %mm4
	.endm

	.macro dropshiftrighta
	movq %mm4, %mm0
	movq %mm5, %mm4	
	movq %mm6, %mm5	
	movq %mm7, %mm6
	.endm

	.macro rotateright
	movq %mm4, %mm1
	movq %mm5, %mm4	
	movq %mm6, %mm5	
	movq %mm7, %mm6
	movq %mm1, %mm7
	.endm

	.macro rotateleft
	movq %mm7, %mm1
	movq %mm6, %mm7	
	movq %mm5, %mm6	
	movq %mm4, %mm5
	movq %mm1, %mm4
	.endm

	.macro rotaterightstack
	movq %mm0, %mm1
	movq %mm4, %mm0
	movq %mm5, %mm4	
	movq %mm6, %mm5	
	movq %mm7, %mm6
	movq %mm1, %mm7
	.endm

	.macro rotateleftstack
	movq %mm0, %mm1
	movq %mm7, %mm0
	movq %mm6, %mm7	
	movq %mm5, %mm6	
	movq %mm4, %mm5
	movq %mm1, %mm4
	.endm

	# *************************** OTHER REGISTER OPERATIONS **********************
	# anot :	 complement reg (can be used to implement subtraction)

	.macro anot
	pxor %mm3, %mm4
	pxor %mm3, %mm5
	pxor %mm3, %mm6
	pxor %mm3, %mm7
	.endm