/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | GlobalsModRef.cpp | 439 Value *Ptr = getUnderlyingObject(SI->getOperand(0)); in AnalyzeIndirectGlobalMemory() 664 Inputs.push_back(getUnderlyingObject(LI->getPointerOperand())); in isNonEscapingGlobalNoAliasWithLoad() 668 const Value *LHS = getUnderlyingObject(SI->getTrueValue()); in isNonEscapingGlobalNoAliasWithLoad() 669 const Value *RHS = getUnderlyingObject(SI->getFalseValue()); in isNonEscapingGlobalNoAliasWithLoad() 678 Op = getUnderlyingObject(Op); in isNonEscapingGlobalNoAliasWithLoad() 777 const Value *Ptr = getUnderlyingObject(LI->getPointerOperand()); in isNonEscapingGlobalNoAlias() 785 const Value *LHS = getUnderlyingObject(SI->getTrueValue()); in isNonEscapingGlobalNoAlias() 786 const Value *RHS = getUnderlyingObject(SI->getFalseValue()); in isNonEscapingGlobalNoAlias() 795 Op = getUnderlyingObject(Op); in isNonEscapingGlobalNoAlias() 831 getUnderlyingObject(LocA.Ptr->stripPointerCastsForAliasAnalysis()); in alias() [all …]
|
H A D | BasicAliasAnalysis.cpp | 612 const Value *V = getUnderlyingObject(Worklist.pop_back_val()); in pointsToConstantMemory() 809 const Value *Object = getUnderlyingObject(Loc.Ptr); in getModRefInfo() 1326 if (getUnderlyingObject(PV) == PN) { in aliasPHI() 1466 const Value *O1 = getUnderlyingObject(V1, MaxLookupSearchDepth); in aliasCheck() 1467 const Value *O2 = getUnderlyingObject(V2, MaxLookupSearchDepth); in aliasCheck()
|
H A D | AliasAnalysis.cpp | 726 const Value *Object = getUnderlyingObject(MemLoc.Ptr); in callCapturesBefore()
|
H A D | Lint.cpp | 648 V = OffsetOk ? getUnderlyingObject(V) : V->stripPointerCasts(); in findValueImpl()
|
H A D | MemoryDependenceAnalysis.cpp | 598 const Value *AccessPtr = getUnderlyingObject(MemLoc.Ptr); in getSimplePointerDependencyFrom()
|
H A D | LazyValueInfo.cpp | 634 PtrSet.insert(getUnderlyingObject(Ptr)); in AddNonNullPointer()
|
H A D | DependenceAnalysis.cpp | 664 const Value *AObj = getUnderlyingObject(LocA.Ptr); in underlyingObjectsAlias() 665 const Value *BObj = getUnderlyingObject(LocB.Ptr); in underlyingObjectsAlias()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAliasAnalysis.cpp | 94 getUnderlyingObject(A.Ptr->stripPointerCastsForAliasAnalysis()); in alias() 129 const Value *Base = getUnderlyingObject(Loc.Ptr); in pointsToConstantMemory()
|
H A D | AMDGPUTargetTransformInfo.cpp | 192 dyn_cast<AllocaInst>(getUnderlyingObject(Ptr)); in getUnrollingPreferences() 1213 PtrArg = getUnderlyingObject(PtrArg); in adjustInliningThreshold()
|
H A D | AMDGPUPromoteAlloca.cpp | 585 Value *OtherObj = getUnderlyingObject(OtherOp); in binaryOpIsDerivedFromSameAlloca()
|
H A D | R600Instructions.td | 356 !isa<GlobalValue>(getUnderlyingObject( 368 isa<GlobalValue>(getUnderlyingObject(
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | ValueTracking.h | 373 const Value *getUnderlyingObject(const Value *V, unsigned MaxLookup = 6); 374 inline Value *getUnderlyingObject(Value *V, unsigned MaxLookup = 6) { 377 return const_cast<Value *>(getUnderlyingObject(VConst, MaxLookup));
|
H A D | ObjCARCAnalysisUtils.h | 71 V = getUnderlyingObject(V); in GetUnderlyingObjCPtr()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | DeadStoreElimination.cpp | 973 const Value *UO1 = getUnderlyingObject(P1), *UO2 = getUnderlyingObject(P2); in isOverwrite() 1215 if (getUnderlyingObject(Loc.Ptr) != in isMemTerminator() 1216 getUnderlyingObject(MaybeTermLoc->first.Ptr)) in isMemTerminator() 1221 const Value *LocUO = getUnderlyingObject(Loc.Ptr); in isMemTerminator() 1748 const Value *UO = getUnderlyingObject(DefLoc->Ptr); in eliminateDeadWritesAtEndOfFunction() 1866 const Value *SILocUnd = getUnderlyingObject(SILoc.Ptr); in eliminateDeadStores() 1928 const Value *NIUnd = getUnderlyingObject(NILoc.Ptr); in eliminateDeadStores()
|
H A D | MemCpyOptimizer.cpp | 321 !isa<AllocaInst>(getUnderlyingObject(V))) { in INITIALIZE_PASS_DEPENDENCY() 1259 return isa<AllocaInst>(getUnderlyingObject(V)); in hasUndefContentsMSSA() 1276 AllocaInst *Alloca = dyn_cast<AllocaInst>(getUnderlyingObject(V)); in hasUndefContentsMSSA() 1277 if (getUnderlyingObject(II->getArgOperand(1)) == Alloca) { in hasUndefContentsMSSA()
|
H A D | LICM.cpp | 2063 Value *Object = getUnderlyingObject(SomePtr); in promoteLoopAccessesToScalars() 2196 Value *Object = getUnderlyingObject(SomePtr); in promoteLoopAccessesToScalars()
|
H A D | LoopIdiomRecognize.cpp | 599 Value *Ptr = getUnderlyingObject(SI->getPointerOperand()); in collectStores() 604 Value *Ptr = getUnderlyingObject(SI->getPointerOperand()); in collectStores()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | AssumeBundleBuilder.cpp | 75 RK.WasOn = getUnderlyingObject(RK.WasOn); in canonicalizedKnowledge() 149 Value *UnderlyingPtr = getUnderlyingObject(RK.WasOn); in isKnowledgeWorthPreserving()
|
H A D | VNCoercion.cpp | 396 GlobalVariable *GV = dyn_cast<GlobalVariable>(getUnderlyingObject(Src)); in analyzeLoadFromClobberingMemInst()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
H A D | NVPTXLowerArgs.cpp | 338 Value *UO = getUnderlyingObject(LI->getPointerOperand()); in runOnKernelFunction()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | OpenMPOpt.cpp | 493 StoredValues[Idx] = getUnderlyingObject(S->getValueOperand()); in getValues() 1202 auto *V = getUnderlyingObject(BasePtrsArg); in getValuesInOffloadArrays() 1210 V = getUnderlyingObject(PtrsArg); in getValuesInOffloadArrays() 1218 V = getUnderlyingObject(SizesArg); in getValuesInOffloadArrays()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | ThreadSanitizer.cpp | 481 if (isa<AllocaInst>(getUnderlyingObject(Addr)) && in chooseInstructionsToInstrument()
|
H A D | AddressSanitizer.cpp | 1615 GlobalVariable *G = dyn_cast<GlobalVariable>(getUnderlyingObject(Addr)); in instrumentMop() 1625 if (isa<AllocaInst>(getUnderlyingObject(Addr)) && in instrumentMop()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | LoadStoreVectorizer.cpp | 778 const Value *ObjPtr = getUnderlyingObject(Ptr); in getChainID()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 2183 getUnderlyingObject(X) == getUnderlyingObject(Y)) in visitGetElementPtrInst()
|