Home
last modified time | relevance | path

Searched refs:NoCapture (Results 1 – 25 of 59) sorted by relevance

123

/external/llvm/include/llvm/IR/
DIntrinsicsXCore.td42 [NoCapture<0>]>;
43 def int_xcore_in : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],[NoCapture<0>]>;
45 [NoCapture<0>]>;
47 [NoCapture<0>]>;
49 [NoCapture<0>]>;
51 [NoCapture<0>]>;
53 [NoCapture<0>]>;
55 [NoCapture<0>]>;
57 [NoCapture<0>]>;
59 [NoCapture<0>]>;
[all …]
DIntrinsics.td52 // NoCapture - The specified argument pointer is not captured by the intrinsic.
53 class NoCapture<int argNo> : IntrinsicProperty {
288 [IntrArgMemOnly, NoCapture<1>, NoCapture<2>]>;
329 [IntrArgMemOnly, NoCapture<0>]>;
363 [IntrArgMemOnly, NoCapture<0>, NoCapture<1>,
368 [IntrArgMemOnly, NoCapture<0>, NoCapture<1>,
373 [IntrArgMemOnly, NoCapture<0>, WriteOnly<0>]>;
516 [IntrArgMemOnly, NoCapture<0>]>,
552 [IntrArgMemOnly, NoCapture<1>]>;
555 [IntrArgMemOnly, NoCapture<1>]>;
[all …]
DIntrinsicsAArch64.td439 [IntrArgMemOnly, NoCapture<2>]>;
453 [IntrArgMemOnly, NoCapture<2>]>;
457 [IntrArgMemOnly, NoCapture<3>]>;
471 [IntrArgMemOnly, NoCapture<3>]>;
476 [IntrArgMemOnly, NoCapture<4>]>;
494 [IntrArgMemOnly, NoCapture<4>]>;
499 [IntrArgMemOnly, NoCapture<5>]>;
DFunction.h412 return AttributeSets.hasAttribute(n, Attribute::NoCapture);
415 addAttribute(n, Attribute::NoCapture);
DIntrinsicsAMDGPU.td182 [IntrArgMemOnly, NoCapture<0>]
187 [IntrArgMemOnly, NoCapture<0>]
/external/swiftshader/third_party/LLVM/include/llvm/
DIntrinsicsXCore.td38 [NoCapture<0>]>;
39 def int_xcore_in : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],[NoCapture<0>]>;
41 [NoCapture<0>]>;
43 [NoCapture<0>]>;
45 [NoCapture<0>]>;
47 [NoCapture<0>]>;
49 [NoCapture<0>]>;
51 [NoCapture<0>]>;
53 [NoCapture<0>]>;
55 [NoCapture<0>]>;
[all …]
DIntrinsics.td53 // NoCapture - The specified argument pointer is not captured by the intrinsic.
54 class NoCapture<int argNo> : IntrinsicProperty {
196 [IntrReadWriteArgMem, NoCapture<1>, NoCapture<2>]>;
216 [IntrReadWriteArgMem, NoCapture<0>]>;
231 [IntrReadWriteArgMem, NoCapture<0>, NoCapture<1>]>;
235 [IntrReadWriteArgMem, NoCapture<0>, NoCapture<1>]>;
239 [IntrReadWriteArgMem, NoCapture<0>]>;
352 [IntrReadWriteArgMem, NoCapture<0>]>,
388 [IntrReadWriteArgMem, NoCapture<1>]>;
391 [IntrReadWriteArgMem, NoCapture<1>]>;
[all …]
DFunction.h290 return paramHasAttr(n, Attribute::NoCapture);
293 if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);
294 else removeAttribute(n, Attribute::NoCapture);
DAttributes.h56 const Attributes NoCapture = 1<<21; ///< Function creates no aliases of pointer variable
88 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DBuildLibCalls.cpp36 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); in EmitStrLen()
77 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); in EmitStrNCmp()
78 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture); in EmitStrNCmp()
103 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture); in EmitStrCpy()
121 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture); in EmitStrNCpy()
185 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); in EmitMemCmp()
186 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture); in EmitMemCmp()
259 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); in EmitPutS()
278 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture); in EmitFPutC()
305 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture); in EmitFPutS()
[all …]
/external/swiftshader/third_party/LLVM/utils/TableGen/
DCodeGenIntrinsics.h77 NoCapture enumerator
/external/llvm/utils/TableGen/
DCodeGenIntrinsics.h111 enum ArgAttribute { NoCapture, Returned, ReadOnly, WriteOnly, ReadNone }; enumerator
/external/llvm/test/CodeGen/NVPTX/
Dintrin-nocapture.ll3 ; Address space intrinsics were erroneously marked NoCapture, leading to bad
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAttributes.cpp47 if (Attrs & Attribute::NoCapture) in getAsString()
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture; in typeIncompatible()
DFunction.cpp107 return getParent()->paramHasAttr(getArgNo()+1, Attribute::NoCapture); in hasNoCaptureAttr()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DCaptureTracking.cpp89 if (A->get() == V && !CS.paramHasAttr(A - B + 1, Attribute::NoCapture)) in PointerMayBeCaptured()
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DAttributes.gen24 NoCapture,
81 .Case("nocapture", Attribute::NoCapture)
254 return llvm::Attribute::NoCapture;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DAttributes.inc24 NoCapture,
81 .Case("nocapture", Attribute::NoCapture)
254 return llvm::Attribute::NoCapture;
DFunction.h435 return AttributeSets.hasAttribute(n, Attribute::NoCapture); in doesNotCapture()
438 addAttribute(n, Attribute::NoCapture); in setDoesNotCapture()
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DAttributes.gen24 NoCapture,
81 .Case("nocapture", Attribute::NoCapture)
254 return llvm::Attribute::NoCapture;
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DAttributes.gen24 NoCapture,
81 .Case("nocapture", Attribute::NoCapture)
254 return llvm::Attribute::NoCapture;
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DAttributes.gen24 NoCapture,
81 .Case("nocapture", Attribute::NoCapture)
254 return llvm::Attribute::NoCapture;
/external/llvm/lib/Transforms/ObjCARC/
DARCRuntimeEntryPoints.h171 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture); in getI8XRetI8XXI8XEntryPoint()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DFunctionAttrs.cpp249 A->addAttr(Attribute::NoCapture); in AddNoCaptureAttrs()
/external/shaderc/spirv-headers/include/spirv/1.1/
Dspirv.lua305 NoCapture = 5,

123