-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmicroc.ml
31 lines (29 loc) · 1.1 KB
/
microc.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(* Top-level of the MicroC compiler: scan & parse the input,
check the resulting AST, generate LLVM IR, and dump the module *)
type action = Ast | LLVM_IR | Compile
let _ =
let action = ref Compile in
let input = ref "" in
let set_action a () = action := a in
let speclist = [
("-a", Arg.Unit (set_action Ast), "Print the SAST");
("-l", Arg.Unit (set_action LLVM_IR), "Print the generated LLVM IR");
("-c", Arg.Unit (set_action Compile),
"Check and print the generated LLVM IR (default)");
] in
let usage_msg = "usage: ./microc.native [-a|-l] [file]" in
Arg.parse speclist (fun s -> input := s) usage_msg;
let channel = if !input = "" then
stdin
else
open_in !input
in
let lexbuf = Lexing.from_channel channel in
let ast = Parser.program Scanner.token lexbuf in
Semant.check ast;
match !action with
Ast -> print_string (Ast.string_of_program ast)
| LLVM_IR -> print_string (Llvm.string_of_llmodule (Codegen.translate ast))
| Compile -> let m = Codegen.translate ast in
Llvm_analysis.assert_valid_module m;
print_string (Llvm.string_of_llmodule m)