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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 86 ReadNone
CodeGenTarget.cpp 584 } else if (Property->isSubClassOf("ReadNone")) {
586 ArgumentAttributes.push_back(std::make_pair(ArgNo, ReadNone));
IntrinsicEmitter.cpp 538 // Try to order by readonly/readnone attribute.
631 case CodeGenIntrinsic::ReadNone:
634 OS << "Attributes::ReadNone";
680 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 244 Attribute::ReadNone);
247 addFnAttr(Attribute::ReadNone);
328 return AttributeSets.hasAttribute(n, Attribute::ReadNone);
331 addAttribute(n, Attribute::ReadNone);
CallSite.h 304 return paramHasAttr(ArgNo + 1, Attribute::ReadNone);
309 paramHasAttr(ArgNo + 1, Attribute::ReadNone);
Attributes.h 98 ReadNone, ///< Function does not access memory
Instructions.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 144 // Add attribute "readnone" so that backend can use a native sqrt instruction
147 Call->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
RewriteStatepointsForGC.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 151 F->addFnAttr(Attribute::ReadNone);
AMDGPUPromoteAlloca.cpp 306 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.
283 .addAttribute(Attribute::ReadNone);
290 ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone);
412 // Returns Attribute::None, Attribute::ReadOnly or Attribute::ReadNone
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 237 if (hasAttribute(Attribute::ReadNone))
238 return "readnone";
406 case Attribute::ReadNone: return 1 << 9;
    [all...]
Function.cpp 175 /// Return true if this argument has the readonly or readnone attribute on it
181 hasAttribute(getArgNo()+1, Attribute::ReadNone);
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 415 Attribute::ReadNone);
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 612 F->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
620 F->addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
684 B.addAttribute(Attribute::ReadOnly).addAttribute(Attribute::ReadNone);
    [all...]
MemorySanitizer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 507 HANDLE_ATTR(ReadNone);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 215 case Attribute::ReadNone:
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 740 milliseconds