OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:doesNotAccessMemory
(Results
1 - 14
of
14
) sorted by null
/external/llvm/include/llvm/Support/
CallSite.h
206
bool
doesNotAccessMemory
() const {
207
CALLSITE_DELEGATE_GETTER(
doesNotAccessMemory
());
209
void setDoesNotAccessMemory(bool
doesNotAccessMemory
= true) {
210
CALLSITE_DELEGATE_SETTER(setDoesNotAccessMemory(
doesNotAccessMemory
));
/external/llvm/include/llvm/
Function.h
215
bool
doesNotAccessMemory
() const {
218
void setDoesNotAccessMemory(bool
DoesNotAccessMemory
= true) {
219
if (
DoesNotAccessMemory
) addFnAttr(Attribute::ReadNone);
225
return
doesNotAccessMemory
() || hasFnAttr(Attribute::ReadOnly);
Instructions.h
[
all
...]
/external/llvm/lib/Analysis/
AliasSetTracker.cpp
130
if (Behavior == AliasAnalysis::
DoesNotAccessMemory
)
183
if (AA.
doesNotAccessMemory
(CS))
331
if (AA.
doesNotAccessMemory
(CS))
457
if (AA.
doesNotAccessMemory
(CS))
492
if (!AA.
doesNotAccessMemory
(CS)) {
BasicAliasAnalysis.cpp
626
if (CS.
doesNotAccessMemory
())
628
return
DoesNotAccessMemory
;
646
if (F->
doesNotAccessMemory
())
647
return
DoesNotAccessMemory
;
[
all
...]
/external/llvm/include/llvm/Analysis/
AliasAnalysis.h
227
///
DoesNotAccessMemory
- This function does not perform any non-local loads
233
DoesNotAccessMemory
= Nowhere | NoModRef,
269
///
doesNotAccessMemory
- If the specified call is known to never read or
280
bool
doesNotAccessMemory
(ImmutableCallSite CS) {
281
return getModRefBehavior(CS) ==
DoesNotAccessMemory
;
284
///
doesNotAccessMemory
- If the specified function is known to never read or
287
bool
doesNotAccessMemory
(const Function *F) {
288
return getModRefBehavior(F) ==
DoesNotAccessMemory
;
/external/llvm/lib/VMCore/
Instruction.cpp
285
return !cast<CallInst>(this)->
doesNotAccessMemory
();
287
return !cast<InvokeInst>(this)->
doesNotAccessMemory
();
/external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp
105
if (MRB == AliasAnalysis::
DoesNotAccessMemory
)
203
if (F->
doesNotAccessMemory
())
/external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp
61
return CI->
doesNotAccessMemory
() && !CI->getType()->isVoidTy();
DeadStoreElimination.cpp
641
if (AA->
doesNotAccessMemory
(CS))
GVN.cpp
226
if (AA->
doesNotAccessMemory
(C)) {
[
all
...]
SimplifyLibCalls.cpp
[
all
...]
/external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp
128
Min =
DoesNotAccessMemory
;
145
Min =
DoesNotAccessMemory
;
401
if (F->
doesNotAccessMemory
()) {
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
[
all
...]
Completed in 1066 milliseconds