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

1 2

  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 196 MadeChange |= instrument(LI->getPointerOperand(), LI);
198 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand());
200 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand());
202 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand());
ThreadSanitizer.cpp 255 Addr = GEP->getPointerOperand();
293 WriteTargets.insert(Store->getPointerOperand());
296 Value *Addr = Load->getPointerOperand();
401 ? cast<StoreInst>(I)->getPointerOperand()
402 : cast<LoadInst>(I)->getPointerOperand();
499 Value *Addr = LI->getPointerOperand();
514 Value *Addr = SI->getPointerOperand();
529 Value *Addr = RMWI->getPointerOperand();
546 Value *Addr = CASI->getPointerOperand();
AddressSanitizer.cpp 625 return LI->getPointerOperand();
630 return SI->getPointerOperand();
635 return RMW->getPointerOperand();
640 return XCHG->getPointerOperand();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 25 Value *Ptr = CXI->getPointerOperand();
41 Value *Ptr = RMWI->getPointerOperand();
CorrelatedValuePropagation.cpp 143 Pointer = L->getPointerOperand();
145 Pointer = cast<StoreInst>(I)->getPointerOperand();
MemCpyOptimizer.cpp 215 SI->getPointerOperand(), SI->getAlignment(), SI);
395 if (!IsPointerOffset(StartPtr, NextStore->getPointerOperand(),
520 SI->getPointerOperand()->stripPointerCasts(),
521 LI->getPointerOperand()->stripPointerCasts(),
543 if (Instruction *I = tryMergingIntoMemset(SI, SI->getPointerOperand(),
    [all...]
DeadStoreElimination.cpp 301 return SI->getPointerOperand();
519 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
EarlyCSE.cpp 535 LastStore->getPointerOperand() == SI->getPointerOperand()) {
550 AvailableLoads->insert(SI->getPointerOperand(),
GVN.cpp     [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 228 return Location(LI->getPointerOperand(),
234 return Location(SI->getPointerOperand(),
240 return Location(VI->getPointerOperand(),
247 return Location(CXI->getPointerOperand(),
254 return Location(RMWI->getPointerOperand(),
Lint.cpp 462 visitMemoryReference(I, I.getPointerOperand(),
468 visitMemoryReference(I, I.getPointerOperand(),
614 if (Value *U = FindAvailableLoadedValue(L->getPointerOperand(),
DependenceAnalysis.cpp 650 Value *getPointerOperand(Instruction *I) {
652 return LI->getPointerOperand();
654 return SI->getPointerOperand();
    [all...]
  /external/llvm/include/llvm/IR/
Operator.h 382 Value *getPointerOperand() {
385 const Value *getPointerOperand() const {
395 return getPointerOperand()->getType();
Instructions.h 225 Value *getPointerOperand() { return getOperand(0); }
226 const Value *getPointerOperand() const { return getOperand(0); }
231 return getPointerOperand()->getType()->getPointerAddressSpace();
348 Value *getPointerOperand() { return getOperand(1); }
349 const Value *getPointerOperand() const { return getOperand(1); }
354 return getPointerOperand()->getType()->getPointerAddressSpace();
513 Value *getPointerOperand() { return getOperand(0); }
514 const Value *getPointerOperand() const { return getOperand(0); }
525 return getPointerOperand()->getType()->getPointerAddressSpace();
660 Value *getPointerOperand() { return getOperand(0);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h 339 if (AA.pointsToConstantMemory(LI->getPointerOperand()))
373 StripPointerCastsAndObjCCalls(LI->getPointerOperand());
ObjCARCContract.cpp 249 if (Store->getPointerOperand() != Loc.Ptr) return;
271 Value *Args[] = { Load->getPointerOperand(), New };
498 Arg = cast<GEPOperator>(Arg)->getPointerOperand();
DependencyAnalysis.cpp 98 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand());
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 285 static Value *getPointerOperand(Value *I);
965 Value *BoUpSLP::getPointerOperand(Value *I) {
967 return LI->getPointerOperand();
969 return SI->getPointerOperand();
982 Value *PtrA = getPointerOperand(A);
983 Value *PtrB = getPointerOperand(B);
    [all...]
LoopVectorize.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 258 Value *Op = GEP->getPointerOperand();
280 Value *OrigPtr = Load->getPointerOperand();
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 258 Value *Op = GEP->getPointerOperand();
280 Value *OrigPtr = Load->getPointerOperand();
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 365 if (GEP1->getPointerOperand()->getType() !=
366 GEP2->getPointerOperand()->getType())
437 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 56 printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 342 V = GEP->getPointerOperand()->stripPointerCasts();
374 V = GEP->getPointerOperand()->stripPointerCasts();
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 319 bool SROACandidate = lookupSROAArgAndCost(I.getPointerOperand(),
326 Value *Ptr = I.getPointerOperand();
875 V = GEP->getPointerOperand();
    [all...]

Completed in 128 milliseconds

1 2