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

  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 89 GEPOperator *GEP2 = dyn_cast<GEPOperator>(Ptr2);
95 if (GEP1 && !GEP2 && GEP1->getOperand(0)->stripPointerCasts() == Ptr2) {
100 if (GEP2 && !GEP1 && GEP2->getOperand(0)->stripPointerCasts() == Ptr1) {
101 Offset = GetOffsetFromIndex(GEP2, 1, VariableIdxFound, DL);
110 if (!GEP1 || !GEP2 || GEP1->getOperand(0) != GEP2->getOperand(0))
115 for (; Idx != GEP1->getNumOperands() && Idx != GEP2->getNumOperands(); ++Idx)
116 if (GEP1->getOperand(Idx) != GEP2->getOperand(Idx))
120 int64_t Offset2 = GetOffsetFromIndex(GEP2, Idx, VariableIdxFound, DL)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 268 GetElementPtrInst* GEP2 = GetElementPtrInst::Create(Op, Params, Name,
270 GEP2->setIsInBounds(GEP->isInBounds());
271 V = dyn_cast<Value>(GEP2);
272 GEP->replaceAllUsesWith(GEP2);
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 542 /// GetElementPtr instructions GEP1 and GEP2 which have common base
543 /// pointers. Subtract the GEP2 indices from GEP1 to find the symbolic
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp     [all...]

Completed in 294 milliseconds