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

1 2

  /external/llvm/include/llvm/IR/
Argument.h 106 bool onlyReadsMemory() const;
CallSite.h 325 bool onlyReadsMemory() const {
326 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
433 bool onlyReadsMemory(unsigned OpNo) const {
Function.h 271 bool onlyReadsMemory() const {
402 bool onlyReadsMemory(unsigned n) const {
  /frameworks/compile/slang/
strip_unknown_attributes.cpp 31 if (A.onlyReadsMemory()) {
  /external/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 189 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser;
191 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call;
AliasAnalysis.h 294 bool onlyReadsMemory(ImmutableCallSite CS) {
295 return onlyReadsMemory(getModRefBehavior(CS));
307 bool onlyReadsMemory(const Function *F) {
308 return onlyReadsMemory(getModRefBehavior(F));
313 static bool onlyReadsMemory(FunctionModRefBehavior MRB) {
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 81 !JCS.onlyReadsMemory() &&
DependencyAnalysis.cpp 53 if (AliasAnalysis::onlyReadsMemory(MRB))
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 110 if (Call->onlyReadsMemory())
TailRecursionElimination.cpp 244 if (!CS.onlyReadsMemory())
    [all...]
EarlyCSE.cpp 218 if (!CI || !CI->onlyReadsMemory())
    [all...]
LICM.cpp 473 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 125 if (AliasAnalysis::onlyReadsMemory(MRB))
249 if (F->onlyReadsMemory() && ReadsMemory)
461 if (CS.onlyReadsMemory()) {
501 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex))
546 if (F->onlyReadsMemory() && F->doesNotThrow() &&
591 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
960 if (!F.onlyReadsMemory()) {
    [all...]
IPConstantPropagation.cpp 139 AI->hasInAllocaAttr() || (AI->hasByValAttr() && !F.onlyReadsMemory()))
  /external/llvm/lib/IR/
Instruction.cpp 448 return !cast<CallInst>(this)->onlyReadsMemory();
450 return !cast<InvokeInst>(this)->onlyReadsMemory();
Function.cpp 184 bool Argument::onlyReadsMemory() const {
    [all...]
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 242 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
VectorUtils.cpp 94 I.getType() != I.getArgOperand(0)->getType() || !I.onlyReadsMemory())
115 I.getType() != I.getArgOperand(1)->getType() || !I.onlyReadsMemory())
GlobalsModRef.cpp 385 if (Writers && !CalleeF->onlyReadsMemory())
521 } else if (F->onlyReadsMemory()) {
    [all...]
AliasAnalysis.cpp 352 if (CS.onlyReadsMemory(ArgNo)) {
BasicAliasAnalysis.cpp 560 if (CS.onlyReadsMemory())
580 if (F->onlyReadsMemory())
    [all...]
MemoryDependenceAnalysis.cpp 774 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 321 if (!CI->onlyReadsMemory())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 102 if (CS.onlyReadsMemory() &&
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 517 EXPECT_TRUE(Clone->onlyReadsMemory());

Completed in 1164 milliseconds

1 2