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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <gmp.h>
#include "alloc.h"
#include "analyzer.h"
#include "codegen.h"
#include "common.h"
#include "errors.h"
#include "lexer.h"
#include "parser.h"
static char *readfile(const char *, size_t *)
__attribute__((returns_nonnull, nonnull));
int
main(int argc, char **argv)
{
if (argc != 2) {
fputs("Usage: oryx file\n", stderr);
exit(EXIT_FAILURE);
}
size_t srclen;
char *src = readfile(argv[1], &srclen);
arena a = NULL;
mpq_t *folds;
struct type *types;
struct scope *scps;
struct lexemes toks = lexstring(src, srclen);
struct ast ast = parsetoks(toks);
analyzeprog(ast, toks, &a, &types, &scps, &folds);
codegen(argv[1], scps, types, ast, toks);
#if DEBUG
free(folds);
free(scps);
free(src);
free(types);
lexemes_free(toks);
ast_free(ast);
arena_free(&a);
#endif
return EXIT_SUCCESS;
}
char *
readfile(const char *filename, size_t *n)
{
int fd = open(filename, O_RDONLY);
if (fd == -1)
err("open: %s", filename);
struct stat sb;
if (fstat(fd, &sb) == -1)
err("fstat: %s", filename);
char *p = bufalloc(NULL, sb.st_size + 4, 1);
ssize_t nr;
for (size_t off = 0; (nr = read(fd, p + off, sb.st_blksize)) > 0; off += nr)
;
if (nr == -1)
err("read: %s", filename);
for (int i = 0; i < 4; i++)
p[sb.st_size + i] = 0;
*n = sb.st_size;
close(fd);
return p;
}
|