comparison lwasm/insn_rlist.c @ 402:b20f14edda5a

Completed initial conversion to new parser allowing spaces in operands Converted the remaining addressing modes. This required a complete rewrite of a large portion of the indexed addressing parser. Now the entire indexed parsing system is programmatic without cheating with a lookup table. This update also fixes the "force 0,r" by writing a literal 0,r which is *supposed* to work. There will likely be some pseudo ops that need tweaking for space handling, specially those that take multiple operands of some description which are not expressions. (The expression parser call eats the spaces both before and after the expression, if appropriate.)
author William Astle <lost@l-w.ca>
date Wed, 14 Oct 2015 20:49:41 -0600
parents 35d4213e6657
children f6e03c2cebfb
comparison
equal deleted inserted replaced
401:bbe5401a9bf3 402:b20f14edda5a
39 if (rn < 0) 39 if (rn < 0)
40 { 40 {
41 lwasm_register_error2(as, l, E_REGISTER_BAD, "'%s'", *p); 41 lwasm_register_error2(as, l, E_REGISTER_BAD, "'%s'", *p);
42 return; 42 return;
43 } 43 }
44 lwasm_skip_to_next_token(l, p);
44 if (**p && **p != ',' && !isspace(**p)) 45 if (**p && **p != ',' && !isspace(**p))
45 { 46 {
46 lwasm_register_error(as, l, E_OPERAND_BAD); 47 lwasm_register_error(as, l, E_OPERAND_BAD);
47 } 48 }
48 if (**p == ',') 49 if (**p == ',')
50 {
49 (*p)++; 51 (*p)++;
52 lwasm_skip_to_next_token(l, p);
53 }
50 if ((instab[l -> insn].ops[0]) & 2) 54 if ((instab[l -> insn].ops[0]) & 2)
51 { 55 {
52 // pshu/pulu 56 // pshu/pulu
53 if (rn == 6) 57 if (rn == 6)
54 { 58 {