HomeSort by relevance Sort by last modified time
    Searched refs:GEP1 (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 181 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
182 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
184 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
345 bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
349 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
350 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
352 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
359 if (GEP1->getPointerOperand()->getType() !=
363 if (GEP1->getNumOperands() != GEP2->getNumOperands()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 78 GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(Ptr1);
85 if (GEP1 && GEP2 == 0 && GEP1->getOperand(0)->stripPointerCasts() == Ptr2) {
86 Offset = -GetOffsetFromIndex(GEP1, 1, VariableIdxFound, TD);
90 if (GEP2 && GEP1 == 0 && GEP2->getOperand(0)->stripPointerCasts() == Ptr1) {
100 if (!GEP1 || !GEP2 || GEP1->getOperand(0) != GEP2->getOperand(0))
105 for (; Idx != GEP1->getNumOperands() && Idx != GEP2->getNumOperands(); ++Idx)
106 if (GEP1->getOperand(Idx) != GEP2->getOperand(Idx))
109 int64_t Offset1 = GetOffsetFromIndex(GEP1, Idx, VariableIdxFound, TD)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 435 GEPOperator *GEP1 = 0, *GEP2 = 0;
442 GEP1 = LHSGEP;
449 GEP1 = LHSGEP;
458 GEP1 = RHSGEP;
465 GEP1 = RHSGEP;
473 if (GEP1 == 0 ||
478 Value *Result = EmitGEPOffset(GEP1);
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 368 /// decomposed GetElementPtr instructions GEP1 and GEP2 which have common base
369 /// pointers. Subtract the GEP2 indices from GEP1 to find the symbolic
837 /// anything about V2. UnderlyingV1 is GetUnderlyingObject(GEP1, TD),
841 BasicAliasAnalysis::aliasGEP(const GEPOperator *GEP1, uint64_t V1Size,
    [all...]

Completed in 57 milliseconds