Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/CodeGen/
DTargetCallingConv.h39 unsigned IsPreallocated : 1; ///< ByVal without the copy member
67 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0), IsPreallocated(0), in ArgFlagsTy()
97 bool isPreallocated() const { return IsPreallocated; } in isPreallocated()
98 void setPreallocated() { IsPreallocated = 1; } in setPreallocated()
DTargetLowering.h283 bool IsPreallocated : 1; variable
295 IsPreallocated(false), IsReturned(false), IsSwiftSelf(false), in ArgListEntry()
3695 bool IsPreallocated : 1; member
3720 IsPatchPoint(false), IsPreallocated(false), NoMerge(false), in CallLoweringInfo()
3829 IsPreallocated = Value;
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1223 if (Arg.IsPreallocated) { in lowerCallTo()
1232 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
DTargetLowering.cpp113 IsPreallocated = Call->paramHasAttr(ArgIdx, Attribute::Preallocated); in setAttributes()
123 if (IsPreallocated) in setAttributes()
DSelectionDAGBuilder.cpp9292 if (Args[i].IsPreallocated) { in LowerCallTo()
9310 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/external/llvm-project/llvm/lib/Target/X86/
DX86ISelLowering.cpp3986 } else if (CLI.IsPreallocated) { in LowerCall()