renamed registers
[tinycc.git] / libtcc_test.c
blob9861ec02f41f2e7e13c7161140a6dd92f26bc5d6
1 /*
2 * Simple Test program for libtcc
4 * libtcc can be useful to use tcc as a "backend" for a code generator.
5 */
6 #include <stdlib.h>
7 #include <stdio.h>
9 #include <libtcc.h>
11 /* this function is called by the generated code */
12 int add(int a, int b)
14 return a + b;
17 char my_program[] =
18 "int fib(int n)\n"
19 "{\n"
20 " if (n <= 2)\n"
21 " return 1;\n"
22 " else\n"
23 " return fib(n-1) + fib(n-2);\n"
24 "}\n"
25 "\n"
26 "int foo(int n)\n"
27 "{\n"
28 " printf(\"Hello World!\\n\");\n"
29 " printf(\"fib(%d) = %d\\n\", n, fib(n));\n"
30 " printf(\"add(%d, %d) = %d\\n\", n, 2 * n, add(n, 2 * n));\n"
31 " return 0;\n"
32 "}\n";
34 int main(int argc, char **argv)
36 TCCState *s;
37 int (*func)(int);
39 s = tcc_new();
40 if (!s) {
41 fprintf(stderr, "Could not create tcc state\n");
42 exit(1);
45 /* MUST BE CALLED before any compilation or file loading */
46 tcc_set_output_type(s, TCC_OUTPUT_MEMORY);
48 tcc_compile_string(s, my_program);
50 /* as a test, we add a symbol that the compiled program can be
51 linked with. You can have a similar result by opening a dll
52 with tcc_add_dll(() and using its symbols directly. */
53 tcc_add_symbol(s, "add", (unsigned long)&add);
55 tcc_relocate(s);
57 func = tcc_get_symbol(s, "foo");
59 func(32);
61 tcc_delete(s);
62 return 0;