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

1 2 3

  /external/llvm/lib/Analysis/
Delinearization.cpp 73 static Value *getPointerOperand(Instruction &Inst) {
75 return Load->getPointerOperand();
77 return Store->getPointerOperand();
79 return Gep->getPointerOperand();
97 const SCEV *AccessFn = SE->getSCEVAtScope(getPointerOperand(*Inst), L);
AliasAnalysis.cpp 250 return Location(LI->getPointerOperand(),
256 return Location(SI->getPointerOperand(),
262 return Location(VI->getPointerOperand(),
269 return Location(CXI->getPointerOperand(),
276 return Location(RMWI->getPointerOperand(),
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 86 dyn_cast<GlobalVariable>(SubLHS->getPointerOperand());
88 dyn_cast<GlobalVariable>(SubRHS->getPointerOperand());
X86AtomicExpandPass.cpp 212 Value *Addr = AI->getPointerOperand();
276 Builder.CreateAtomicRMW(AtomicRMWInst::Xchg, SI->getPointerOperand(),
  /external/llvm/include/llvm/IR/
Operator.h 386 Value *getPointerOperand() {
389 const Value *getPointerOperand() const {
399 return getPointerOperand()->getType();
486 Value *getPointerOperand() {
489 const Value *getPointerOperand() const {
499 return getPointerOperand()->getType();
Instructions.h 240 Value *getPointerOperand() { return getOperand(0); }
241 const Value *getPointerOperand() const { return getOperand(0); }
246 return getPointerOperand()->getType()->getPointerAddressSpace();
363 Value *getPointerOperand() { return getOperand(1); }
364 const Value *getPointerOperand() const { return getOperand(1); }
369 return getPointerOperand()->getType()->getPointerAddressSpace();
555 Value *getPointerOperand() { return getOperand(0); }
556 const Value *getPointerOperand() const { return getOperand(0); }
567 return getPointerOperand()->getType()->getPointerAddressSpace();
724 Value *getPointerOperand() { return getOperand(0);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 195 MadeChange |= instrument(LI->getPointerOperand(), LI);
197 MadeChange |= instrument(SI->getPointerOperand(), SI->getValueOperand());
199 MadeChange |= instrument(AI->getPointerOperand(),AI->getCompareOperand());
201 MadeChange |= instrument(AI->getPointerOperand(), AI->getValOperand());
ThreadSanitizer.cpp 242 Addr = GEP->getPointerOperand();
280 WriteTargets.insert(Store->getPointerOperand());
283 Value *Addr = Load->getPointerOperand();
386 ? cast<StoreInst>(I)->getPointerOperand()
387 : cast<LoadInst>(I)->getPointerOperand();
474 Value *Addr = LI->getPointerOperand();
489 Value *Addr = SI->getPointerOperand();
504 Value *Addr = RMWI->getPointerOperand();
521 Value *Addr = CASI->getPointerOperand();
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 26 Value *Ptr = CXI->getPointerOperand();
45 Value *Ptr = RMWI->getPointerOperand();
LoadCombine.cpp 94 POP.Pointer = LI.getPointerOperand();
105 POP.Pointer = GEP->getPointerOperand();
CorrelatedValuePropagation.cpp 144 Pointer = L->getPointerOperand();
146 Pointer = cast<StoreInst>(I)->getPointerOperand();
MemCpyOptimizer.cpp 226 SI->getPointerOperand(), SI->getAlignment(), SI);
406 if (!IsPointerOffset(StartPtr, NextStore->getPointerOperand(),
531 SI->getPointerOperand()->stripPointerCasts(),
532 LI->getPointerOperand()->stripPointerCasts(),
554 if (Instruction *I = tryMergingIntoMemset(SI, SI->getPointerOperand(),
    [all...]
DeadStoreElimination.cpp 306 return SI->getPointerOperand();
521 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
EarlyCSE.cpp 526 LastStore->getPointerOperand() == SI->getPointerOperand()) {
541 AvailableLoads->insert(SI->getPointerOperand(),
  /external/llvm/lib/Target/R600/
AMDGPUTargetTransformInfo.cpp 106 const Value *Ptr = GEP->getPointerOperand();
SITypeRewriter.cpp 82 Value *Ptr = I.getPointerOperand();
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 110 Builder, LI->getPointerOperand(), MemOpOrder);
126 Builder.CreateAtomicRMW(AtomicRMWInst::Xchg, SI->getPointerOperand(),
136 Value *Addr = AI->getPointerOperand();
236 Value *Addr = CI->getPointerOperand();
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 113 Operator *Cast = dyn_cast<Operator>(GEP->getPointerOperand());
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h 340 if (AA.pointsToConstantMemory(LI->getPointerOperand()))
374 StripPointerCastsAndObjCCalls(LI->getPointerOperand());
ObjCARCContract.cpp 250 if (Store->getPointerOperand() != Loc.Ptr) return;
272 Value *Args[] = { Load->getPointerOperand(), New };
499 Arg = cast<GEPOperator>(Arg)->getPointerOperand();
DependencyAnalysis.cpp 99 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 258 Value *Op = GEP->getPointerOperand();
280 Value *OrigPtr = Load->getPointerOperand();
  /external/lldb/source/Expression/
IRDynamicChecks.cpp 371 dereferenced_ptr = li->getPointerOperand();
373 dereferenced_ptr = si->getPointerOperand();
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 258 Value *Op = GEP->getPointerOperand();
280 Value *OrigPtr = Load->getPointerOperand();
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 1772 milliseconds

1 2 3