#include "mcg.h" void fatal(const char* msg, ...) { va_list ap; va_start(ap, msg); vfprintf(stderr, msg, ap); fprintf(stderr, "\n"); va_end(ap); abort(); } const char* aprintf(const char* fmt, ...) { int n; char* p; va_list ap; va_start(ap, fmt); n = vsnprintf(NULL, 0, fmt, ap) + 1; va_end(ap); p = malloc(n); if (!p) return NULL; va_start(ap, fmt); vsnprintf(p, n, fmt, ap); va_end(ap); return p; } bool tracing(char k) { switch (k) { case 0: return true; case 'E': return false; case '0': return false; case '1': return false; case '2': return true; default: return true; } } void tracef(char k, const char* fmt, ...) { va_list ap; if (tracing(k)) { va_start(ap, fmt); vprintf(fmt, ap); va_end(ap); } } static bool find_procedures_cb(struct symbol* symbol, void* user) { if (symbol->proc) procedure_compile(symbol->proc); return false; } int main(int argc, char* argv[]) { symbol_init(); if (!EM_open(argv[1])) fatal("Couldn't open input file: %s", EM_error); /* Reads in the EM, outputs the data sections, parses any code and * generates IR trees. */ parse_em(); /* For every procedure, go ahead and do the compilation proper. We do this * now so that we know that all the data has been read correctly and our * symbol table is complete (we may need to refer to it). */ symbol_walk(find_procedures_cb, NULL); EM_close(); return 0; } /* vim: set sw=4 ts=4 expandtab : */