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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 82 ReadNone
CodeGenTarget.cpp 558 } else if (Property->isSubClassOf("ReadNone")) {
560 ArgumentAttributes.push_back(std::make_pair(ArgNo, ReadNone));
IntrinsicEmitter.cpp 516 // Try to order by readonly/readnone attribute.
603 case CodeGenIntrinsic::ReadNone:
604 OS << " AttrVec.push_back(Attribute::ReadNone);\n";
632 OS << " AttrVec.push_back(Attribute::ReadNone);\n";
  /external/llvm/include/llvm/IR/
Function.h 239 Attribute::ReadNone);
242 addFnAttr(Attribute::ReadNone);
322 return AttributeSets.hasAttribute(n, Attribute::ReadNone);
325 addAttribute(n, Attribute::ReadNone);
Attributes.h 91 ReadNone, ///< Function does not access memory
Instructions.h     [all...]
  /external/llvm/include/llvm/Support/
CallSite.h 261 return paramHasAttr(ArgNo + 1, Attribute::ReadNone);
266 paramHasAttr(ArgNo + 1, Attribute::ReadNone);
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 160 // Add attribute "readnone" so that backend can use a native sqrt instruction
163 Call->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
Mips16HardFloat.cpp 365 Attribute::ReadNone);
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 152 F->addFnAttr(Attribute::ReadNone);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 12 // non-local memory, and marking them readnone/readonly. It does the
14 // readnone/nocapture. Finally, well-known library call declarations
38 STATISTIC(NumReadNone, "Number of functions marked readnone");
41 STATISTIC(NumReadNoneArg, "Number of arguments marked readnone");
56 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
147 /// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
157 // write memory then they can't be marked readnone or readonly.
278 .addAttribute(Attribute::ReadNone);
285 ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone);
406 // Returns Attribute::None, Attribute::ReadOnly or Attribute::ReadNone
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 201 if (hasAttribute(Attribute::ReadNone))
202 return "readnone";
357 case Attribute::ReadNone: return 1 << 9;
    [all...]
Function.cpp 134 /// Return true if this argument has the readonly or readnone attribute on it
140 hasAttribute(getArgNo()+1, Attribute::ReadNone);
Verifier.cpp 761 I->getKindAsEnum() == Attribute::ReadNone) {
818 Assert1(!(Attrs.hasAttribute(Idx, Attribute::ReadNone) &&
820 "'readnone and readonly' are incompatible!", V);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 208 case Attribute::ReadNone:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 496 HANDLE_ATTR(ReadNone);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 926 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 577 *Kind = Attribute::ReadNone;
    [all...]

Completed in 493 milliseconds