]> git.xonotic.org Git - xonotic/gmqcc.git/blob - code.c
66dc9517a68f008abf498748c1f9e0728246bd70
[xonotic/gmqcc.git] / code.c
1 /*
2  * Copyright (C) 2012 
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include "gmqcc.h"
24
25 typedef struct {
26     uint32_t offset;      /* Offset in file of where data begins  */
27     uint32_t length;      /* Length of section (how many of)      */
28 } prog_section;
29
30 typedef struct {
31     uint32_t     version;      /* Program version (6)     */
32     uint32_t     crc16;        /* What is this?           */
33     prog_section statements;   /* prog_section_statement  */
34     prog_section defs;         /* prog_section_def        */
35     prog_section fields;       /* prog_section_field      */
36     prog_section functions;    /* prog_section_function   */
37     prog_section strings;      /* What is this?           */
38     prog_section globals;      /* What is this?           */
39     uint32_t     entfield;     /* Number of entity fields */
40 } prog_header;
41
42 /*
43  * The macros below expand to a typesafe vector implementation, which
44  * can be viewed in gmqcc.h
45  * 
46  * code_statements_data      -- raw prog_section_statement array
47  * code_statements_elements  -- number of elements
48  * code_statements_allocated -- size of the array allocated
49  * code_statements_add(T)    -- add element (returns -1 on error)
50  * 
51  * code_vars_data            -- raw prog_section_var array
52  * code_vars_elements        -- number of elements
53  * code_vars_allocated       -- size of the array allocated
54  * code_vars_add(T)          -- add element (returns -1 on error)
55  * 
56  * code_fields_data          -- raw prog_section_field array
57  * code_fields_elements      -- number of elements
58  * code_fields_allocated     -- size of the array allocated
59  * code_fields_add(T)        -- add element (returns -1 on error)
60  *
61  * code_functions_data       -- raw prog_section_function array
62  * code_functions_elements   -- number of elements
63  * code_functions_allocated  -- size of the array allocated
64  * code_functions_add(T)     -- add element (returns -1 on error)
65  * 
66  * code_globals_data         -- raw prog_section_def array
67  * code_globals_elements     -- number of elements
68  * code_globals_allocated    -- size of the array allocated
69  * code_globals_add(T)       -- add element (returns -1 on error)
70  * 
71  * code_chars_data           -- raw char* array
72  * code_chars_elements       -- number of elements
73  * code_chars_allocated      -- size of the array allocated
74  * code_chars_add(T)         -- add element (returns -1 on error)
75  */
76 VECTOR_MAKE(prog_section_statement, code_statements);
77 VECTOR_MAKE(prog_section_def,       code_defs      );
78 VECTOR_MAKE(prog_section_field,     code_fields    );
79 VECTOR_MAKE(prog_section_function,  code_functions );
80 VECTOR_MAKE(int,                    code_globals   );
81 VECTOR_MAKE(char,                   code_chars     );
82
83 int code_strings_add(const char *src) {
84     size_t size = strlen(src);
85     size_t iter = 0;
86     while (iter < size)
87         code_chars_add(src[iter++]);
88     code_chars_add('\0');
89     return code_chars_elements;
90 }
91
92 void code_init() {
93     /*
94      * The way progs.dat is suppose to work is odd, there needs to be
95      * some null (empty) statements, functions, and 28 globals
96      */
97     prog_section_function  empty_function  = {0,0,0,0,0,0,0,{0}};
98     prog_section_statement empty_statement = {0,{0},{0},{0}};
99     int i;
100     for(i = 0; i < 28; i++)
101         code_globals_add(0);
102         
103     code_chars_add     ('\0');
104     code_functions_add (empty_function);
105     code_statements_add(empty_statement);
106 }
107
108 void code_test() {    
109     code_strings_add("m_init");
110     code_strings_add("print");
111     code_strings_add("hello world\n");
112     code_strings_add("m_keydown");
113     code_strings_add("m_draw");
114     code_strings_add("m_toggle");
115     code_strings_add("m_shutdown");
116     
117     code_globals_add(1);  /* m_init */
118     code_globals_add(2);  /* print  */
119     code_globals_add(14); /* hello world in string table */
120     
121     /* now the defs */
122     code_defs_add((prog_section_def){.type=TYPE_VOID,    .offset=28/*globals[28]*/, .name=1 }); /* m_init */
123     code_defs_add((prog_section_def){.type=TYPE_FUNCTION,.offset=29/*globals[29]*/, .name=8 }); /* print  */
124     code_defs_add((prog_section_def){.type=TYPE_STRING,  .offset=30/*globals[30]*/, .name=14}); /*hello_world*/
125     
126     code_functions_add((prog_section_function){1,  0, 0, 0, .name=1, 0, 0, {0}}); /* m_init */
127     code_functions_add((prog_section_function){-4, 0, 0, 0, .name=8, 0, 0, {0}}); /* print  */
128     code_functions_add((prog_section_function){0,  0, 0, 0, .name=14+13,        0,0, {0}}); /* m_keydown */
129     code_functions_add((prog_section_function){0,  0, 0, 0, .name=14+13+10,     0,0, {0}});
130     code_functions_add((prog_section_function){0,  0, 0, 0, .name=14+13+10+7,   0,0, {0}});
131     code_functions_add((prog_section_function){0,  0, 0, 0, .name=14+13+10+7+9, 0,0, {0}});
132     
133     code_statements_add((prog_section_statement){INSTR_STORE_F, {30}/*30 is hello_world */, {OFS_PARM0}, {0}});
134     code_statements_add((prog_section_statement){INSTR_CALL1,   {29}/*29 is print       */, {0},         {0}});
135     code_statements_add((prog_section_statement){INSTR_RETURN,  {0},                        {0},         {0}});
136 }
137
138 void code_write() {
139     prog_header code_header={0};
140     code_header.version    = 6;
141     code_header.crc16      = 0; /* TODO: */
142     code_header.statements = (prog_section){sizeof(prog_header), code_statements_elements };
143     code_header.defs       = (prog_section){code_header.statements.offset + sizeof(prog_section_statement)*code_statements_elements,  code_defs_elements      };
144     code_header.fields     = (prog_section){code_header.defs.offset       + sizeof(prog_section_def)      *code_defs_elements,        code_fields_elements    };
145     code_header.functions  = (prog_section){code_header.fields.offset     + sizeof(prog_section_field)    *code_fields_elements,      code_functions_elements };
146     code_header.globals    = (prog_section){code_header.functions.offset  + sizeof(prog_section_function) *code_functions_elements,   code_globals_elements   };
147     code_header.strings    = (prog_section){code_header.globals.offset    + sizeof(int)                   *code_globals_elements,     code_chars_elements     };
148     code_header.entfield   = 0; /* TODO: */
149
150     if (opts_darkplaces_stringtablebug) {
151         util_debug("GEN", "Patching stringtable for -fdarkplaces-stringtablebug\n");
152
153         /* >= + padd */
154         code_chars_add('\0'); /* > */
155         code_chars_add('\0'); /* = */
156         code_chars_add('\0'); /* P */
157     }
158         
159     /* ensure all data is in LE format */
160     util_endianswap(&code_header,         1,                        sizeof(prog_header));
161     util_endianswap(code_statements_data, code_statements_elements, sizeof(prog_section_statement));
162     util_endianswap(code_defs_data,       code_defs_elements,       sizeof(prog_section_def));
163     util_endianswap(code_fields_data,     code_fields_elements,     sizeof(prog_section_field));
164     util_endianswap(code_functions_data,  code_functions_elements,  sizeof(prog_section_function));
165     util_endianswap(code_globals_data,    code_globals_elements,    sizeof(int));
166     
167     FILE *fp = fopen("program.dat", "wb");
168     fwrite(&code_header,         1, sizeof(prog_header), fp);
169     fwrite(code_statements_data, 1, sizeof(prog_section_statement)*code_statements_elements, fp);
170     fwrite(code_defs_data,       1, sizeof(prog_section_def)      *code_defs_elements,       fp);
171     fwrite(code_fields_data,     1, sizeof(prog_section_field)    *code_fields_elements,     fp);
172     fwrite(code_functions_data,  1, sizeof(prog_section_function) *code_functions_elements,  fp);
173     fwrite(code_globals_data,    1, sizeof(int)                   *code_globals_elements,    fp);
174     fwrite(code_chars_data,      1, 1                             *code_chars_elements,      fp);
175     
176     util_debug("GEN","HEADER:\n");
177     util_debug("GEN","    version:    = %d\n", code_header.version );
178     util_debug("GEN","    crc16:      = %d\n", code_header.crc16   );
179     util_debug("GEN","    entfield:   = %d\n", code_header.entfield);
180     util_debug("GEN","    statements  = {.offset = % 8d, .length = % 8d}\n", code_header.statements.offset, code_header.statements.length);
181     util_debug("GEN","    defs        = {.offset = % 8d, .length = % 8d}\n", code_header.defs      .offset, code_header.defs      .length);
182     util_debug("GEN","    fields      = {.offset = % 8d, .length = % 8d}\n", code_header.fields    .offset, code_header.fields    .length);
183     util_debug("GEN","    functions   = {.offset = % 8d, .length = % 8d}\n", code_header.functions .offset, code_header.functions .length);
184     util_debug("GEN","    globals     = {.offset = % 8d, .length = % 8d}\n", code_header.globals   .offset, code_header.globals   .length);
185     util_debug("GEN","    strings     = {.offset = % 8d, .length = % 8d}\n", code_header.strings   .offset, code_header.strings   .length);
186     
187     /* FUNCTIONS */
188     util_debug("GEN", "FUNCTIONS:\n");
189     size_t i = 1;
190     for (; i < code_functions_elements; i++) {
191         size_t j = code_functions_data[i].entry;
192         util_debug("GEN", "    {.entry =% 5d, .firstlocal =% 5d, .locals =% 5d, .profile =% 5d, .name =% 5d, .file =% 5d, .nargs =% 5d, .argsize =%0X }\n",
193             code_functions_data[i].entry,
194             code_functions_data[i].firstlocal,
195             code_functions_data[i].locals,
196             code_functions_data[i].profile,
197             code_functions_data[i].name,
198             code_functions_data[i].file,
199             code_functions_data[i].nargs,
200             *((int32_t*)&code_functions_data[i].argsize)
201         );
202         util_debug("GEN", "    NAME: %s\n", &code_chars_data[code_functions_data[i].name]);
203         util_debug("GEN", "    CODE:\n");
204         for (;;) {
205             if (code_statements_data[j].opcode != INSTR_DONE &&
206                 code_statements_data[j].opcode != INSTR_RETURN)
207                 util_debug("GEN", "        %s {0x%05d,0x%05d,0x%05d}\n",
208                     asm_instr[code_statements_data[j].opcode].m,
209                     code_statements_data[j].s1,
210                     code_statements_data[j].s2,
211                     code_statements_data[j].s3
212                 );
213             else break;
214             j++;
215         }
216     }
217     
218     mem_d(code_statements_data);
219     mem_d(code_defs_data);
220     mem_d(code_fields_data);
221     mem_d(code_functions_data);
222     mem_d(code_globals_data);
223     mem_d(code_chars_data);
224     fclose(fp);
225 }