HomeSort by relevance Sort by last modified time
    Searched defs:onlyReadsMemory (Results 1 - 5 of 5) 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,
314 /// onlyReadsMemory - If the specified call is known to only read from
323 bool onlyReadsMemory(ImmutableCallSite CS) {
324 return onlyReadsMemory(getModRefBehavior(CS));
327 /// onlyReadsMemory - If the specified function is known to only read from
331 bool onlyReadsMemory(const Function *F) {
332 return onlyReadsMemory(getModRefBehavior(F));
335 /// onlyReadsMemory - Return true if functions with the specified behavior are
338 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/include/llvm/IR/
CallSite.h 243 bool onlyReadsMemory() const {
244 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
300 bool onlyReadsMemory(unsigned ArgNo) const {
Function.h 246 bool onlyReadsMemory() const {
329 bool onlyReadsMemory(unsigned n) const {
Instructions.h     [all...]
  /external/llvm/lib/IR/
Function.cpp 159 bool Argument::onlyReadsMemory() const {

Completed in 949 milliseconds