Home
last modified time | relevance | path

Searched refs:GEPB (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp278 GetElementPtrInst *GEPB = dyn_cast<GetElementPtrInst>(getPointerOperand(B)); in isConsecutiveAccess() local
279 if (!GEPA || !GEPB || GEPA->getNumOperands() != GEPB->getNumOperands()) in isConsecutiveAccess()
283 if (GEPA->getOperand(i) != GEPB->getOperand(i)) in isConsecutiveAccess()
287 Instruction *OpB = dyn_cast<Instruction>(GEPB->getOperand(FinalIndex)); in isConsecutiveAccess()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp367 auto *GEPB = dyn_cast<GetElementPtrInst>(PtrB); in lookThroughComplexAddresses() local
368 if (!GEPA || !GEPB) in lookThroughComplexAddresses()
373 if (GEPA->getNumOperands() != GEPB->getNumOperands() || in lookThroughComplexAddresses()
374 GEPA->getPointerOperand() != GEPB->getPointerOperand()) in lookThroughComplexAddresses()
377 gep_type_iterator GTIB = gep_type_begin(GEPB); in lookThroughComplexAddresses()