HomeSort by: relevance | last modified time | path
    Searched refs:onlyReadsMemory (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Argument.h 141 bool onlyReadsMemory() const;
Function.h 556 bool onlyReadsMemory() const {
644 return onlyReadsMemory() || hasFnAttribute(Attribute::NoFree);
InstrTypes.h 1706 bool onlyReadsMemory(unsigned OpNo) const {
1793 bool onlyReadsMemory() const {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 53 if (Depth < 3 && !JCB->onlyReadsMemory() &&
DependencyAnalysis.cpp 52 if (AliasAnalysis::onlyReadsMemory(MRB))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 173 return CB.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser;
175 return CB.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call;
AliasAnalysis.h 605 bool onlyReadsMemory(const CallBase *Call) {
606 return onlyReadsMemory(getModRefBehavior(Call));
618 bool onlyReadsMemory(const Function *F) {
619 return onlyReadsMemory(getModRefBehavior(F));
624 static bool onlyReadsMemory(FunctionModRefBehavior MRB) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 38 if (Call->onlyReadsMemory())
GVNSink.cpp 550 if (CI && CI->onlyReadsMemory())
553 if (II && II->onlyReadsMemory())
TailRecursionElimination.cpp 182 if (!CB.onlyReadsMemory())
GVN.cpp 405 } else if (MD && AA->onlyReadsMemory(C)) {
1992 if (!MD || !AA->onlyReadsMemory(Call))
GVNHoist.cpp 226 // onlyReadsMemory will be handled as a Load instruction,
233 else if (Call->onlyReadsMemory())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 121 if (AliasAnalysis::onlyReadsMemory(MRB))
285 if (F->onlyReadsMemory() && ReadsMemory)
512 if (CB.onlyReadsMemory()) {
552 if (!CB.onlyReadsMemory() && !CB.onlyReadsMemory(UseIndex))
714 if (F->onlyReadsMemory() && F->doesNotThrow() &&
755 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
1442 if (F.mustProgress() && F.onlyReadsMemory())
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasAnalysis.cpp 244 if (onlyReadsMemory(MRB))
317 if (onlyReadsMemory(Call1B) && onlyReadsMemory(Call2B))
322 if (onlyReadsMemory(Call1B))
766 if (Call->onlyReadsMemory(ArgNo)) {
CaptureTracking.cpp 247 if (Call->onlyReadsMemory() && Call->doesNotThrow() &&
GlobalsModRef.cpp 526 } else if (F->onlyReadsMemory()) {
914 Call->onlyReadsMemory() ? ModRefInfo::Ref : ModRefInfo::ModRef;
Lint.cpp 241 if (Formal->onlyReadsMemory() && I.onlyReadsMemory(ArgNo))
BasicAliasAnalysis.cpp 677 if (Call->onlyReadsMemory())
710 if (F->onlyReadsMemory())
868 if (Call->onlyReadsMemory(OperandNo)) {
CFLGraph.h 451 if (!Call.onlyReadsMemory())
InlineCost.cpp 1833 if (!Call.onlyReadsMemory())
1850 if (!Call.onlyReadsMemory() && !isAssumeLikeIntrinsic(II))
1890 if (!(Call.onlyReadsMemory() || (IsIndirectCall && F->onlyReadsMemory())))
MemoryDependenceAnalysis.cpp 688 bool isReadOnly = AA.onlyReadsMemory(QueryCall);
756 bool isReadonlyCall = AA.onlyReadsMemory(QueryCall);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 577 return !cast<CallBase>(this)->onlyReadsMemory();
673 (isa<IntrinsicInst>(CB) && CB->onlyReadsMemory());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUHSAMetadataStreamer.cpp 312 if (Arg.getType()->isPointerTy() && Arg.onlyReadsMemory() &&
706 if (Arg.getType()->isPointerTy() && Arg.onlyReadsMemory() &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyRegStackify.cpp 152 if (F->onlyReadsMemory()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 571 if (!CI->onlyReadsMemory())

Completed in 59 milliseconds

1 2