HomeSort by relevance Sort by last modified time
    Searched refs:GEP (Results 51 - 57 of 57) sorted by null

1 23

  /external/llvm/include/llvm/IR/
Instructions.h 765 // message on bad indexes for a gep instruction.
813 GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertBefore);
814 GEP->setIsInBounds(true);
815 return GEP;
821 GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertAtEnd);
822 GEP->setIsInBounds(true);
823 return GEP;
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 708 /// getElementValue - Return a zero of the right value for the specified GEP
716 /// getElementValue - Return a zero of the right value for the specified GEP
741 /// getElementValue - Return an undef of the right value for the specified GEP
749 /// getElementValue - Return an undef of the right value for the specified GEP
    [all...]
AsmWriter.cpp 759 } else if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
760 if (GEP->isInBounds())
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 153 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Arg))
154 if (GEP->hasAllZeroIndices())
155 return FindSingleUseIdentifiedObject(GEP->getPointerOperand());
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 611 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
612 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
613 !GEP->accumulateConstantOffset(*DL, Offset))
615 V = GEP->getPointerOperand();
747 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 782 if (const GetElementPtrInst *GEP =
784 // Ok, the GEP indices were covered by constant-offset and scaled-index
786 V = GEP;
792 // If we couldn't merge the gep value into this addr mode, revert back to
803 // Ok, the GEP indices weren't all covered.
    [all...]

Completed in 98 milliseconds

1 23