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

Declarations

include/llvm/IR/Instructions.h
 1076   bool hasAllZeroIndices() const;

References

include/llvm/Analysis/ObjCARCAnalysisUtils.h
  148      cast<GetElementPtrInst>(I)->hasAllZeroIndices());
lib/Analysis/MemoryDependenceAnalysis.cpp
  411         if (GEP->hasAllZeroIndices()) {
lib/CodeGen/Analysis.cpp
  292       if (cast<GetElementPtrInst>(I)->hasAllZeroIndices())
lib/CodeGen/CodeGenPrepare.cpp
 7026     if (GEPI->hasAllZeroIndices()) {
lib/CodeGen/SelectionDAG/FastISel.cpp
  350     if (GEP->hasAllZeroIndices() && !hasTrivialKill(GEP->getOperand(0)))
lib/Target/BPF/BPFAbstractMemberAccess.cpp
  418       if (GI->hasAllZeroIndices())
  449       if (GI->hasAllZeroIndices())
  479       if (GI->hasAllZeroIndices())
lib/Transforms/IPO/GlobalOpt.cpp
 1035       if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
lib/Transforms/IPO/PartialInlining.cpp
  861       if (cast<GetElementPtrInst>(&I)->hasAllZeroIndices())
lib/Transforms/InstCombine/InstCombineCasts.cpp
 1785     if (GEP->hasAllZeroIndices() &&
lib/Transforms/InstCombine/InstCombineCompares.cpp
 3179         cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices())
lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
   87         ValuesToInspect.emplace_back(I, IsOffset || !GEP->hasAllZeroIndices());
lib/Transforms/ObjCARC/ObjCARCOpts.cpp
   96       if (GEP->hasAllZeroIndices())
lib/Transforms/Scalar/MemCpyOptimizer.cpp
  830       if (!G->hasAllZeroIndices())
lib/Transforms/Scalar/SROA.cpp
  976         if (!GEP->hasAllZeroIndices())
lib/Transforms/Utils/PromoteMemoryToRegister.cpp
   94       if (!GEPI->hasAllZeroIndices())
unittests/IR/InstructionsTest.cpp
  379   EXPECT_FALSE(GepII0->hasAllZeroIndices());
  380   EXPECT_FALSE(GepII1->hasAllZeroIndices());
  381   EXPECT_FALSE(GepII2->hasAllZeroIndices());
  382   EXPECT_FALSE(GepII3->hasAllZeroIndices());