The Pancake compiler, i.e. a C-like compiler built from the lower parts of the CakeML compiler.
NEWS.md:
User-facing changes to the Pancake language and compiler are
documented here when they are merged into master
.
crepLangScript.sml: Abstract syntax of Crepe language Crepe: instrctuons are similar to that of Pancake, but we flatten locals from struct-layout to word-layout
crep_arithScript.sml: Simplification of arithmetic in crepLang.
crep_to_loopScript.sml: Compilation from crepLang to panLang.
examples: A few examples of timeLang programs
ffi: FFI for Pancake
loopLangScript.sml: loopLang intermediate language
loop_callScript.sml: Call optimisation for loopLang
loop_liveScript.sml: Correctness proof for loop to loop_remove
loop_removeScript.sml: Correctness proof for loop_remove
loop_to_wordScript.sml: Compilation from looLang to wordLang.
panLangScript.sml: Abstract syntax for Pancake language. Pancake is an imperative language with instructions for conditionals, While loop, memory load and store, functions, and foreign function calls.
panScopeScript.sml: Scope checking for Pancake.
pan_commonScript.sml: Common definitions for Pancake compiler
pan_passesScript.sml: Reformulates compile definition to expose the result of each internal compiler pass
pan_simpScript.sml: Simplification of panLang.
pan_to_crepScript.sml: Compilation from panLang to crepLang.
pan_to_targetScript.sml: Compiler from Pancake to machine code
pan_to_wordScript.sml: Compiler from pan to word
parser: The Pancake parser.
proofs: Proofs files for compiling Pancake.
semantics: Semantics for Pancake and its intermediate languages.
taParserScript.sml: Parser for compactDSL programs
ta_progs: Some sample timed automata (TA) programs.
temp: Temporary files
timeLangScript.sml: Abstract syntax for timeLang
time_to_panScript.sml: Compilation from timeLang to panLang
time_to_targetScript.sml: Compiler from timeLang to machine code