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

  /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/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/
Function.h 224 bool onlyReadsMemory() const {
227 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
228 if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly);
Instructions.h     [all...]

Completed in 586 milliseconds