Searched refs:IsPreallocated (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetCallingConv.h | 39 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()
|
D | TargetLowering.h | 283 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/ |
D | FastISel.cpp | 1223 if (Arg.IsPreallocated) { in lowerCallTo() 1232 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
|
D | TargetLowering.cpp | 113 IsPreallocated = Call->paramHasAttr(ArgIdx, Attribute::Preallocated); in setAttributes() 123 if (IsPreallocated) in setAttributes()
|
D | SelectionDAGBuilder.cpp | 9292 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/ |
D | X86ISelLowering.cpp | 3986 } else if (CLI.IsPreallocated) { in LowerCall()
|