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

  /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 88 if (onlyReadsMemory(MRB))
136 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
143 if (onlyReadsMemory(CS1B))
CaptureTracking.cpp 113 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
BasicAliasAnalysis.cpp 616 if (CS.onlyReadsMemory())
617 Min = OnlyReadsMemory;
641 if (F->onlyReadsMemory())
642 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 344 return CS.onlyReadsMemory() ? IC_User : IC_CallOrUser;
346 return CS.onlyReadsMemory() ? IC_None : IC_Call;
DependencyAnalysis.cpp 52 if (AliasAnalysis::onlyReadsMemory(MRB))
  /external/llvm/include/llvm/Support/
CallSite.h 219 bool onlyReadsMemory() const {
220 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 113 if (!AliasAnalysis::onlyReadsMemory(MRB))
208 if (F->onlyReadsMemory() && ReadsMemory)
378 if (F->onlyReadsMemory() && F->doesNotThrow() &&
IPConstantPropagation.cpp 138 (AI->hasByValAttr() && !F.onlyReadsMemory()))
  /external/llvm/include/llvm/IR/
Function.h 231 bool onlyReadsMemory() const {
Instructions.h     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 450 return !cast<CallInst>(this)->onlyReadsMemory();
452 return !cast<InvokeInst>(this)->onlyReadsMemory();
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 171 if (II->use_empty() && II->onlyReadsMemory()) {
EarlyCSE.cpp 215 if (CI == 0 || !CI->onlyReadsMemory())
LICM.cpp 421 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
    [all...]
SimplifyLibCalls.cpp 221 if (!F.onlyReadsMemory()) {
SCCP.cpp     [all...]
GVN.cpp 281 } else if (AA->onlyReadsMemory(C)) {
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 131 Min = OnlyReadsMemory;
148 Min = OnlyReadsMemory;
397 } else if (F->onlyReadsMemory()) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 88 if (CS.onlyReadsMemory() &&
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 339 if (CalledFunc->onlyReadsMemory()) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 525 milliseconds