Searched refs:pointsToConstantMemory (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAliasAnalysis.cpp88 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc, function in class:ObjCARCAliasAnalysis
91 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
96 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
104 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
H A DObjCARCAliasAnalysis.h62 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
H A DObjCARC.h335 if (AA.pointsToConstantMemory(Op))
340 if (AA.pointsToConstantMemory(LI->getPointerOperand()))
/external/llvm/lib/Analysis/
H A DNoAliasAnalysis.cpp54 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
H A DAliasAnalysisCounter.cpp100 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
101 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
H A DAliasDebugger.cpp116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
H A DAliasAnalysis.cpp57 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, function in class:AliasAnalysis
60 return AA->pointsToConstantMemory(Loc, OrLocal);
125 if ((Mask & Mod) && pointsToConstantMemory(Loc))
337 if (pointsToConstantMemory(Loc))
353 if (pointsToConstantMemory(Loc))
H A DTypeBasedAliasAnalysis.cpp44 // indicates that the type is "constant" (meaning pointsToConstantMemory
303 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
470 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc, function in class:TypeBasedAliasAnalysis
473 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
476 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
484 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
H A DBasicAliasAnalysis.cpp489 /// pointsToConstantMemory - Chase pointers until we find a (constant
491 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
535 // Visited - Track instructions visited by pointsToConstantMemory.
597 /// pointsToConstantMemory - Returns whether the given pointer value
601 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) { function in class:BasicAliasAnalysis
611 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
625 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
643 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
652 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
H A DMemoryDependenceAnalysis.cpp460 if (AA->pointsToConstantMemory(LoadLoc))
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h212 /// pointsToConstantMemory - If the specified memory location is
216 virtual bool pointsToConstantMemory(const Location &Loc,
219 /// pointsToConstantMemory - A convenient wrapper.
220 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { function in class:llvm::AliasAnalysis
221 return pointsToConstantMemory(Location(P), OrLocal);
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp210 if (!AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) {
233 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
240 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
246 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp442 if (AA->pointsToConstantMemory(LI->getOperand(0)))
/external/llvm/lib/CodeGen/
H A DMachineInstr.cpp1380 if (AA && AA->pointsToConstantMemory(
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3485 else if (AA->pointsToConstantMemory(
5569 if (Builder.AA->pointsToConstantMemory(PtrVal)) {

Completed in 172 milliseconds