Lines Matching refs:WasmInst
170 const auto *WasmInst = &InstructionTable0[Opc]; in getInstruction() local
172 if (WasmInst->ET == ET_Prefix) { in getInstruction()
173 WasmInst = nullptr; in getInstruction()
177 WasmInst = PT->Table; in getInstruction()
181 if (!WasmInst) in getInstruction()
188 WasmInst += PrefixedOpc; in getInstruction()
190 if (WasmInst->ET == ET_Unused) in getInstruction()
193 assert(WasmInst->ET == ET_Instruction); in getInstruction()
194 MI.setOpcode(WasmInst->Opcode); in getInstruction()
196 for (uint8_t OPI = 0; OPI < WasmInst->NumOperands; OPI++) { in getInstruction()
197 auto OT = OperandTable[WasmInst->OperandStart + OPI]; in getInstruction()