Link Search Menu Expand Document
\( % cbs-katex.sty % \newcommand{\STYLE}[2]{\htmlClass{cbs-#1}{#2}} \newcommand{\DECL}[3]{\htmlId{#1:#2}{#3}} \newcommand{\REF}[3]{\href{###1:#2}{#3}} \newcommand{\HYPER}[5]{\href{#1/#2/index.html###3:#4}{#5}} % \SHADE{MATH} can be defined to produce a shaded background to highlight % inline MATH in running text: \newcommand{\SHADE}[1]{#1} % \KEY{TEXT}, \STRING{TEXT}, \ATOM{TEXT}, \LEX{TEXT} can be used in math mode: \newcommand{\KEY}[1]{\textsf{\textit{\STYLE{Key}{#1}}}} \newcommand{\STRING}[1]{\textsf{``\texttt{#1}''}} \newcommand{\ATOM}[1]{\textsf{`\texttt{#1}'}} \newcommand{\LEX}[1]{\textsf{\STYLE{Key}{`}\texttt{#1}\STYLE{Key}{'}}} % The following commands produce ASCII characters that are treated specially by LaTeX: \newcommand{\HASH}{\char`\#} \newcommand{\DOLLAR}{\char`\$} \newcommand{\PERCENT}{\char`\%} \newcommand{\AMPERSAND}{\char`\&} \newcommand{\APOSTROPHE}{\char`\'} \newcommand{\BACKSLASH}{\char`\\} \newcommand{\CARET}{\char`\^} \newcommand{\UNDERSCORE}{\char`\_} \newcommand{\GRAVE}{\char`\`} \newcommand{\LEFTBRACE}{\char`\{} \newcommand{\RIGHTBRACE}{\char`\}} \newcommand{\TILDE}{\textasciitilde} % {\char`\~} % \NAME{name} highlights the name; % \NAMEDECL{name} declares Name.name as the target of links to name; % \NAMEREF{name} links name to the target Name.name in the current file; % \NAMEHYPER{url}{file}{name} links name to Name.name at url/file/file.pdf. % Similarly for \VAR{partvariable}, \SYN{syntaxname}, \SEM{semanticsName}, % and \SECT{sectionnumber} % The kerns in \SUB and \VAR avoid overlaps with primes: \newcommand{\SUB}[1]{_{\kern-2mu\STYLE{PartVariable}{\textsf{#1}}}} % PLAIN \newcommand{\VAR}[1]{\STYLE{PartVariable}{\textsf{\textit{#1}\kern2mu}}} \newcommand{\NAME}[1]{\STYLE{Name}{\textsf{#1}}} \newcommand{\SYN}[1]{\STYLE{SyntaxName}{\textsf{#1}}} \newcommand{\SEM}[1]{\STYLE{SemanticsName}{\textsf{#1}}} \newcommand{\SECT}[1]{\STYLE{SectionNumber}{\textsf{#1}}} % DECL \newcommand{\VARDECL}[1]{\DECL{PartVariable}{#1}{\VAR{#1}}} \newcommand{\NAMEDECL}[1]{\DECL{Name}{#1}{\NAME{#1}}} \newcommand{\SYNDECL}[1]{\DECL{SyntaxName}{#1}{\SYN{#1}}} \newcommand{\SEMDECL}[1]{\DECL{SemanticsName}{#1}{\SEM{#1}}} \newcommand{\SECTDECL}[1]{\DECL{SectionNumber}{#1}{\textsf{#1}}} % REF \newcommand{\VARREF}[1]{\REF{PartVariable}{#1}{\VAR{#1}}} \newcommand{\NAMEREF}[1]{\REF{Name}{#1}{\NAME{#1}}} \newcommand{\SYNREF}[1]{\REF{SyntaxName}{#1}{\SYN{#1}}} \newcommand{\SEMREF}[1]{\REF{SemanticsName}{#1}{\SEM{#1}}} \newcommand{\SECTREF}[1]{\REF{SectionNumber}{#1}{\SECT{#1}}} % HYPER \newcommand{\VARHYPER}[3]{\HYPER{#1}{#2}{PartVariable}{#3}{\VAR{#3}}} \newcommand{\NAMEHYPER}[3]{\HYPER{#1}{#2}{Name}{#3}{\NAME{#3}}} \newcommand{\SYNHYPER}[3]{\HYPER{#1}{#2}{SyntaxName}{#3}{\SYN{#3}}} \newcommand{\SEMHYPER}[3]{\HYPER{#1}{#2}{SemanticsName}{#3}{\SEM{#3}}} \newcommand{\SECTHYPER}[3]{\HYPER{#1}{#2}{SectionNumber}{#3}{\SECT{#3}}} % \LEFTPHRASE MATH \RIGHTPHRASE produces [[ MATH ]] with proper brackets: \newcommand{\LEFTPHRASE}{\llbracket} \newcommand{\RIGHTPHRASE}{\rrbracket} % \LEFTGROUP MATH \RIGHTGROUP produces ( MATH ) where the parentheses are % highlighted the same as keywords: \newcommand{\LEFTGROUP}{\STYLE{Key}{(}} \newcommand{\RIGHTGROUP}{\STYLE{Key}{)}} % MATH\PLUS produces a superscript + % MATH\STAR produces a superscript * % MATH\QUERY produces a superscript ? \newcommand{\PLUS}{{}^{\texttt{+}}} \newcommand{\STAR}{{}^{\texttt{*}}} \newcommand{\QUERY}{{}^{\texttt{?}}} % \RULE{& PREMISE \\ & ...}{& FORMULA ... \\ & ...} produces an inference rule % with separately aligned premises and conclusion % PREMISE % ... % ----------- % FORMULA ... % ... \newcommand{\RULE}[2] {\frac{\begin{aligned}#1\end{aligned}}{\begin{aligned}#2\end{aligned}}} % \AXIOM{& FORMULA ... \\ & ...} produces an aligned formula % % FORMULA ... % ... \newcommand{\AXIOM}[1]{\begin{aligned}#1\end{aligned}} % \TO TYPE produces => TYPE \newcommand{\TO}{\mathop{\Rightarrow}} % TERM \TRANS TERM produces TERM ---> TERM \newcommand{\TRANS}{\longrightarrow} % TERM \xrightarrow{LABEL} TERM puts the label above the long arrow % \)

Unstable-Languages-beta : IMPPP-2.cbs | PLAIN | PDF

OUTLINE

\[\KEY{Language} \quad \STRING{IMPPP}\]

\(\SECT{2}\) Value expressions

\[\begin{align*} \KEY{Syntax} \quad \VARDECL{AExp} : \SYNDECL{aexp} \ ::= \ & \ \SYNHYPER{../.}{IMPPP-1}{int} \\ \ \mid \ & \ \SYNHYPER{../.}{IMPPP-1}{string} \\ \ \mid \ & \ \SYNHYPER{../.}{IMPPP-1}{id} \\ \ \mid \ & \ \SYNREF{aexp} \ \LEX{{+}} \ \SYNREF{aexp} \\ \ \mid \ & \ \SYNREF{aexp} \ \LEX{{/}} \ \SYNREF{aexp} \\ \ \mid \ & \ \LEX{{(}} \ \SYNREF{aexp} \ \LEX{{)}} \\ \ \mid \ & \ \SYNHYPER{../.}{IMPPP-1}{id} \ \LEX{{=}} \ \SYNREF{aexp} \\ \ \mid \ & \ \LEX{{+}{+}} \ \SYNHYPER{../.}{IMPPP-1}{id} \\ \ \mid \ & \ \LEX{read} \ \LEX{{(}} \ \LEX{{)}} \\ \ \mid \ & \ \LEX{spawn} \ \SYNHYPER{../.}{IMPPP-4}{block} \end{align*}\] \[\begin{align*} \KEY{Type} \quad & \NAMEDECL{aexp-values} \leadsto \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integers} \mid \NAMEHYPER{../../../../../Funcons-beta/Values/Composite}{Strings}{strings} \end{align*}\] \[\begin{align*} \KEY{Funcon} \quad & \NAMEDECL{integer-add-or-string-append}( \_ : \NAMEREF{aexp-values}, \_ : \NAMEREF{aexp-values}) \\&\quad : \TO \NAMEREF{aexp-values} \\ \KEY{Rule} \quad & \NAMEREF{integer-add-or-string-append} ( \VAR{N}\SUB{1} : \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integers}, \VAR{N}\SUB{2} : \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integers} ) \leadsto \\&\quad \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integer-add} ( \VAR{N}\SUB{1}, \VAR{N}\SUB{2} ) \\ \KEY{Rule} \quad & \NAMEREF{integer-add-or-string-append} ( \VAR{S}\SUB{1} : \NAMEHYPER{../../../../../Funcons-beta/Values/Composite}{Strings}{strings}, \VAR{S}\SUB{2} : \NAMEHYPER{../../../../../Funcons-beta/Values/Composite}{Strings}{strings} ) \leadsto \\&\quad \NAMEHYPER{../../../../../Funcons-beta/Values/Composite}{Strings}{string-append} ( \VAR{S}\SUB{1}, \VAR{S}\SUB{2} ) \end{align*}\] \[\begin{align*} \KEY{Semantics} \quad & \SEMDECL{eval-arith} \LEFTPHRASE \ \_ : \SYNREF{aexp} \ \RIGHTPHRASE : \TO \NAMEREF{aexp-values} \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARHYPER{../.}{IMPPP-1}{N} \ \RIGHTPHRASE = \SEMHYPER{../.}{IMPPP-1}{int-val} \LEFTPHRASE \ \VAR{N} \ \RIGHTPHRASE \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARHYPER{../.}{IMPPP-1}{S} \ \RIGHTPHRASE = \SEMHYPER{../.}{IMPPP-1}{string-val} \LEFTPHRASE \ \VAR{S} \ \RIGHTPHRASE \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARHYPER{../.}{IMPPP-1}{I} \ \RIGHTPHRASE = \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Storing}{assigned} ( \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Binding}{bound} ( \SEMHYPER{../.}{IMPPP-1}{id} \LEFTPHRASE \ \VAR{I} \ \RIGHTPHRASE ) ) \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARREF{AExp}\SUB{1} \ \LEX{{+}} \ \VARREF{AExp}\SUB{2} \ \RIGHTPHRASE = \\&\quad \NAMEREF{integer-add-or-string-append} ( \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp}\SUB{1} \ \RIGHTPHRASE , \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp}\SUB{2} \ \RIGHTPHRASE ) \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARREF{AExp}\SUB{1} \ \LEX{{/}} \ \VARREF{AExp}\SUB{2} \ \RIGHTPHRASE = \\&\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Abnormal}{Failing}{checked} \ \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integer-divide} ( \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp}\SUB{1} \ \RIGHTPHRASE , \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp}\SUB{2} \ \RIGHTPHRASE ) \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \LEX{{(}} \ \VARREF{AExp} \ \LEX{{)}} \ \RIGHTPHRASE = \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp} \ \RIGHTPHRASE \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \VARHYPER{../.}{IMPPP-1}{I} \ \LEX{{=}} \ \VARREF{AExp} \ \RIGHTPHRASE = \\&\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{give} ( \\&\quad\quad \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp} \ \RIGHTPHRASE , \\&\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Flowing}{sequential} ( \\&\quad\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Storing}{assign} ( \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Binding}{bound} ( \SEMHYPER{../.}{IMPPP-1}{id} \LEFTPHRASE \ \VAR{I} \ \RIGHTPHRASE ), \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{given} ), \\&\quad\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{given} ) ) \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \LEX{{+}{+}} \ \VARHYPER{../.}{IMPPP-1}{I} \ \RIGHTPHRASE = \\&\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{give} ( \\&\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Values/Primitive}{Integers}{integer-add} ( \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Storing}{assigned} ( \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Binding}{bound} ( \SEMHYPER{../.}{IMPPP-1}{id} \LEFTPHRASE \ \VAR{I} \ \RIGHTPHRASE ) ), 1 ), \\&\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Flowing}{sequential} ( \\&\quad\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Storing}{assign} ( \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Binding}{bound} ( \SEMHYPER{../.}{IMPPP-1}{id} \LEFTPHRASE \ \VAR{I} \ \RIGHTPHRASE ), \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{given} ), \\&\quad\quad\quad \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Giving}{given} ) ) \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \LEX{read} \ \LEX{{(}} \ \LEX{{)}} \ \RIGHTPHRASE = \NAMEHYPER{../../../../../Funcons-beta/Computations/Normal}{Interacting}{read} \\ \KEY{Rule} \quad & \SEMREF{eval-arith} \LEFTPHRASE \ \LEX{spawn} \ \VARHYPER{../.}{IMPPP-4}{Block} \ \RIGHTPHRASE = \\&\quad \NAMEHYPER{../../../../../Unstable-Funcons-beta/Computations/Normal}{Indexing}{allocate-index} ( \\&\quad\quad \NAMEHYPER{../../../../../Unstable-Funcons-beta/Computations/Threads}{Multithreading}{thread-activate} \ \NAMEHYPER{../../../../../Unstable-Funcons-beta/Computations/Threads}{Multithreading}{thread-joinable} \ \NAMEHYPER{../../../../../Funcons-beta/Values/Abstraction}{Thunks}{thunk} \ \NAMEHYPER{../../../../../Funcons-beta/Values/Abstraction}{Generic}{closure} \ \SEMHYPER{../.}{IMPPP-4}{execute} \LEFTPHRASE \ \VAR{Block} \ \RIGHTPHRASE ) \end{align*}\]

Value expression sequences

\[\begin{align*} \KEY{Syntax} \quad \VARDECL{AExps} : \SYNDECL{aexps} \ ::= \ & \ \SYNREF{aexp} \ \LEFTGROUP \LEX{{,}} \ \SYNREF{aexps} \RIGHTGROUP\QUERY \end{align*}\] \[\begin{align*} \KEY{Semantics} \quad & \SEMDECL{eval-arith-seq} \LEFTPHRASE \ \_ : \SYNREF{aexps} \ \RIGHTPHRASE : ( \TO \NAMEREF{aexp-values} )\PLUS \\ \KEY{Rule} \quad & \SEMREF{eval-arith-seq} \LEFTPHRASE \ \VARREF{AExp} \ \RIGHTPHRASE = \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp} \ \RIGHTPHRASE \\ \KEY{Rule} \quad & \SEMREF{eval-arith-seq} \LEFTPHRASE \ \VARREF{AExp} \ \LEX{{,}} \ \VARREF{AExps} \ \RIGHTPHRASE = \SEMREF{eval-arith} \LEFTPHRASE \ \VAR{AExp} \ \RIGHTPHRASE , \SEMREF{eval-arith-seq} \LEFTPHRASE \ \VAR{AExp} \ \RIGHTPHRASE \end{align*}\]