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
|
#include "compiler/ast-tree.h"
#include "runner/runner.h"
#include "utils/file.h"
#include "utils/log.h"
#include <stdio.h>
#include <time.h>
// #define PRINT_COMPILE_TREE
#define PRINT_STATISTICS
#ifdef PRINT_STATISTICS
static struct timespec diff(struct timespec end, struct timespec start) {
struct timespec temp;
if ((end.tv_nsec - start.tv_nsec) < 0) {
temp.tv_sec = end.tv_sec - start.tv_sec - 1;
temp.tv_nsec = 1000000000 + end.tv_nsec - start.tv_nsec;
} else {
temp.tv_sec = end.tv_sec - start.tv_sec;
temp.tv_nsec = end.tv_nsec - start.tv_nsec;
}
return temp;
}
static struct timespec add(struct timespec left, struct timespec right) {
struct timespec result;
result.tv_nsec = left.tv_nsec + right.tv_nsec;
result.tv_sec = (left.tv_sec + right.tv_sec) + result.tv_nsec / 1000000000;
result.tv_nsec %= 1000000000;
return result;
}
static void printTime(struct timespec time) {
printf("%02ld:%02ld.%06ldus", time.tv_sec / 60, time.tv_sec % 60,
time.tv_nsec / 1000);
}
#endif
static int run(const char *filePath) {
#ifdef PRINT_STATISTICS
struct timespec start, end;
struct timespec astTime;
struct timespec runTime;
struct timespec totalTime = {0};
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &start);
#endif
AstTreeRoots astTrees = makeAstTree(filePath);
if (astTrees.size == AST_TREE_ROOTS_ERROR.size) {
return 1;
}
#ifdef PRINT_STATISTICS
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end);
astTime = diff(end, start);
totalTime = add(totalTime, astTime);
#endif
#ifdef PRINT_COMPILE_TREE
astTreeRootPrint(astTree);
#endif
#ifdef PRINT_STATISTICS
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &start);
#endif
int ret;
if (runAstTree(astTrees)) {
ret = 0;
} else {
ret = 1;
}
astTreeRootsDestroy(astTrees);
#ifdef PRINT_STATISTICS
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end);
runTime = diff(end, start);
totalTime = add(totalTime, runTime);
#endif
#ifdef PRINT_STATISTICS
printf("\nastTime: ");
printTime(astTime);
printf("\nrunTime: ");
printTime(runTime);
printf("\ntotal: ");
printTime(totalTime);
printf("\n");
#endif
return ret;
}
int main(int argc, char *argv[]) {
fileInit();
if (argc < 2) {
// compileRun("test/main.felan", "build/out", false);
// run("test/main.felan", false);
printLog("Too few args");
return 1;
}
const int ret = run(argv[1]);
fileDelete();
return ret;
}
|