-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path_16bit.py
More file actions
1143 lines (935 loc) · 34.7 KB
/
_16bit.py
File metadata and controls
1143 lines (935 loc) · 34.7 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
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# --------------------------------------------------------------------
# SPDX-License-Identifier: AGPL-3.0-or-later
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
# See the file CONTRIBUTORS.md for copyright details.
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
# --------------------------------------------------------------------
from src.api.tmp_labels import tmp_label
from src.arch.z80.backend._8bit import Bits8
from src.arch.z80.backend.common import _int_ops, is_2n, is_int, log2, runtime_call
from src.arch.z80.backend.quad import Quad
from src.arch.z80.backend.runtime import Labels as RuntimeLabel
class Bits16:
"""Implementation of 16bit operations."""
@classmethod
def int16(cls, op):
"""Returns a 16 bit operand converted to 16 bits unsigned int.
Negative numbers are returned in 2 complement.
"""
return int(op) & 0xFFFF
@classmethod
def get_oper(cls, op1, op2=None, *, reversed: bool = False):
"""Returns pop sequence for 16 bits operands
1st operand in HL, 2nd operand in DE
For subtraction, division, etc. you can swap operators extraction order
by setting reversed to True
"""
output = []
if op1 is not None:
op1 = str(op1) # always to str
if op2 is not None:
op2 = str(op2) # always to str
if op2 is not None and reversed:
op1, op2 = op2, op1
op = op1
indirect = op[0] == "*"
if indirect:
op = op[1:]
immediate = op[0] == "#"
if immediate:
op = op[1:]
if is_int(op):
op = int(op)
if indirect:
output.append("ld hl, (%i)" % op)
else:
output.append("ld hl, %i" % cls.int16(op))
else:
if immediate:
if indirect:
output.append("ld hl, (%s)" % op)
else:
output.append("ld hl, %s" % op)
else:
if op[0] == "_":
output.append("ld hl, (%s)" % op)
else:
output.append("pop hl")
if indirect:
output.append("ld a, (hl)")
output.append("inc hl")
output.append("ld h, (hl)")
output.append("ld l, a")
if op2 is None:
return output
if not reversed:
tmp = output
output = []
op = op2
indirect = op[0] == "*"
if indirect:
op = op[1:]
immediate = op[0] == "#"
if immediate:
op = op[1:]
if is_int(op):
op = int(op)
if indirect:
output.append("ld de, (%i)" % op)
else:
output.append("ld de, %i" % cls.int16(op))
else:
if immediate:
output.append("ld de, %s" % op)
else:
if op[0] == "_":
output.append("ld de, (%s)" % op)
else:
output.append("pop de")
if indirect:
output.append(runtime_call(RuntimeLabel.LOAD_DE_DE)) # DE = (DE)
if not reversed:
output.extend(tmp)
return output
# -----------------------------------------------------
# Arithmetic operations
# -----------------------------------------------------
@classmethod
def add16(cls, ins: Quad) -> list[str]:
"""Pops last 2 bytes from the stack and adds them.
Then push the result onto the stack.
Optimizations:
* If any of the operands is ZERO,
then do NOTHING: A + 0 = 0 + A = A
* If any of the operands is < 4, then
INC is used
* If any of the operands is > (65531) (-4), then
DEC is used
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
op2 = cls.int16(op2)
output = cls.get_oper(op1)
if op2 == 0:
output.append("push hl")
return output # ADD HL, 0 => NOTHING
if op2 < 4:
output.extend(["inc hl"] * op2) # ADD HL, 2 ==> inc hl; inc hl
output.append("push hl")
return output
if op2 > 65531: # (between -4 and 0)
output.extend(["dec hl"] * (0x10000 - op2))
output.append("push hl")
return output
output.append("ld de, %i" % op2)
output.append("add hl, de")
output.append("push hl")
return output
if op2[0] == "_": # stack optimization
op1, op2 = op2, op1
output = cls.get_oper(op1, op2)
output.append("add hl, de")
output.append("push hl")
return output
@classmethod
def sub16(cls, ins: Quad) -> list[str]:
"""Pops last 2 words from the stack and subtract them.
Then push the result onto the stack. Top of the stack is
subtracted Top -1
Optimizations:
* If 2nd op is ZERO,
then do NOTHING: A - 0 = A
* If any of the operands is < 4, then
DEC is used
* If any of the operands is > 65531 (-4..-1), then
INC is used
"""
op1, op2 = tuple(ins[2:4])
if is_int(op2):
op = cls.int16(op2)
output = cls.get_oper(op1)
if op == 0:
output.append("push hl")
return output
if op < 4:
output.extend(["dec hl"] * op)
output.append("push hl")
return output
if op > 65531:
output.extend(["inc hl"] * (0x10000 - op))
output.append("push hl")
return output
output.append("ld de, -%i" % op)
output.append("add hl, de")
output.append("push hl")
return output
if op2[0] == "_": # Optimization when 2nd operand is an id
rev = True
op1, op2 = op2, op1
else:
rev = False
output = cls.get_oper(op1, op2, reversed=rev)
output.append("or a")
output.append("sbc hl, de")
output.append("push hl")
return output
@classmethod
def mul16(cls, ins: Quad) -> list[str]:
"""Multiplies tow last 16bit values on top of the stack and
and returns the value on top of the stack
Optimizations:
* If any of the ops is ZERO,
then do A = 0 ==> XOR A, cause A * 0 = 0 * A = 0
* If any ot the ops is ONE, do NOTHING
A * 1 = 1 * A = A
* If B is 2^n and B < 16 => Shift Right n
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None: # If any of the operands is constant
op1, op2 = _int_ops(op1, op2) # put the constant one the 2nd
output = cls.get_oper(op1)
if op2 == 0: # A * 0 = 0 * A = 0
if op1[0] in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
output.append("ld hl, 0")
output.append("push hl")
return output
if op2 == 1: # A * 1 = 1 * A == A => Do nothing
output.append("push hl")
return output
if op2 == 0xFFFF: # This is the same as (-1)
output.append(runtime_call(RuntimeLabel.NEGHL))
output.append("push hl")
return output
if is_2n(op2) and log2(op2) < 4:
output.extend(["add hl, hl"] * int(log2(op2)))
output.append("push hl")
return output
output.append(f"ld de, {op2}")
else:
if op2[0] == "_": # stack optimization
op1, op2 = op2, op1
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.MUL16_FAST)) # Immediate
output.append("push hl")
return output
@classmethod
def divu16(cls, ins: Quad) -> list[str]:
"""Divides 2 16bit unsigned integers. The result is pushed onto the stack.
Optimizations:
* If 2nd op is 1 then
do nothing
* If 2nd op is 2 then
Shift Right Logical
"""
op1, op2 = tuple(ins[2:])
if is_int(op1) and int(op1) == 0: # 0 / A = 0
if op2[0] in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
else:
output = cls.get_oper(op2) # Normalize stack
output.append("ld hl, 0")
output.append("push hl")
return output
if is_int(op2):
op = cls.int16(op2)
output = cls.get_oper(op1)
if op2 == 0: # A * 0 = 0 * A = 0
if op1[0] in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
output.append("ld hl, 0")
output.append("push hl")
return output
if op == 1:
output.append("push hl")
return output
if op == 2:
output.append("srl h")
output.append("rr l")
output.append("push hl")
return output
output.append("ld de, %i" % op)
else:
if op2[0] == "_": # Optimization when 2nd operand is an id
rev = True
op1, op2 = op2, op1
else:
rev = False
output = cls.get_oper(op1, op2, reversed=rev)
output.append(runtime_call(RuntimeLabel.DIVU16))
output.append("push hl")
return output
@classmethod
def divi16(cls, ins: Quad) -> list[str]:
"""Divides 2 16bit signed integers. The result is pushed onto the stack.
Optimizations:
* If 2nd op is 1 then
do nothing
* If 2nd op is -1 then
do NEG
* If 2nd op is 2 then
Shift Right Arithmetic
"""
op1, op2 = tuple(ins[2:])
if is_int(op1) and int(op1) == 0: # 0 / A = 0
if op2[0] in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
else:
output = cls.get_oper(op2) # Normalize stack
output.append("ld hl, 0")
output.append("push hl")
return output
if is_int(op2):
op = cls.int16(op2)
output = cls.get_oper(op1)
if op == 1:
output.append("push hl")
return output
if op == -1:
output.append(runtime_call(RuntimeLabel.NEGHL)) # TODO: Is this ever used?
output.append("push hl")
return output
if op == 2:
output.append("sra h")
output.append("rr l")
output.append("push hl")
return output
output.append("ld de, %i" % op)
else:
if op2[0] == "_": # Optimization when 2nd operand is an id
rev = True
op1, op2 = op2, op1
else:
rev = False
output = cls.get_oper(op1, op2, reversed=rev)
output.append(runtime_call(RuntimeLabel.DIVI16))
output.append("push hl")
return output
@classmethod
def modu16(cls, ins: Quad) -> list[str]:
"""Reminder of div. 2 16bit unsigned integers. The result is pushed onto the stack.
Optimizations:
* If 2nd operand is 1 => Return 0
* If 2nd operand = 2^n => do AND (2^n - 1)
"""
op1, op2 = tuple(ins[2:])
if is_int(op2):
op2 = cls.int16(op2)
output = cls.get_oper(op1)
if op2 == 1:
if op2[0] in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
output.append("ld hl, 0")
output.append("push hl")
return output
if is_2n(op2):
k = op2 - 1
if op2 > 255: # only affects H
output.append("ld a, h")
output.append("and %i" % (k >> 8))
output.append("ld h, a")
else:
output.append("ld h, 0") # High part goes 0
output.append("ld a, l")
output.append("and %i" % (k % 0xFF))
output.append("ld l, a")
output.append("push hl")
return output
output.append("ld de, %i" % op2)
else:
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.MODU16))
output.append("push hl")
return output
@classmethod
def modi16(cls, ins: Quad) -> list[str]:
"""Reminder of div 2 16bit signed integers. The result is pushed onto the stack.
Optimizations:
* If 2nd operand is 1 => Return 0
* If 2nd operand = 2^n => do AND (2^n - 1)
"""
op1, op2 = tuple(ins[2:])
if is_int(op2):
op2 = cls.int16(op2)
output = cls.get_oper(op1)
if op2 == 1:
if op1 in ("_", "$"):
output = [] # Optimization: Discard previous op if not from the stack
output.append("ld hl, 0")
output.append("push hl")
return output
if is_2n(op2):
k = op2 - 1
if op2 > 255: # only affects H
output.append("ld a, h")
output.append("and %i" % (k >> 8))
output.append("ld h, a")
else:
output.append("ld h, 0") # High part goes 0
output.append("ld a, l")
output.append("and %i" % (k % 0xFF))
output.append("ld l, a")
output.append("push hl")
return output
output.append("ld de, %i" % op2)
else:
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.MODI16))
output.append("push hl")
return output
@classmethod
def ltu16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand < 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit unsigned version
"""
output = cls.get_oper(ins[2], ins[3])
output.append("or a")
output.append("sbc hl, de")
output.append("sbc a, a")
output.append("push af")
return output
@classmethod
def lti16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand < 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit signed version
"""
output = cls.get_oper(ins[2], ins[3])
output.append(runtime_call(RuntimeLabel.LTI16))
output.append("push af")
return output
@classmethod
def gtu16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand > 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit unsigned version
"""
output = cls.get_oper(ins[2], ins[3], reversed=True)
output.append("or a")
output.append("sbc hl, de")
output.append("sbc a, a")
output.append("push af")
return output
@classmethod
def gti16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand > 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit signed version
"""
output = cls.get_oper(ins[2], ins[3], reversed=True)
output.append(runtime_call(RuntimeLabel.LTI16))
output.append("push af")
return output
@classmethod
def leu16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand <= 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit unsigned version
"""
output = cls.get_oper(ins[2], ins[3], reversed=True)
output.append("or a")
output.append("sbc hl, de") # Carry if A > B
output.append("ccf") # Negates the result => Carry if A <= B
output.append("sbc a, a")
output.append("push af")
return output
@classmethod
def lei16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand <= 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit signed version
"""
output = cls.get_oper(ins[2], ins[3])
output.append(runtime_call(RuntimeLabel.LEI16))
output.append("push af")
return output
@classmethod
def geu16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand >= 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit unsigned version
"""
output = cls.get_oper(ins[2], ins[3])
output.append("or a")
output.append("sbc hl, de")
output.append("ccf")
output.append("sbc a, a")
output.append("push af")
return output
@classmethod
def gei16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand >= 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit signed version
"""
output = cls.get_oper(ins[2], ins[3], reversed=True)
output.append(runtime_call(RuntimeLabel.LEI16))
output.append("push af")
return output
@classmethod
def eq16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand == 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit un/signed version
"""
output = cls.get_oper(ins[2], ins[3])
output.append(runtime_call(RuntimeLabel.EQ16))
output.append("push af")
return output
@classmethod
def ne16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand != 2nd operand (top of the stack).
Pushes 0 if False, 1 if True.
16 bit un/signed version
"""
output = cls.get_oper(ins[2], ins[3])
output.append("or a") # Resets carry flag
output.append("sbc hl, de")
output.append("ld a, h")
output.append("or l")
output.append("push af")
return output
@classmethod
def or16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand OR (logical) 2nd operand (top of the stack),
pushes 0 if False, 1 if True.
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
if op2 == 0:
output = cls.get_oper(op1)
output.append("ld a, h")
output.append("or l") # Convert x to Boolean
output.append("push af")
return output # X or False = X
output = cls.get_oper(op1)
output.append("ld a, 0FFh") # X or True = True
output.append("push af")
return output
output = cls.get_oper(ins[2], ins[3])
output.append("ld a, h")
output.append("or l")
output.append("or d")
output.append("or e")
output.append("push af")
return output
@classmethod
def bor16(cls, ins: Quad) -> list[str]:
"""Pops top 2 operands out of the stack, and performs
1st operand OR (bitwise) 2nd operand (top of the stack),
pushes result (16 bit in HL).
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
output = cls.get_oper(op1)
if op2 == 0: # X | 0 = X
output.append("push hl")
return output
if op2 == 0xFFFF: # X & 0xFFFF = 0xFFFF
output.append("ld hl, 0FFFFh")
output.append("push hl")
return output
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.BOR16))
output.append("push hl")
return output
@classmethod
def xor16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand XOR (logical) 2nd operand (top of the stack),
pushes 0 if False, 1 if True.
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
output = cls.get_oper(op1)
if op2 == 0: # X xor False = X
output.append("ld a, h")
output.append("or l")
output.append("push af")
return output
# X xor True = NOT X
output.append("ld a, h")
output.append("or l")
output.append("sub 1")
output.append("sbc a, a")
output.append("push af")
return output
output = cls.get_oper(ins[2], ins[3])
output.append(runtime_call(RuntimeLabel.XOR16))
output.append("push af")
return output
@classmethod
def bxor16(cls, ins: Quad) -> list[str]:
"""Pops top 2 operands out of the stack, and performs
1st operand XOR (bitwise) 2nd operand (top of the stack),
pushes result (16 bit in HL).
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
output = cls.get_oper(op1)
if op2 == 0: # X ^ 0 = X
output.append("push hl")
return output
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.BXOR16))
output.append("push hl")
return output
@classmethod
def and16(cls, ins: Quad) -> list[str]:
"""Compares & pops top 2 operands out of the stack, and checks
if the 1st operand AND (logical) 2nd operand (top of the stack),
pushes 0 if False, 1 if True.
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
output = cls.get_oper(op1)
if op2 != 0:
output.append("ld a, h")
output.append("or l")
output.append("push af")
return output # X and True = X
output = cls.get_oper(op1)
output.append("xor a") # X and False = False
output.append("push af")
return output
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.AND16))
output.append("push af")
return output
@classmethod
def band16(cls, ins: Quad) -> list[str]:
"""Pops top 2 operands out of the stack, and performs
1st operand AND (bitwise) 2nd operand (top of the stack),
pushes result (16 bit in HL).
16 bit un/signed version
Optimizations:
If any of the operators are constants: Returns either 0 or
the other operand
"""
op1, op2 = tuple(ins[2:])
if _int_ops(op1, op2) is not None:
op1, op2 = _int_ops(op1, op2)
if op2 == 0xFFFF: # X & 0xFFFF = X
return []
if op2 == 0: # X & 0 = 0
output = cls.get_oper(op1)
output.append("ld hl, 0")
output.append("push hl")
return output
output = cls.get_oper(op1, op2)
output.append(runtime_call(RuntimeLabel.BAND16))
output.append("push hl")
return output
@classmethod
def not16(cls, ins: Quad) -> list[str]:
"""Negates top (Logical NOT) of the stack (16 bits in HL)"""
output = cls.get_oper(ins[2])
output.append("ld a, h")
output.append("or l")
output.append("sub 1")
output.append("sbc a, a")
output.append("push af")
return output
@classmethod
def bnot16(cls, ins: Quad) -> list[str]:
"""Negates top (Bitwise NOT) of the stack (16 bits in HL)"""
output = cls.get_oper(ins[2])
output.append(runtime_call(RuntimeLabel.BNOT16))
output.append("push hl")
return output
@classmethod
def neg16(cls, ins: Quad) -> list[str]:
"""Negates top of the stack (16 bits in HL)"""
output = cls.get_oper(ins[2])
output.append(runtime_call(RuntimeLabel.NEGHL))
output.append("push hl")
return output
@classmethod
def abs16(cls, ins: Quad) -> list[str]:
"""Absolute value of top of the stack (16 bits in HL)"""
output = cls.get_oper(ins[2])
output.append(runtime_call(RuntimeLabel.ABS16))
output.append("push hl")
return output
@classmethod
def shru16(cls, ins: Quad) -> list[str]:
"""Logical right shift 16bit unsigned integer.
The result is pushed onto the stack.
Optimizations:
* If 2nd op is 0 then
do nothing
* If 2nd op is 1
Shift Right Arithmetic
"""
op1, op2 = tuple(ins[2:])
label = tmp_label()
label2 = tmp_label()
if is_int(op2):
op = cls.int16(op2)
if op == 0:
return []
output = cls.get_oper(op1)
if op == 1:
output.append("srl h")
output.append("rr l")
output.append("push hl")
return output
output.append("ld b, %i" % op)
else:
output = Bits8.get_oper(op2)
output.append("ld b, a")
output.extend(cls.get_oper(op1))
output.append("or a")
output.append("jr z, %s" % label2)
output.append("%s:" % label)
output.append("srl h")
output.append("rr l")
output.append("djnz %s" % label)
output.append("%s:" % label2)
output.append("push hl")
return output
@classmethod
def shri16(cls, ins: Quad) -> list[str]:
"""Arithmetical right shift 16bit signed integer.
The result is pushed onto the stack.
Optimizations:
* If 2nd op is 0 then
do nothing
* If 2nd op is 1
Shift Right Arithmetic
"""
op1, op2 = tuple(ins[2:])
label = tmp_label()
label2 = tmp_label()
if is_int(op2):
op = cls.int16(op2)
if op == 0:
return []
output = cls.get_oper(op1)
if op == 1:
output.append("srl h")
output.append("rr l")
output.append("push hl")
return output
output.append("ld b, %i" % op)
else:
output = Bits8.get_oper(op2)
output.append("ld b, a")
output.extend(cls.get_oper(op1))
output.append("or a")
output.append("jr z, %s" % label2)
output.append("%s:" % label)
output.append("sra h")
output.append("rr l")
output.append("djnz %s" % label)
output.append("%s:" % label2)
output.append("push hl")
return output
@classmethod
def shl16(cls, ins: Quad) -> list[str]:
"""Logical/aritmetical left shift 16bit (un)signed integer.
The result is pushed onto the stack.
Optimizations:
* If 2nd op is 0 then
do nothing
* If 2nd op is lower than 6
unroll lop
"""
op1, op2 = tuple(ins[2:])
label = tmp_label()
label2 = tmp_label()
if is_int(op2):
op = cls.int16(op2)
if op == 0:
return []
output = cls.get_oper(op1)
if op < 6:
output.extend(["add hl, hl"] * op)
output.append("push hl")
return output
output.append("ld b, %i" % op)
else:
output = Bits8.get_oper(op2)
output.append("ld b, a")
output.extend(cls.get_oper(op1))
output.append("or a")
output.append("jr z, %s" % label2)
output.append("%s:" % label)
output.append("add hl, hl")
output.append("djnz %s" % label)
output.append("%s:" % label2)
output.append("push hl")
return output
@classmethod
def load16(cls, ins: Quad) -> list[str]:
"""Loads a 16 bit value from a memory address
If 2nd arg. start with '*', it is always treated as
an indirect value.
"""
output = cls.get_oper(ins[2])
output.append("push hl")
return output