Lines Matching refs:PtrValue

376   Value *PtrValue = nullptr;  in getPointerOperandAndType()  local
380 PtrValue = LMemI->getPointerOperand(); in getPointerOperandAndType()
383 PtrValue = SMemI->getPointerOperand(); in getPointerOperandAndType()
389 PtrValue = IMemI->getArgOperand(0); in getPointerOperandAndType()
391 PtrValue = IMemI->getArgOperand(1); in getPointerOperandAndType()
398 return PtrValue; in getPointerOperandAndType()
868 Value *PtrValue = nullptr; in collectCandidates() local
870 PtrValue = getPointerOperandAndType(&J, &PointerElementType); in collectCandidates()
872 if (!PtrValue) in collectCandidates()
875 if (PtrValue->getType()->getPointerAddressSpace()) in collectCandidates()
878 if (L->isLoopInvariant(PtrValue)) in collectCandidates()
881 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in collectCandidates()
889 if (isValidCandidate(&J, PtrValue, PointerElementType)) in collectCandidates()
1306 auto isUpdateFormCandidate = [&](const Instruction *I, Value *PtrValue, in runOnLoop()
1308 assert((PtrValue && I) && "Invalid parameter!"); in runOnLoop()
1323 const SCEV *LSCEV = SE->getSCEVAtScope(const_cast<Value *>(PtrValue), L); in runOnLoop()
1338 auto isDSFormCandidate = [](const Instruction *I, Value *PtrValue, in runOnLoop()
1340 assert((PtrValue && I) && "Invalid parameter!"); in runOnLoop()
1352 auto isDQFormCandidate = [&](const Instruction *I, Value *PtrValue, in runOnLoop() argument
1354 assert((PtrValue && I) && "Invalid parameter!"); in runOnLoop()
1367 auto isChainCommoningCandidate = [&](const Instruction *I, Value *PtrValue, in runOnLoop() argument
1370 cast<SCEVAddRecExpr>(SE->getSCEVAtScope(PtrValue, L)); in runOnLoop()