123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \newcommand{\itm}[1]{\ensuremath{\mathit{#1}}}
- \newcommand{\ttm}[1]{\ensuremath{\mathtt{#1}}}
- \newcommand{\Stmt}{\itm{stmt}}
- \newcommand{\Exp}{\itm{exp}}
- \newcommand{\Def}{\itm{def}}
- \newcommand{\Type}{\itm{type}}
- \newcommand{\FType}{\itm{ftype}}
- \newcommand{\Instr}{\itm{instr}}
- \newcommand{\Block}{\itm{block}}
- \newcommand{\Tail}{\itm{tail}}
- \newcommand{\Prog}{\itm{prog}}
- \newcommand{\Arg}{\itm{arg}}
- \newcommand{\Atm}{\itm{atm}}
- \newcommand{\Reg}{\itm{reg}}
- \newcommand{\Int}{\itm{int}}
- \newcommand{\Var}{\itm{var}}
- \newcommand{\Op}{\itm{op}}
- \newcommand{\key}[1]{\texttt{#1}}
- \newcommand{\code}[1]{\texttt{#1}}
- \newcommand{\LP}[0]{\key{(}}
- \newcommand{\RP}[0]{\key{)}}
- \newcommand{\LS}[0]{\key{[}}
- \newcommand{\RS}[0]{\key{]}}
- \newcommand{\INT}[1]{\key{(Int}\;#1\key{)}}
- \newcommand{\BOOL}[1]{\key{(Bool}\;#1\key{)}}
- \newcommand{\PRIM}[2]{\LP\key{Prim}~#1~\LP\key{list}~#2\RP\RP}
- \newcommand{\READ}{\key{(Prim}\;\code{'read}\;\key{'())}}
- \newcommand{\CREAD}{\key{(read)}}
- \newcommand{\NEG}[1]{\key{(Prim}\;\code{'-}\;\code{(list}\;#1\;\code{))}}
- \newcommand{\CNEG}[1]{\LP\key{-}~#1\RP}
- \newcommand{\PROGRAM}[2]{\LP\code{Program}\;#1\;#2\RP}
- \newcommand{\PROGRAMDEFSEXP}[3]{\code{(ProgramDefsExp}~#1~#2~#3\code{)}}
- \newcommand{\PROGRAMDEFS}[2]{\code{(ProgramDefs}~#1~#2\code{)}}
- \newcommand{\ADD}[2]{\key{(Prim}\;\code{'+}\;\code{(list}\;#1\;#2\code{))}}
- \newcommand{\CADD}[2]{\LP\key{+}~#1~#2\RP}
- \newcommand{\SUB}[2]{\key{(Prim}\;\code{'-}\;\code{(list}\;#1\;#2\code{))}}
- \newcommand{\CSUB}[2]{\LP\key{-}~#1~#2\RP}
- \newcommand{\CWHILE}[2]{\LP\key{while}~#1~#2\RP}
- \newcommand{\WHILE}[2]{\LP\key{WhileLoop}~#1~#2\RP}
- \newcommand{\CBEGIN}[2]{\LP\key{begin}~#1~#2\RP}
- \newcommand{\BEGIN}[2]{\LP\key{Begin}~#1~#2\RP}
- \newcommand{\CSETBANG}[2]{\LP\key{set!}~#1~#2\RP}
- \newcommand{\SETBANG}[2]{\LP\key{SetBang}~#1~#2\RP}
- \newcommand{\AND}[2]{\key{(Prim}\;\code{'and}\;\code{(list}\;#1\;#2\code{))}}
- \newcommand{\OR}[2]{\key{(Prim}\;\code{'or}\;\code{(list}\;#1\;#2\code{))}}
- \newcommand{\NOT}[1]{\key{(Prim}\;\code{'not}\;\code{(list}\;#1\;\code{))}}
- \newcommand{\UNIOP}[2]{\key{(Prim}\;#1\;\code{(list}\;#2\code{))}}
- \newcommand{\CUNIOP}[2]{\LP #1\;#2 \RP}
- \newcommand{\BINOP}[3]{\key{(Prim}\;#1\;\code{(list}\;#2\;#3\code{))}}
- \newcommand{\CBINOP}[3]{\LP #1\;#2\;#3\RP}
- \newcommand{\CLET}[3]{\LP\key{let}~\LP\LS#1~#2\RS\RP~#3\RP}
- \newcommand{\CIF}[3]{\LP\key{if}~#1~#2~#3\RP}
- \newcommand{\VAR}[1]{\key{(Var}\;#1\key{)}}
- \newcommand{\LET}[3]{\key{(Let}~#1~#2~#3\key{)}}
- \newcommand{\IF}[3]{\key{(If}\,#1\;#2\;#3\key{)}}
- \newcommand{\CAST}[3]{\LP\key{Cast}~#1~#2~#3\RP}
- \newcommand{\VECTOR}[1]{\LP\key{Prim}\;\code{'vector}\;\LP\key{list}\;#1\RP\RP}
- \newcommand{\VECREF}[2]{\LP\key{Prim}\;\code{'vector-ref}\;\LP\key{list}\;#1\;#2\RP\RP}
- \newcommand{\VECSET}[3]{\LP\key{Prim}\;\code{'vector-set!}\;\LP\key{list}\;#1\;#2\;#3\RP\RP}
- \newcommand{\VECLEN}[1]{\LP\key{Prim}\;\code{'vector-length}\;\LP\key{list}\;#1\RP\RP}
- \newcommand{\ANYVECREF}[2]{\LP\key{Prim}\;\code{'any-vector-ref}\;\LP\key{list}\;#1\;#2\RP\RP}
- \newcommand{\ANYVECSET}[3]{\LP\key{Prim}\;\code{'any-vector-set!}\;\LP\key{list}\;#1\;#2\;#3\RP\RP}
- \newcommand{\ANYVECLEN}[1]{\LP\key{Prim}\;\code{'any-vector-length}\;\LP\key{list}\;#1\RP\RP}
- \newcommand{\CLOSURE}[2]{\LP\key{Closure}~#1~#2\RP}
- \newcommand{\ALLOC}[2]{\LP\key{Allocate}~#1~#2\RP}
- \newcommand{\ALLOCCLOS}[3]{\LP\key{AllocateClosure}~#1~#2~#3\RP}
- \newcommand{\VOID}[1]{\key{(Void)}}
- \newcommand{\APPLY}[2]{\key{(Apply}\;#1\;#2\code{)}}
- \newcommand{\CALL}[2]{\key{(Call}\;#1\;#2\code{)}}
- \newcommand{\TAILCALL}[2]{\key{(TailCall}\;#1\;#2\code{)}}
- \newcommand{\FUNDEF}[5]{\key{(Def}~#1~#2~#3~#4~#5\code{)}}
- \newcommand{\FUNREF}[1]{\key{(FunRef}\;#1\code{)}}
- \newcommand{\CFUNREF}[1]{\key{(fun-ref}\;#1\code{)}}
- \newcommand{\FUNREFARITY}[2]{\key{(FunRefArity}~#1~#2\code{)}}
- \newcommand{\CFUNREFARITY}[2]{\key{(fun-ref-arity}~#1~#2\code{)}}
- \newcommand{\LAMBDA}[3]{\key{(Lambda}~#1~#2~#3\code{)}}
- \newcommand{\CLAMBDA}[3]{\LP\key{lambda:}\,#1\,\key{:}\,#2\;\Exp\RP}
- \newcommand{\CGLAMBDA}[3]{\LP\key{lambda:}\,#1\,#2\;\Exp\RP}
- \newcommand{\INJECT}[2]{\LP\key{Inject}~#1~#2\RP}
- \newcommand{\PROJECT}[2]{\LP\key{Project}~#1~#2\RP}
- \newcommand{\CINJECT}[2]{\LP\key{inject}~#1~#2\RP}
- \newcommand{\CPROJECT}[2]{\LP\key{project}~#1~#2\RP}
- \newcommand{\VALUEOF}[2]{\LP\key{ValueOf}~#1~#2\RP}
- \newcommand{\ASSIGN}[2]{\key{(Assign}~#1\;#2\key{)}}
- \newcommand{\RETURN}[1]{\key{(Return}~#1\key{)}}
- \newcommand{\SEQ}[2]{\key{(Seq}~#1~#2\key{)}}
- \newcommand{\GOTO}[1]{\key{(Goto}~#1\key{)}}
- \newcommand{\IFSTMT}[3]{\key{(IfStmt}\,#1\;#2\;#3\key{)}}
- \newcommand{\IMM}[1]{\key{(Imm}\;#1\key{)}}
- \newcommand{\REG}[1]{\key{(Reg}\;#1\key{)}}
- \newcommand{\BYTEREG}[1]{\key{(ByteReg}\;#1\key{)}}
- \newcommand{\DEREF}[2]{\key{(Deref}~#1~#2\key{)}}
- \newcommand{\DEF}[5]{\key{(Def}~#1~#2~#3~#4~#5\key{)}}
- \newcommand{\CDEF}[4]{\LP\key{define}~\LP#1~#2\RP\,\key{:}\,#3~#4\RP}
- \newcommand{\CGDEF}[4]{\LP\key{define}~\LP#1~#2\RP\,#3~#4\RP}
- \newcommand{\CFG}[1]{\key{(CFG}\;#1\key{)}}
- \newcommand{\BLOCK}[2]{\key{(Block}\;#1\;#2\key{)}}
- \newcommand{\STACKLOC}[1]{(\key{stack}\;#1)}
- \newcommand{\BININSTR}[3]{\key{(Instr}\;#1\;\key{(list}\;#2\;#3\key{))}}
- \newcommand{\UNIINSTR}[2]{\key{(Instr}\;#1\;\key{(list}\;#2\key{))}}
- \newcommand{\CALLQ}[2]{\key{(Callq}~#1~#2\key{)}}
- \newcommand{\INDCALLQ}[2]{\key{(IndirectCallq}~#1~#2\key{)}}
- \newcommand{\RETQ}{\key{(Retq)}}
- \newcommand{\PUSHQ}[1]{\key{(Pushq}~#1\key{)}}
- \newcommand{\POPQ}[1]{\key{(Popq}~#1\key{)}}
- \newcommand{\JMP}[1]{\key{(Jmp}~#1\key{)}}
- \newcommand{\TAILJMP}[2]{\key{(TailJmp}~#1~#2\key{)}}
- \newcommand{\JMPIF}[2]{\key{(JmpIf}~#1~#2\key{)}}
- \newcommand{\TTKEY}[1]{{\normalfont\tt #1}}
|