]> git.xonotic.org Git - xonotic/gmqcc.git/blob - asm.c
Working on the assembler
[xonotic/gmqcc.git] / asm.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  * Some assembler keywords not part of the opcodes above: these are
26  * for creating functions, or constants.
27  */
28 const char *const asm_keys[] = {
29     "FLOAT"    , /* define float  */
30     "VECTOR"   , /* define vector */
31     "ENTITY"   , /* define ent    */
32     "FIELD"    , /* define field  */
33     "STRING"   , /* define string */
34     "FUNCTION"
35 };
36
37 static char *const asm_getline(size_t *byte, FILE *fp) {
38     char   *line = NULL;
39     ssize_t read = util_getline(&line, byte, fp);
40     *byte = read;
41     if (read == -1) {
42         mem_d (line);
43         return NULL;
44     }
45     return line;
46 }
47
48 void asm_init(const char *file, FILE **fp) {
49     *fp = fopen(file, "r");
50     code_init();
51 }
52
53 void asm_close(FILE *fp) {
54     fclose(fp);
55     code_write();
56 }
57
58 /*
59  * Following parse states:
60  *     ASM_FUNCTION -- in a function accepting input statements
61  *     ....
62  */
63 typedef enum {
64     ASM_NULL,
65     ASM_FUNCTION
66 } asm_state;
67
68 typedef struct {
69     char *name;   /* name of constant    */
70     int   offset; /* location in globals */
71 } globals;
72 VECTOR_MAKE(globals, assembly_constants);
73
74 void asm_clear() {
75     size_t i = 0;
76     for (; i < assembly_constants_elements; i++)
77         mem_d(assembly_constants_data[i].name);
78     mem_d(assembly_constants_data);
79 }
80
81 void asm_parse(FILE *fp) {
82     char     *data  = NULL;
83     long      line  = 1; /* current line */
84     size_t    size  = 0; /* size of line */
85     asm_state state = ASM_NULL;
86     
87     while ((data = asm_getline(&size, fp)) != NULL) {
88         data = util_strsws(data); /* skip   whitespace */
89         data = util_strrnl(data); /* delete newline    */
90
91         /* TODO: everything */
92         (void)state;
93         goto end;
94     end:
95         mem_d(data);
96         line ++;
97     }
98         asm_clear();
99 }