annotate src/parse.c @ 37:538e15927776

Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
author lost
date Sat, 03 Jan 2009 04:20:49 +0000
parents 99e3b3310bac
children 9bd584bb6296
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
1 /*
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
2 parse.c
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
3 Copyright © 2008 William Astle
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
4
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
5 This file is part of LWASM.
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
6
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
7 LWASM is free software: you can redistribute it and/or modify it under the
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
8 terms of the GNU General Public License as published by the Free Software
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
9 Foundation, either version 3 of the License, or (at your option) any later
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
10 version.
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
11
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
12 This program is distributed in the hope that it will be useful, but WITHOUT
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
15 more details.
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
16
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
17 You should have received a copy of the GNU General Public License along with
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
18 this program. If not, see <http://www.gnu.org/licenses/>.
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
19 */
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
20
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
21 /*
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
22 Contains the general parser
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
23 */
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
24
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
25 #define __parse_c_seen__
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
26
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
27 #include <ctype.h>
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
28 #include <string.h>
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
29
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
30 #include "lwasm.h"
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
31 #include "instab.h"
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
32 #include "util.h"
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
33
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
34 // parse a line and despatch to the appropriate handlers for opcodes
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
35 int lwasm_parse_line(asmstate_t *as, lwasm_line_t *l)
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
36 {
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
37 char *p, *p2;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
38 char *opc;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
39 int opnum;
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
40 char *sym;
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
41
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
42 p = l -> text;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
43
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
44 if (!*p)
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
45 {
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
46 as -> context += 1;
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
47 return 0;
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
48 }
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
49
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
50 if (!isspace(*p) && *p != '*' && *p != ';')
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
51 {
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
52 // we have a symbol specified here
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
53 // parse it and define
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
54 // need to handle local symbols here...
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
55 for (p2 = p; *p2 && !isspace(*p2); p2++)
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
56 /* do nothing */ ;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
57
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
58 sym = lwasm_alloc((p2 - p) + 1);
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
59 sym[p2 - p] = '\0';
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
60 memcpy(sym, p, p2 - p);
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
61
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
62 l -> sym = sym;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
63 // have a symbol; now determine if it is valid and register it
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
64 // at the current address of the line
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
65 if (lwasm_register_symbol(as, l, sym, as -> addr) < 0)
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
66 l -> sym = NULL;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
67 }
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
68 else
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
69 {
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
70 while (*p && isspace(*p))
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
71 (*p)++;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
72 if (!*p)
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
73 {
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
74 as -> context += 1;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
75 return 0;
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
76 }
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
77 }
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
78
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
79 // skip white space
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
80 while (*p && isspace(*p))
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
81 p++;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
82
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
83 // if comment or end of line, return
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
84 if (!*p || *p == '*' || *p == ';')
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
85 {
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
86 lwasm_free(l -> sym);
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
87 return 0;
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
88 }
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
89
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
90 // parse the opcode
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
91 for (p2 = p; *p2 && !isspace(*p2); p2++)
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
92 /* do nothing */ ;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
93
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
94 opc = lwasm_alloc((p2 - p) + 1);
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
95 memcpy(opc, p, p2 - p);
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
96 opc[p2 - p] = '\0';
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
97
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
98 // skip intervening whitespace if present
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
99 while (*p2 && isspace(*p2))
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
100 p2++;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
101
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
102 // check for macro (pass 1)
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
103
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
104 // look up instruction in insn table
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
105 for (opnum = 0; instab[opnum].opcode; opnum++)
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
106 {
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
107 if (!strcasecmp(instab[opnum].opcode, opc))
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
108 break;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
109 }
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
110
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
111 if (!(instab[opnum].opcode) || !(instab[opnum].fn))
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
112 {
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
113 // invalid operation code, throw error
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
114 register_error(as, l, 1, "Invalid operation code '%s'", opc);
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
115 lwasm_free(l -> sym);
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
116 lwasm_free(opc);
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
117 return -1;
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
118 }
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
119
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
120 // dispatch handler
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
121 (instab[opnum].fn)(as, l, &p2, opnum);
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
122
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
123 lwasm_free(opc);
37
538e15927776 Added symbol handling to expression subsystem; adpated instruction handlers to the new scheme; misc fixes
lost
parents: 36
diff changeset
124 lwasm_free(sym);
36
99e3b3310bac Added missing parse.c file to repository
lost
parents:
diff changeset
125 }