Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h40 unsigned IsPreallocated : 1; ///< ByVal without the copy member
66 IsPreallocated(0), IsSplitEnd(0), IsSwiftSelf(0), IsSwiftAsync(0), in ArgFlagsTy()
98 bool isPreallocated() const { return IsPreallocated; } in isPreallocated()
99 void setPreallocated() { IsPreallocated = 1; } in setPreallocated()
H A DTargetLowering.h314 bool IsPreallocated : 1; variable
326 IsInAlloca(false), IsPreallocated(false), IsReturned(false), in ArgListEntry()
4696 bool IsPreallocated : 1; member
4725 IsPatchPoint(false), IsPreallocated(false), NoMerge(false), in CallLoweringInfo()
4840 IsPreallocated = Value;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1066 if (Arg.IsPreallocated) { in lowerCallTo()
1076 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
H A DTargetLowering.cpp128 IsPreallocated = Call->paramHasAttr(ArgIdx, Attribute::Preallocated); in setAttributes()
136 assert(IsByVal + IsPreallocated + IsInAlloca + IsSRet <= 1 && in setAttributes()
143 if (IsPreallocated) in setAttributes()
H A DSelectionDAGBuilder.cpp11147 if (Args[i].IsPreallocated) { in LowerCallTo()
11166 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLoweringCall.cpp2157 } else if (CLI.IsPreallocated) { in LowerCall()