123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- ;;; lang/c99/cppmach.scm - CPP expression grammar
- ;; Copyright (C) 2015,2016,2018 Matthew R. Wette
- ;;
- ;; This library is free software; you can redistribute it and/or
- ;; modify it under the terms of the GNU Lesser General Public
- ;; License as published by the Free Software Foundation; either
- ;; version 3 of the License, or (at your option) any later version.
- ;;
- ;; This library 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
- ;; Lesser General Public License for more details.
- ;;
- ;; You should have received a copy of the GNU Lesser General Public License
- ;; along with this library; if not, see <http://www.gnu.org/licenses/>.
- ;;; Code:
- (define-module (nyacc lang c99 cppmach)
- #:export (cpp-spec cpp-mach gen-cpp-files)
- #:use-module (nyacc lalr)
- #:use-module (nyacc parse)
- #:use-module (nyacc lex)
- #:use-module (nyacc lang util)
- #:use-module ((srfi srfi-43) #:select (vector-map))
- #:use-module (rnrs arithmetic bitwise))
- (define cpp-spec
- (lalr-spec
- (notice (string-append "Copyright (C) 2016,2017 Matthew R. Wette"
- license-lgpl3+))
- (expect 0)
- (start conditional-expression)
- (grammar
- (conditional-expression
- (logical-or-expression)
- (logical-or-expression "?" logical-or-expression ":" conditional-expression
- ($$ `(cond-expr ,$1 ,$3 ,$5))))
- (logical-or-expression
- (logical-and-expression)
- (logical-or-expression "||" logical-and-expression ($$ `(or ,$1 ,$3))))
- (logical-and-expression
- (bitwise-or-expression)
- (logical-and-expression "&&" bitwise-or-expression ($$ `(and ,$1 ,$3))))
- (bitwise-or-expression
- (bitwise-xor-expression)
- (bitwise-or-expression "|" bitwise-xor-expression
- ($$ `(bitwise-or ,$1 ,$3))))
- (bitwise-xor-expression
- (bitwise-and-expression)
- (bitwise-xor-expression "^" bitwise-and-expression
- ($$ `(bitwise-xor ,$1 ,$3))))
- (bitwise-and-expression
- (equality-expression)
- (bitwise-and-expression "&" equality-expression
- ($$ `(bitwise-and ,$1 ,$3))))
- (equality-expression
- (relational-expression)
- (equality-expression "==" relational-expression ($$ `(eq ,$1 ,$3)))
- (equality-expression "!=" relational-expression ($$ `(ne ,$1 ,$3))))
- (relational-expression
- (shift-expression)
- (relational-expression "<" shift-expression ($$ `(lt ,$1 ,$3)))
- (relational-expression "<=" shift-expression ($$ `(le ,$1 ,$3)))
- (relational-expression ">" shift-expression ($$ `(gt ,$1 ,$3)))
- (relational-expression ">=" shift-expression ($$ `(ge ,$1 ,$3))))
- (shift-expression
- (additive-expression)
- (shift-expression "<<" additive-expression ($$ `(lshift ,$1 ,$3)))
- (shift-expression ">>" additive-expression ($$ `(rshift ,$1 ,$3))))
- (additive-expression
- (multiplicative-expression)
- (additive-expression "+" multiplicative-expression ($$ `(add ,$1 ,$3)))
- (additive-expression "-" multiplicative-expression ($$ `(sub ,$1 ,$3))))
- (multiplicative-expression
- (unary-expression)
- (multiplicative-expression "*" unary-expression ($$ `(mul ,$1 ,$3)))
- (multiplicative-expression "/" unary-expression ($$ `(div ,$1 ,$3)))
- (multiplicative-expression "%" unary-expression ($$ `(mod ,$1 ,$3))))
- (unary-expression
- (postfix-expression)
- ("-" unary-expression ($$ `(neg ,$2)))
- ("+" unary-expression ($$ `(pos ,$2)))
- ("!" unary-expression ($$ `(not ,$2)))
- ("~" unary-expression ($$ `(bitwise-not ,$2)))
- ("++" unary-expression ($$ `(pre-inc ,$2)))
- ("--" unary-expression ($$ `(pre-dec ,$2))))
- (postfix-expression
- (primary-expression)
- (postfix-expression "++" ($$ `(post-inc ,$1)))
- (postfix-expression "--" ($$ `(post-dec ,$1))))
- (primary-expression
- ($ident ($$ `(ident ,$1)))
- ($fixed ($$ `(fixed ,$1))) ; integer literal
- ($chlit ($$ `(char ,$1))) ; char literal
- ($chlit/L ($$ `(char (@ (type "wchar_t")) ,$1)))
- ($chlit/u ($$ `(char (@ (type "char16_t")) ,$1)))
- ($chlit/U ($$ `(char (@ (type "char32_t")) ,$1)))
- ("defined" "(" $ident ")" ($$ `(defined ,$3)))
- ("defined" $ident ($$ `(defined ,$2)))
- ("__has_include__" "(" $string ")" ($$ `(has-include ,$3)))
- ("__has_include_next__" "(" $string ")" ($$ `(has-include-next ,$3)))
- ("(" expression-list ")" ($$ $2)))
- (expression-list
- (conditional-expression)
- (expression-list "," conditional-expression ($$ $3)))
- )))
- (define cpp-mach
- (compact-machine
- (hashify-machine
- (make-lalr-machine cpp-spec))))
- ;;; =====================================
- ;; @item gen-cpp-files [dir] => #t
- ;; Update or generate the files @quot{cppact.scm} and @quot{cpptab.scm}.
- ;; If there are no changes to existing files, no update occurs.
- (define (gen-cpp-files . rest)
- (define (lang-dir path)
- (if (pair? rest) (string-append (car rest) "/" path) path))
- (define (xtra-dir path)
- (lang-dir (string-append "mach.d/" path)))
- (write-lalr-actions cpp-mach (xtra-dir "cpp-act.scm.new") #:prefix "cpp-")
- (write-lalr-tables cpp-mach (xtra-dir "cpp-tab.scm.new") #:prefix "cpp-")
- (let ((a (move-if-changed (xtra-dir "cpp-act.scm.new")
- (xtra-dir "cpp-act.scm")))
- (b (move-if-changed (xtra-dir "cpp-tab.scm.new")
- (xtra-dir "cpp-tab.scm"))))
- (or a b)))
- ;; --- last line ---
|