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

  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 77 NoCapture
CodeGenTarget.cpp 491 else if (Property->isSubClassOf("NoCapture")) {
493 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 567 case CodeGenIntrinsic::NoCapture:
568 OS << "Attribute::NoCapture";
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 36 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
77 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
78 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
103 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
121 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
185 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
186 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
259 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
278 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
305 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
    [all...]
  /external/llvm/include/llvm/
Attributes.h 56 const Attributes NoCapture = 1<<21; ///< Function creates no aliases of pointer
88 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
Function.h 286 return paramHasAttr(n, Attribute::NoCapture);
289 if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);
290 else removeAttribute(n, Attribute::NoCapture);
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 80 // Not captured if only passed via 'nocapture' arguments. Note that
89 if (A->get() == V && !CS.paramHasAttr(A - B + 1, Attribute::NoCapture))
90 // The parameter is not marked 'nocapture' - captured.
92 // Only passed via 'nocapture' arguments, or is the called function - not
BasicAliasAnalysis.cpp 709 (!CS.paramHasAttr(ArgNo+1, Attribute::NoCapture) &&
    [all...]
  /external/llvm/lib/VMCore/
Attributes.cpp 47 if (Attrs & Attribute::NoCapture)
48 Result += "nocapture ";
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture;
Function.cpp 103 /// hasNoCaptureAttr - Return true if this argument has the nocapture attribute
107 return getParent()->paramHasAttr(getArgNo()+1, Attribute::NoCapture);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 13 // it marks function arguments (of pointer type) 'nocapture' if a call
38 STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
54 // AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
228 /// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
249 A->addAttr(Attribute::NoCapture);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 468 HANDLE_ATTR(NoCapture);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
SimplifyLibCalls.cpp 593 CI->addAttribute(1, Attribute::NoCapture);
    [all...]
ObjCARC.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 907 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
    [all...]

Completed in 379 milliseconds