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

1 2

  /external/llvm/include/llvm/IR/
Argument.h 87 bool onlyReadsMemory() const;
Function.h 246 bool onlyReadsMemory() const {
328 bool onlyReadsMemory(unsigned n) const {
Instructions.h     [all...]
  /external/llvm/include/llvm/Support/
CallSite.h 224 bool onlyReadsMemory() const {
225 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
264 bool onlyReadsMemory(unsigned ArgNo) const {
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 264 /// OnlyReadsMemory - This function does not perform any non-local stores or
270 OnlyReadsMemory = Anywhere | Ref,
306 /// onlyReadsMemory - If the specified call is known to only read from
315 bool onlyReadsMemory(ImmutableCallSite CS) {
316 return onlyReadsMemory(getModRefBehavior(CS));
319 /// onlyReadsMemory - If the specified function is known to only read from
323 bool onlyReadsMemory(const Function *F) {
324 return onlyReadsMemory(getModRefBehavior(F));
327 /// onlyReadsMemory - Return true if functions with the specified behavior are
330 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 89 if (onlyReadsMemory(MRB))
137 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
144 if (onlyReadsMemory(CS1B))
455 if (CS.onlyReadsMemory(ArgNo)) {
CaptureTracking.cpp 113 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
BasicAliasAnalysis.cpp 656 if (CS.onlyReadsMemory())
657 Min = OnlyReadsMemory;
681 if (F->onlyReadsMemory())
682 Min = OnlyReadsMemory;
    [all...]
MemoryDependenceAnalysis.cpp 587 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
670 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 83 !JCS.onlyReadsMemory() &&
ObjCARC.h 352 return CS.onlyReadsMemory() ? IC_User : IC_CallOrUser;
354 return CS.onlyReadsMemory() ? IC_None : IC_Call;
DependencyAnalysis.cpp 53 if (AliasAnalysis::onlyReadsMemory(MRB))
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 130 if (Call->onlyReadsMemory())
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 80 if (!F.onlyReadsMemory()) {
101 if (!F.onlyReadsMemory(n)) {
174 if (!AliasAnalysis::onlyReadsMemory(MRB))
269 if (F->onlyReadsMemory() && ReadsMemory)
455 if (CS.onlyReadsMemory()) {
473 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(A - B))
533 if (F->onlyReadsMemory() && F->doesNotThrow() &&
574 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
    [all...]
IPConstantPropagation.cpp 138 (AI->hasByValAttr() && !F.onlyReadsMemory()))
  /external/llvm/lib/IR/
Instruction.cpp 450 return !cast<CallInst>(this)->onlyReadsMemory();
452 return !cast<InvokeInst>(this)->onlyReadsMemory();
Function.cpp 136 bool Argument::onlyReadsMemory() const {
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 170 if (II->use_empty() && II->onlyReadsMemory()) {
EarlyCSE.cpp 215 if (CI == 0 || !CI->onlyReadsMemory())
LICM.cpp 421 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
    [all...]
SCCP.cpp     [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 131 Min = OnlyReadsMemory;
148 Min = OnlyReadsMemory;
397 } else if (F->onlyReadsMemory()) {
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 275 if (!CI->onlyReadsMemory())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 88 if (CS.onlyReadsMemory() &&
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 349 if (CalledFunc->onlyReadsMemory()) {
    [all...]

Completed in 543 milliseconds

1 2