Lines Matching refs:WasmInst
167 const auto *WasmInst = &InstructionTable0[Opc]; in getInstruction() local
169 if (WasmInst->ET == ET_Prefix) { in getInstruction()
170 WasmInst = nullptr; in getInstruction()
174 WasmInst = PT->Table; in getInstruction()
178 if (!WasmInst) in getInstruction()
185 WasmInst += PrefixedOpc; in getInstruction()
187 if (WasmInst->ET == ET_Unused) in getInstruction()
190 assert(WasmInst->ET == ET_Instruction); in getInstruction()
191 MI.setOpcode(WasmInst->Opcode); in getInstruction()
193 for (uint8_t OPI = 0; OPI < WasmInst->NumOperands; OPI++) { in getInstruction()
194 auto OT = OperandTable[WasmInst->OperandStart + OPI]; in getInstruction()