Home
last modified time | relevance | path

Searched refs:ParamAttrs (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMPKinds.def456 #define ParamAttrs(...) ArrayRef<AttributeSet>({__VA_ARGS__})
570 ParamAttrs(ReadOnlyPtrAttrs))
572 ParamAttrs(ReadOnlyPtrAttrs))
574 ParamAttrs())
575 __OMP_RTL_ATTRS(__kmpc_syncwarp, BarrierAttrs, AttributeSet(), ParamAttrs())
577 ParamAttrs(ReadOnlyPtrAttrs))
579 ParamAttrs(ReadOnlyPtrAttrs))
581 ParamAttrs(ReadOnlyPtrAttrs))
583 ParamAttrs(ReadOnlyPtrAttrs))
585 ParamAttrs(ReadOnlyPtrAttrs, AttributeSet(), ReadOnlyPtrAttrs))
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DFunction.cpp156 static Type *getMemoryParamAllocType(AttributeSet ParamAttrs, Type *ArgTy) { in getMemoryParamAllocType() argument
159 if (Type *ByValTy = ParamAttrs.getByValType()) in getMemoryParamAllocType()
161 if (Type *ByRefTy = ParamAttrs.getByRefType()) in getMemoryParamAllocType()
163 if (Type *PreAllocTy = ParamAttrs.getPreallocatedType()) in getMemoryParamAllocType()
165 if (Type *InAllocaTy = ParamAttrs.getInAllocaType()) in getMemoryParamAllocType()
170 if (ParamAttrs.hasAttribute(Attribute::InAlloca) || in getMemoryParamAllocType()
171 ParamAttrs.hasAttribute(Attribute::ByVal) || in getMemoryParamAllocType()
172 ParamAttrs.hasAttribute(Attribute::StructRet) || in getMemoryParamAllocType()
173 ParamAttrs.hasAttribute(Attribute::Preallocated)) in getMemoryParamAllocType()
180 AttributeSet ParamAttrs = in getPassPointeeByValueCopySize() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp810 AttrBuilder ParamAttrs; in addFramePointerAttrs() local
811 ParamAttrs.addAttribute(Attribute::NonNull); in addFramePointerAttrs()
812 ParamAttrs.addAttribute(Attribute::NoAlias); in addFramePointerAttrs()
813 ParamAttrs.addAlignmentAttr(Alignment); in addFramePointerAttrs()
814 ParamAttrs.addDereferenceableAttr(Size); in addFramePointerAttrs()
815 Attrs = Attrs.addParamAttributes(Context, ParamIndex, ParamAttrs); in addFramePointerAttrs()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp11251 ArrayRef<ParamAttrTy> ParamAttrs) { in evaluateCDTSize() argument
11281 if (ParamAttrs[Offset].Kind == Vector) in evaluateCDTSize()
11287 if (ParamAttrs[I + Offset].Kind == Vector) { in evaluateCDTSize()
11305 ArrayRef<ParamAttrTy> ParamAttrs, in emitX86DeclareSimdFunction() argument
11344 unsigned NumElts = evaluateCDTSize(FD, ParamAttrs); in emitX86DeclareSimdFunction()
11350 for (const ParamAttrTy &ParamAttr : ParamAttrs) { in emitX86DeclareSimdFunction()
11449 getNDSWDS(const FunctionDecl *FD, ArrayRef<ParamAttrTy> ParamAttrs) { in getNDSWDS() argument
11464 Sizes.push_back(getAArch64LS(QT, ParamAttrs[I].Kind, C)); in getNDSWDS()
11485 static std::string mangleVectorParameters(ArrayRef<ParamAttrTy> ParamAttrs) { in mangleVectorParameters() argument
11488 for (const auto &ParamAttr : ParamAttrs) { in mangleVectorParameters()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h1713 ParsedAttributes *ParamAttrs);