Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h38 unsigned IsInAlloca : 1; ///< Passed with inalloca member
63 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.h285 bool IsInAlloca : 1; variable
297 IsNest(false), IsByVal(false), IsByRef(false), IsInAlloca(false), in ArgListEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h273 bool parseOptionalCommaInAlloca(bool &IsInAlloca);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1059 if (Arg.IsInAlloca) { in lowerCallTo()
1078 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
H A DTargetLowering.cpp116 IsInAlloca = Call->paramHasAttr(ArgIdx, Attribute::InAlloca); in setAttributes()
123 assert(IsByVal + IsPreallocated + IsInAlloca <= 1 && in setAttributes()
132 if (IsInAlloca) in setAttributes()
H A DSelectionDAGBuilder.cpp9602 if (Args[i].IsInAlloca) { in LowerCallTo()
9612 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7091 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca); in parseAlloc() local
7142 AI->setUsedWithInAlloca(IsInAlloca); in parseAlloc()