OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pointsToConstantMemory
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Analysis/
AliasDebugger.cpp
116
bool
pointsToConstantMemory
(const Location &Loc, bool OrLocal) {
118
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
NoAliasAnalysis.cpp
53
virtual bool
pointsToConstantMemory
(const Location &Loc,
AliasAnalysisCounter.cpp
101
bool
pointsToConstantMemory
(const Location &Loc, bool OrLocal) {
102
return getAnalysis<AliasAnalysis>().
pointsToConstantMemory
(Loc, OrLocal);
AliasAnalysis.cpp
57
bool AliasAnalysis::
pointsToConstantMemory
(const Location &Loc,
60
return AA->
pointsToConstantMemory
(Loc, OrLocal);
114
if ((Mask & Mod) &&
pointsToConstantMemory
(Loc))
315
if (
pointsToConstantMemory
(Loc))
331
if (
pointsToConstantMemory
(Loc))
TypeBasedAliasAnalysis.cpp
39
// indicates that the type is "constant" (meaning
pointsToConstantMemory
237
virtual bool
pointsToConstantMemory
(const Location &Loc, bool OrLocal);
390
bool TypeBasedAliasAnalysis::
pointsToConstantMemory
(const Location &Loc,
393
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
396
if (!M) return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
404
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
BasicAliasAnalysis.cpp
508
///
pointsToConstantMemory
- Chase pointers until we find a (constant
510
virtual bool
pointsToConstantMemory
(const Location &Loc, bool OrLocal);
536
// Visited - Track instructions visited by
pointsToConstantMemory
.
582
///
pointsToConstantMemory
- Returns whether the given pointer value
586
BasicAliasAnalysis::
pointsToConstantMemory
(const Location &Loc, bool OrLocal) {
596
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
610
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
628
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
637
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
[
all
...]
/external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp
87
ObjCARCAliasAnalysis::
pointsToConstantMemory
(const Location &Loc,
90
return AliasAnalysis::
pointsToConstantMemory
(Loc, OrLocal);
95
if (AliasAnalysis::
pointsToConstantMemory
(Location(S, Loc.Size, Loc.TBAATag),
103
return AliasAnalysis::
pointsToConstantMemory
(Location(U), OrLocal);
/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);
Completed in 270 milliseconds