1 ;;; generation of control flow graph
3 ;; special variables whose contents are located in the FSR registers
4 (define fsr-variables '(SIXPIC_FSR0 SIXPIC_FSR1 SIXPIC_FSR2))
15 label-name ; if the block had a label
21 live-before) ; stored as a set
24 extender: define-type-of-instr
25 (live-before unprintable:) ; these 2 are stored as sets
26 (live-after unprintable:)
33 (define-type-of-instr call-instr
37 (define-type-of-instr return-instr
41 (define (new-instr id src1 src2 dst)
42 (make-instr (new-empty-set) (new-empty-set) #f id src1 src2 dst))
44 ;; list of all conditional branching generic instructions
45 (define conditional-instrs ;; TODO add as we add specialized instructions
46 '(x==y x!=y x<y x>y x<=y x>=y))
48 (define (new-call-instr def-proc)
49 (make-call-instr '() '() #f 'call #f #f #f def-proc))
51 (define (new-return-instr def-proc)
52 (make-return-instr '() '() #f 'return #f #f #f def-proc))
54 (define (add-bb cfg proc id) ;; TODO maybe have the name in the label for named-bbs ? would help debugging
55 (let* ((label-num (cfg-next-label-num cfg))
56 (bb (make-bb label-num #f #f '() '() '() (new-empty-set))))
62 (if proc (symbol->string proc) "")
64 (number->string (if proc id label-num))))))
65 (cfg-bbs-set! cfg (cons bb (cfg-bbs cfg)))
66 (cfg-next-label-num-set! cfg (+ 1 (cfg-next-label-num cfg)))
69 (define (add-instr bb instr)
70 (let ((rev-instrs (bb-rev-instrs bb)))
71 (bb-rev-instrs-set! bb (cons instr rev-instrs))))
73 (define (add-succ bb succ)
74 (bb-succs-set! bb (cons succ (bb-succs bb)))
75 (bb-preds-set! succ (cons bb (bb-preds succ))))
77 (define (generate-cfg ast)
79 (define cfg (new-cfg))
81 (define bb #f) ; current bb
83 (define (in x) (set! bb x))
87 (if current-def-proc (def-id current-def-proc) #f)
88 current-def-proc-bb-id)))
89 (set! current-def-proc-bb-id (+ current-def-proc-bb-id 1))
92 (define (emit instr) (add-instr bb instr))
94 (define current-def-proc #f)
95 (define current-def-proc-bb-id 0)
96 (define break-stack '())
97 (define continue-stack '())
98 (define delayed-post-incdec '())
100 (define (push-break x) (set! break-stack (cons x break-stack)))
101 (define (pop-break) (set! break-stack (cdr break-stack)))
103 (define (push-continue x) (set! continue-stack (cons x continue-stack)))
104 (define (pop-continue) (set! continue-stack (cdr continue-stack)))
106 (define (push-delayed-post-incdec ast)
107 (set! delayed-post-incdec (cons ast delayed-post-incdec))
108 ;; moves the original value to a new location (so it won't be modified)
109 ;; and returns that location to the original expression
110 (let ((x (subast1 ast)))
112 (error "assignment target must be a variable")
113 (let* ((def-var (ref-def-var x))
114 (result (alloc-value (def-variable-type def-var))))
115 (move-value (def-variable-value def-var) result)
118 (define (program ast)
119 (let loop ((asts (ast-subasts ast)))
120 (if (not (null? asts))
121 (let ((ast (car asts)))
122 (if (null? (cdr asts))
123 (let ((value (expression ast)))
124 (return-with-no-new-bb value))
127 (loop (cdr asts))))))))
129 (define (toplevel ast)
130 (cond ((def-variable? ast)
132 ((def-procedure? ast)
137 (define (def-variable ast)
138 (let ((subasts (ast-subasts ast)))
139 (if (not (null? subasts)) ; if needed, set the variable
140 (let ((value (expression (subast1 ast))))
141 (let ((ext-value (extend value (def-variable-type ast))))
142 (move-value value (def-variable-value ast)))))))
144 ;; resolve the C gotos by setting the appropriate successor to their bb
145 (define (resolve-all-gotos start table)
146 (let loop ((start start)
147 (visited (new-empty-set)))
148 (if (not (set-member? visited start)) ; not visited
151 (if (and (eq? (instr-id x) 'goto)
152 (instr-dst x)) ; unresolved label
153 (let ((target (assoc (instr-dst x) table))) ;; TODO use a set, but not urgent, not a bottleneck
155 (begin (add-succ start (cdr target))
156 (instr-dst-set! x #f))
157 (error "invalid goto target" (instr-dst x))))))
158 (bb-rev-instrs start))
159 (for-each (lambda (x)
160 (set-add! visited start)
162 (bb-succs start))))))
164 (define (def-procedure ast)
165 (set! current-def-proc-bb-id 0)
166 (set! current-def-proc ast)
169 (def-procedure-entry-set! ast entry)
171 (for-each statement (ast-subasts ast))
172 (return-with-no-new-bb ast)
173 (set! current-def-proc #f)
174 (resolve-all-gotos entry (list-named-bbs entry))
177 ;; returns a list of all named bbs in the successor-tree of a given bb
178 (define (list-named-bbs start)
179 (let ((visited (new-empty-set)))
180 (let loop ((start start) ;; TODO not really a loop, it's tree recursion
182 (if (set-member? visited start)
187 (set-add! visited start)
190 (if (bb-label-name start)
191 (cons (cons (bb-label-name start) start) succs)
194 (define (statement ast)
195 (cond ((def-variable? ast) (def-variable ast))
196 ((block? ast) (block ast))
197 ((return? ast) (return ast))
198 ((if? ast) (if (null? (cddr (ast-subasts ast)))
201 ((while? ast) (while ast))
202 ((do-while? ast) (do-while ast))
203 ((for? ast) (for ast))
204 ((switch? ast) (switch ast))
205 ((break? ast) (break ast))
206 ((continue? ast) (continue ast))
207 ((goto? ast) (goto ast))
208 (else (expression ast))))
211 (if (block-name ast) ; named block ?
212 (begin (let ((new (new-bb)))
215 (bb-label-name-set! bb (block-name ast)) ))
216 (for-each statement (ast-subasts ast)))
218 (define (move from to)
219 (emit (new-instr 'move from #f to)))
221 (define (move-value from to)
222 (let loop ((from (value-bytes from))
223 (to (value-bytes to)))
224 (cond ((null? to)) ; done, we truncate the rest
225 ((null? from) ; promote the value by padding
226 (move (new-byte-lit 0) (car to))
227 (loop from (cdr to)))
229 (move (car from) (car to))
230 (loop (cdr from) (cdr to))))))
232 (define (return-with-no-new-bb def-proc)
233 (emit (new-return-instr def-proc)))
236 (if (null? (ast-subasts ast))
237 (return-with-no-new-bb current-def-proc)
238 (let ((value (expression (subast1 ast))))
239 (let ((ext-value (extend value (def-procedure-type current-def-proc))))
240 (move-value value (def-procedure-value current-def-proc))
241 (return-with-no-new-bb current-def-proc))))
245 (let* ((bb-join (new-bb))
247 (test-expression (subast1 ast) bb-then bb-join)
249 (statement (subast2 ast))
254 (let* ((bb-join (new-bb))
257 (test-expression (subast1 ast) bb-then bb-else)
259 (statement (subast2 ast))
262 (statement (subast3 ast))
267 (let* ((bb-cont (new-bb))
270 (push-continue bb-cont)
274 (test-expression (subast1 ast) bb-body bb-exit)
276 (statement (subast2 ast))
282 (define (do-while ast)
283 (let* ((bb-body (new-bb))
286 (push-continue bb-cont)
290 (statement (subast1 ast))
293 (test-expression (subast2 ast) bb-body bb-exit)
299 (let* ((bb-loop (new-bb))
303 (statement (subast1 ast))
305 (push-continue bb-cont)
308 (test-expression (subast2 ast) bb-body bb-exit)
310 (statement (subast4 ast))
313 (statement (subast3 ast))
320 (let* ((var (subast1 ast))
325 (prev-bb decision-bb))
327 (for-each (lambda (x) ; generate each case
328 (in (new-bb)) ; this bb will be given the name of the case
329 (add-succ decision-bb bb)
330 ;; if the previous case didn't end in a break, fall through
331 (if (null? (bb-succs prev-bb))
338 (cdr (ast-subasts ast)))
339 (if (null? (bb-succs prev-bb)) ; if the last case didn't end in a break, fall through to the exit
341 (bb-succs-set! decision-bb (reverse (bb-succs decision-bb))) ; preserving the order is important in the absence of break
342 (set! case-list (list-named-bbs decision-bb))
343 (set! default (keep (lambda (x) (eq? (car x) 'default))
344 (list-named-bbs decision-bb)))
345 (set! case-list (keep (lambda (x) (and (list? (car x))
346 (eq? (caar x) 'case)))
348 (bb-succs-set! decision-bb '()) ; now that we have the list of cases we don't need the successors anymore
349 (let loop ((case-list case-list)
350 (decision-bb decision-bb))
352 (if (not (null? case-list))
353 (let* ((next-bb (new-bb))
354 (curr-case (car case-list))
355 (curr-case-id (cadar curr-case))
356 (curr-case-bb (cdr curr-case)))
357 (emit (new-instr 'x==y
358 (car (value-bytes (expression var)))
359 (new-byte-lit curr-case-id) #f))
360 (add-succ bb next-bb) ; if false, keep looking
361 (add-succ bb curr-case-bb) ; if true, go to the case
362 (loop (cdr case-list)
364 (gen-goto (if (not (null? default))
371 (gen-goto (car break-stack)))
373 (define (continue ast)
374 (gen-goto (car continue-stack)))
376 ;; generates a goto with a target label. once the current function definition
377 ;; is over, all these labels are resolved. therefore, we don't have any gotos
378 ;; that jump from a function to another
380 (emit (new-instr 'goto #f #f (subast1 ast))))
382 (define (gen-goto dest)
384 (emit (new-instr 'goto #f #f #f)))
386 (define (test-expression ast bb-true bb-false)
388 (define (test-byte id byte1 byte2 bb-true bb-false)
389 (define (test-lit id x y)
394 (else (error "invalid test")))
397 (cond ((and (byte-lit? byte1) (byte-lit? byte2))
398 (if (test-lit id (byte-lit-val byte1) (byte-lit-val byte2))
400 (gen-goto bb-false)))
402 ;; since we cons each new successor at the front, true has to be
404 (add-succ bb bb-false)
405 (add-succ bb bb-true)
406 (emit (new-instr id byte1 byte2 #f)))
413 (else (error "invalid test")))))
414 (add-succ bb bb-false)
415 (add-succ bb bb-true)
416 (emit (new-instr id byte2 byte1 #f))))
418 (add-succ bb bb-false)
419 (add-succ bb bb-true)
420 (emit (new-instr id byte1 byte2 #f)))))
422 (define (test-value id value1 value2 bb-true bb-false)
423 (let loop ((bytes1 (value-bytes value1)) ; lsb first
424 (bytes2 (value-bytes value2))
427 (if (not (and (null? bytes1) (null? bytes2)))
428 ;; note: won't work with signed types, as the padding is done
430 (loop (if (null? bytes1) bytes1 (cdr bytes1))
431 (if (null? bytes2) bytes2 (cdr bytes2))
432 (cons (if (null? bytes1) (new-byte-lit 0) (car bytes1)) ;; TODO use extend ?
434 (cons (if (null? bytes2) (new-byte-lit 0) (car bytes2))
436 ;; now so the test itself, using the padded values
437 ;; the comparisons are done msb-first, for < and >
439 ((x==y) ; unlike < and >, must check all bytes, so is simpler
440 (let loop2 ((bytes1 padded1)
442 (let ((byte1 (car bytes1))
443 (byte2 (car bytes2)))
444 (if (null? (cdr bytes1)) ;; TODO factor with code for < and > ?
445 (test-byte 'x==y byte1 byte2 bb-true bb-false)
446 (let ((bb-true2 (new-bb)))
447 (test-byte 'x==y byte1 byte2 bb-true2 bb-false)
449 (loop2 (cdr bytes1) (cdr bytes2)))))))
452 (let loop2 ((bytes1 padded1) ; msb first
454 (let ((byte1 (car bytes1))
455 (byte2 (car bytes2)))
456 (if (null? (cdr bytes1))
457 (test-byte id byte1 byte2 bb-true bb-false)
458 (let ((bb-test-equal (new-bb))
459 (bb-keep-going (new-bb)))
460 ;; if the test is true for the msb, the whole test
462 (test-byte id byte1 byte2 bb-true bb-test-equal)
463 ;; if not, check for equality, if both bytes are
466 (test-byte 'x==y byte1 byte2 bb-keep-going bb-false)
467 ;; TODO do some analysis to check the value already in w, in this case, it won't change between both tests, so no need to charge it back, as is done now
469 (loop2 (cdr bytes1) (cdr bytes2)))))))))))
471 (define (test-relation id x y bb-true bb-false)
472 (cond ((and (literal? x) (not (literal? y)))
473 ;; literals must be in the last argument for code generation
474 ;; flip the relation if needed
475 (test-relation (case id
476 ((x==y x!=y) id) ; commutative, no change
481 (else (error "relation error")))
486 ((assq id '((x!=y . x==y) (x<=y . x>y) (x>=y . x<y)))
487 ;; flip the destination blocks to have a simpler comparison
489 (lambda (z) (test-relation (cdr z) x y bb-false bb-true)))
492 ;; ' ;; TODO use these special cases, but fall back on the current implementation for default
495 ;; (cond ((and (literal? y) (= (literal-val y) 0))
496 ;; (test-zero x bb-true bb-false))
498 ;; (test-eq-lit x (literal-val y) bb-true bb-false))
500 ;; (error "unhandled case"))))
502 ;; (cond ((and (literal? y) (= (literal-val y) 0))
503 ;; (test-negative x bb-true bb-false))
505 ;; (error "unhandled case"))))
507 ;; (cond ((and (literal? y) (= (literal-val y) 0))
508 ;; (test-positive x bb-true bb-false))
510 ;; (error "unhandled case"))))
512 ;; (error "unexpected operator")))
514 (let* ((value1 (expression x))
515 (value2 (expression y)))
516 (test-value id value1 value2 bb-true bb-false))
519 (define (test-zero ast bb-true bb-false)
522 (let ((type (expr-type ast))
523 (value (expression ast)))
524 ;; since nonzero is true, we must swap the destinations to use ==
525 (test-value 'x==y value (int->value 0 type) bb-false bb-true)))
528 (let* ((op (oper-op ast))
532 (test-zero (subast1 ast) bb-false bb-true))
534 (let ((bb-true2 (new-bb)))
535 (test-zero (subast1 ast) bb-true2 bb-false)
537 (test-zero (subast2 ast) bb-true bb-false)))
539 (let ((bb-false2 (new-bb)))
540 (test-zero (subast1 ast) bb-true bb-false2)
542 (test-zero (subast2 ast) bb-true bb-false)))
543 ((x==y x!=y x<y x>y x<=y x>=y)
552 (test-zero ast bb-true bb-false))
554 (define (expression ast)
556 (cond ((literal? ast) (literal ast))
557 ((ref? ast) (ref ast))
558 ((oper? ast) (oper ast))
559 ((call? ast) (call ast))
560 (else (error "unexpected ast" ast)))))
561 (do-delayed-post-incdec)
564 (define (literal ast)
565 (let ((val (literal-val ast)))
566 (int->value val (expr-type ast))))
569 (let* ((def-var (ref-def-var ast))
570 (value (def-variable-value def-var)))
573 (define (add-sub id value1 value2 result)
574 (let loop ((bytes1 (value-bytes value1)) ; car is lsb
575 (bytes2 (value-bytes value2))
576 (bytes3 (value-bytes result))
577 (ignore-carry-borrow? #t))
578 (if (not (null? bytes3))
580 (new-instr (if ignore-carry-borrow?
581 (case id ((x+y) 'add) ((x-y) 'sub))
582 (case id ((x+y) 'addc) ((x-y) 'subb)))
583 (car bytes1) (car bytes2) (car bytes3)))
584 (loop (cdr bytes1) (cdr bytes2) (cdr bytes3) #f)))))
586 (define (mul x y type result)
587 (let* ((value-x (expression x))
588 (value-y (expression y))
589 (bytes-x (value-bytes value-x))
590 (bytes-y (value-bytes value-y))
591 (lx (length bytes-x))
592 (ly (length bytes-y)))
593 ;; if this a multiplication by 2 or 4, we use additions instead
594 ;; at this point, only y (or both x and y) can contain a literal
596 (byte-lit? (car bytes-y))
597 (let ((v (byte-lit-val (car bytes-y))))
598 (or (= v 2) (= v 4))))
599 (case (byte-lit-val (car bytes-y))
600 ((2) (add-sub 'x+y value-x value-x result)) ; simple addition
601 ((4) (let ((tmp (alloc-value (bytes->type
602 (length (value-bytes result))))))
603 (add-sub 'x+y value-x value-x tmp)
604 (add-sub 'x+y tmp tmp result))))
605 ;; if not, we have to do it the long way
607 ;; finds the appropriate multiplication routine (depending on the
608 ;; length of each argument) and turns the multiplication into a
609 ;; call to the routine
610 ;; the arguments must be the asts of the 2 arguments (x and y) and
611 ;; the type of the returned value, since these are what are
612 ;; expected by the call function
614 ;; to avoid code duplication (i.e. habing a routine for 8 by 16
615 ;; multplication and one for 16 by 8), the longest operand goes first
624 (string->symbol ; mul8_8, mul8_16, etc
625 ;; for now, only unsigned multiplications are supported
627 (number->string (* lx 8)) "_"
628 (number->string (* ly 8))))
633 (define (mod x y result)
634 (let ((bytes1 (value-bytes x)) ;; TODO common pattern, abstract
635 (bytes2 (value-bytes y))
636 (bytes3 (value-bytes result)))
637 ;; if y is a literal and a power of 2, we can do a bitwise and
638 (let ((y0 (car bytes2)))
639 (if (and (byte-lit? y0)
640 (let ((x (/ (log (value->int y)) (log 2))))
642 ;; bitwise and with y - 1
643 (begin (let* ((l (bytes->type (length bytes2)))
644 (tmp (alloc-value l)))
645 (move-value (int->value (- (value->int y) 1)
646 (bytes->type (length bytes2)))
648 (bitwise 'x&y x tmp result)))
649 ;; TODO for the general case, try to optimise the case where division and modulo are used together, since they are used together
650 (error "modulo is only supported for powers of 2")))))
652 (define (shift id x y type result)
653 (let ((bytes1 (value-bytes (extend (expression x) type)))
654 (bytes2 (value-bytes (extend (expression y) type)))
655 (bytes3 (value-bytes result)))
656 ;; if the second argument is a literal and a multiple of 8, we can simply
657 ;; move the bytes around
658 (let ((y0 (car bytes2)))
659 (if (and (byte-lit? y0) (= (modulo (byte-lit-val y0) 8) 0))
660 ;; uses only the first byte, but shifting by 255 should be enough
661 (let ((n (/ (byte-lit-val y0) 8))
662 (l (length bytes1))) ; same length for x and result
669 (new-byte-lit 0) ; padding
672 (loop (+ i 1) (if (< i n) x (cdr x))))
674 (move (if (<= l (+ i n))
676 (list-ref x (+ i n)))
678 (loop (+ i 1) x))))))
682 (case id ((x<<y) "l") ((x>>y) "r"))
683 (number->string (* 8 (length bytes1)))))
688 ;; bitwise and, or, xor
689 ;; TODO similar to add-sub and probably others, abstract multi-byte ops
690 ;; TODO use bit set, clear and toggle for some shortcuts
691 (define (bitwise id value1 value2 result)
692 (let loop ((bytes1 (value-bytes value1))
693 (bytes2 (value-bytes value2))
694 (bytes3 (value-bytes result)))
695 (if (not (null? bytes3))
697 (emit (new-instr (case id ((x&y) 'and) ((|x\|y|) 'ior) ((x^y) 'xor))
698 (car bytes1) (car bytes2) (car bytes3)))
699 (loop (cdr bytes1) (cdr bytes2) (cdr bytes3))))))
701 (define (bitwise-negation x result)
702 (let loop ((bytes1 (value-bytes x))
703 (bytes2 (value-bytes result)))
704 (if (not (null? bytes2))
705 (begin (emit (new-instr 'not (car bytes1) #f (car bytes2)))
706 (loop (cdr bytes1) (cdr bytes2))))))
708 (define (do-delayed-post-incdec)
709 (if (not (null? delayed-post-incdec))
710 (let* ((ast (car delayed-post-incdec))
711 (type (expr-type ast))
714 (set! delayed-post-incdec (cdr delayed-post-incdec))
715 (let ((x (subast1 ast)))
717 (error "assignment target must be a variable"))
718 (let ((result (def-variable-value (ref-def-var x))))
719 ;; clobbers the original value, which is fine, since it
720 ;; was moved somewhere else for the expression
721 (add-sub (if (eq? id 'x++) 'x+y 'x-y)
725 (do-delayed-post-incdec))))
727 ;; calculates an address in an array by adding the base pointer and the offset
728 ;; and puts the answer in FSR0 so that changes to INDF0 change the array
730 (define (calculate-address ast)
731 ;; if we have a special FSR variable, no need to calculate the address as
732 ;; it is already in the register
733 (let ((base-name (array-base-name ast))
734 (index? (eq? (op-id (oper-op ast)) 'index)))
735 (if (not (and base-name
736 (memq base-name fsr-variables)))
737 (let ((base (expression (subast1 ast)))
738 ;; NB: actual addresses are 12 bits, not 16
739 (address (new-value (list (get-register FSR0L)
740 (get-register FSR0H)))))
742 ;; we pad up to int16, since it is the size of the addresses
743 (let ((value1 (extend base 'int16))
744 (value2 (extend (expression (subast2 ast)) 'int16)))
745 (add-sub 'x+y value1 value2 address))
746 ;; no offset with simple dereference
747 (move-value base address)))
748 (error "You used the array index syntax with a FSR variable, didn't you? I told you not to."))))
750 (define (array-base-name ast)
751 ;; returns #f if the lhs is not a direct variable reference
752 ;; eg : *x++ ; (x+y)* ; ...
753 (let ((lhs (subast1 ast)))
755 (def-id (ref-def-var lhs)))))
757 (define (get-indf base-name)
758 ;; INDF0 is not here, since it's already used for regular array accesses
759 (if (eq? base-name 'SIXPIC_FSR1)
760 (new-value (list (get-register INDF1)))
761 (new-value (list (get-register INDF2)))))
764 (let* ((type (expr-type ast))
767 (let ((op (oper-op ast)))
769 (define (arith-op id x y value-x value-y) ;; TODO find a way not to pass x and y as well
770 ;; since code generation does not accept literals as first
771 ;; arguments unless both arguments are, if this is the
772 ;; case, we either have to swap the arguments (if
773 ;; possible) or allocate the argument somewhere
774 (if (and (literal? x) (not (literal? y)))
775 (if (memq id '(x+y x*y x&y |x\|y| x^y))
776 ;; the operator is commutative, we can swap the args
778 (set! value-x value-y)
780 ;; the operator is not commutative, we have to
781 ;; allocate the first argument somewhere
782 (let ((dest (alloc-value (expr-type x))))
783 (move-value value-x dest)
784 (set! value-x dest))))
785 (let ((result (alloc-value type)))
787 ((x+y x-y) (add-sub id value-x value-y result))
788 ((x*y) (mul x y type result))
789 ((x/y) (error "division not implemented yet")) ;; TODO optimize for powers of 2
790 ((x%y) (mod value-x value-y result))
791 ((x&y |x\|y| x^y) (bitwise id value-x value-y result))
792 ((x>>y x<<y) (shift id x y type result)))
799 (let ((x (extend (expression (subast1 ast))
801 (result (alloc-value type)))
807 ((~x) (bitwise-negation x result)))
810 (let ((x (subast1 ast)))
812 (error "assignment target must be a variable"))
813 (let ((result (def-variable-value (ref-def-var x))))
814 (add-sub (if (eq? id '++x) 'x+y 'x-y)
820 (let ((x (subast1 ast)))
822 (error "assignment target must be a variable"))
823 ;; push-delayed-post-incdec moves the original value
824 ;; somewhere else, and returns that location
825 (push-delayed-post-incdec ast)))
827 ;; if it's a FSR variable, no adress to set
828 (let ((base-name (array-base-name ast)))
829 (if (and (ref? (subast1 ast)) ; do we have a FSR variable ?
831 (memq base-name fsr-variables))
833 (begin (calculate-address ast)
834 (new-value (list (get-register INDF0)))))))
836 (error "unary operation error" id))))
840 ((x+y x-y x*y x/y x%y x&y |x\|y| x^y x>>y x<<y)
841 (let* ((x (subast1 ast))
843 (let* ((value-x (extend (expression x) type))
844 (value-y (extend (expression y) type)))
845 (arith-op id x y value-x value-y))))
847 (let* ((x (subast1 ast))
849 (value-y (expression y)))
853 (let ((ext-value-y (extend value-y type)))
854 (let ((result (def-variable-value (ref-def-var x))))
855 (move-value value-y result)
857 ;; lhs is a pointer dereference
858 ((and (oper? x) (eq? (op-id (oper-op x)) '*x))
859 (let ((base-name (array-base-name x))
860 (val (car (value-bytes value-y))))
861 (if (and (ref? (subast1 x))
863 (memq base-name fsr-variables))
864 (move val (car (value-bytes (get-indf base-name))))
865 (begin (calculate-address x)
866 (move val (get-register INDF0))))))
867 ;; lhs is an indexed array access
868 ((and (oper? x) (eq? (op-id (oper-op x)) 'index))
869 ;; note: this will throw an error if SIXPIC_FSR{1,2} is
870 ;; used. this is by design, as it would clobber the value
871 ;; in the FSR registers, which goes against their purpose
872 ;; of storing a user-chosen value
873 (calculate-address x)
874 ;; this section of memory is a byte array, only the lsb
876 (move (car (value-bytes value-y)) (get-register INDF0)))
877 (else (error "assignment target must be a variable or an array slot")))))
879 ;; note: throws an error if given SIXPIC_FSR{1,2}, see above
880 (calculate-address ast)
881 (new-value (list (get-register INDF0))))
882 ((x+=y x-=y x*=y x/=y x%=y x&=y |x\|=y| x^=y x>>=y x<<=y)
883 (let* ((x (subast1 ast))
885 (value-x (extend (expression x) type))
886 (value-y (extend (expression y) type)))
887 (move-value (arith-op (case id
901 ((x==y x!=y x>y x>=y x<y x<=y x&&y |x\|\|y|) ;; TODO !x, have it also, maybe do this check before the op1-2-3 test to catch them all ?
906 (result (alloc-value type)))
908 (move-value (int->value 1 type) result)
911 (move-value (int->value 0 type) result)
914 (test-expression ast bb-true bb-false)
918 (error "binary operation error" id))))
925 (result (alloc-value type)))
927 (move-value (expression (subast2 ast)) result)
930 (move-value (expression (subast3 ast)) result)
933 (test-expression (subast1 ast) bb-true bb-false)
937 ;; generates the cfg for a predefined routine and adds it to the current cfg
938 (define (include-predefined-routine proc)
939 (define (get-bytes var)
940 (value-bytes (def-variable-value var)))
941 (set! current-def-proc proc)
942 (set! current-def-proc-bb-id 0)
943 (let ((old-proc current-def-proc) ; if we were already defining a procedure, save it
945 (params (def-procedure-params proc))
946 (value (def-procedure-value proc))
948 (entry (new-bb))) ;; TODO insipired from def-procedure, abstract
949 (def-procedure-entry-set! proc entry)
954 (let* ((x (get-bytes (car params)))
957 (z0 (car (value-bytes value))))
958 ;; TODO use postinc/dec and co
959 (emit (new-instr 'tblrd x0 x1 #f))
960 (move (get-register TABLAT) z0)))
963 (let ((x (car params))
965 (z (value-bytes value)))
966 ;; TODO implement literal multiplication in the simulator
967 (emit (new-instr 'mul (car (get-bytes x)) (car (get-bytes y)) #f))
968 (move (get-register PRODL) (car z)))) ; lsb
971 (let* ((x (get-bytes (car params)))
974 (y (get-bytes (cadr params)))
976 (z (value-bytes value))
979 (emit (new-instr 'mul y0 x1 #f))
980 (move (get-register PRODL) z1)
982 (emit (new-instr 'mul y0 x0 #f))
983 (move (get-register PRODL) z0)
984 (emit (new-instr 'add (get-register PRODH) z1 z1))))
987 (let* ((x (get-bytes (car params)))
990 (y (get-bytes (cadr params)))
993 (z (value-bytes value))
997 (emit (new-instr 'mul x0 y0 #f))
998 (move (get-register PRODH) z1)
999 (move (get-register PRODL) z0)
1001 (emit (new-instr 'mul x0 y1 #f))
1002 (emit (new-instr 'add (get-register PRODL) z1 z1))
1004 (emit (new-instr 'mul x1 y0 #f))
1005 (emit (new-instr 'add (get-register PRODL) z1 z1))))
1008 (let* ((x (get-bytes (car params)))
1013 (y (get-bytes (cadr params)))
1016 (z (value-bytes value))
1022 (emit (new-instr 'mul x0 y0 #f))
1023 (move (get-register PRODH) z1)
1024 (move (get-register PRODL) z0)
1026 (emit (new-instr 'mul x1 y1 #f))
1027 (move (get-register PRODH) z3)
1028 (move (get-register PRODL) z2)
1030 (emit (new-instr 'mul x1 y0 #f))
1031 (emit (new-instr 'add (get-register PRODL) z1 z1))
1032 (emit (new-instr 'addc (get-register PRODH) z2 z2))
1033 (emit (new-instr 'addc z3 (new-byte-lit 0) z3))
1035 (emit (new-instr 'mul x0 y1 #f))
1036 (emit (new-instr 'add (get-register PRODL) z1 z1))
1037 (emit (new-instr 'addc (get-register PRODH) z2 z2))
1038 (emit (new-instr 'addc z3 (new-byte-lit 0) z3))
1040 (emit (new-instr 'mul x2 y0 #f))
1041 (emit (new-instr 'add (get-register PRODL) z2 z2))
1042 (emit (new-instr 'addc (get-register PRODH) z3 z3))
1044 (emit (new-instr 'mul x2 y1 #f))
1045 (emit (new-instr 'add (get-register PRODL) z3 z3))
1047 (emit (new-instr 'mul x3 y0 #f))
1048 (emit (new-instr 'add (get-register PRODL) z3 z3))))
1050 ((shl8 shr8 shl16 shr16 shl32 shr32)
1051 (let* ((id (symbol->string id))
1052 (left-shift? (eq? (string-ref id 2) #\l))
1053 (x (def-variable-value (car params)))
1054 (y (def-variable-value (cadr params)))
1055 (y0 (car (value-bytes y))) ; shift by 255 is enough
1056 (bytes-z (value-bytes value))
1059 (after-bb (new-bb)))
1060 (move-value x value)
1061 (gen-goto start-bb) ; fall through to the loop
1063 ;; if we'd shift of 0, we're done
1064 (add-succ bb loop-bb) ; false
1065 (add-succ bb after-bb) ; true
1066 (emit (new-instr 'x==y y0 (new-byte-lit 0) #f))
1068 ;; shift for each byte, since it's a rotation using the carry,
1069 ;; what goes out from the low bytes gets into the high bytes
1070 (for-each (lambda (b)
1071 (emit (new-instr (if left-shift? 'shl 'shr)
1073 (if left-shift? bytes-z (reverse bytes-z)))
1074 ;; clear the carry, to avoid reinserting it in the register
1075 (emit (new-instr 'set
1076 (get-register STATUS)
1079 (emit (new-instr 'sub y0 (new-byte-lit 1) y0))
1082 (return-with-no-new-bb proc)
1083 (set! current-def-proc old-proc)
1084 (resolve-all-gotos entry (list-named-bbs entry))
1088 (let* ((def-proc (call-def-proc ast))
1089 (arguments (ast-subasts ast))
1090 (parameters (def-procedure-params def-proc)))
1091 (if (and (memq (def-id def-proc) predefined-routines)
1092 (not (def-procedure-entry def-proc)))
1093 ;; it's the first time we encounter this predefined routine, generate
1094 ;; the corresponding cfg
1095 (include-predefined-routine def-proc))
1096 ;; argument number check
1097 (if (not (= (length arguments) (length parameters))) ;; TODO check at parse time ?
1098 (error (string-append "wrong number of arguments given to function "
1099 (symbol->string (def-id def-proc)) ": "
1100 (number->string (length arguments)) " given, "
1101 (number->string (length parameters))
1103 (for-each (lambda (ast def-var)
1104 (let ((value (expression ast)))
1105 (let ((ext-value (extend value (def-variable-type def-var))))
1106 (move-value value (def-variable-value def-var)))))
1109 (emit (new-call-instr def-proc))
1110 (let ((value (def-procedure-value def-proc)))
1111 (let ((result (alloc-value (def-procedure-type def-proc))))
1112 (move-value value result)
1115 ;; call to a predefined routine, a simple wrapper to an ordinary call
1116 ;; name is a symbol, args is a list of the arguments
1117 (define (routine-call name args type result)
1118 (cond ((memp (lambda (x) (eq? (def-id x) name))
1120 => (lambda (x) (move-value (call (new-call args type (car x)))
1122 (else (error "unknown routine: " name))))
1124 ;; remplaces empty bbs by bbs with a single goto, to have a valid CFG for
1126 (define (fill-empty-bbs) ;; TODO is this legitimate ? its not active for the moment, see if it ever is
1127 (for-each (lambda (x) (if (null? (bb-rev-instrs x))
1129 (emit (new-instr 'goto #f #f #f)))))
1137 (define (print-cfg-bbs cfg)
1138 (for-each (lambda (bb)
1139 (pp (list "BB:" (bb-label-num bb)
1140 "SUCCS" (map bb-label-num (bb-succs bb))
1141 "PREDS" (map bb-label-num (bb-preds bb))
1142 (cond ((null? (bb-rev-instrs bb)) "EMPTY")
1143 ((and (null? (cdr (bb-rev-instrs bb)))
1144 (eq? (instr-id (car (bb-rev-instrs bb))) 'goto)) "SINGLE GOTO")