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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#define ORC_ENABLE_UNSTABLE_API
#include <orc/orc.h>
#include <orc-test/orctest.h>
#include <orc/orcparse.h>
#include <stdio.h>
#include <stdlib.h>
static char * read_file (const char *filename);
void output_code (OrcProgram *p, FILE *output);
void output_code_header (OrcProgram *p, FILE *output);
void output_code_test (OrcProgram *p, FILE *output);
int error = FALSE;
int
main (int argc, char *argv[])
{
char *code;
int n;
int i;
int j;
OrcProgram **programs;
const char *filename = NULL;
orc_init ();
orc_test_init ();
if (argc >= 2) {
filename = argv[1];
}
if (filename == NULL) {
filename = getenv ("testfile");
}
if (filename == NULL) {
filename = "test.orc";
}
code = read_file (filename);
if (!code) {
printf("compile_parse_test <file.orc>\n");
exit(1);
}
n = orc_parse (code, &programs);
free (code);
for(i=0;i<n;i++){
OrcBytecode *bytecode;
printf("%s:\n", programs[i]->name);
bytecode = orc_bytecode_from_program (programs[i]);
for(j=0;j<bytecode->length;j++) {
printf("%d, ", bytecode->bytecode[j]);
}
printf("\n");
orc_bytecode_free (bytecode);
orc_program_free (programs[i]);
}
free (programs);
if (error) return 1;
return 0;
}
static char *
read_file (const char *filename)
{
FILE *file = NULL;
char *contents = NULL;
long size;
int ret;
file = fopen (filename, "rb");
if (file == NULL) return NULL;
ret = fseek (file, 0, SEEK_END);
if (ret < 0) goto bail;
size = ftell (file);
if (size < 0) goto bail;
ret = fseek (file, 0, SEEK_SET);
if (ret < 0) goto bail;
contents = malloc (size + 1);
if (contents == NULL) goto bail;
ret = fread (contents, size, 1, file);
if (ret < 0) goto bail;
contents[size] = 0;
fclose (file);
return contents;
bail:
/* something failed */
if (file) fclose (file);
if (contents) free (contents);
return NULL;
}
|