OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ModRef
(Results
1 - 4
of
4
) sorted by null
/external/llvm/utils/TableGen/
CodeGenIntrinsics.h
64
}
ModRef
;
/external/llvm/include/llvm/Analysis/
AliasAnalysis.h
231
enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2,
ModRef
= 3 };
262
OnlyAccessesArgumentPointees = ArgumentPointees |
ModRef
,
274
UnknownModRefBehavior = Anywhere |
ModRef
347
return (MRB &
ModRef
) && (MRB & ArgumentPointees);
434
return
ModRef
;
AliasSetTracker.h
122
///
ModRef
as necessary.
126
Mods = 2,
ModRef
= 3 // Mod = bit 2
/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);
52
unsigned NoModRef, Mod, Ref,
ModRef
;
67
NoModRef = Mod = Ref =
ModRef
= 0;
293
case AliasAnalysis::
ModRef
:
294
PrintModRefResults("Both
ModRef
", PrintModRef, I, *V, F.getParent());
295
++
ModRef
; break;
316
case AliasAnalysis::
ModRef
:
317
PrintModRefResults("Both
ModRef
", PrintModRef, *C, *D, F.getParent())
[
all
...]
Completed in 40 milliseconds