-
Notifications
You must be signed in to change notification settings - Fork 36
/
compiler.c
141 lines (120 loc) · 3.89 KB
/
compiler.c
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include "compiler.h"
#include <stdarg.h>
#include <stdlib.h>
struct lex_process_functions compiler_lex_functions = {
.next_char=compile_process_next_char,
.peek_char=compile_process_peek_char,
.push_char=compile_process_push_char
};
void compiler_node_error(struct node* node, const char* msg, ...)
{
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
fprintf(stderr, " on line %i, col %i in file %s\n", node->pos.line, node->pos.col, node->pos.filename);
exit(-1);
}
void compiler_error(struct compile_process* compiler, const char* msg, ...)
{
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
fprintf(stderr, " on line %i, col %i in file %s\n", compiler->pos.line, compiler->pos.col, compiler->pos.filename);
exit(-1);
}
void compiler_warning(struct compile_process* compiler, const char* msg, ...)
{
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
fprintf(stderr, " on line %i, col %i in file %s\n", compiler->pos.line, compiler->pos.col, compiler->pos.filename);
}
struct compile_process* compile_include_for_include_dir(const char* include_dir, const char* filename, struct compile_process* parent_process)
{
char tmp_filename[512];
sprintf(tmp_filename, "%s/%s", include_dir, filename);
if (file_exists(tmp_filename))
{
filename = tmp_filename;
}
struct compile_process* process = compile_process_create(filename, NULL, parent_process->flags, parent_process);
if (!process)
{
return NULL;
}
struct lex_process* lex_process = lex_process_create(process, &compiler_lex_functions, NULL);
if (!lex_process)
{
return NULL;
}
if (lex(lex_process) != LEXICAL_ANALYSIS_ALL_OK)
{
return NULL;
}
process->token_vec_original = lex_process_tokens(lex_process);
if (preprocessor_run(process) < 0)
{
return NULL;
}
return process;
}
/**
* @brief Includes a file to be compiled, returns a new compile process that represents the file to be compiled
*
* Note: Only lexical analysis, and preprocessing are done for compiler includes
* Parsing and code generation are excluded.
* @param filename
* @param parent_process
* @return struct compile_process*
*/
struct compile_process* compile_include(const char* filename, struct compile_process* parent_process)
{
struct compile_process* new_process = NULL;
const char* include_dir = compiler_include_dir_begin(parent_process);
while(include_dir && !new_process)
{
new_process = compile_include_for_include_dir(include_dir, filename, parent_process);
include_dir = compiler_include_dir_next(parent_process);
}
return new_process;
}
int compile_file(const char* filename, const char* out_filename, int flags)
{
struct compile_process* process = compile_process_create(filename, out_filename, flags, NULL);
if (!process)
return COMPILER_FAILED_WITH_ERRORS;
// Preform lexical analysis
struct lex_process* lex_process = lex_process_create(process, &compiler_lex_functions, NULL);
if (!lex_process)
{
return COMPILER_FAILED_WITH_ERRORS;
}
if (lex(lex_process) != LEXICAL_ANALYSIS_ALL_OK)
{
return COMPILER_FAILED_WITH_ERRORS;
}
process->token_vec_original = lex_process_tokens(lex_process);
if (preprocessor_run(process) != 0)
{
return COMPILER_FAILED_WITH_ERRORS;
}
// Preform parsing
if (parse(process) != PARSE_ALL_OK)
{
return COMPILER_FAILED_WITH_ERRORS;
}
if (validate(process) != VALIDATION_ALL_OK)
{
return COMPILER_FAILED_WITH_ERRORS;
}
if (codegen(process) != CODEGEN_ALL_OK)
{
return COMPILER_FAILED_WITH_ERRORS;
}
// Preform code generation..
fclose(process->ofile);
return COMPILER_FILE_COMPILED_OK;
}