Home | History | Annotate | Download | only in Scalar

Lines Matching defs:Pointer

37   Value *Pointer;
94 POP.Pointer = LI.getPointerOperand();
96 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
97 if (auto *GEP = dyn_cast<GetElementPtrInst>(POP.Pointer)) {
105 POP.Pointer = GEP->getPointerOperand();
106 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
107 POP.Pointer = BC->getOperand(0);
131 /// have the same base pointer. There are at least two loads.
196 FirstLP.POP.Pointer->getType()->getPointerAddressSpace();
200 Builder->CreatePointerCast(Loads[0].POP.Pointer,
248 if (!POP.Pointer)
250 LoadMap[POP.Pointer].push_back(LoadPOPPair(LI, POP, Index++));