reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Statepoint.h
   58 bool isStatepoint(const CallBase *Call);

References

include/llvm/IR/Statepoint.h
   83     StatepointCall = isStatepoint(Call) ? Call : nullptr;
lib/IR/Statepoint.cpp
   28     return isStatepoint(Call);
lib/Transforms/InstCombine/InstCombineCalls.cpp
 4101   if (isStatepoint(&Call) || isGCRelocate(&Call) || isGCResult(&Call))
lib/Transforms/Scalar/PlaceSafepoints.cpp
  191   return !(isStatepoint(Call) || isGCRelocate(Call) || isGCResult(Call));
lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
 2525       return !callsGCLeafFunction(Call, TLI) && !isStatepoint(Call);