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 80 NoCapture
CodeGenTarget.cpp 552 else if (Property->isSubClassOf("NoCapture")) {
554 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 579 case CodeGenIntrinsic::NoCapture:
580 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...]
  /external/llvm/include/llvm/IR/
Function.h 300 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
303 addAttribute(n, Attribute::NoCapture);
Attributes.h 78 NoCapture, ///< Function creates no aliases of pointer
  /external/llvm/include/llvm/Support/
CallSite.h 247 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 176 if (hasAttribute(Attribute::NoCapture))
177 return "nocapture";
380 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 665 !Attrs.hasAttribute(Idx, Attribute::NoCapture),
666 "Attribute 'byval', 'nest', 'sret', and 'nocapture' "
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 133 .addAttribute(M->getContext(), 1, Attribute::NoCapture);
  /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.
343 /// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
360 B.addAttribute(Attribute::NoCapture);
397 // If it's trivially not captured, mark it nocapture now.
419 // made. If the definition doesn't have a 'nocapture' attribute by now, it
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 504 HANDLE_ATTR(NoCapture);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 480 milliseconds