Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h43 unsigned IsSwiftAsync : 1; ///< Swift async context parameter member
66 IsPreallocated(0), IsSplitEnd(0), IsSwiftSelf(0), IsSwiftAsync(0), in ArgFlagsTy()
104 bool isSwiftAsync() const { return IsSwiftAsync; } in isSwiftAsync()
105 void setSwiftAsync() { IsSwiftAsync = 1; } in setSwiftAsync()
H A DTargetLowering.h317 bool IsSwiftAsync : 1; variable
327 IsSwiftSelf(false), IsSwiftAsync(false), IsSwiftError(false), in ArgListEntry()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1049 if (Arg.IsSwiftAsync) in lowerCallTo()
H A DSelectionDAGBuilder.cpp11020 Entry.IsSwiftAsync = false; in LowerCallTo()
11137 if (Args[i].IsSwiftAsync) in LowerCallTo()
H A DTargetLowering.cpp132 IsSwiftAsync = Call->paramHasAttr(ArgIdx, Attribute::SwiftAsync); in setAttributes()