Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h39 unsigned IsPreallocated : 1; ///< ByVal without the copy member
64 IsPreallocated(0), IsSplitEnd(0), IsSwiftSelf(0), IsSwiftAsync(0), in ArgFlagsTy()
94 bool isPreallocated() const { return IsPreallocated; } in isPreallocated()
95 void setPreallocated() { IsPreallocated = 1; } in setPreallocated()
H A DTargetLowering.h286 bool IsPreallocated : 1; variable
298 IsPreallocated(false), IsReturned(false), IsSwiftSelf(false), in ArgListEntry()
3739 bool IsPreallocated : 1; member
3764 IsPatchPoint(false), IsPreallocated(false), NoMerge(false), in CallLoweringInfo()
3873 IsPreallocated = Value;
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1068 if (Arg.IsPreallocated) { in lowerCallTo()
1078 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
H A DTargetLowering.cpp115 IsPreallocated = Call->paramHasAttr(ArgIdx, Attribute::Preallocated); in setAttributes()
123 assert(IsByVal + IsPreallocated + IsInAlloca <= 1 && in setAttributes()
130 if (IsPreallocated) in setAttributes()
H A DSelectionDAGBuilder.cpp9593 if (Args[i].IsPreallocated) { in LowerCallTo()
9612 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4031 } else if (CLI.IsPreallocated) { in LowerCall()