ack/mach/proto/mcg/main.c

90 lines
1.5 KiB
C
Raw Normal View History

#include "mcg.h"
2016-09-17 20:21:47 +00:00
void fatal(const char* msg, ...)
2016-09-17 20:21:47 +00:00
{
va_list ap;
va_start(ap, msg);
vfprintf(stderr, msg, ap);
fprintf(stderr, "\n");
va_end(ap);
abort();
2016-09-17 20:21:47 +00:00
}
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 'E': return false;
case '0': return false;
case '1': return true;
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[])
2016-09-17 20:21:47 +00:00
{
symbol_init();
2016-09-17 20:21:47 +00:00
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();
2016-09-17 20:21:47 +00:00
/* 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);
2016-09-17 20:21:47 +00:00
EM_close();
return 0;
}
/* vim: set sw=4 ts=4 expandtab : */