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

  /external/llvm/include/llvm/Support/
CallSite.h 214 bool onlyReadsMemory() const {
215 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
217 void setOnlyReadsMemory(bool onlyReadsMemory = true) {
218 CALLSITE_DELEGATE_SETTER(setOnlyReadsMemory(onlyReadsMemory));
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 251 /// OnlyReadsMemory - This function does not perform any non-local stores or
257 OnlyReadsMemory = Anywhere | Ref,
293 /// onlyReadsMemory - If the specified call is known to only read from
302 bool onlyReadsMemory(ImmutableCallSite CS) {
303 return onlyReadsMemory(getModRefBehavior(CS));
306 /// onlyReadsMemory - If the specified function is known to only read from
310 bool onlyReadsMemory(const Function *F) {
311 return onlyReadsMemory(getModRefBehavior(F));
314 /// onlyReadsMemory - Return true if functions with the specified behavior are
317 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 84 if (onlyReadsMemory(MRB))
132 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
139 if (onlyReadsMemory(CS1B))
CaptureTracking.cpp 77 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
BasicAliasAnalysis.cpp 642 if (CS.onlyReadsMemory())
643 Min = OnlyReadsMemory;
667 if (F->onlyReadsMemory())
668 Min = OnlyReadsMemory;
    [all...]
MemoryDependenceAnalysis.cpp 549 bool isReadOnly = AA->onlyReadsMemory(QueryCS);
632 bool isReadonlyCall = AA->onlyReadsMemory(QueryCS);
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 112 if (!AliasAnalysis::onlyReadsMemory(MRB))
207 if (F->onlyReadsMemory() && ReadsMemory)
IPConstantPropagation.cpp 138 (AI->hasByValAttr() && !F.onlyReadsMemory()))
  /external/llvm/lib/VMCore/
Instruction.cpp 345 return !cast<CallInst>(this)->onlyReadsMemory();
347 return !cast<InvokeInst>(this)->onlyReadsMemory();
  /external/llvm/include/llvm/
Function.h 224 bool onlyReadsMemory() const {
227 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
228 if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly);
Instructions.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 157 if (CI == 0 || !CI->onlyReadsMemory())
LICM.cpp 388 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
ObjCARC.cpp 196 return CS.onlyReadsMemory() ? IC_User : IC_CallOrUser;
198 return CS.onlyReadsMemory() ? IC_None : IC_Call;
    [all...]
SCCP.cpp     [all...]
GVN.cpp 236 } else if (AA->onlyReadsMemory(C)) {
    [all...]
ScalarReplAggregates.cpp     [all...]
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 130 Min = OnlyReadsMemory;
147 Min = OnlyReadsMemory;
403 } else if (F->onlyReadsMemory()) {
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 739 if (CalledFunc->onlyReadsMemory()) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 233 milliseconds