Mercurial > hg-old > index.cgi
view src/parse.c @ 52:b9856da2674a
Added file inclusion
author | lost |
---|---|
date | Sun, 04 Jan 2009 20:16:38 +0000 |
parents | 2330b88f9600 |
children | 035b95a3690f |
line wrap: on
line source
/* parse.c Copyright © 2008 William Astle This file is part of LWASM. LWASM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* Contains the general parser */ #define __parse_c_seen__ #include <ctype.h> #include <string.h> #include "lwasm.h" #include "instab.h" #include "util.h" // parse a line and despatch to the appropriate handlers for opcodes int lwasm_parse_line(asmstate_t *as, lwasm_line_t *l) { char *p, *p2; char *opc; int opnum; char *sym = NULL; p = l -> text; if (!*p) { as -> context += 1; return 0; } // for output generation later but only on pass 1 if (as -> passnum == 1) l -> codeaddr = as -> addr; if (!isspace(*p) && *p != '*' && *p != ';') { // we have a symbol specified here // parse it and define // need to handle local symbols here... for (p2 = p; *p2 && !isspace(*p2); p2++) /* do nothing */ ; sym = lwasm_alloc((p2 - p) + 1); sym[p2 - p] = '\0'; memcpy(sym, p, p2 - p); p = p2; if (as -> passnum == 1) { l -> sym = sym; // have a symbol; now determine if it is valid and register it // at the current address of the line debug_message(1, "Registering symbol '%s' at %04X", sym, as -> addr); if (lwasm_register_symbol(as, l, sym, as -> addr) < 0) l -> sym = NULL; } } else { while (*p && isspace(*p)) p++; if (!*p) { as -> context += 1; return 0; } } // skip white space while (*p && isspace(*p)) p++; // if comment or end of line, return if (!*p || *p == '*' || *p == ';') { if (sym) lwasm_free(l -> sym); return 0; } // parse the opcode for (p2 = p; *p2 && !isspace(*p2); p2++) /* do nothing */ ; opc = lwasm_alloc((p2 - p) + 1); memcpy(opc, p, p2 - p); opc[p2 - p] = '\0'; debug_message(2, "Found operation code: '%s'", opc); // skip intervening whitespace if present while (*p2 && isspace(*p2)) p2++; // check for macro (pass 1) // look up instruction in insn table for (opnum = 0; instab[opnum].opcode; opnum++) { if (!strcasecmp(instab[opnum].opcode, opc)) break; } if (!(instab[opnum].opcode) || !(instab[opnum].fn)) { // invalid operation code, throw error register_error(as, l, 1, "Invalid operation code '%s'", opc); if (sym) lwasm_free(l -> sym); lwasm_free(opc); return -1; } // dispatch handler (instab[opnum].fn)(as, l, &p2, opnum); lwasm_free(opc); if (sym) lwasm_free(sym); }