OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:onlyReadsMemory
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/Analysis/
AliasAnalysis.h
264
///
OnlyReadsMemory
- This function does not perform any non-local stores or
270
OnlyReadsMemory
= Anywhere | Ref,
306
///
onlyReadsMemory
- If the specified call is known to only read from
315
bool
onlyReadsMemory
(ImmutableCallSite CS) {
316
return
onlyReadsMemory
(getModRefBehavior(CS));
319
///
onlyReadsMemory
- If the specified function is known to only read from
323
bool
onlyReadsMemory
(const Function *F) {
324
return
onlyReadsMemory
(getModRefBehavior(F));
327
///
onlyReadsMemory
- Return true if functions with the specified behavior are
330
static bool
onlyReadsMemory
(ModRefBehavior MRB)
[
all
...]
/external/llvm/include/llvm/Support/
CallSite.h
224
bool
onlyReadsMemory
() const {
225
CALLSITE_DELEGATE_GETTER(
onlyReadsMemory
());
264
bool
onlyReadsMemory
(unsigned ArgNo) const {
/external/llvm/lib/IR/
Function.cpp
136
bool Argument::
onlyReadsMemory
() const {
/external/llvm/include/llvm/IR/
Function.h
246
bool
onlyReadsMemory
() const {
328
bool
onlyReadsMemory
(unsigned n) const {
Instructions.h
[
all
...]
Completed in 54 milliseconds