Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h42 unsigned IsSwiftSelf : 1; ///< Swift self parameter member
66 IsPreallocated(0), IsSplitEnd(0), IsSwiftSelf(0), IsSwiftAsync(0), in ArgFlagsTy()
101 bool isSwiftSelf() const { return IsSwiftSelf; } in isSwiftSelf()
102 void setSwiftSelf() { IsSwiftSelf = 1; } in setSwiftSelf()
H A DTargetLowering.h316 bool IsSwiftSelf : 1; variable
327 IsSwiftSelf(false), IsSwiftAsync(false), IsSwiftError(false), in ArgListEntry()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1047 if (Arg.IsSwiftSelf) in lowerCallTo()
H A DSelectionDAGBuilder.cpp11019 Entry.IsSwiftSelf = false; in LowerCallTo()
11135 if (Args[i].IsSwiftSelf) in LowerCallTo()
H A DTargetLowering.cpp131 IsSwiftSelf = Call->paramHasAttr(ArgIdx, Attribute::SwiftSelf); in setAttributes()