Home
last modified time | relevance | path

Searched refs:IsInAlloca (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h38 unsigned IsInAlloca : 1; ///< Passed with inalloca member
64 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0), in ArgFlagsTy()
91 bool isInAlloca() const { return IsInAlloca; } in isInAlloca()
92 void setInAlloca() { IsInAlloca = 1; } in setInAlloca()
H A DTargetLowering.h297 bool IsInAlloca : 1; variable
309 IsNest(false), IsByVal(false), IsByRef(false), IsInAlloca(false), in ArgListEntry()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1051 if (Arg.IsInAlloca) { in lowerCallTo()
1070 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
H A DTargetLowering.cpp119 IsInAlloca = Call->paramHasAttr(ArgIdx, Attribute::InAlloca); in setAttributes()
126 assert(IsByVal + IsPreallocated + IsInAlloca + IsSRet <= 1 && in setAttributes()
135 if (IsInAlloca) in setAttributes()
H A DSelectionDAGBuilder.cpp10072 if (Args[i].IsInAlloca) { in LowerCallTo()
10082 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp7482 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca); in parseAlloc() local
7533 AI->setUsedWithInAlloca(IsInAlloca); in parseAlloc()