OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ModRef
(Results
1 - 5
of
5
) sorted by null
/external/llvm/utils/TableGen/
CodeGenIntrinsics.h
64
}
ModRef
;
/external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp
35
static cl::opt<bool> PrintAll("print-all-alias-
modref
-info", cl::ReallyHidden);
42
static cl::opt<bool> PrintNoModRef("print-no-
modref
", cl::ReallyHidden);
45
static cl::opt<bool> PrintModRef("print-
modref
", cl::ReallyHidden);
50
unsigned NoModRef, Mod, Ref,
ModRef
;
65
NoModRef = Mod = Ref =
ModRef
= 0;
223
case AliasAnalysis::
ModRef
:
224
PrintModRefResults("Both
ModRef
", PrintModRef, I, *V, F.getParent());
225
++
ModRef
; break;
248
case AliasAnalysis::
ModRef
:
249
PrintModRefResults("Both
ModRef
", PrintModRef, *C, *D, F.getParent())
[
all
...]
/external/llvm/include/llvm/Analysis/
AliasAnalysis.h
216
enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2,
ModRef
= 3 };
247
OnlyAccessesArgumentPointees = ArgumentPointees |
ModRef
,
259
UnknownModRefBehavior = Anywhere |
ModRef
332
return (MRB &
ModRef
) && (MRB & ArgumentPointees);
AliasSetTracker.h
124
///
ModRef
as necessary.
128
Mods = 2,
ModRef
= 3 // Mod = bit 2
/external/llvm/lib/CodeGen/
VirtRegMap.h
48
enum
ModRef
{ isRef = 1, isMod = 2, isModRef = 3 };
50
std::pair<unsigned,
ModRef
> > MI2VirtMapTy;
461
ModRef
MRInfo);
465
void virtFolded(unsigned VirtReg, MachineInstr *MI,
ModRef
MRInfo);
Completed in 2704 milliseconds