Home
last modified time | relevance | path

Searched refs:isStatepoint (Results 1 – 19 of 19) 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/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DStatepoint.cpp20 bool llvm::isStatepoint(const CallBase *Call) { in isStatepoint() function in llvm
26 bool llvm::isStatepoint(const Value *V) { in isStatepoint() function in llvm
28 return isStatepoint(Call); in isStatepoint()
32 bool llvm::isStatepoint(const Value &V) { in isStatepoint() function in llvm
33 return isStatepoint(&V); in isStatepoint()
DSafepointIRVerifier.cpp785 if (isStatepoint(I)) { in transferInstruction()
DVerifier.cpp4518 Assert(isStatepoint(InvokeBB->getTerminator()), in visitIntrinsicCall()
4525 Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)), in visitIntrinsicCall()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DStatepoint.h58 bool isStatepoint(const CallBase *Call);
59 bool isStatepoint(const Value *V);
60 bool isStatepoint(const Value &V);
79 StatepointCall = isStatepoint(I) ? cast<CallBaseTy>(I) : nullptr; in StatepointBase()
83 StatepointCall = isStatepoint(Call) ? Call : nullptr; in StatepointBase()
342 assert(isStatepoint(Token)); in getStatepoint()
353 assert(isStatepoint(InvokeBB->getTerminator())); in getStatepoint()
/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/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DStripGCRelocates.cpp51 if (isStatepoint(GCR->getOperand(0))) in runOnFunction()
/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/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp192 return !(isStatepoint(Call) || isGCRelocate(Call) || isGCResult(Call)); in needsStatepoint()
DRewriteStatepointsForGC.cpp2526 return !callsGCLeafFunction(Call, TLI) && !isStatepoint(Call); in runOnFunction()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp2367 if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)) in isSafeToEliminateVarargsCast()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1516 if (isa<CallInst>(Inst) && !isStatepoint(Inst) && !isGCRelocate(Inst) && in SelectAllBasicBlocks()
DSelectionDAGBuilder.cpp1140 !isStatepoint(&I)) // statepoints handle their exports internally in visit()
2832 if (!isStatepoint(I)) { in visitInvoke()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp324 if (isStatepoint(I)) in runOnFunction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp4235 if (isStatepoint(&Call) || isGCRelocate(&Call) || isGCResult(&Call)) in isSafeToEliminateVarargsCast()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp984 !isStatepoint(&I)) // statepoints handle their exports internally in visit()
2299 if (!isStatepoint(I)) { in visitInvoke()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp556 if (isStatepoint(I)) in runOnFunction()