Home
last modified time | relevance | path

Searched refs:isStatepoint (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/IR/
DStatepoint.cpp27 bool llvm::isStatepoint(ImmutableCallSite CS) { in isStatepoint() function in llvm
33 bool llvm::isStatepoint(const Value *V) { in isStatepoint() function in llvm
35 return isStatepoint(CS); in isStatepoint()
39 bool llvm::isStatepoint(const Value &V) { in isStatepoint() function in llvm
40 return isStatepoint(&V); in isStatepoint()
DVerifier.cpp3967 Assert(isStatepoint(InvokeBB->getTerminator()), in visitIntrinsicCallSite()
3975 Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)), in visitIntrinsicCallSite()
/external/llvm/include/llvm/IR/
DStatepoint.h45 bool isStatepoint(ImmutableCallSite CS);
46 bool isStatepoint(const Value *V);
47 bool isStatepoint(const Value &V);
67 if (isStatepoint(I)) { in StatepointBase()
73 if (isStatepoint(CS)) in StatepointBase()
334 assert(isStatepoint(Token)); in getStatepoint()
345 assert(isStatepoint(InvokeBB->getTerminator())); in getStatepoint()
/external/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp188 return !(isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)); in needsStatepoint()
DRewriteStatepointsForGC.cpp2298 return !callsGCLeafFunction(CS) && !isStatepoint(CS); in runOnFunction()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp2367 if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)) in isSafeToEliminateVarargsCast()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp324 if (isStatepoint(I)) in runOnFunction()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp984 !isStatepoint(&I)) // statepoints handle their exports internally in visit()
2299 if (!isStatepoint(I)) { in visitInvoke()