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

Declarations

include/llvm/IR/Statepoint.h
   59 bool isStatepoint(const Value *V);

References

include/llvm/IR/Statepoint.h
   79     StatepointCall = isStatepoint(I) ? cast<CallBaseTy>(I) : nullptr;
  342       assert(isStatepoint(Token));
  353     assert(isStatepoint(InvokeBB->getTerminator()));
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
 1109       !isStatepoint(&I)) // statepoints handle their exports internally
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
 1497         if (isa<CallInst>(Inst) && !isStatepoint(Inst) && !isGCRelocate(Inst) &&
lib/IR/Statepoint.cpp
   33   return isStatepoint(&V);
lib/IR/Verifier.cpp
 4517       Assert(isStatepoint(InvokeBB->getTerminator()),
 4524       Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)),
lib/Transforms/Utils/StripGCRelocates.cpp
   50       if (isStatepoint(GCR->getOperand(0)))