HomeSort by: relevance | last modified time | path
    Searched defs:ParamAttrs (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp 156 static Type *getMemoryParamAllocType(AttributeSet ParamAttrs, Type *ArgTy) {
159 if (Type *ByValTy = ParamAttrs.getByValType())
161 if (Type *ByRefTy = ParamAttrs.getByRefType())
163 if (Type *PreAllocTy = ParamAttrs.getPreallocatedType())
165 if (Type *InAllocaTy = ParamAttrs.getInAllocaType())
170 if (ParamAttrs.hasAttribute(Attribute::InAlloca) ||
171 ParamAttrs.hasAttribute(Attribute::ByVal) ||
172 ParamAttrs.hasAttribute(Attribute::StructRet) ||
173 ParamAttrs.hasAttribute(Attribute::Preallocated))
180 AttributeSet ParamAttrs
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp 810 AttrBuilder ParamAttrs;
811 ParamAttrs.addAttribute(Attribute::NonNull);
812 ParamAttrs.addAttribute(Attribute::NoAlias);
813 ParamAttrs.addAlignmentAttr(Alignment);
814 ParamAttrs.addDereferenceableAttr(Size);
815 Attrs = Attrs.addParamAttributes(Context, ParamIndex, ParamAttrs);

Completed in 19 milliseconds