HomeSort by relevance Sort by last modified time
    Searched refs:doesNotAccessMemory (Results 1 - 13 of 13) 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/include/llvm/Analysis/
AliasAnalysis.h 229 /// DoesNotAccessMemory - This function does not perform any non-local loads
235 DoesNotAccessMemory = Nowhere | NoModRef,
271 /// doesNotAccessMemory - If the specified call is known to never read or
282 bool doesNotAccessMemory(ImmutableCallSite CS) {
283 return getModRefBehavior(CS) == DoesNotAccessMemory;
286 /// doesNotAccessMemory - If the specified function is known to never read or
289 bool doesNotAccessMemory(const Function *F) {
290 return getModRefBehavior(F) == DoesNotAccessMemory;
  /external/llvm/lib/VMCore/
Instruction.cpp 325 return !cast<CallInst>(this)->doesNotAccessMemory();
327 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 643 if (AA->doesNotAccessMemory(CS))
GVN.cpp 230 if (AA->doesNotAccessMemory(C)) {
    [all...]
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 634 if (CS.doesNotAccessMemory())
636 return DoesNotAccessMemory;
654 if (F->doesNotAccessMemory())
655 return DoesNotAccessMemory;
    [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 846 milliseconds