/external/llvm/lib/IR/ |
D | Statepoint.cpp | 27 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()
|
D | Verifier.cpp | 3967 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/ |
D | Statepoint.cpp | 20 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()
|
D | SafepointIRVerifier.cpp | 785 if (isStatepoint(I)) { in transferInstruction()
|
D | Verifier.cpp | 4518 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/ |
D | Statepoint.h | 58 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/ |
D | Statepoint.h | 45 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/ |
D | StripGCRelocates.cpp | 51 if (isStatepoint(GCR->getOperand(0))) in runOnFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | PlaceSafepoints.cpp | 188 return !(isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)); in needsStatepoint()
|
D | RewriteStatepointsForGC.cpp | 2298 return !callsGCLeafFunction(CS) && !isStatepoint(CS); in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | PlaceSafepoints.cpp | 192 return !(isStatepoint(Call) || isGCRelocate(Call) || isGCResult(Call)); in needsStatepoint()
|
D | RewriteStatepointsForGC.cpp | 2526 return !callsGCLeafFunction(Call, TLI) && !isStatepoint(Call); in runOnFunction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 2367 if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS)) in isSafeToEliminateVarargsCast()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGISel.cpp | 1516 if (isa<CallInst>(Inst) && !isStatepoint(Inst) && !isGCRelocate(Inst) && in SelectAllBasicBlocks()
|
D | SelectionDAGBuilder.cpp | 1140 !isStatepoint(&I)) // statepoints handle their exports internally in visit() 2832 if (!isStatepoint(I)) { in visitInvoke()
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 324 if (isStatepoint(I)) in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 4235 if (isStatepoint(&Call) || isGCRelocate(&Call) || isGCResult(&Call)) in isSafeToEliminateVarargsCast()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 984 !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/ |
D | CodeGenPrepare.cpp | 556 if (isStatepoint(I)) in runOnFunction()
|