2016-12-17 21:34:43 +00:00
|
|
|
;;; lang/c99/body.scm
|
|
|
|
;;;
|
2017-01-08 00:06:09 +00:00
|
|
|
;;; Copyright (C) 2015-2017 Matthew R. Wette
|
2016-12-17 21:34:43 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
;; @section The C99 Parser Body
|
|
|
|
;; This code provides the front end to the C99 parser, including the lexical
|
|
|
|
;; analyzer and optional CPP processing. In @code{'file} mode the lex'er
|
|
|
|
;; passes CPP statements to the parser; in @code{'code} mode the lex'er
|
|
|
|
;; parses and evaluates the CPP statements. In the case of included files
|
|
|
|
;; (e.g., via @code{#include <file.h>}) the include files are parsed if
|
|
|
|
;; not in the @code{td-dict}. The @code{td-dict} is a dictionary that maps
|
|
|
|
;; include file names to typedefs (e.g., @code{stdio.h} to @code{FILE}).
|
2016-12-17 21:34:43 +00:00
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
(use-modules ((srfi srfi-9) #:select (define-record-type)))
|
|
|
|
(use-modules ((sxml xpath) #:select (sxpath)))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
(define c99-std-dict
|
|
|
|
'(("alloca.h")
|
2016-12-26 03:31:09 +00:00
|
|
|
("complex.h" "complex" "imaginary")
|
|
|
|
("ctype.h")
|
|
|
|
("fenv.h" "fenv_t" "fexcept_t")
|
|
|
|
("float.h" "float_t")
|
2016-12-17 21:34:43 +00:00
|
|
|
("inttypes.h"
|
|
|
|
"int8_t" "uint8_t" "int16_t" "uint16_t" "int32_t" "uint32_t"
|
|
|
|
"int64_t" "uint64_t" "uintptr_t" "intptr_t" "intmax_t" "uintmax_t"
|
|
|
|
"int_least8_t" "uint_least8_t" "int_least16_t" "uint_least16_t"
|
|
|
|
"int_least32_t" "uint_least32_t" "int_least64_t" "uint_least64_t"
|
|
|
|
"imaxdiv_t")
|
2016-12-26 03:31:09 +00:00
|
|
|
("limits.h")
|
|
|
|
("math.h")
|
|
|
|
("regex.h" "regex_t" "regmatch_t")
|
|
|
|
("setjmp.h" "jmp_buf")
|
|
|
|
("signal.h" "sig_atomic_t")
|
|
|
|
("stdarg.h" "va_list")
|
|
|
|
("stddef.h" "ptrdiff_t" "size_t" "wchar_t")
|
2016-12-17 21:34:43 +00:00
|
|
|
("stdint.h"
|
|
|
|
"int8_t" "uint8_t" "int16_t" "uint16_t" "int32_t" "uint32_t"
|
|
|
|
"int64_t" "uint64_t" "uintptr_t" "intptr_t" "intmax_t" "uintmax_t"
|
|
|
|
"int_least8_t" "uint_least8_t" "int_least16_t" "uint_least16_t"
|
|
|
|
"int_least32_t" "uint_least32_t" "int_least64_t" "uint_least64_t")
|
2016-12-26 03:31:09 +00:00
|
|
|
("stdio.h" "FILE" "size_t")
|
2016-12-17 21:34:43 +00:00
|
|
|
("stdlib.h" "div_t" "ldiv_t" "lldiv_t" "wchar_t")
|
2017-01-08 00:06:09 +00:00
|
|
|
("string.h" "size_t")
|
2017-01-11 02:56:00 +00:00
|
|
|
("strings.h" "size_t")
|
2016-12-26 03:31:09 +00:00
|
|
|
("time.h" "time_t" "clock_t" "size_t")
|
|
|
|
("unistd.h" "size_t" "ssize_t" "div_t" "ldiv_t")
|
2016-12-17 21:34:43 +00:00
|
|
|
("wchar.h" "wchar_t" "wint_t" "mbstate_t" "size_t")
|
|
|
|
("wctype.h" "wctrans_t" "wctype_t" "wint_t")
|
|
|
|
))
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
;; @subsubsection CPP if-then-else Logic Block (ITLB) Processing
|
|
|
|
;; The parser needs to have a "CPI" (CPP processing info) stack to deal with
|
|
|
|
;; types (re)defined in multiple branches of a #if...#endif statement chain.
|
|
|
|
;; If we are in "code" mode then we may be skipping code so need to track
|
|
|
|
;; when to shift and when not to.
|
|
|
|
;;
|
|
|
|
;; The state is contained in a stack @code{ppxs}
|
|
|
|
;; States are
|
|
|
|
;; @table code
|
|
|
|
;; @item skip-done
|
|
|
|
;; skip code
|
|
|
|
;; @item skip-look
|
|
|
|
;; skipping code, but still looking for true at this level
|
|
|
|
;; @item keep
|
|
|
|
;; keep code
|
|
|
|
;; @item skip1-pop
|
|
|
|
;; skip one token and pop skip-stack
|
|
|
|
;; @end table
|
|
|
|
;; Also, if we want to pass on all the sections of an ITLB to the parser
|
|
|
|
;; we need to remove typedef names because a typedef may appear multiple
|
|
|
|
;; times, as in
|
|
|
|
;; @example
|
|
|
|
;; #ifdef SIXTYFOURBIT
|
|
|
|
;; typedef short int32_t;
|
|
|
|
;; #else
|
|
|
|
;; typedef long int32_t;
|
|
|
|
;; #endif
|
|
|
|
;; @end example
|
|
|
|
;; @noindent
|
|
|
|
;; To achieve this we keep a stack of valid typedefs. On @code{#if} we push,
|
|
|
|
;; on @code{#elif} we shift (i.e., pop, then push) and on @code{#endif} we pop.
|
|
|
|
;;
|
|
|
|
;; The grammar looks like
|
|
|
|
;; @example
|
|
|
|
;; (code
|
|
|
|
;; ("if" cond code "endif")
|
|
|
|
;; ("if" cond code "else" code "endif")
|
|
|
|
;; ("if" cond code elif-list "endif")
|
|
|
|
;; ("if" cond code elif-list "else" code "endif")
|
|
|
|
;; (other))
|
|
|
|
;; (elif-list
|
|
|
|
;; ("elif" cond code)
|
|
|
|
;; (elif-list "elif" cond code))
|
|
|
|
;; @end example
|
|
|
|
;; @noindent
|
|
|
|
|
2017-01-06 16:03:41 +00:00
|
|
|
(define-record-type cpi
|
|
|
|
(make-cpi-1)
|
|
|
|
cpi?
|
|
|
|
(debug cpi-debug set-cpi-debug!) ; debug #t #f
|
|
|
|
(defines cpi-defs set-cpi-defs!) ; #defines
|
|
|
|
(incdirs cpi-incs set-cpi-incs!) ; #includes
|
|
|
|
(tn-dict cpi-tynd set-cpi-tynd!) ; typename dict (("<x>" foo_t ..
|
|
|
|
(ptl cpi-ptl set-cpi-ptl!) ; parent typename list
|
|
|
|
(ctl cpi-ctl set-cpi-ctl!) ; current typename list
|
|
|
|
)
|
|
|
|
|
2016-12-17 21:34:43 +00:00
|
|
|
(define (make-cpi debug defines incdirs tn-dict)
|
|
|
|
(let* ((cpi (make-cpi-1)))
|
2017-01-08 00:06:09 +00:00
|
|
|
(set-cpi-debug! cpi debug) ; print states debug
|
|
|
|
(set-cpi-defs! cpi defines) ; list of define strings??
|
|
|
|
(set-cpi-incs! cpi incdirs) ; list of include dir's
|
|
|
|
(set-cpi-tynd! cpi tn-dict) ; typename dict by include-file name
|
|
|
|
(set-cpi-ptl! cpi '()) ; list of lists of typedef strings
|
|
|
|
(set-cpi-ctl! cpi '()) ; list of typedef strings
|
2016-12-17 21:34:43 +00:00
|
|
|
cpi))
|
|
|
|
|
|
|
|
(define *info* (make-fluid #f))
|
|
|
|
|
|
|
|
;; given tyns
|
|
|
|
;; cadr is next level
|
|
|
|
;; caar is list of sibs
|
|
|
|
;; search (caar car tyns), then (caar cadr tyns), then ...
|
|
|
|
|
|
|
|
;; @deffn typename? name
|
|
|
|
;; Called by lexer to determine if symbol is a typename.
|
|
|
|
;; Check current sibling for each generation.
|
|
|
|
(define (typename? name)
|
|
|
|
(let ((cpi (fluid-ref *info*)))
|
|
|
|
(if (member name (cpi-ctl cpi)) #t
|
|
|
|
(let iter ((ptl (cpi-ptl cpi)))
|
|
|
|
(if (null? ptl) #f
|
|
|
|
(if (member name (car ptl)) #t
|
|
|
|
(iter (cdr ptl))))))))
|
|
|
|
|
|
|
|
;; @deffn add-typename name
|
|
|
|
;; Helper for @code{save-typenames}.
|
|
|
|
(define (add-typename name)
|
|
|
|
(let ((cpi (fluid-ref *info*)))
|
2017-01-08 00:06:09 +00:00
|
|
|
(set-cpi-ctl! cpi (cons name (cpi-ctl cpi)))))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
|
|
|
(define (cpi-push) ;; on #if
|
|
|
|
(let ((cpi (fluid-ref *info*)))
|
|
|
|
(set-cpi-ptl! cpi (cons (cpi-ctl cpi) (cpi-ptl cpi)))
|
2017-01-08 00:06:09 +00:00
|
|
|
(set-cpi-ctl! cpi '())))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
|
|
|
(define (cpi-shift) ;; on #elif #else
|
|
|
|
(set-cpi-ctl! (fluid-ref *info*) '()))
|
|
|
|
|
|
|
|
(define (cpi-pop) ;; on #endif
|
|
|
|
(let ((cpi (fluid-ref *info*)))
|
|
|
|
(set-cpi-ctl! cpi (append (cpi-ctl cpi) (car (cpi-ptl cpi))))
|
2017-01-08 00:06:09 +00:00
|
|
|
(set-cpi-ptl! cpi (cdr (cpi-ptl cpi)))))
|
2017-01-01 15:54:21 +00:00
|
|
|
|
2016-12-17 21:34:43 +00:00
|
|
|
;; @deffn find-new-typenames decl
|
|
|
|
;; Helper for @code{save-typenames}.
|
|
|
|
;; Given declaration return a list of new typenames (via @code{typedef}).
|
|
|
|
(define (find-new-typenames decl)
|
|
|
|
|
|
|
|
;; like declr->ident in util2.scm
|
|
|
|
(define (declr->id-name declr)
|
|
|
|
(case (car declr)
|
|
|
|
((ident) (sx-ref declr 1))
|
|
|
|
((init-declr) (declr->id-name (sx-ref declr 1)))
|
|
|
|
((comp-declr) (declr->id-name (sx-ref declr 1)))
|
|
|
|
((array-of) (declr->id-name (sx-ref declr 1)))
|
|
|
|
((ptr-declr) (declr->id-name (sx-ref declr 2)))
|
|
|
|
((ftn-declr) (declr->id-name (sx-ref declr 1)))
|
|
|
|
((scope) (declr->id-name (sx-ref declr 1)))
|
|
|
|
(else (error "coding bug: " declr))))
|
|
|
|
|
|
|
|
(let* ((spec (sx-ref decl 1))
|
|
|
|
(stor (sx-find 'stor-spec spec))
|
|
|
|
(id-l (sx-ref decl 2)))
|
|
|
|
(if (and stor (eqv? 'typedef (caadr stor)))
|
|
|
|
(let iter ((res '()) (idl (cdr id-l)))
|
|
|
|
(if (null? idl) res
|
|
|
|
(iter (cons (declr->id-name (sx-ref (car idl) 1)) res)
|
|
|
|
(cdr idl))))
|
|
|
|
'())))
|
|
|
|
|
|
|
|
;; @deffn save-typenames decl
|
|
|
|
;; Save the typenames for the lexical analyzer and return the decl.
|
|
|
|
(define (save-typenames decl)
|
|
|
|
;; This finds typenames using @code{find-new-typenames} and adds via
|
|
|
|
;; @code{add-typename}. Then return the decl.
|
|
|
|
(for-each add-typename (find-new-typenames decl))
|
|
|
|
decl)
|
|
|
|
|
|
|
|
;; ------------------------------------------------------------------------
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
(define (p-err . args)
|
|
|
|
(apply throw 'c99-error args))
|
|
|
|
|
2016-12-17 21:34:43 +00:00
|
|
|
;; @deffn read-cpp-line ch => #f | (cpp-xxxx)??
|
2017-01-11 16:14:45 +00:00
|
|
|
;; Given if ch is #\# read a cpp-statement.
|
|
|
|
;; The standard implies that comments are tossed here but we keep them
|
|
|
|
;; so that they can end up in the pretty-print output.
|
2016-12-17 21:34:43 +00:00
|
|
|
(define (read-cpp-line ch)
|
|
|
|
(if (not (eq? ch #\#)) #f
|
|
|
|
(let iter ((cl '()) (ch (read-char)))
|
|
|
|
(cond
|
2017-01-08 00:06:09 +00:00
|
|
|
((eq? ch #\newline) (unread-char ch) (list->string (reverse cl)))
|
2016-12-17 21:34:43 +00:00
|
|
|
((eq? ch #\\)
|
|
|
|
(let ((c2 (read-char)))
|
|
|
|
(if (eq? c2 #\newline)
|
|
|
|
(iter cl (read-char))
|
|
|
|
(iter (cons* c2 ch cl) (read-char)))))
|
|
|
|
((eq? ch #\/) ;; swallow comments, event w/ newlines
|
|
|
|
(let ((c2 (read-char)))
|
|
|
|
(cond
|
|
|
|
((eqv? c2 #\*)
|
|
|
|
(let iter2 ((cl2 (cons* #\* #\/ cl)) (ch (read-char)))
|
|
|
|
(cond
|
|
|
|
((eq? ch #\*)
|
|
|
|
(let ((c2 (read-char)))
|
|
|
|
(if (eqv? c2 #\/)
|
|
|
|
(iter (cons* #\/ #\* cl2) (read-char)) ;; keep comment
|
|
|
|
(iter2 (cons #\* cl2) c2))))
|
|
|
|
(else
|
|
|
|
(iter2 (cons ch cl2) (read-char))))))
|
|
|
|
(else
|
|
|
|
(iter (cons #\/ cl) c2)))))
|
|
|
|
(else (iter (cons ch cl) (read-char)))))))
|
|
|
|
|
|
|
|
;; @deffn find-file-in-dirl file dirl => path
|
|
|
|
(define (find-file-in-dirl file dirl)
|
|
|
|
(let iter ((dirl dirl))
|
|
|
|
(if (null? dirl) #f
|
|
|
|
(let ((p (string-append (car dirl) "/" file)))
|
|
|
|
(if (access? p R_OK) p (iter (cdr dirl)))))))
|
|
|
|
|
|
|
|
(define (def-xdef? name mode)
|
|
|
|
(eqv? mode 'code))
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
;; @deffn gen-c-lexer [#:mode mode] [#:xdef? proc] => procedure
|
|
|
|
;; Generate a context-sensitive lexer for the C99 language. The generated
|
|
|
|
;; lexical analyzer reads and passes comments and optionally CPP statements
|
|
|
|
;; to the parser. The keyword argument @var{mode} will determine if CPP
|
|
|
|
;; statements are passed (@code{'file} mode) or parsed and executed
|
|
|
|
;; (@code{'file} mode) as described above. Comments will be passed as
|
|
|
|
;; ``line'' comments or ``lone'' comments: lone comments appear on a line
|
|
|
|
;; without code. The @code{xdef?} keyword argument allows user to pass
|
|
|
|
;; a predicate which determines whether CPP symbols in code are expanded.
|
|
|
|
;; The default predicate is
|
|
|
|
;; @example
|
|
|
|
;; (define (def-xdef? mode name) (eqv? mode 'code))
|
|
|
|
;; @end example
|
2016-12-17 21:34:43 +00:00
|
|
|
(define gen-c-lexer
|
|
|
|
;; This gets ugly in order to handle cpp.
|
|
|
|
;;.need to add support for num's w/ letters like @code{14L} and @code{1.3f}.
|
|
|
|
;; todo: I think there is a bug wrt the comment reader because // ... \n
|
|
|
|
;; will end up in same mode... so after
|
|
|
|
;; int x; // comment
|
|
|
|
;; the lexer will think we are not at BOL.
|
|
|
|
(let* ((match-table mtab)
|
|
|
|
(read-ident read-c-ident)
|
|
|
|
(read-comm read-c-comm)
|
|
|
|
;;
|
|
|
|
(ident-like? (make-ident-like-p read-ident))
|
|
|
|
;;
|
|
|
|
(strtab (filter-mt string? match-table)) ; strings in grammar
|
|
|
|
(kwstab (filter-mt ident-like? strtab)) ; keyword strings =>
|
|
|
|
(keytab (map-mt string->symbol kwstab)) ; keywords in grammar
|
|
|
|
(chrseq (remove-mt ident-like? strtab)) ; character sequences
|
|
|
|
(symtab (filter-mt symbol? match-table)) ; symbols in grammar
|
|
|
|
(chrtab (filter-mt char? match-table)) ; characters in grammar
|
|
|
|
;;
|
|
|
|
(read-chseq (make-chseq-reader chrseq))
|
|
|
|
(assc-$ (lambda (pair) (cons (assq-ref symtab (car pair)) (cdr pair))))
|
|
|
|
;;
|
|
|
|
(t-ident (assq-ref symtab '$ident))
|
|
|
|
(t-typename (assq-ref symtab 'typename))
|
|
|
|
(xp1 (sxpath '(cpp-stmt define)))
|
|
|
|
(xp2 (sxpath '(decl))))
|
|
|
|
;; mode: 'code|'file
|
|
|
|
;; xdef?: (proc name mode) => #t|#f : do we expand #define?
|
|
|
|
(lambda* (#:key (mode 'code) (xdef? #f))
|
|
|
|
(let ((bol #t) ; begin-of-line condition
|
2017-01-06 16:03:41 +00:00
|
|
|
(ppxs (list 'keep)) ; CPP execution state stack
|
2016-12-17 21:34:43 +00:00
|
|
|
(info (fluid-ref *info*)) ; assume make and run in same thread
|
2017-01-01 15:54:21 +00:00
|
|
|
(x-def? (or xdef? def-xdef?)))
|
|
|
|
;; Return the first (tval . lval) pair not excluded by the CPP.
|
2016-12-17 21:34:43 +00:00
|
|
|
(lambda ()
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
(define (exec-cpp-stmts?) ; exec (vs pass to parser) CPP stmts?
|
|
|
|
(eqv? mode 'code))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
|
|
|
(define (add-define tree)
|
|
|
|
(let* ((tail (cdr tree))
|
|
|
|
(name (car (assq-ref tail 'name)))
|
|
|
|
(args (assq-ref tail 'args))
|
|
|
|
(repl (car (assq-ref tail 'repl)))
|
|
|
|
(cell (cons name (if args (cons args repl) repl))))
|
|
|
|
(set-cpi-defs! info (cons cell (cpi-defs info)))))
|
|
|
|
|
|
|
|
(define (rem-define name)
|
|
|
|
(set-cpi-defs! info (delete name (cpi-defs info))))
|
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
;; Evaluate expression text in #if of #elif statement.
|
|
|
|
(define (eval-cpp-cond-text text)
|
|
|
|
(with-throw-handler
|
|
|
|
'cpp-error
|
|
|
|
(lambda ()
|
|
|
|
(let* ((defs (cpi-defs info))
|
|
|
|
(rhs (cpp-expand-text text defs))
|
2017-01-08 20:16:28 +00:00
|
|
|
(exp (parse-cpp-expr rhs)))
|
2017-01-08 00:06:09 +00:00
|
|
|
(eval-cpp-expr exp defs)))
|
|
|
|
(lambda (key fmt . args)
|
|
|
|
(report-error fmt args)
|
|
|
|
(throw 'c99-error "CPP error"))))
|
|
|
|
|
|
|
|
(define (eval-cpp-stmt stmt)
|
|
|
|
(case (car stmt)
|
|
|
|
((include)
|
|
|
|
(let* ((parg (cadr stmt)) (leng (string-length parg))
|
|
|
|
(file (substring parg 1 (1- leng)))
|
|
|
|
(path (find-file-in-dirl file (cpi-incs info)))
|
|
|
|
(tynd (assoc-ref (cpi-tynd info) file)))
|
|
|
|
(cond
|
|
|
|
(tynd (for-each add-typename tynd)) ; in dot-h dict
|
|
|
|
((not path) (p-err "not found: ~S" file))
|
|
|
|
((exec-cpp-stmts?) (push-input (open-input-file path)))
|
|
|
|
(else ; include as tree
|
|
|
|
(let* ((tree (with-input-from-file path run-parse)))
|
|
|
|
(if (not tree) (p-err "included from ~S" path))
|
|
|
|
(for-each add-define (xp1 tree)) ; add def's
|
|
|
|
(set! stmt (append stmt (list tree)))))))
|
|
|
|
(if (exec-cpp-stmts?) (set! ppxs (cons 'skip1-pop ppxs))))
|
|
|
|
((define)
|
|
|
|
(add-define stmt)
|
|
|
|
(if (exec-cpp-stmts?) (set! ppxs (cons 'skip1-pop ppxs))))
|
|
|
|
((undef)
|
|
|
|
(rem-define (cadr stmt))
|
|
|
|
(if (exec-cpp-stmts?) (set! ppxs (cons 'skip1-pop ppxs))))
|
|
|
|
((if) ;; covers (if ifdef ifndef)
|
|
|
|
(cond
|
|
|
|
((exec-cpp-stmts?)
|
|
|
|
(let ((val (eval-cpp-cond-text (cadr stmt))))
|
2017-01-02 03:40:27 +00:00
|
|
|
(cond
|
2017-01-08 00:06:09 +00:00
|
|
|
((not val) (p-err "unresolved: ~S" (cadr stmt)))
|
|
|
|
((zero? val) (set! ppxs (cons* 'skip1-pop 'skip-look ppxs)))
|
|
|
|
(else (set! ppxs (cons* 'skip1-pop (car ppxs) ppxs))))))
|
|
|
|
(else (cpi-push))))
|
|
|
|
((elif)
|
|
|
|
(cond
|
|
|
|
((exec-cpp-stmts?)
|
|
|
|
(let ((val (eval-cpp-cond-text (cadr stmt))))
|
|
|
|
(cond
|
|
|
|
((not val)
|
|
|
|
(p-err "unresolved: ~S" (cadr stmt)))
|
|
|
|
((eq? 'keep (car ppxs))
|
|
|
|
(set! ppxs (cons* 'skip1-pop 'skip-done (cdr ppxs))))
|
|
|
|
((zero? val) (set! ppxs (cons* 'skip1-pop ppxs)))
|
|
|
|
((eq? 'skip-look (car ppxs))
|
|
|
|
(set! ppxs (cons* 'skip1-pop 'keep (cdr ppxs))))
|
|
|
|
(else
|
|
|
|
(set! ppxs (cons* 'skip1-pop 'skip-done (cdr ppxs)))))))
|
|
|
|
(else (cpi-shift))))
|
|
|
|
((else)
|
|
|
|
(cond
|
|
|
|
((exec-cpp-stmts?)
|
|
|
|
(cond
|
|
|
|
((eq? 'skip-look (car ppxs))
|
|
|
|
(set! ppxs (cons* 'skip1-pop 'keep (cdr ppxs))))
|
|
|
|
(else
|
|
|
|
(set! ppxs (cons* 'skip1-pop 'skip-done (cdr ppxs))))))
|
|
|
|
(else (cpi-shift))))
|
|
|
|
((endif)
|
|
|
|
(cond
|
|
|
|
((exec-cpp-stmts?)
|
|
|
|
(set! ppxs (cons 'skip1-pop (cdr ppxs))))
|
|
|
|
(else (cpi-pop))))
|
|
|
|
((error)
|
2017-01-15 16:47:49 +00:00
|
|
|
(if (exec-cpp-stmts?)
|
|
|
|
(report-error "error: #error ~A" (cdr stmt))))
|
2017-01-11 16:14:45 +00:00
|
|
|
((pragma)
|
|
|
|
;; standard says implementation-defined if line is expanded
|
|
|
|
#t)
|
2017-01-08 00:06:09 +00:00
|
|
|
(else
|
|
|
|
(error "unhandled cpp stmt")))
|
2017-01-11 16:14:45 +00:00
|
|
|
(case (car stmt)
|
|
|
|
((pragma) (cons 'cpp-pragma (cdr stmt)))
|
|
|
|
(else (cons 'cpp-stmt stmt))))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
2017-01-08 00:06:09 +00:00
|
|
|
(define (eval-cpp-line line)
|
|
|
|
(with-throw-handler
|
|
|
|
'cpp-error
|
|
|
|
(lambda () (eval-cpp-stmt (read-cpp-stmt line)))
|
|
|
|
(lambda (key fmt . rest)
|
2017-01-11 16:14:45 +00:00
|
|
|
(display "body.399\n")
|
2017-01-08 00:06:09 +00:00
|
|
|
(report-error fmt rest)
|
|
|
|
(throw 'c99-error "CPP error"))))
|
|
|
|
|
|
|
|
;; Composition of @code{read-cpp-line} and @code{eval-cpp-line}.
|
2016-12-17 21:34:43 +00:00
|
|
|
(define (read-cpp ch)
|
2017-01-08 00:06:09 +00:00
|
|
|
(and=> (read-cpp-line ch) eval-cpp-line))
|
2016-12-17 21:34:43 +00:00
|
|
|
|
|
|
|
(define (read-token)
|
|
|
|
(let iter ((ch (read-char)))
|
|
|
|
(cond
|
|
|
|
((eof-object? ch)
|
|
|
|
(if (pop-input) (iter (read-char)) (assc-$ '($end . ""))))
|
|
|
|
((eq? ch #\newline) (set! bol #t) (iter (read-char)))
|
|
|
|
((char-set-contains? c:ws ch) (iter (read-char)))
|
|
|
|
(bol
|
|
|
|
(cond
|
|
|
|
((read-comm ch bol) => assc-$)
|
2017-01-02 03:40:27 +00:00
|
|
|
((read-cpp ch) =>
|
2017-01-08 00:06:09 +00:00
|
|
|
(lambda (res) ;; if '() stmt expanded so re-read
|
2017-01-02 03:40:27 +00:00
|
|
|
(if (pair? res) (assc-$ res) (iter (read-char)))))
|
2016-12-17 21:34:43 +00:00
|
|
|
(else (set! bol #f) (iter ch))))
|
|
|
|
((read-ident ch) =>
|
|
|
|
(lambda (name)
|
|
|
|
(let ((symb (string->symbol name)))
|
|
|
|
(cond
|
|
|
|
((and (x-def? name mode)
|
|
|
|
(expand-cpp-mref name (cpi-defs info)))
|
|
|
|
=> (lambda (st)
|
|
|
|
(push-input (open-input-string st))
|
|
|
|
(iter (read-char))))
|
|
|
|
((assq-ref keytab symb)
|
|
|
|
=> (lambda (t) (cons t name)))
|
|
|
|
((typename? name)
|
|
|
|
(cons (assq-ref symtab 'typename) name))
|
|
|
|
(else
|
|
|
|
(cons (assq-ref symtab '$ident) name))))))
|
|
|
|
((read-c-num ch) => assc-$)
|
|
|
|
((read-c-string ch) => assc-$)
|
|
|
|
((read-c-chlit ch) => assc-$)
|
|
|
|
((read-comm ch bol) => assc-$)
|
|
|
|
((read-chseq ch) => identity)
|
|
|
|
((assq-ref chrtab ch) => (lambda (t) (cons t (string ch))))
|
|
|
|
((eqv? ch #\\) ;; C allows \ at end of line to continue
|
|
|
|
(let ((ch (read-char)))
|
|
|
|
(cond ((eqv? #\newline ch) (iter (read-char))) ;; extend line
|
|
|
|
(else (unread-char ch) (cons #\\ "\\"))))) ;; parse err
|
|
|
|
(else (cons ch (string ch))))))
|
|
|
|
|
2017-01-06 16:03:41 +00:00
|
|
|
;; Loop between reading tokens and skipping tokens via CPP logic.
|
2017-01-08 00:06:09 +00:00
|
|
|
(let iter ((pair (read-token)))
|
2017-01-06 16:03:41 +00:00
|
|
|
(case (car ppxs)
|
2017-01-15 16:47:49 +00:00
|
|
|
((keep) pair)
|
2017-01-06 16:03:41 +00:00
|
|
|
((skip-done skip-look)
|
2017-01-08 00:06:09 +00:00
|
|
|
(iter (read-token)))
|
2017-01-06 16:03:41 +00:00
|
|
|
((skip1-pop)
|
|
|
|
(set! ppxs (cdr ppxs))
|
2017-01-08 00:06:09 +00:00
|
|
|
(iter (read-token)))))
|
2016-12-17 21:34:43 +00:00
|
|
|
)))))
|
2017-01-08 00:06:09 +00:00
|
|
|
|
2016-12-17 21:34:43 +00:00
|
|
|
;; --- last line ---
|