Searched defs:OpIndex (Results 1 - 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
H A DEDOperand.h39 unsigned int OpIndex; member in struct:llvm::EDOperand
/external/swiftshader/third_party/LLVM/lib/Target/PTX/InstPrinter/
H A DPTXInstPrinter.cpp61 int OpIndex; local
65 OpIndex = 1;
68 OpIndex = MI->getNumOperands()-1;
71 int PredOp = MI->getOperand(OpIndex).getImm();
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp215 unsigned int OpIndex; local
216 for (OpIndex = 1; OpIndex < NumOperands; OpIndex++) {
218 if (MI.getOperand(OpIndex).isImm() || MI.getOperand(OpIndex).isFPImm()) {
221 EmitSrc(MI, OpIndex, OS);
225 for ( ; OpIndex < 4; OpIndex++) {
/external/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp683 int OpIndex, PrintIndex; local
684 std::tie(OpIndex, PrintIndex) = getOpData(Name);
687 OS << format("\\x%02X", (unsigned char)OpIndex + 1);
691 OS << format("\\xFF\\x%02X\\x%02X", OpIndex + 1, PrintIndex + 1);
/external/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp345 unsigned OpIndex = HexagonMCInstrInfo::getNewValueOp(*MCII, MI); local
346 MCOperand &MCO = MI.getOperand(OpIndex);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1835 unsigned TypeIndex, OpIndex; local
1849 case Instruction::SDiv: OpIndex = 0; break;
1850 case Instruction::SRem: OpIndex = 1; break;
1851 case Instruction::UDiv: OpIndex = 2; break;
1852 case Instruction::URem: OpIndex = 3; break;
1856 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex];

Completed in 196 milliseconds