HomeSort by relevance Sort by last modified time
    Searched refs:pointsToConstantMemory (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 88 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
91 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
96 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
104 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
ObjCARCAliasAnalysis.h 62 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
ObjCARC.h 335 if (AA.pointsToConstantMemory(Op))
340 if (AA.pointsToConstantMemory(LI->getPointerOperand()))
  /external/llvm/lib/Analysis/
NoAliasAnalysis.cpp 54 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
AliasAnalysisCounter.cpp 100 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
101 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
AliasDebugger.cpp 116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
AliasAnalysis.cpp 57 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc,
60 return AA->pointsToConstantMemory(Loc, OrLocal);
125 if ((Mask & Mod) && pointsToConstantMemory(Loc))
337 if (pointsToConstantMemory(Loc))
353 if (pointsToConstantMemory(Loc))
TypeBasedAliasAnalysis.cpp 44 // indicates that the type is "constant" (meaning pointsToConstantMemory
303 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
470 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc,
473 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
476 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
484 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
BasicAliasAnalysis.cpp 489 /// 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) {
611 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
625 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
643 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
652 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
    [all...]
MemoryDependenceAnalysis.cpp 460 if (AA->pointsToConstantMemory(LoadLoc))
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 212 /// 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) {
221 return pointsToConstantMemory(Location(P), OrLocal);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 210 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))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 442 if (AA->pointsToConstantMemory(LI->getOperand(0)))
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 789 milliseconds