mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 14:25:24 +01:00
mescc-tools-extra contains two important tools: - cp - chmod mes first builds itself from a mes 0.21 seed as used by guix, and then builds a mes 0.22 and then mes 0.22 using that created mes 0.22. It does /not/ use bootstrap.sh as we don't have a proper shell at this point, it has been manually adapted for kaem.
130 lines
5.7 KiB
Scheme
130 lines
5.7 KiB
Scheme
;; cpp-act.scm
|
|
|
|
;; Copyright (C) 2016,2017 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.
|
|
;; See the file COPYING included with the this distribution.
|
|
|
|
(define cpp-act-v
|
|
(vector
|
|
;; $start => conditional-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; conditional-expression => logical-or-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; conditional-expression => logical-or-expression "?" logical-or-expres...
|
|
(lambda ($5 $4 $3 $2 $1 . $rest)
|
|
`(cond-expr ,$1 ,$3 ,$5))
|
|
;; logical-or-expression => logical-and-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; logical-or-expression => logical-or-expression "||" logical-and-expre...
|
|
(lambda ($3 $2 $1 . $rest) `(or ,$1 ,$3))
|
|
;; logical-and-expression => bitwise-or-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; logical-and-expression => logical-and-expression "&&" bitwise-or-expr...
|
|
(lambda ($3 $2 $1 . $rest) `(and ,$1 ,$3))
|
|
;; bitwise-or-expression => bitwise-xor-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; bitwise-or-expression => bitwise-or-expression "|" bitwise-xor-expres...
|
|
(lambda ($3 $2 $1 . $rest) `(bitwise-or ,$1 ,$3))
|
|
;; bitwise-xor-expression => bitwise-and-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; bitwise-xor-expression => bitwise-xor-expression "^" bitwise-and-expr...
|
|
(lambda ($3 $2 $1 . $rest)
|
|
`(bitwise-xor ,$1 ,$3))
|
|
;; bitwise-and-expression => equality-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; bitwise-and-expression => bitwise-and-expression "&" equality-expression
|
|
(lambda ($3 $2 $1 . $rest)
|
|
`(bitwise-and ,$1 ,$3))
|
|
;; equality-expression => relational-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; equality-expression => equality-expression "==" relational-expression
|
|
(lambda ($3 $2 $1 . $rest) `(eq ,$1 ,$3))
|
|
;; equality-expression => equality-expression "!=" relational-expression
|
|
(lambda ($3 $2 $1 . $rest) `(ne ,$1 ,$3))
|
|
;; relational-expression => shift-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; relational-expression => relational-expression "<" shift-expression
|
|
(lambda ($3 $2 $1 . $rest) `(lt ,$1 ,$3))
|
|
;; relational-expression => relational-expression "<=" shift-expression
|
|
(lambda ($3 $2 $1 . $rest) `(le ,$1 ,$3))
|
|
;; relational-expression => relational-expression ">" shift-expression
|
|
(lambda ($3 $2 $1 . $rest) `(gt ,$1 ,$3))
|
|
;; relational-expression => relational-expression ">=" shift-expression
|
|
(lambda ($3 $2 $1 . $rest) `(ge ,$1 ,$3))
|
|
;; shift-expression => additive-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; shift-expression => shift-expression "<<" additive-expression
|
|
(lambda ($3 $2 $1 . $rest) `(lshift ,$1 ,$3))
|
|
;; shift-expression => shift-expression ">>" additive-expression
|
|
(lambda ($3 $2 $1 . $rest) `(rshift ,$1 ,$3))
|
|
;; additive-expression => multiplicative-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; additive-expression => additive-expression "+" multiplicative-expression
|
|
(lambda ($3 $2 $1 . $rest) `(add ,$1 ,$3))
|
|
;; additive-expression => additive-expression "-" multiplicative-expression
|
|
(lambda ($3 $2 $1 . $rest) `(sub ,$1 ,$3))
|
|
;; multiplicative-expression => unary-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; multiplicative-expression => multiplicative-expression "*" unary-expr...
|
|
(lambda ($3 $2 $1 . $rest) `(mul ,$1 ,$3))
|
|
;; multiplicative-expression => multiplicative-expression "/" unary-expr...
|
|
(lambda ($3 $2 $1 . $rest) `(div ,$1 ,$3))
|
|
;; multiplicative-expression => multiplicative-expression "%" unary-expr...
|
|
(lambda ($3 $2 $1 . $rest) `(mod ,$1 ,$3))
|
|
;; unary-expression => postfix-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; unary-expression => "-" unary-expression
|
|
(lambda ($2 $1 . $rest) `(neg ,$2))
|
|
;; unary-expression => "+" unary-expression
|
|
(lambda ($2 $1 . $rest) `(pos ,$2))
|
|
;; unary-expression => "!" unary-expression
|
|
(lambda ($2 $1 . $rest) `(not ,$2))
|
|
;; unary-expression => "~" unary-expression
|
|
(lambda ($2 $1 . $rest) `(bitwise-not ,$2))
|
|
;; unary-expression => "++" unary-expression
|
|
(lambda ($2 $1 . $rest) `(pre-inc ,$2))
|
|
;; unary-expression => "--" unary-expression
|
|
(lambda ($2 $1 . $rest) `(pre-dec ,$2))
|
|
;; postfix-expression => primary-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; postfix-expression => postfix-expression "++"
|
|
(lambda ($2 $1 . $rest) `(post-inc ,$1))
|
|
;; postfix-expression => postfix-expression "--"
|
|
(lambda ($2 $1 . $rest) `(post-dec ,$1))
|
|
;; primary-expression => '$ident
|
|
(lambda ($1 . $rest) `(ident ,$1))
|
|
;; primary-expression => '$fixed
|
|
(lambda ($1 . $rest) `(fixed ,$1))
|
|
;; primary-expression => '$chlit
|
|
(lambda ($1 . $rest) `(char ,$1))
|
|
;; primary-expression => '$chlit/L
|
|
(lambda ($1 . $rest)
|
|
`(char (@ (type "wchar_t")) ,$1))
|
|
;; primary-expression => '$chlit/u
|
|
(lambda ($1 . $rest)
|
|
`(char (@ (type "char16_t")) ,$1))
|
|
;; primary-expression => '$chlit/U
|
|
(lambda ($1 . $rest)
|
|
`(char (@ (type "char32_t")) ,$1))
|
|
;; primary-expression => "defined" "(" '$ident ")"
|
|
(lambda ($4 $3 $2 $1 . $rest) `(defined ,$3))
|
|
;; primary-expression => "defined" '$ident
|
|
(lambda ($2 $1 . $rest) `(defined ,$2))
|
|
;; primary-expression => "__has_include__" "(" '$string ")"
|
|
(lambda ($4 $3 $2 $1 . $rest) `(has-include ,$3))
|
|
;; primary-expression => "__has_include_next__" "(" '$string ")"
|
|
(lambda ($4 $3 $2 $1 . $rest)
|
|
`(has-include-next ,$3))
|
|
;; primary-expression => "(" expression-list ")"
|
|
(lambda ($3 $2 $1 . $rest) $2)
|
|
;; expression-list => conditional-expression
|
|
(lambda ($1 . $rest) $1)
|
|
;; expression-list => expression-list "," conditional-expression
|
|
(lambda ($3 $2 $1 . $rest) $3)
|
|
))
|
|
|
|
;;; end tables
|