Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DStatepoint.h80 IDPos = 0, enumerator
90 return cast<ConstantInt>(getArgOperand(IDPos))->getZExtValue(); in getID()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp672 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectStackmap()
674 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectStackmap()
810 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && in selectPatchpoint()
812 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); in selectPatchpoint()
H A DSelectionDAGBuilder.cpp9073 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); in visitStackmap()
9168 SDValue IDVal = getValue(CB.getArgOperand(PatchPointOpers::IDPos)); in visitPatchpoint()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackMaps.cpp528 const int64_t ID = MI.getOperand(PatchPointOpers::IDPos).getImm(); in recordStackMap()