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

/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCInstrItineraries.h169 int getOperandCycle(unsigned ItinClassIndx, unsigned OperandIdx) const {
175 if ((FirstIdx + OperandIdx) >= LastIdx)
178 return (int)OperandCycles[FirstIdx + OperandIdx];
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
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.cpp2194 int OperandIdx[] = { local
2225 if (OperandIdx[i] < 0)
2227 SDValue &Src = Ops[OperandIdx[i] - 1];
2231 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
2261 int OperandIdx[] = { local
2277 if (OperandIdx[i] < 0)
2279 SDValue &Src = Ops[OperandIdx[i] - 1];
2284 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]);
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp348 /// \brief Print \p Opcode's operand number \p OperandIdx which has
350 static void printOperand(raw_ostream &OS, uint8_t Opcode, unsigned OperandIdx, argument
353 assert(OperandIdx < 2);
354 OperandType Type = OpTypes[Opcode][OperandIdx];
358 OS << " Unsupported " << (OperandIdx ? "second" : "first") << " operand to";
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1020 auto UpdateOperand = [&](int OperandIdx) {
1021 Value *InVal = BdvIE->getOperand(OperandIdx);
1023 BaseIE->setOperand(OperandIdx, Base);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4896 /// \brief Check if promoting to a vector type an operand at \p OperandIdx
4899 unsigned OperandIdx) {
4902 if (OperandIdx != 1)
4898 canCauseUndefinedBehavior(const Instruction *Use, unsigned OperandIdx) argument

Completed in 114 milliseconds