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

  /external/chromium_org/third_party/mesa/src/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/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/Transforms/IPO/
MergeFunctions.cpp 190 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
192 const GetElementPtrInst *GEP2) {
193 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
354 const GEPOperator *GEP2) {
361 GEP2->accumulateConstantOffset(*TD, Offset2)) {
366 GEP2->getPointerOperand()->getType())
369 if (GEP1->getNumOperands() != GEP2->getNumOperands())
373 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
433 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
434 if (!GEP2)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 79 GEPOperator *GEP2 = dyn_cast<GEPOperator>(Ptr2);
85 if (GEP1 && GEP2 == 0 && GEP1->getOperand(0)->stripPointerCasts() == Ptr2) {
90 if (GEP2 && GEP1 == 0 && GEP2->getOperand(0)->stripPointerCasts() == Ptr1) {
91 Offset = GetOffsetFromIndex(GEP2, 1, VariableIdxFound, TD);
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))
110 int64_t Offset2 = GetOffsetFromIndex(GEP2, Idx, VariableIdxFound, TD)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp     [all...]

Completed in 126 milliseconds