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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 77 NoCapture
CodeGenTarget.cpp 514 else if (Property->isSubClassOf("NoCapture")) {
516 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 581 case CodeGenIntrinsic::NoCapture:
582 OS << "Attribute::NoCapture";
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 40 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
81 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
82 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
107 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
125 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
189 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
190 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
260 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
279 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
306 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
    [all...]
  /external/llvm/include/llvm/
Function.h 286 return paramHasAttr(n, Attribute::NoCapture);
289 if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);
290 else removeAttribute(n, Attribute::NoCapture);
Attributes.h 122 DECLARE_LLVM_ATTRIBUTE(NoCapture,1<<21) ///< Function creates no aliases of pointer
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 13 // it marks function arguments (of pointer type) 'nocapture' if a call
39 STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
55 // AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
339 /// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
376 A->addAttr(Attribute::NoCapture);
390 // If it's trivially not captured, mark it nocapture now.
391 A->addAttr(Attribute::NoCapture);
412 // made. If the definition doesn't have a 'nocapture' attribute by now, it
424 ArgumentSCC[0]->Definition->addAttr(Attribute::NoCapture);
466 A->addAttr(Attribute::NoCapture);
    [all...]
  /external/llvm/lib/VMCore/
Attributes.cpp 47 if (Attrs & Attribute::NoCapture)
48 Result += "nocapture ";
106 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture;
Function.cpp 105 /// hasNoCaptureAttr - Return true if this argument has the nocapture attribute
109 return getParent()->paramHasAttr(getArgNo()+1, Attribute::NoCapture);
  /external/llvm/include/llvm/Support/
CallSite.h 242 return paramHasAttr(ArgNo + 1, Attribute::NoCapture);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 479 HANDLE_ATTR(NoCapture);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 589 CI->addAttribute(1, Attribute::NoCapture);
    [all...]
ObjCARC.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 902 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
    [all...]

Completed in 8121 milliseconds