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
|
/*
* Copyright (C) 2021 Jo-Philipp Wich <jo@mein.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <ucode/compiler.h>
#include <ucode/lib.h>
#include <ucode/vm.h>
#define MULTILINE_STRING(...) #__VA_ARGS__
static const char *program_code = MULTILINE_STRING(
{%
let n = global.value || 1;
print("Current value is " + n + "\n");
global.value = n * 2;
%}
);
static uc_parse_config_t config = {
.strict_declarations = false,
.lstrip_blocks = true,
.trim_blocks = true
};
int main(int argc, char **argv)
{
int exit_code = 0;
/* create a source buffer containing the program code */
uc_source_t *src = uc_source_new_buffer("my program", strdup(program_code), strlen(program_code));
/* compile source buffer into function */
char *syntax_error = NULL;
uc_program_t *program = uc_compile(&config, src, &syntax_error);
/* release source buffer */
uc_source_put(src);
/* check if compilation failed */
if (!program) {
fprintf(stderr, "Failed to compile program: %s\n", syntax_error);
return 1;
}
/* initialize default module search path */
uc_search_path_init(&config.module_search_path);
/* initialize VM context */
uc_vm_t vm = { 0 };
uc_vm_init(&vm, &config);
/* load standard library into global VM scope */
uc_stdlib_load(uc_vm_scope_get(&vm));
/* execute compiled program function five times */
for (int i = 0; i < 5; i++) {
printf("Iteration %d: ", i + 1);
/* execute program function */
int return_code = uc_vm_execute(&vm, program, NULL);
/* handle return status */
if (return_code == ERROR_COMPILE || return_code == ERROR_RUNTIME) {
printf("An error occurred while running the program\n");
exit_code = 1;
break;
}
/* perform GC step */
ucv_gc(&vm);
}
/* release program function */
uc_program_put(program);
/* free VM context */
uc_vm_free(&vm);
/* free search module path vector */
uc_search_path_free(&config.module_search_path);
return exit_code;
}
|