HomeSort by relevance Sort by last modified time
    Searched refs:getPointerOperand (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 197 MadeChange |= instrument(LI->getPointerOperand(), LI);
199 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand());
201 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand());
203 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand());
ThreadSanitizer.cpp 181 Addr = GEP->getPointerOperand();
219 WriteTargets.insert(Store->getPointerOperand());
222 Value *Addr = Load->getPointerOperand();
316 ? cast<StoreInst>(I)->getPointerOperand()
317 : cast<LoadInst>(I)->getPointerOperand();
359 Value *Addr = LI->getPointerOperand();
374 Value *Addr = SI->getPointerOperand();
AddressSanitizer.cpp 350 return LI->getPointerOperand();
355 return SI->getPointerOperand();
360 return RMW->getPointerOperand();
365 return XCHG->getPointerOperand();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 25 Value *Ptr = CXI->getPointerOperand();
41 Value *Ptr = RMWI->getPointerOperand();
CorrelatedValuePropagation.cpp 124 Pointer = L->getPointerOperand();
126 Pointer = cast<StoreInst>(I)->getPointerOperand();
EarlyCSE.cpp 477 LastStore->getPointerOperand() == SI->getPointerOperand()) {
492 AvailableLoads->insert(SI->getPointerOperand(),
MemCpyOptimizer.cpp 215 SI->getPointerOperand(), SI->getAlignment(), SI);
395 if (!IsPointerOffset(StartPtr, NextStore->getPointerOperand(),
513 SI->getPointerOperand()->stripPointerCasts(),
514 LI->getPointerOperand()->stripPointerCasts(),
535 if (Instruction *I = tryMergingIntoMemset(SI, SI->getPointerOperand(),
    [all...]
DeadStoreElimination.cpp 266 return SI->getPointerOperand();
478 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
GVN.cpp 924 Value *StorePtr = DepSI->getPointerOperand()
    [all...]
TailRecursionElimination.cpp 246 !isSafeToLoadUnconditionally(L->getPointerOperand(), L,
  /external/llvm/include/llvm/
Operator.h 275 Value *getPointerOperand() {
278 const Value *getPointerOperand() const {
288 return getPointerOperand()->getType();
Instructions.h 225 Value *getPointerOperand() { return getOperand(0); }
226 const Value *getPointerOperand() const { return getOperand(0); }
230 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
348 Value *getPointerOperand() { return getOperand(1); }
349 const Value *getPointerOperand() const { return getOperand(1); }
353 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
514 Value *getPointerOperand() { return getOperand(0); }
515 const Value *getPointerOperand() const { return getOperand(0); }
525 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
661 Value *getPointerOperand() { return getOperand(0);
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 227 return Location(LI->getPointerOperand(),
233 return Location(SI->getPointerOperand(),
239 return Location(VI->getPointerOperand(),
246 return Location(CXI->getPointerOperand(),
253 return Location(RMWI->getPointerOperand(),
LoopDependenceAnalysis.cpp 88 static Value *GetPointerOperand(Value *I) {
90 return i->getPointerOperand();
92 return i->getPointerOperand();
225 Value *aPtr = GetPointerOperand(P->A);
226 Value *bPtr = GetPointerOperand(P->B);
Loads.cpp 68 V = GEP->getPointerOperand();
InlineCost.cpp 301 bool SROACandidate = lookupSROAArgAndCost(I.getPointerOperand(),
308 Value *Ptr = I.getPointerOperand();
755 V = GEP->getPointerOperand();
    [all...]
Lint.cpp 428 visitMemoryReference(I, I.getPointerOperand(),
434 visitMemoryReference(I, I.getPointerOperand(),
580 if (Value *U = FindAvailableLoadedValue(L->getPointerOperand(),
LazyValueInfo.cpp 560 GetUnderlyingObject(L->getPointerOperand()) ==
565 GetUnderlyingObject(S->getPointerOperand()) ==
    [all...]
MemoryBuiltins.cpp 512 SizeOffsetType PtrData = compute(GEP.getPointerOperand());
695 SizeOffsetEvalType PtrData = compute_(GEP.getPointerOperand());
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 359 if (GEP1->getPointerOperand()->getType() !=
360 GEP2->getPointerOperand()->getType())
431 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
ArgumentPromotion.cpp 348 Value *V = LI->getPointerOperand();
350 V = GEP->getPointerOperand();
    [all...]
  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 57 printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 351 V = GEP->getPointerOperand()->stripPointerCasts();
383 V = GEP->getPointerOperand()->stripPointerCasts();
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 459 IPtr = cast<LoadInst>(I)->getPointerOperand();
460 JPtr = cast<LoadInst>(J)->getPointerOperand();
464 IPtr = cast<StoreInst>(I)->getPointerOperand();
465 JPtr = cast<StoreInst>(J)->getPointerOperand();
    [all...]
  /external/llvm/lib/VMCore/
Value.cpp 359 V = GEP->getPointerOperand();

Completed in 1207 milliseconds

1 2