|
Nearly CC
An educational compiler skeleton
|
Driver program for nearly_cc.
More...
#include <cstdio>#include <set>#include "node.h"#include "ast.h"#include "parse.tab.h"#include "lex.yy.h"#include "parser_state.h"#include "unit.h"#include "semantic_analysis.h"#include "local_storage_allocation.h"#include "highlevel_codegen.h"#include "lowlevel_codegen.h"#include "highlevel_opt.h"#include "lowlevel_opt.h"#include "collect_strings.h"#include "highlevel_formatter.h"#include "lowlevel_formatter.h"#include "print_instruction_seq.h"#include "cfg_builder.h"#include "cfg_printer.h"#include "live_vregs.h"#include "live_mregs.h"#include "exceptions.h"#include "options.h"
Functions | |
| int | main (int argc, char **argv) |
Driver program for nearly_cc.