Home
last modified time | relevance | path

Searched refs:IDPos (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DStackMaps.h39 enum { IDPos, NBytesPos }; enumerator
48 uint64_t getID() const { return MI->getOperand(IDPos).getImm(); } in getID()
80 enum { IDPos, NBytesPos, TargetPos, NArgPos, CCPos, MetaEnd }; enumerator
102 uint64_t getID() const { return getMetaOper(IDPos).getImm(); } in getID()
167 enum { IDPos, NBytesPos, NCallArgsPos, CallTargetPos, MetaEnd }; enumerator
179 unsigned getIDPos() const { return NumDefs + IDPos; } in getIDPos()
205 uint64_t getID() const { return MI->getOperand(NumDefs + IDPos).getImm(); } in getID()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DStatepoint.h78 IDPos = 0, enumerator
88 return cast<ConstantInt>(getArgOperand(IDPos))->getZExtValue(); in getID()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp662 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectStackmap()
664 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectStackmap()
809 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectPatchpoint()
811 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectPatchpoint()
H A DSelectionDAGBuilder.cpp10790 SDValue IDVal = getValue(CB.getArgOperand(PatchPointOpers::IDPos)); in visitPatchpoint()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp533 const int64_t ID = MI.getOperand(PatchPointOpers::IDPos).getImm(); in recordStackMap()