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

1 2 3

  /external/swiftshader/third_party/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/swiftshader/third_party/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/utils/TableGen/
CodeGenIntrinsics.h 111 enum ArgAttribute { NoCapture, Returned, ReadOnly, WriteOnly, ReadNone };
CodeGenTarget.cpp 592 else if (Property->isSubClassOf("NoCapture")) {
594 ArgumentAttributes.push_back(std::make_pair(ArgNo, NoCapture));
IntrinsicEmitter.cpp 545 case CodeGenIntrinsic::NoCapture:
548 OS << "Attribute::NoCapture";
  /external/swiftshader/third_party/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 290 return paramHasAttr(n, Attribute::NoCapture);
293 if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);
294 else removeAttribute(n, Attribute::NoCapture);
  /external/swiftshader/third_party/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
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
CodeGenIntrinsics.h 137 enum ArgAttribute { NoCapture, Returned, ReadOnly, WriteOnly, ReadNone };
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 171 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 176 Attr = Attr.addParamAttribute(C, 0, Attribute::NoCapture);
  /external/swiftshader/third_party/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/include/llvm/IR/
Function.h 412 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
415 addAttribute(n, Attribute::NoCapture);
CallSite.h 535 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::NoCapture);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Function.h 435 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
438 addAttribute(n, Attribute::NoCapture);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 69 STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
624 /// Deduce nocapture attributes for the SCC.
648 A->addAttr(Attribute::NoCapture);
666 // If it's trivially not captured, mark it nocapture now.
667 A->addAttr(Attribute::NoCapture);
705 // made. If the definition doesn't have a 'nocapture' attribute by now, it
718 A->addAttr(Attribute::NoCapture);
760 A->addAttr(Attribute::NoCapture);
    [all...]
  /external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/configs/common/include/llvm/IR/
IntrinsicImpl.inc     [all...]
  /external/deqp-deps/SPIRV-Tools/test/
text_to_binary.annotation_test.cpp 232 CASE(NoCapture),
  /external/swiftshader/third_party/SPIRV-Tools/test/
text_to_binary.annotation_test.cpp 232 CASE(NoCapture),
  /external/llvm/lib/IR/
Attributes.cpp 267 if (hasAttribute(Attribute::NoCapture))
268 return "nocapture";
491 case Attribute::NoCapture: return 1 << 21;
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 165 Attribute::AttrKind AK[] = { Attribute::NoCapture };

Completed in 1118 milliseconds

1 2 3