Home
last modified time | relevance | path

Searched refs:IndexFromToken (Results 1 – 7 of 7) sorted by relevance

/dports/devel/jwasm/JWasm-f0a2fdd/src/
H A Dbranch.c104 CodeInfo->pinstr = &InstrTable[ IndexFromToken( T_JMP )]; in jumpExtend()
143 unsigned opidx = IndexFromToken( CodeInfo->token ); in process_branch()
H A Dcodegen.c122 ( ( InstrTable[ IndexFromToken( CodeInfo->token )].cpu & P_CPU_MASK ) <= P_386 )) in output_opc()
149 tmp = InstrTable[ IndexFromToken( CodeInfo->prefix.ins )].allowed_prefix; in output_opc()
161 OutputCodeByte( InstrTable[ IndexFromToken( CodeInfo->prefix.ins )].opcode ); in output_opc()
H A Dend.c245 CodeInfo.pinstr = &InstrTable[IndexFromToken( T_NOP )]; in EndDirective()
H A Dreswords.c815 const struct instr_item *ins = &InstrTable[IndexFromToken( i )]; in DumpResWords()
820 IndexFromToken( i ), ResWordTable[i].flags, ResWordTable[i].len ); in DumpResWords()
H A Dtokenize.c815 index = IndexFromToken( buf->tokval );
H A Dparser.c3146 CodeInfo.pinstr = &InstrTable[IndexFromToken( CodeInfo.token )];
/dports/devel/jwasm/JWasm-f0a2fdd/src/H/
H A Dparser.h305 #define IndexFromToken( tok ) optable_idx[ ( tok ) - SPECIAL_LAST ] macro