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

  /external/swiftshader/third_party/LLVM/include/llvm/
Function.h 228 bool onlyReadsMemory() const {
231 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
232 if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly);
Instructions.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
TypeBasedAliasAnalysis.cpp 260 Min = OnlyReadsMemory;
BasicAliasAnalysis.cpp 642 if (CS.onlyReadsMemory())
643 Min = OnlyReadsMemory;
667 if (F->onlyReadsMemory())
668 Min = OnlyReadsMemory;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
GlobalsModRef.cpp 130 Min = OnlyReadsMemory;
147 Min = OnlyReadsMemory;
403 } else if (F->onlyReadsMemory()) {
  /external/swiftshader/third_party/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...]

Completed in 852 milliseconds