Home
last modified time | relevance | path

Searched refs:accumulateConstantOffset (Results 1 – 17 of 17) sorted by relevance

/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DPtrUseVisitor.cpp34 return GEPI.accumulateConstantOffset(DL, Offset); in adjustOffsetForGEP()
H A DMemoryBuiltins.cpp544 if (!bothKnown(PtrData) || !GEP.accumulateConstantOffset(*DL, Offset)) in visitGEPOperator()
H A DConstantFolding.cpp269 if (!GEP->accumulateConstantOffset(TD, TmpOffset)) in IsConstantOffsetFromGlobal()
H A DValueTracking.cpp2301 if (!GEP->accumulateConstantOffset(*DL, GEPOffset)) in GetPointerBaseWithConstantOffset()
H A DInstructionSimplify.cpp622 !GEP->accumulateConstantOffset(*DL, Offset)) in stripAndComputeConstantOffsets()
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoadCombine.cpp105 if (GEP->accumulateConstantOffset(*DL, Offset)) in getPointerOffsetPair()
H A DSROA.cpp1745 if (!GEP->accumulateConstantOffset(DL, GEPOffset)) in getAdjustedPtr()
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h448 bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset) const { in accumulateConstantOffset() function
H A DInstructions.h940 bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset) const;
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp861 if (GEPL->accumulateConstantOffset(*DL, OffsetL) && in cmpGEPs()
862 GEPR->accumulateConstantOffset(*DL, OffsetR)) in cmpGEPs()
/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DValue.cpp457 if (!GEP->accumulateConstantOffset(DL, GEPOffset)) in stripAndAccumulateInBoundsConstantOffsets()
H A DInstructions.cpp1441 bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL, in accumulateConstantOffset() function in GetElementPtrInst
1444 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset); in accumulateConstantOffset()
/minix/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp562 cast<GEPOperator>(CE)->accumulateConstantOffset(*DL, Offset); in getConstantValue()
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1441 GEP->accumulateConstantOffset(*DL, Offset)) { in commonPointerCastTransforms()
H A DInstructionCombining.cpp1759 GEP.accumulateConstantOffset(*DL, Offset)) { in visitGetElementPtrInst()
/minix/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1607 cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI); in lowerConstant()
/minix/external/bsd/llvm/dist/llvm/docs/
H A DMergeFunctions.rst632 to use ``accumulateConstantOffset`` method.