Home
last modified time | relevance | path

Searched refs:InstrIdx (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOperand.h189 unsigned InstrIdx; member
599 return Contents.InstrRef.InstrIdx; in getInstrRefInstrIndex()
719 void setInstrRefInstrIndex(unsigned InstrIdx) { in setInstrRefInstrIndex() argument
721 Contents.InstrRef.InstrIdx = InstrIdx; in setInstrRefInstrIndex()
805 LLVM_ABI void ChangeToDbgInstrRef(unsigned InstrIdx, unsigned OpIdx,
964 static MachineOperand CreateDbgInstrRef(unsigned InstrIdx, unsigned OpIdx) { in CreateDbgInstrRef() argument
966 Op.Contents.InstrRef.InstrIdx = InstrIdx; in CreateDbgInstrRef()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp
H A DGIMatchTree.h
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp269 void MachineOperand::ChangeToDbgInstrRef(unsigned InstrIdx, unsigned OpIdx, in ChangeToDbgInstrRef() argument
277 setInstrRefInstrIndex(InstrIdx); in ChangeToDbgInstrRef()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2802 uint64_t InstrIdx = Token.integerValue().getZExtValue(); in parseDbgInstrRefOperand() local
2803 assert(InstrIdx <= std::numeric_limits<unsigned>::max() && in parseDbgInstrRefOperand()
2820 Dest = MachineOperand::CreateDbgInstrRef(InstrIdx, OpIdx); in parseDbgInstrRefOperand()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp21101 std::optional<unsigned> insertOrLookup(unsigned InstrIdx, int64_t PtrDist) { in insertOrLookup() argument
21102 auto [It, Inserted] = Instrs.emplace(PtrDist, InstrIdx); in insertOrLookup()