mescc: Support literal .byte in asm ().
* module/language/c99/compiler.mes (expr->arg): Handle array-ref (int only). (byte->hex, asm->hex): New functions. (statement->text+symbols+locals): Use it to implement asm ().
This commit is contained in:
parent
ea7e3f4952
commit
b93d5188ea
|
@ -93,6 +93,17 @@
|
||||||
((p-expr (fixed ,value)) (string->number value))
|
((p-expr (fixed ,value)) (string->number value))
|
||||||
((p-expr (string ,string)) ((global-ref symbols) string))
|
((p-expr (string ,string)) ((global-ref symbols) string))
|
||||||
((p-expr (ident ,name)) ((ident-ref locals) name))
|
((p-expr (ident ,name)) ((ident-ref locals) name))
|
||||||
|
|
||||||
|
((array-ref (p-expr (fixed ,value)) (p-expr (ident ,name)))
|
||||||
|
(let ((value (string->number value)))
|
||||||
|
(lambda (s t d)
|
||||||
|
(append
|
||||||
|
((ident->base locals) name)
|
||||||
|
(i386:local-assign (assoc-ref locals name) value)
|
||||||
|
(i386:mem-byte->accu)
|
||||||
|
(i386:push-accu) ;; hmm
|
||||||
|
))))
|
||||||
|
|
||||||
(_
|
(_
|
||||||
(format (current-error-port) "SKIP expr->arg=~a\n" o)
|
(format (current-error-port) "SKIP expr->arg=~a\n" o)
|
||||||
0))))
|
0))))
|
||||||
|
@ -136,6 +147,15 @@
|
||||||
(define (text->list o)
|
(define (text->list o)
|
||||||
(append-map (lambda (f) (f '() 0 0)) o))
|
(append-map (lambda (f) (f '() 0 0)) o))
|
||||||
|
|
||||||
|
(define (byte->hex o)
|
||||||
|
(string->number (string-drop o 2) 16))
|
||||||
|
|
||||||
|
(define (asm->hex o)
|
||||||
|
(let ((prefix ".byte "))
|
||||||
|
(if (not (string-prefix? prefix o)) (begin (stderr "SKIP:~a\n" o)'())
|
||||||
|
(let ((s (string-drop o (string-length prefix))))
|
||||||
|
(map byte->hex (string-split s #\space))))))
|
||||||
|
|
||||||
(define (statement->text+symbols+locals text+symbols+locals)
|
(define (statement->text+symbols+locals text+symbols+locals)
|
||||||
(lambda (o)
|
(lambda (o)
|
||||||
;;(stderr "S=~a\n" o)
|
;;(stderr "S=~a\n" o)
|
||||||
|
@ -148,9 +168,18 @@
|
||||||
;; (stderr " tsl=~a\n" text+symbols+locals)
|
;; (stderr " tsl=~a\n" text+symbols+locals)
|
||||||
;; (stderr " locals=~s\n" locals)
|
;; (stderr " locals=~s\n" locals)
|
||||||
(pmatch o
|
(pmatch o
|
||||||
|
|
||||||
((expr-stmt (fctn-call (p-expr (ident ,name))
|
((expr-stmt (fctn-call (p-expr (ident ,name))
|
||||||
(expr-list (p-expr (string ,string)))))
|
(expr-list (p-expr (string ,string)))))
|
||||||
;;(stderr "S1 string=~a\n" string)
|
;;(stderr "S1 string=~a\n" string)
|
||||||
|
(if (equal? name "asm")
|
||||||
|
(make-text+symbols+locals
|
||||||
|
(append
|
||||||
|
text
|
||||||
|
(list (lambda (s t d) (asm->hex string))))
|
||||||
|
symbols
|
||||||
|
locals)
|
||||||
|
|
||||||
(make-text+symbols+locals
|
(make-text+symbols+locals
|
||||||
(append text
|
(append text
|
||||||
(list (lambda (s t d)
|
(list (lambda (s t d)
|
||||||
|
@ -159,7 +188,7 @@
|
||||||
statement-offset)
|
statement-offset)
|
||||||
(+ d (data-offset string s))))))
|
(+ d (data-offset string s))))))
|
||||||
(append symbols (list (string->symbols string)))
|
(append symbols (list (string->symbols string)))
|
||||||
locals))
|
locals)))
|
||||||
|
|
||||||
((expr-stmt (fctn-call (p-expr (ident ,name)) (expr-list . ,expr-list)))
|
((expr-stmt (fctn-call (p-expr (ident ,name)) (expr-list . ,expr-list)))
|
||||||
;;(stderr "S1 expr-list=~a\n" expr-list)
|
;;(stderr "S1 expr-list=~a\n" expr-list)
|
||||||
|
@ -253,7 +282,7 @@
|
||||||
|
|
||||||
((expr-stmt (assn-expr (p-expr (ident ,name)) (op _) (p-expr (fixed ,value))))
|
((expr-stmt (assn-expr (p-expr (ident ,name)) (op _) (p-expr (fixed ,value))))
|
||||||
|
|
||||||
(stderr "RET LOCAL[~a]: ~a\n" name (assoc-ref locals name))
|
;;(stderr "RET LOCAL[~a]: ~a\n" name (assoc-ref locals name))
|
||||||
|
|
||||||
(let ((value (string->number value)))
|
(let ((value (string->number value)))
|
||||||
(make-text+symbols+locals
|
(make-text+symbols+locals
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
i386:local->accu
|
i386:local->accu
|
||||||
i386:local->base
|
i386:local->base
|
||||||
i386:mem-byte->accu
|
i386:mem-byte->accu
|
||||||
|
i386:push-accu
|
||||||
i386:puts
|
i386:puts
|
||||||
i386:ref-global
|
i386:ref-global
|
||||||
i386:ref-local
|
i386:ref-local
|
||||||
|
|
Loading…
Reference in a new issue