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.h38 enum { IDPos, NBytesPos }; enumerator
47 uint64_t getID() const { return MI->getOperand(IDPos).getImm(); } in getID()
79 enum { IDPos, NBytesPos, TargetPos, NArgPos, CCPos, MetaEnd }; enumerator
101 uint64_t getID() const { return getMetaOper(IDPos).getImm(); } in getID()
166 enum { IDPos, NBytesPos, NCallArgsPos, CallTargetPos, MetaEnd }; enumerator
178 unsigned getIDPos() const { return NumDefs + IDPos; } in getIDPos()
204 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.cpp665 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectStackmap()
667 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectStackmap()
812 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectPatchpoint()
814 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectPatchpoint()
H A DSelectionDAGBuilder.cpp10628 SDValue IDVal = getValue(CB.getArgOperand(PatchPointOpers::IDPos)); in visitPatchpoint()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp542 const int64_t ID = MI.getOperand(PatchPointOpers::IDPos).getImm(); in recordStackMapOpers()