Lines Matching refs:ABIArgInfo
753 static ABIArgInfo classifyExpandedType(SwiftAggLowering &lowering, in classifyExpandedType()
757 return ABIArgInfo::getIgnore(); in classifyExpandedType()
759 return ABIArgInfo::getIndirect(alignmentForIndirect, /*byval*/ false); in classifyExpandedType()
762 return ABIArgInfo::getCoerceAndExpand(types.first, types.second); in classifyExpandedType()
766 static ABIArgInfo classifyType(CodeGenModule &CGM, CanQualType type, in classifyType()
774 return ABIArgInfo::getIndirect(layout.getAlignment(), /*byval*/ false); in classifyType()
787 return (forReturn ? ABIArgInfo::getDirect() : ABIArgInfo::getExpand()); in classifyType()
806 return ABIArgInfo::getIgnore(); in classifyType()
810 return ABIArgInfo::getDirect(); in classifyType()
813 ABIArgInfo swiftcall::classifyReturnType(CodeGenModule &CGM, CanQualType type) { in classifyReturnType()
817 ABIArgInfo swiftcall::classifyArgumentType(CodeGenModule &CGM, in classifyArgumentType()