Home
last modified time | relevance | path

Searched refs:IsSwiftAsync (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h42 unsigned IsSwiftAsync : 1; ///< Swift async context parameter member
65 IsPreallocated(0), IsSplitEnd(0), IsSwiftSelf(0), IsSwiftAsync(0), in ArgFlagsTy()
100 bool isSwiftAsync() const { return IsSwiftAsync; } in isSwiftAsync()
101 void setSwiftAsync() { IsSwiftAsync = 1; } in setSwiftAsync()
H A DTargetLowering.h298 bool IsSwiftAsync : 1; variable
308 IsSwiftAsync(false), IsSwiftError(false), IsCFGuardTarget(false) {} in ArgListEntry()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1048 if (Arg.IsSwiftAsync) in lowerCallTo()
H A DSelectionDAGBuilder.cpp9690 Entry.IsSwiftAsync = false; in LowerCallTo()
9805 if (Args[i].IsSwiftAsync) in LowerCallTo()
H A DTargetLowering.cpp121 IsSwiftAsync = Call->paramHasAttr(ArgIdx, Attribute::SwiftAsync); in setAttributes()