Home
last modified time | relevance | path

Searched refs:OpIndex (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsELFStreamer.cpp25 for (unsigned OpIndex = 0; OpIndex < Inst.getNumOperands(); ++OpIndex) { in EmitInstruction() local
26 const MCOperand &Op = Inst.getOperand(OpIndex); in EmitInstruction()
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
DR600MCCodeEmitter.cpp215 unsigned int OpIndex; in EmitALUInstr() local
216 for (OpIndex = 1; OpIndex < NumOperands; OpIndex++) { in EmitALUInstr()
218 if (MI.getOperand(OpIndex).isImm() || MI.getOperand(OpIndex).isFPImm()) { in EmitALUInstr()
221 EmitSrc(MI, OpIndex, OS); in EmitALUInstr()
225 for ( ; OpIndex < 4; OpIndex++) { in EmitALUInstr()
/external/llvm/utils/TableGen/
DAsmWriterEmitter.cpp717 int OpIndex, PrintIndex; in print() local
718 std::tie(OpIndex, PrintIndex) = getOpData(Name); in print()
721 OS << format("\\x%02X", (unsigned char)OpIndex + 1); in print()
725 OS << format("\\xFF\\x%02X\\x%02X", OpIndex + 1, PrintIndex + 1); in print()
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1638 unsigned TypeIndex, OpIndex; in X86SelectDivRem() local
1652 case Instruction::SDiv: OpIndex = 0; break; in X86SelectDivRem()
1653 case Instruction::SRem: OpIndex = 1; break; in X86SelectDivRem()
1654 case Instruction::UDiv: OpIndex = 2; break; in X86SelectDivRem()
1655 case Instruction::URem: OpIndex = 3; break; in X86SelectDivRem()
1659 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; in X86SelectDivRem()