2012-04-10 09:09:55 +00:00
|
|
|
/*
|
2012-04-28 20:43:39 +00:00
|
|
|
* Copyright (C) 2012
|
2012-04-17 20:24:22 +00:00
|
|
|
* Dale Weiler
|
2012-04-10 09:09:55 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
* so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "gmqcc.h"
|
2012-04-11 07:54:01 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2012-04-17 20:24:22 +00:00
|
|
|
uint32_t offset; /* Offset in file of where data begins */
|
|
|
|
uint32_t length; /* Length of section (how many of) */
|
2012-04-11 07:54:01 +00:00
|
|
|
} prog_section;
|
|
|
|
|
|
|
|
typedef struct {
|
2012-04-24 12:19:48 +00:00
|
|
|
uint16_t version; /* Program version (6) */
|
|
|
|
uint16_t flags; /* see propsal.txt */
|
|
|
|
uint16_t crc16; /* What is this? */
|
|
|
|
uint16_t skip; /* see propsal.txt */
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-17 20:24:22 +00:00
|
|
|
prog_section statements; /* prog_section_statement */
|
|
|
|
prog_section defs; /* prog_section_def */
|
|
|
|
prog_section fields; /* prog_section_field */
|
|
|
|
prog_section functions; /* prog_section_function */
|
|
|
|
prog_section strings; /* What is this? */
|
|
|
|
prog_section globals; /* What is this? */
|
|
|
|
uint32_t entfield; /* Number of entity fields */
|
2012-04-11 07:54:01 +00:00
|
|
|
} prog_header;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The macros below expand to a typesafe vector implementation, which
|
|
|
|
* can be viewed in gmqcc.h
|
2012-04-28 20:43:39 +00:00
|
|
|
*
|
2012-04-11 07:54:01 +00:00
|
|
|
* code_statements_data -- raw prog_section_statement array
|
|
|
|
* code_statements_elements -- number of elements
|
|
|
|
* code_statements_allocated -- size of the array allocated
|
|
|
|
* code_statements_add(T) -- add element (returns -1 on error)
|
2012-04-28 20:43:39 +00:00
|
|
|
*
|
2012-04-11 07:54:01 +00:00
|
|
|
* code_vars_data -- raw prog_section_var array
|
|
|
|
* code_vars_elements -- number of elements
|
|
|
|
* code_vars_allocated -- size of the array allocated
|
|
|
|
* code_vars_add(T) -- add element (returns -1 on error)
|
2012-04-28 20:43:39 +00:00
|
|
|
*
|
2012-04-11 07:54:01 +00:00
|
|
|
* code_fields_data -- raw prog_section_field array
|
|
|
|
* code_fields_elements -- number of elements
|
|
|
|
* code_fields_allocated -- size of the array allocated
|
|
|
|
* code_fields_add(T) -- add element (returns -1 on error)
|
|
|
|
*
|
|
|
|
* code_functions_data -- raw prog_section_function array
|
|
|
|
* code_functions_elements -- number of elements
|
|
|
|
* code_functions_allocated -- size of the array allocated
|
|
|
|
* code_functions_add(T) -- add element (returns -1 on error)
|
2012-04-28 20:43:39 +00:00
|
|
|
*
|
2012-04-11 12:40:17 +00:00
|
|
|
* code_globals_data -- raw prog_section_def array
|
2012-04-11 07:54:01 +00:00
|
|
|
* code_globals_elements -- number of elements
|
|
|
|
* code_globals_allocated -- size of the array allocated
|
|
|
|
* code_globals_add(T) -- add element (returns -1 on error)
|
2012-04-28 20:43:39 +00:00
|
|
|
*
|
2012-04-19 20:41:03 +00:00
|
|
|
* code_chars_data -- raw char* array
|
|
|
|
* code_chars_elements -- number of elements
|
|
|
|
* code_chars_allocated -- size of the array allocated
|
|
|
|
* code_chars_add(T) -- add element (returns -1 on error)
|
2012-04-11 07:54:01 +00:00
|
|
|
*/
|
|
|
|
VECTOR_MAKE(prog_section_statement, code_statements);
|
2012-04-11 12:40:17 +00:00
|
|
|
VECTOR_MAKE(prog_section_def, code_defs );
|
2012-04-11 07:54:01 +00:00
|
|
|
VECTOR_MAKE(prog_section_field, code_fields );
|
|
|
|
VECTOR_MAKE(prog_section_function, code_functions );
|
2012-04-11 12:40:17 +00:00
|
|
|
VECTOR_MAKE(int, code_globals );
|
2012-04-19 20:41:03 +00:00
|
|
|
VECTOR_MAKE(char, code_chars );
|
|
|
|
|
2012-04-11 23:41:04 +00:00
|
|
|
void code_init() {
|
2012-04-28 22:56:09 +00:00
|
|
|
prog_section_function empty_function = {0,0,0,0,0,0,0,{0}};
|
|
|
|
prog_section_statement empty_statement = {0,{0},{0},{0}};
|
|
|
|
int i = 0;
|
2012-04-28 23:03:16 +00:00
|
|
|
|
2012-04-24 12:19:48 +00:00
|
|
|
/* omit creation of null code */
|
|
|
|
if (opts_omit_nullcode)
|
|
|
|
return;
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-17 20:24:22 +00:00
|
|
|
/*
|
|
|
|
* The way progs.dat is suppose to work is odd, there needs to be
|
|
|
|
* some null (empty) statements, functions, and 28 globals
|
|
|
|
*/
|
2012-04-28 22:56:09 +00:00
|
|
|
for(; i < 28; i++)
|
2012-04-17 20:24:22 +00:00
|
|
|
code_globals_add(0);
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-19 20:41:03 +00:00
|
|
|
code_chars_add ('\0');
|
2012-04-17 20:24:22 +00:00
|
|
|
code_functions_add (empty_function);
|
|
|
|
code_statements_add(empty_statement);
|
2012-04-11 23:41:04 +00:00
|
|
|
}
|
|
|
|
|
2012-04-28 20:43:39 +00:00
|
|
|
void code_test() {
|
2012-04-28 22:56:09 +00:00
|
|
|
prog_section_def d1 = { TYPE_VOID, 28, 1 };
|
|
|
|
prog_section_def d2 = { TYPE_FUNCTION, 29, 8 };
|
|
|
|
prog_section_def d3 = { TYPE_STRING, 30, 14};
|
|
|
|
prog_section_function f1 = { 1, 0, 0, 0, 1, 0,0, {0}};
|
|
|
|
prog_section_function f2 = {-4, 0, 0, 0, 8, 0,0, {0}};
|
|
|
|
prog_section_function f3 = { 0, 0, 0, 0, 14+13, 0,0, {0}};
|
|
|
|
prog_section_function f4 = { 0, 0, 0, 0, 14+13+10, 0,0, {0}};
|
|
|
|
prog_section_function f5 = { 0, 0, 0, 0, 14+13+10+7, 0,0, {0}};
|
|
|
|
prog_section_function f6 = { 0, 0, 0, 0, 14+13+10+7+9, 0,0, {0}};
|
|
|
|
prog_section_statement s1 = { INSTR_STORE_F, {30}, {OFS_PARM0}, {0}};
|
|
|
|
prog_section_statement s2 = { INSTR_CALL1, {29}, {0}, {0}};
|
|
|
|
prog_section_statement s3 = { INSTR_RETURN, {0}, {0}, {0}};
|
2012-04-28 23:03:16 +00:00
|
|
|
|
2012-04-25 20:49:04 +00:00
|
|
|
code_chars_put("m_init", 0x6);
|
|
|
|
code_chars_put("print", 0x5);
|
|
|
|
code_chars_put("hello world\n", 0xC);
|
|
|
|
code_chars_put("m_keydown", 0x9);
|
|
|
|
code_chars_put("m_draw", 0x6);
|
|
|
|
code_chars_put("m_toggle", 0x8);
|
|
|
|
code_chars_put("m_shutdown", 0xA);
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-17 20:24:22 +00:00
|
|
|
code_globals_add(1); /* m_init */
|
|
|
|
code_globals_add(2); /* print */
|
|
|
|
code_globals_add(14); /* hello world in string table */
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-17 20:24:22 +00:00
|
|
|
/* now the defs */
|
2012-04-28 22:56:09 +00:00
|
|
|
code_defs_add (d1); /* m_init */
|
|
|
|
code_defs_add (d2); /* print */
|
|
|
|
code_defs_add (d3); /*hello_world*/
|
|
|
|
code_functions_add (f1); /* m_init */
|
|
|
|
code_functions_add (f2); /* print */
|
|
|
|
code_functions_add (f3); /* m_keydown */
|
|
|
|
code_functions_add (f4);
|
|
|
|
code_functions_add (f5);
|
|
|
|
code_functions_add (f6);
|
|
|
|
code_statements_add(s1);
|
|
|
|
code_statements_add(s2);
|
|
|
|
code_statements_add(s3);
|
2012-04-14 08:22:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void code_write() {
|
2012-04-28 22:56:09 +00:00
|
|
|
prog_header code_header = {0};
|
2012-05-01 20:42:11 +00:00
|
|
|
prog_section statements = {0};
|
|
|
|
prog_section defs = {0};
|
|
|
|
prog_section fields = {0};
|
|
|
|
prog_section functions = {0};
|
|
|
|
prog_section globals = {0};
|
|
|
|
prog_section strings = {0};
|
|
|
|
FILE *fp = NULL;
|
|
|
|
size_t it = 1;
|
2012-04-24 12:19:48 +00:00
|
|
|
|
|
|
|
/* see proposal.txt */
|
|
|
|
if (opts_omit_nullcode) {
|
|
|
|
code_header.skip = 28;
|
|
|
|
code_header.flags = 1;
|
|
|
|
}
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-28 22:56:09 +00:00
|
|
|
statements.offset = sizeof(prog_header);
|
|
|
|
statements.length = code_statements_elements;
|
|
|
|
defs.offset = code_header.statements.offset + sizeof(prog_section_statement) * code_statements_elements;
|
|
|
|
defs.length = code_defs_elements;
|
|
|
|
fields.offset = code_header.defs.offset + sizeof(prog_section_def) * code_defs_elements;
|
|
|
|
fields.length = code_fields_elements;
|
|
|
|
functions.offset = code_header.fields.offset + sizeof(prog_section_field) * code_fields_elements;
|
|
|
|
functions.length = code_functions_elements;
|
|
|
|
globals.offset = code_header.functions.offset + sizeof(prog_section_function) * code_functions_elements;
|
|
|
|
globals.length = code_globals_elements;
|
|
|
|
strings.offset = code_header.globals.offset + sizeof(int) * code_globals_elements;
|
|
|
|
strings.length = code_chars_elements;
|
|
|
|
|
2012-04-17 20:24:22 +00:00
|
|
|
code_header.version = 6;
|
|
|
|
code_header.crc16 = 0; /* TODO: */
|
2012-04-28 22:56:09 +00:00
|
|
|
code_header.statements = statements;
|
|
|
|
code_header.defs = defs;
|
|
|
|
code_header.fields = fields;
|
|
|
|
code_header.functions = functions;
|
|
|
|
code_header.globals = globals;
|
|
|
|
code_header.strings = strings;
|
2012-04-17 20:24:22 +00:00
|
|
|
code_header.entfield = 0; /* TODO: */
|
2012-04-22 20:58:12 +00:00
|
|
|
|
|
|
|
if (opts_darkplaces_stringtablebug) {
|
|
|
|
util_debug("GEN", "Patching stringtable for -fdarkplaces-stringtablebug\n");
|
|
|
|
|
2012-04-24 12:19:48 +00:00
|
|
|
/* >= + P */
|
2012-04-22 20:58:12 +00:00
|
|
|
code_chars_add('\0'); /* > */
|
|
|
|
code_chars_add('\0'); /* = */
|
|
|
|
code_chars_add('\0'); /* P */
|
|
|
|
}
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-19 20:41:03 +00:00
|
|
|
/* ensure all data is in LE format */
|
2012-04-28 22:56:09 +00:00
|
|
|
util_endianswap(&code_header, 1, sizeof(prog_header));
|
|
|
|
util_endianswap (code_statements_data, code_statements_elements, sizeof(prog_section_statement));
|
|
|
|
util_endianswap (code_defs_data, code_defs_elements, sizeof(prog_section_def));
|
|
|
|
util_endianswap (code_fields_data, code_fields_elements, sizeof(prog_section_field));
|
|
|
|
util_endianswap (code_functions_data, code_functions_elements, sizeof(prog_section_function));
|
|
|
|
util_endianswap (code_globals_data, code_globals_elements, sizeof(int));
|
|
|
|
|
|
|
|
fp = fopen("program.dat", "wb");
|
|
|
|
fwrite(&code_header, 1, sizeof(prog_header), fp);
|
|
|
|
fwrite (code_statements_data, 1, sizeof(prog_section_statement)*code_statements_elements, fp);
|
|
|
|
fwrite (code_defs_data, 1, sizeof(prog_section_def) *code_defs_elements, fp);
|
|
|
|
fwrite (code_fields_data, 1, sizeof(prog_section_field) *code_fields_elements, fp);
|
|
|
|
fwrite (code_functions_data, 1, sizeof(prog_section_function) *code_functions_elements, fp);
|
|
|
|
fwrite (code_globals_data, 1, sizeof(int) *code_globals_elements, fp);
|
|
|
|
fwrite (code_chars_data, 1, 1 *code_chars_elements, fp);
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-20 04:44:44 +00:00
|
|
|
util_debug("GEN","HEADER:\n");
|
2012-04-19 20:41:03 +00:00
|
|
|
util_debug("GEN"," version: = %d\n", code_header.version );
|
|
|
|
util_debug("GEN"," crc16: = %d\n", code_header.crc16 );
|
|
|
|
util_debug("GEN"," entfield: = %d\n", code_header.entfield);
|
|
|
|
util_debug("GEN"," statements = {.offset = % 8d, .length = % 8d}\n", code_header.statements.offset, code_header.statements.length);
|
|
|
|
util_debug("GEN"," defs = {.offset = % 8d, .length = % 8d}\n", code_header.defs .offset, code_header.defs .length);
|
|
|
|
util_debug("GEN"," fields = {.offset = % 8d, .length = % 8d}\n", code_header.fields .offset, code_header.fields .length);
|
|
|
|
util_debug("GEN"," functions = {.offset = % 8d, .length = % 8d}\n", code_header.functions .offset, code_header.functions .length);
|
|
|
|
util_debug("GEN"," globals = {.offset = % 8d, .length = % 8d}\n", code_header.globals .offset, code_header.globals .length);
|
|
|
|
util_debug("GEN"," strings = {.offset = % 8d, .length = % 8d}\n", code_header.strings .offset, code_header.strings .length);
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-20 04:44:44 +00:00
|
|
|
/* FUNCTIONS */
|
|
|
|
util_debug("GEN", "FUNCTIONS:\n");
|
2012-04-28 22:56:09 +00:00
|
|
|
for (; it < code_functions_elements; it++) {
|
|
|
|
size_t j = code_functions_data[it].entry;
|
2012-04-19 22:03:30 +00:00
|
|
|
util_debug("GEN", " {.entry =% 5d, .firstlocal =% 5d, .locals =% 5d, .profile =% 5d, .name =% 5d, .file =% 5d, .nargs =% 5d, .argsize =%0X }\n",
|
2012-04-28 22:56:09 +00:00
|
|
|
code_functions_data[it].entry,
|
|
|
|
code_functions_data[it].firstlocal,
|
|
|
|
code_functions_data[it].locals,
|
|
|
|
code_functions_data[it].profile,
|
|
|
|
code_functions_data[it].name,
|
|
|
|
code_functions_data[it].file,
|
|
|
|
code_functions_data[it].nargs,
|
|
|
|
*((int32_t*)&code_functions_data[it].argsize)
|
2012-04-19 22:03:30 +00:00
|
|
|
);
|
2012-04-28 22:56:09 +00:00
|
|
|
util_debug("GEN", " NAME: %s\n", &code_chars_data[code_functions_data[it].name]);
|
2012-04-28 07:26:40 +00:00
|
|
|
/* Internal functions have no code */
|
2012-04-28 22:56:09 +00:00
|
|
|
if (code_functions_data[it].entry >= 0) {
|
2012-04-28 07:26:40 +00:00
|
|
|
util_debug("GEN", " CODE:\n");
|
|
|
|
for (;;) {
|
|
|
|
if (code_statements_data[j].opcode != INSTR_DONE &&
|
|
|
|
code_statements_data[j].opcode != INSTR_RETURN)
|
|
|
|
util_debug("GEN", " %s {0x%05d,0x%05d,0x%05d}\n",
|
|
|
|
asm_instr[code_statements_data[j].opcode].m,
|
2012-04-28 09:54:24 +00:00
|
|
|
code_statements_data[j].o1.s1,
|
|
|
|
code_statements_data[j].o2.s2,
|
|
|
|
code_statements_data[j].o3.s3
|
2012-04-28 07:26:40 +00:00
|
|
|
);
|
|
|
|
else break;
|
|
|
|
j++;
|
|
|
|
}
|
2012-04-20 04:44:44 +00:00
|
|
|
}
|
2012-04-19 20:41:03 +00:00
|
|
|
}
|
2012-04-28 20:43:39 +00:00
|
|
|
|
2012-04-19 22:03:30 +00:00
|
|
|
mem_d(code_statements_data);
|
|
|
|
mem_d(code_defs_data);
|
|
|
|
mem_d(code_fields_data);
|
|
|
|
mem_d(code_functions_data);
|
|
|
|
mem_d(code_globals_data);
|
|
|
|
mem_d(code_chars_data);
|
2012-04-17 20:24:22 +00:00
|
|
|
fclose(fp);
|
2012-04-11 07:54:01 +00:00
|
|
|
}
|