@@ -1089,6 +1089,109 @@ ConversionCost SemanticsVisitor::getImplicitConversionCostWithKnownArg(
1089
1089
return candidateCost;
1090
1090
}
1091
1091
1092
+ bool SemanticsVisitor::coerceIntLitToBaseType (
1093
+ IntLiteralType* fromType,
1094
+ BasicExpressionType* toType,
1095
+ Expr** outToExpr,
1096
+ ConversionCost* outCost,
1097
+ SourceLoc loc)
1098
+ {
1099
+ if (toType->getBaseType () == BaseType::Void)
1100
+ return false ;
1101
+
1102
+ ConstantIntVal* value = fromType->getValue ();
1103
+ ConversionCost cost = 0 ;
1104
+ if (!isIntValueInRangeOfType (value->getValue (), toType))
1105
+ {
1106
+ switch (toType->getBaseType ())
1107
+ {
1108
+ case BaseType::Half:
1109
+ cost = kConversionCost_IntegerToHalfConversion ;
1110
+ break ;
1111
+ case BaseType::Float:
1112
+ case BaseType::Double:
1113
+ cost = kConversionCost_IntegerToFloatConversion ;
1114
+ break ;
1115
+ default :
1116
+ cost = kConversionCost_IntegerTruncate ;
1117
+ break ;
1118
+ }
1119
+ }
1120
+ else
1121
+ {
1122
+ if (toType != fromType->getProperType ())
1123
+ {
1124
+ switch (toType->getBaseType ())
1125
+ {
1126
+ case BaseType::UInt:
1127
+ case BaseType::UInt16 :
1128
+ case BaseType::UInt8 :
1129
+ cost = kConversionCost_InRangeIntLitSignedToUnsignedConversion ;
1130
+ break ;
1131
+ default :
1132
+ cost = kConversionCost_InRangeIntLitConversion ;
1133
+ break ;
1134
+ }
1135
+ }
1136
+ }
1137
+ if (outCost)
1138
+ *outCost = cost;
1139
+ if (outToExpr)
1140
+ {
1141
+ switch (toType->getBaseType ())
1142
+ {
1143
+ case BaseType::Half:
1144
+ case BaseType::Float:
1145
+ case BaseType::Double:
1146
+ {
1147
+ auto floatLit = m_astBuilder->create <FloatingPointLiteralExpr>();
1148
+ floatLit->loc = loc;
1149
+ floatLit->type = QualType (toType);
1150
+ floatLit->value = (FloatingPointLiteralValue)value->getValue ();
1151
+ *outToExpr = floatLit;
1152
+ }
1153
+ break ;
1154
+ default :
1155
+ {
1156
+ auto intLit = m_astBuilder->create <IntegerLiteralExpr>();
1157
+ intLit->loc = loc;
1158
+ intLit->type = QualType (toType);
1159
+ intLit->value =
1160
+ _fixIntegerLiteral (toType->getBaseType (), value->getValue (), nullptr , nullptr );
1161
+ *outToExpr = intLit;
1162
+ }
1163
+ break ;
1164
+ }
1165
+ }
1166
+ return true ;
1167
+ }
1168
+
1169
+ Expr* SemanticsVisitor::maybeCoerceExprToProperIntType (Expr* expr)
1170
+ {
1171
+ auto intLitExpr = as<IntegerLiteralExpr>(expr);
1172
+ if (!intLitExpr)
1173
+ {
1174
+ SLANG_ASSERT (!as<IntLiteralType>(expr->type .type ));
1175
+ return expr;
1176
+ }
1177
+ auto intLitType = as<IntLiteralType>(expr->type .type );
1178
+ expr->type .type = intLitType->getProperType ();
1179
+ return expr;
1180
+ }
1181
+
1182
+ BasicExpressionType* SemanticsVisitor::getProperTypeForIntLit (IntegerLiteralValue value, bool isSigned)
1183
+ {
1184
+ if (value >= std::numeric_limits<int32_t >::min () &&
1185
+ value <= std::numeric_limits<int32_t >::max ())
1186
+ return (BasicExpressionType*)m_astBuilder->getBuiltinType (BaseType::Int);
1187
+ if (value >= std::numeric_limits<uint32_t >::min () &&
1188
+ value <= std::numeric_limits<uint32_t >::max ())
1189
+ return (BasicExpressionType*)m_astBuilder->getBuiltinType (BaseType::UInt);
1190
+ if (isSigned || value >= 0 && value <= std::numeric_limits<int64_t >::max ())
1191
+ return (BasicExpressionType*)m_astBuilder->getBuiltinType (BaseType::Int64);
1192
+ return (BasicExpressionType*)m_astBuilder->getBuiltinType (BaseType::UInt64 );
1193
+ }
1194
+
1092
1195
bool SemanticsVisitor::_coerce (
1093
1196
CoercionSite site,
1094
1197
Type* toType,
@@ -1315,6 +1418,25 @@ bool SemanticsVisitor::_coerce(
1315
1418
return true ;
1316
1419
}
1317
1420
1421
+ if (auto fromIntLitType = as<IntLiteralType>(fromType))
1422
+ {
1423
+ auto toBasicType = as<BasicExpressionType>(toType);
1424
+ if (!toBasicType)
1425
+ {
1426
+ if (auto toLitType = as<IntLiteralType>(toType))
1427
+ toBasicType = (BasicExpressionType*)toLitType->getProperType ();
1428
+ }
1429
+ if (toBasicType)
1430
+ {
1431
+ return coerceIntLitToBaseType (
1432
+ fromIntLitType,
1433
+ toBasicType,
1434
+ outToExpr,
1435
+ outCost,
1436
+ fromExpr ? fromExpr->loc : SourceLoc ());
1437
+ }
1438
+ }
1439
+
1318
1440
// A enum type can be converted into its underlying tag type.
1319
1441
if (auto enumDecl = isEnumType (fromType))
1320
1442
{
@@ -1671,8 +1793,7 @@ bool SemanticsVisitor::_coerce(
1671
1793
}
1672
1794
else if (cost >= kConversionCost_Default )
1673
1795
{
1674
- // For general types of implicit conversions, we issue a warning, unless `fromExpr`
1675
- // is a known constant and we know it won't cause a problem.
1796
+ // For general types of implicit conversions, we issue a warning.
1676
1797
bool shouldEmitGeneralWarning = true ;
1677
1798
if (isScalarIntegerType (toType) || isHalfType (toType))
1678
1799
{
0 commit comments