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 84 NoCapture,
CodeGenTarget.cpp 583 else if (Property->isSubClassOf("NoCapture")) {
585 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 601 case CodeGenIntrinsic::NoCapture:
604 OS << "Attribute::NoCapture";
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 43 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
72 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
128 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
129 AS[1] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
161 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
185 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
268 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
269 AS[1] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
377 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
401 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture);
    [all...]
SimplifyLibCalls.cpp 860 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 316 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
319 addAttribute(n, Attribute::NoCapture);
CallSite.h 271 return paramHasAttr(ArgNo + 1, Attribute::NoCapture);
Attributes.h 84 NoCapture, ///< Function creates no aliases of pointer
  /external/llvm/lib/IR/
Attributes.cpp 188 if (hasAttribute(Attribute::NoCapture))
189 return "nocapture";
378 case Attribute::NoCapture: return 1 << 21;
    [all...]
Function.cpp 132 /// hasNoCaptureAttr - Return true if this argument has the nocapture attribute
137 hasAttribute(getArgNo()+1, Attribute::NoCapture);
Verifier.cpp 811 !Attrs.hasAttribute(Idx, Attribute::NoCapture) &&
814 "Attributes 'byval', 'inalloca', 'nest', 'sret', 'nocapture', and "
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 167 Attribute::AttrKind AK[] = { Attribute::NoCapture };
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 14 // readnone/nocapture. Finally, well-known library call declarations
41 STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
60 // AddArgumentAttrs - Deduce nocapture attributes for the SCC.
518 /// AddArgumentAttrs - Deduce nocapture attributes for the SCC.
535 B.addAttribute(Attribute::NoCapture);
575 // If it's trivially not captured, mark it nocapture now.
617 // made. If the definition doesn't have a 'nocapture' attribute by now, it
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 192 case Attribute::NoCapture:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 513 HANDLE_ATTR(NoCapture);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 580 return Attribute::NoCapture;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 422 milliseconds