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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 80 NoCapture,
CodeGenTarget.cpp 552 else if (Property->isSubClassOf("NoCapture")) {
554 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 597 case CodeGenIntrinsic::NoCapture:
598 OS << " AttrVec.push_back(Attribute::NoCapture);\n";
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 42 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
71 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
127 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
128 AS[1] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
160 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
184 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
267 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
268 AS[1] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
348 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
372 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
    [all...]
SimplifyLibCalls.cpp 803 CI->addAttribute(1, Attribute::NoCapture);
    [all...]
  /art/compiler/llvm/
intrinsic_helper.cc 101 // 2. Add "nocapture" and "noalias" attribute to the arguments in all
154 // Add "noalias" and "nocapture" attribute to all arguments of pointer type
159 attributes.push_back(::llvm::Attribute::NoCapture);
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 173 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
  /external/llvm/include/llvm/IR/
Function.h 315 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
318 addAttribute(n, Attribute::NoCapture);
Attributes.h 81 NoCapture, ///< Function creates no aliases of pointer
  /external/llvm/include/llvm/Support/
CallSite.h 252 return paramHasAttr(ArgNo + 1, Attribute::NoCapture);
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 160 Attribute::AttrKind AK[] = { Attribute::NoCapture };
  /external/llvm/lib/IR/
Attributes.cpp 183 if (hasAttribute(Attribute::NoCapture))
184 return "nocapture";
365 case Attribute::NoCapture: return 1 << 21;
    [all...]
Function.cpp 109 /// hasNoCaptureAttr - Return true if this argument has the nocapture attribute
114 hasAttribute(getArgNo()+1, Attribute::NoCapture);
Verifier.cpp 788 !Attrs.hasAttribute(Idx, Attribute::NoCapture) &&
790 "Attribute 'byval', 'nest', 'sret', 'nocapture', and 'returned' "
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 14 // readnone/nocapture. Finally, well-known library call declarations
40 STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
59 // AddArgumentAttrs - Deduce nocapture attributes for the SCC.
498 /// AddArgumentAttrs - Deduce nocapture attributes for the SCC.
515 B.addAttribute(Attribute::NoCapture);
555 // If it's trivially not captured, mark it nocapture now.
597 // made. If the definition doesn't have a 'nocapture' attribute by now, it
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 190 case Attribute::NoCapture:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 504 HANDLE_ATTR(NoCapture);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 550 *Kind = Attribute::NoCapture;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 427 milliseconds