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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 86 ReadNone
CodeGenTarget.cpp 589 } else if (Property->isSubClassOf("ReadNone")) {
591 ArgumentAttributes.push_back(std::make_pair(ArgNo, ReadNone));
IntrinsicEmitter.cpp 520 // Try to order by readonly/readnone attribute.
613 case CodeGenIntrinsic::ReadNone:
616 OS << "Attributes::ReadNone";
662 OS << "Attribute::ReadNone";
  /frameworks/compile/slang/
strip_unknown_attributes.cpp 30 // Remove any readnone/readonly attributes from function parameters.
33 B.addAttribute(llvm::Attribute::ReadNone);
  /external/llvm/include/llvm/IR/
Function.h 239 Attribute::ReadNone);
242 addFnAttr(Attribute::ReadNone);
323 return AttributeSets.hasAttribute(n, Attribute::ReadNone);
326 addAttribute(n, Attribute::ReadNone);
CallSite.h 297 return paramHasAttr(ArgNo + 1, Attribute::ReadNone);
302 paramHasAttr(ArgNo + 1, Attribute::ReadNone);
Attributes.h 96 ReadNone, ///< Function does not access memory
Instructions.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 138 // Add attribute "readnone" so that backend can use a native sqrt instruction
141 Call->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 151 F->addFnAttr(Attribute::ReadNone);
AMDGPUPromoteAlloca.cpp 288 AttrSet.addAttribute(Mod->getContext(), 0, 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
39 STATISTIC(NumReadNone, "Number of functions marked readnone");
42 STATISTIC(NumReadNoneArg, "Number of arguments marked readnone");
57 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
149 /// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
159 // write memory then they can't be marked readnone or readonly.
280 .addAttribute(Attribute::ReadNone);
287 ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone);
409 // Returns Attribute::None, Attribute::ReadOnly or Attribute::ReadNone
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 210 if (hasAttribute(Attribute::ReadNone))
211 return "readnone";
370 case Attribute::ReadNone: return 1 << 9;
    [all...]
Function.cpp 157 /// Return true if this argument has the readonly or readnone attribute on it
163 hasAttribute(getArgNo()+1, Attribute::ReadNone);
Verifier.cpp 784 I->getKindAsEnum() == Attribute::ReadNone) {
840 Assert1(!(Attrs.hasAttribute(Idx, Attribute::ReadNone) &&
842 "'readnone and readonly' are incompatible!", V);
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 403 Attribute::ReadNone);
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 565 F->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
624 B.addAttribute(Attribute::ReadOnly).addAttribute(Attribute::ReadNone);
    [all...]
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 214 case Attribute::ReadNone:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 504 HANDLE_ATTR(ReadNone);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 602 return Attribute::ReadNone;
    [all...]

Completed in 606 milliseconds