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

  /external/llvm/include/llvm/IR/
Function.h 224 Attribute::ReadNone);
227 addFnAttr(Attribute::ReadNone);
Attributes.h 88 ReadNone, ///< Function does not access memory
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 1 //===- FunctionAttrs.cpp - Pass which marks functions readnone or readonly ===//
12 // non-local memory, and marking them readnone/readonly. In addition,
37 STATISTIC(NumReadNone, "Number of functions marked readnone");
52 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
86 /// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
96 // write memory then they can't be marked readnone or readonly.
217 .addAttribute(Attribute::ReadNone);
224 ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone);
376 // Functions that are readonly (or readnone) and nounwind and don't return
  /external/llvm/lib/IR/
Attributes.cpp 194 if (hasAttribute(Attribute::ReadNone))
195 return "readnone";
372 case Attribute::ReadNone: return 1 << 9;
    [all...]
Verifier.cpp 638 !Attrs.hasAttribute(Idx, Attribute::ReadNone) &&
690 Assert1(!(Attrs.hasAttribute(Idx, Attribute::ReadNone) &&
692 "'readnone and readonly' are incompatible!", V);
792 Attribute::ReadNone) &&
795 "Attributes 'readnone and readonly' are incompatible!", V);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 496 HANDLE_ATTR(ReadNone);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 923 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
    [all...]

Completed in 481 milliseconds