Lines Matching refs:FloatModeKind
288 FloatModeKind TargetInfo::getRealTypeByWidth(unsigned BitWidth, in getRealTypeByWidth()
289 FloatModeKind ExplicitType) const { in getRealTypeByWidth()
291 return FloatModeKind::Half; in getRealTypeByWidth()
293 return FloatModeKind::Float; in getRealTypeByWidth()
295 return FloatModeKind::Double; in getRealTypeByWidth()
300 return FloatModeKind::LongDouble; in getRealTypeByWidth()
305 if (ExplicitType == FloatModeKind::Float128) in getRealTypeByWidth()
306 return hasFloat128Type() ? FloatModeKind::Float128 in getRealTypeByWidth()
307 : FloatModeKind::NoFloat; in getRealTypeByWidth()
308 if (ExplicitType == FloatModeKind::Ibm128) in getRealTypeByWidth()
309 return hasIbm128Type() ? FloatModeKind::Ibm128 in getRealTypeByWidth()
310 : FloatModeKind::NoFloat; in getRealTypeByWidth()
313 return FloatModeKind::LongDouble; in getRealTypeByWidth()
315 return FloatModeKind::Float128; in getRealTypeByWidth()
319 return FloatModeKind::NoFloat; in getRealTypeByWidth()