Lines Matching refs:ABIArgInfo
802 static ABIArgInfo classifyExpandedType(SwiftAggLowering &lowering, in classifyExpandedType()
806 return ABIArgInfo::getIgnore(); in classifyExpandedType()
808 return ABIArgInfo::getIndirect(alignmentForIndirect, /*byval*/ false); in classifyExpandedType()
811 return ABIArgInfo::getCoerceAndExpand(types.first, types.second); in classifyExpandedType()
815 static ABIArgInfo classifyType(CodeGenModule &CGM, CanQualType type, in classifyType()
822 return ABIArgInfo::getIndirect(layout.getAlignment(), /*byval*/ false); in classifyType()
834 return (forReturn ? ABIArgInfo::getDirect() : ABIArgInfo::getExpand()); in classifyType()
853 return ABIArgInfo::getIgnore(); in classifyType()
857 return ABIArgInfo::getDirect(); in classifyType()
860 ABIArgInfo swiftcall::classifyReturnType(CodeGenModule &CGM, CanQualType type) { in classifyReturnType()
864 ABIArgInfo swiftcall::classifyArgumentType(CodeGenModule &CGM, in classifyArgumentType()