Searched refs:Statepoint (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/gnu/usr.bin/clang/libLLVMCore/
H A DMakefile64 Statepoint.cpp \
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp41 #include "llvm/IR/Statepoint.h"
170 const Value *Statepoint = Relocate->getStatepoint(); local
171 assert((isa<GCStatepointInst>(Statepoint) || isa<UndefValue>(Statepoint)) &&
173 if (isa<UndefValue>(Statepoint))
177 [cast<GCStatepointInst>(Statepoint)];
855 LLVM_DEBUG(dbgs() << "Statepoint has " << NodeTys.size() << " results\n");
971 // Statepoint: [gc relocates],ch,glue = STATEPOINT ...
1186 // Statepoint is in different basic block so we should have stored call
1200 const Value *Statepoint local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DIntrinsicInst.cpp31 #include "llvm/IR/Statepoint.h"
814 auto Statepoint = getStatepoint(); local
815 if (isa<UndefValue>(Statepoint))
816 return UndefValue::get(Statepoint->getType());
818 auto *GCInst = cast<GCStatepointInst>(Statepoint);
825 auto *Statepoint = getStatepoint(); local
826 if (isa<UndefValue>(Statepoint))
827 return UndefValue::get(Statepoint->getType());
829 auto *GCInst = cast<GCStatepointInst>(Statepoint);
H A DIRBuilder.cpp28 #include "llvm/IR/Statepoint.h"
907 CallInst *IRBuilderBase::CreateGCResult(Instruction *Statepoint, argument
914 Value *Args[] = {Statepoint};
918 CallInst *IRBuilderBase::CreateGCRelocate(Instruction *Statepoint, argument
926 Value *Args[] = {Statepoint, getInt32(BaseOffset), getInt32(DerivedOffset)};
H A DVerifier.cpp95 #include "llvm/IR/Statepoint.h"
3362 // Statepoint intrinsic is vararg but the wrapped function may be not.
5276 auto *Statepoint = Call.getArgOperand(0); local
5277 if (isa<UndefValue>(Statepoint))
5281 const auto *StatepointCall = dyn_cast<CallBase>(Statepoint);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp50 #include "llvm/IR/Statepoint.h"
2100 Value *Statepoint = Info.StatepointToken; local
2106 insertRelocationStores(Statepoint->users(), AllocaMap, VisitedLiveValues);
2110 if (isa<InvokeInst>(Statepoint)) {
2151 if (auto II = dyn_cast<InvokeInst>(Statepoint)) {
2155 InsertClobbersAt(cast<Instruction>(Statepoint)->getNextNode());
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DIRBuilder.h872 CallInst *CreateGCResult(Instruction *Statepoint,
878 CallInst *CreateGCRelocate(Instruction *Statepoint,

Completed in 206 milliseconds