Searched refs:OperandIdx (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCInstrItineraries.h170 int getOperandCycle(unsigned ItinClassIndx, unsigned OperandIdx) const {
176 if ((FirstIdx + OperandIdx) >= LastIdx)
179 return (int)OperandCycles[FirstIdx + OperandIdx];
/external/llvm/lib/Target/R600/
H A DR600Packetizer.cpp90 int OperandIdx = TII->getOperandIdx(BI->getOpcode(), AMDGPU::OpName::write); local
91 if (OperandIdx > -1 && BI->getOperand(OperandIdx).getImm() == 0)
140 int OperandIdx = TII->getOperandIdx(MI->getOpcode(), Ops[i]); local
141 if (OperandIdx < 0)
143 unsigned Src = MI->getOperand(OperandIdx).getReg();
146 MI->getOperand(OperandIdx).setReg(It->second);
H A DR600ISelLowering.cpp2193 int OperandIdx[] = { local
2224 if (OperandIdx[i] < 0)
2226 SDValue &Src = Ops[OperandIdx[i] - 1];
2230 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
2259 int OperandIdx[] = { local
2275 if (OperandIdx[i] < 0)
2277 SDValue &Src = Ops[OperandIdx[i] - 1];
2282 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp337 /// \brief Print \p Opcode's operand number \p OperandIdx which has
339 static void printOperand(raw_ostream &OS, uint8_t Opcode, unsigned OperandIdx, argument
342 assert(OperandIdx < 2);
343 OperandType Type = OpTypes[Opcode][OperandIdx];
347 OS << " Unsupported " << (OperandIdx ? "second" : "first") << " operand to";
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4096 /// \brief Check if promoting to a vector type an operand at \p OperandIdx
4099 unsigned OperandIdx) {
4102 if (OperandIdx != 1)
4098 canCauseUndefinedBehavior(const Instruction *Use, unsigned OperandIdx) argument

Completed in 3704 milliseconds