HomeSort by relevance Sort by last modified time
    Searched refs:onlyReadsMemory (Results 1 - 25 of 31) sorted by null

1 2

  /external/llvm/include/llvm/IR/
Argument.h 96 bool onlyReadsMemory() const;
CallSite.h 243 bool onlyReadsMemory() const {
244 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
300 bool onlyReadsMemory(unsigned ArgNo) const {
Function.h 246 bool onlyReadsMemory() const {
329 bool onlyReadsMemory(unsigned n) const {
  /frameworks/compile/slang/
strip_unknown_attributes.cpp 31 if (A.onlyReadsMemory()) {
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 264 /// OnlyReadsMemory - This function does not perform any non-local stores or
270 OnlyReadsMemory = Anywhere | Ref,
314 /// onlyReadsMemory - If the specified call is known to only read from
323 bool onlyReadsMemory(ImmutableCallSite CS) {
324 return onlyReadsMemory(getModRefBehavior(CS));
327 /// onlyReadsMemory - If the specified function is known to only read from
331 bool onlyReadsMemory(const Function *F) {
332 return onlyReadsMemory(getModRefBehavior(F));
335 /// onlyReadsMemory - Return true if functions with the specified behavior are
338 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 96 if (onlyReadsMemory(MRB))
148 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
155 if (onlyReadsMemory(CS1B))
477 if (CS.onlyReadsMemory(ArgNo)) {
CaptureTracking.cpp 111 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
BasicAliasAnalysis.cpp 686 if (CS.onlyReadsMemory())
687 Min = OnlyReadsMemory;
711 if (F->onlyReadsMemory())
712 Min = OnlyReadsMemory;
    [all...]
MemoryDependenceAnalysis.cpp 592 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
675 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 84 !JCS.onlyReadsMemory() &&
ObjCARC.h 353 return CS.onlyReadsMemory() ? IC_User : IC_CallOrUser;
355 return CS.onlyReadsMemory() ? IC_None : IC_Call;
DependencyAnalysis.cpp 54 if (AliasAnalysis::onlyReadsMemory(MRB))
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 108 if (Call->onlyReadsMemory())
EarlyCSE.cpp 211 if (!CI || !CI->onlyReadsMemory())
TailRecursionElimination.cpp 240 if (!CS.onlyReadsMemory())
    [all...]
LICM.cpp 462 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
VectorUtils.h 77 !I.onlyReadsMemory())
90 !I.onlyReadsMemory())
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 81 if (!F.onlyReadsMemory()) {
102 if (!F.onlyReadsMemory(n)) {
176 if (!AliasAnalysis::onlyReadsMemory(MRB))
271 if (F->onlyReadsMemory() && ReadsMemory)
472 if (CS.onlyReadsMemory()) {
492 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(A - B))
553 if (F->onlyReadsMemory() && F->doesNotThrow() &&
594 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
    [all...]
IPConstantPropagation.cpp 139 AI->hasInAllocaAttr() || (AI->hasByValAttr() && !F.onlyReadsMemory()))
  /external/llvm/lib/IR/
Instruction.cpp 433 return !cast<CallInst>(this)->onlyReadsMemory();
435 return !cast<InvokeInst>(this)->onlyReadsMemory();
Function.cpp 159 bool Argument::onlyReadsMemory() const {
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 136 Min = OnlyReadsMemory;
153 Min = OnlyReadsMemory;
391 } else if (F->onlyReadsMemory()) {
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 290 if (!CI->onlyReadsMemory())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 99 if (CS.onlyReadsMemory() &&
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 369 if (CalledFunc->onlyReadsMemory()) {
    [all...]

Completed in 576 milliseconds

1 2