]> Joshua Wise's Git repositories - snipe.git/blame - README
Initial import of l1c
[snipe.git] / README
CommitLineData
12aa4087
JW
1(* README
2 * Author: Frank Pfenning <fp@cs.cmu.edu>
3 *)
4
5-----------------------------------------------------------------------
6Welcome to 15-411 F08!
7-----------------------------------------------------------------------
8
9This is some starter code for the L1 compiler you have to build for
10the Lab1. It contains a lexer, parser, translator, and even a code
11generator, except that the code generator creates pseudo assembly
12language with fictitious instructions and an unlimited number of
13registers. We took some care to use good style (according to the
14instructor); you may consider this a model for your own coding. Feel
15free to modify any and all of this code as you see fit.
16
17Bug reports to the instructor Frank Pfenning <fp@cs.cmu.edu> are
18particularly welcome and will be noted in the extra credit category.
19
20-----------------------------------------------------------------------
21SML Notes
22-----------------------------------------------------------------------
23There are many different compilers for SML, perhaps the most
24popular ones are
25
26 SML/NJ -- http://www.smlnj.org/
27 MLton -- http://www.mlton.org/
28 Poly/ML -- http://www.polyml.org/
29
30In this class we will be using SML/NJ v110.59. Please make sure your
31code compiles under specifically this version on the lab machines
32where it is the default and can be invoked simply with "sml" in a
33shell.
34
35If you develop your implementation on other machines, similar versions
36of SML/NJ are likely to be compatible, but you should certainly check
37your code on the lab machines.
38
39For (almost universal) Standard Basis Libraries, see
40http://www.standardml.org/Basis/index.html. Further resources, such
41as documentation for ML-Lex and ML-Yacc, and documentation for the SML/NJ
42specific libraries which are used in the starter code, can be found at
43
44 http://www.cs.cmu.edu/~fp/courses/15411-f08/resources.html
45
46------------------------------------------------------------------------
47Source Files
48------------------------------------------------------------------------
49The following are the source files for the L1 compiler
50
51README -- this file
52
53Makefile -- makefile for the compiler
54 For a quick test
55
56 % make l1c (generates file bin/l1c.heap.<os-tag>)
57 % bin/l1c --verbose ../tests/test1.c
58
59 should generate ../tests/test1.s in pseudo assembly
60
61 % make clean (removes generated files)
62 % make TAGS (creates file TAGS, for Emacs tags commands)
63
64compile-l1c.sml -- SML commands that will create bin/l1c.heap.<os-tag>
65bin/l1c -- the script that will run the exported SML heap
66
67sources.cm -- lists all source files, including libraries,
68 and lexer and grammar specifications
69 For a quick test
70
71 % sml
72 - CM.make "sources.cm";
73 - Top.test "--verbose ../tests/test1.c";
74
75 should generate ../tests/test1.s in pseudo assembly
76
77parse/ast.sml -- definition and printer for abstract syntax trees (AST's)
78parse/l1.lex -- L1 lexer
79parse/l1.grm -- L1 grammar
80parse/parse.sml -- L1 parser
81parse/parsestate.sml -- L1 parser support for error messages
82
83type/typechecker.sml -- (trivial) type-checker for AST
84
85trans/temp.sml -- functions to generate and track temp's
86trans/tree.sml -- definition and pretty printer for IR trees
87trans/trans.sml -- translation from AST to IR trees
88
89codegen/assem.sml -- pseudo assembly format for this starter code
90codegen/codegen.sml -- pseudo code generator
91
92util/errormsg.sml -- error message utilities
93util/flag.sml -- library for defining flags
94util/mark.sml -- library for tracking source file positions
95util/safe-io.sml -- I/O utilities
96util/symbol.sml -- symbol table library
97util/word32.sml -- machine word utilities for two's complement interpretation
98
99top/top.sml -- top level function for export to binary and testing
100
101------------------------------------------------------------------------
102Debugging Hints
103------------------------------------------------------------------------
104You can use
105
106 - Top.test "--verbose --dump-ast --dump-ir --dump-assem file.l1";
107
108to print information from all the phases of the current compiler.
109
110If you want to see the internal representations, you can call directly
111on SML's top level:
112
113 - val ast = Parse.parse "file.l1";
114 - val ir = Trans.translate ast;
115 - val assem = Codegen.codgen ir;
116
117This will use SML's internal printing function to print the data
118structures. However, not everything will show.
119
120"-" means that the type is opaque. Sometimes you can replace an opaque
121 signature ascription ":>" with a transparent one ":" to see the info.
122 For reasons of general hygiene, however, you should change it back
123 before handing in.
124
125"#" means that the printing depth is exceeded. Use
126
127 - Control.Print.printDepth := 100;
128
129 to increase the depth if you need to see more.
130
131"..." means that the printing length is exceeded. Use
132
133 - Control.Print.printLength := 1000;
134
135 to increase the length if you need to see more.
136
137------------------------------------------------------------------------
138Library Hints
139------------------------------------------------------------------------
140See util/symbol.sml for some uses of libraries provided with SML/NJ
141(and some other SML implementations). BinaryMapFn and
142BinarySetFn are likely of general use. To see their interface,
143you can check http://www.smlnj.org/doc/smlnj-lib/Manual/toc.html.
144I found binary maps and binary sets to be occasionally helpful.
This page took 0.033269 seconds and 4 git commands to generate.