1
2
3
4
5
6
7 package types2
8
9 import (
10 "go/constant"
11 . "internal/types/errors"
12 "unicode"
13 )
14
15
16
17 func (check *Checker) conversion(x *operand, T Type) {
18 constArg := x.mode == constant_
19
20 constConvertibleTo := func(T Type, val *constant.Value) bool {
21 switch t, _ := under(T).(*Basic); {
22 case t == nil:
23
24 case representableConst(x.val, check, t, val):
25 return true
26 case isInteger(x.typ) && isString(t):
27 codepoint := unicode.ReplacementChar
28 if i, ok := constant.Uint64Val(x.val); ok && i <= unicode.MaxRune {
29 codepoint = rune(i)
30 }
31 if val != nil {
32 *val = constant.MakeString(string(codepoint))
33 }
34 return true
35 }
36 return false
37 }
38
39 var ok bool
40 var cause string
41 switch {
42 case constArg && isConstType(T):
43
44 ok = constConvertibleTo(T, &x.val)
45
46
47
48 if !ok && isInteger(x.typ) && isInteger(T) {
49 check.errorf(x, InvalidConversion, "constant %s overflows %s", x.val, T)
50 x.mode = invalid
51 return
52 }
53 case constArg && isTypeParam(T):
54
55
56
57
58
59 ok = Unalias(T).(*TypeParam).underIs(func(u Type) bool {
60
61 if u == nil {
62 cause = check.sprintf("%s does not contain specific types", T)
63 return false
64 }
65 if isString(x.typ) && isBytesOrRunes(u) {
66 return true
67 }
68 if !constConvertibleTo(u, nil) {
69 if isInteger(x.typ) && isInteger(u) {
70
71 cause = check.sprintf("constant %s overflows %s (in %s)", x.val, u, T)
72 } else {
73 cause = check.sprintf("cannot convert %s to type %s (in %s)", x, u, T)
74 }
75 return false
76 }
77 return true
78 })
79 x.mode = value
80 case x.convertibleTo(check, T, &cause):
81
82 ok = true
83 x.mode = value
84 }
85
86 if !ok {
87 if cause != "" {
88 check.errorf(x, InvalidConversion, "cannot convert %s to type %s: %s", x, T, cause)
89 } else {
90 check.errorf(x, InvalidConversion, "cannot convert %s to type %s", x, T)
91 }
92 x.mode = invalid
93 return
94 }
95
96
97
98
99 if isUntyped(x.typ) {
100 final := T
101
102
103
104
105
106
107
108
109 if isTypes2 && x.typ == Typ[UntypedNil] {
110
111 } else if isNonTypeParamInterface(T) || constArg && !isConstType(T) || !isTypes2 && x.isNil() {
112 final = Default(x.typ)
113 } else if x.mode == constant_ && isInteger(x.typ) && allString(T) {
114 final = x.typ
115 }
116 check.updateExprType(x.expr, final, true)
117 }
118
119 x.typ = T
120 }
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136 func (x *operand) convertibleTo(check *Checker, T Type, cause *string) bool {
137
138 if ok, _ := x.assignableTo(check, T, cause); ok {
139 return true
140 }
141
142 origT := T
143 V := Unalias(x.typ)
144 T = Unalias(T)
145 Vu := under(V)
146 Tu := under(T)
147 Vp, _ := V.(*TypeParam)
148 Tp, _ := T.(*TypeParam)
149
150
151
152 if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
153 return true
154 }
155
156
157
158
159 if V, ok := V.(*Pointer); ok {
160 if T, ok := T.(*Pointer); ok {
161 if IdenticalIgnoreTags(under(V.base), under(T.base)) && !isTypeParam(V.base) && !isTypeParam(T.base) {
162 return true
163 }
164 }
165 }
166
167
168 if isIntegerOrFloat(Vu) && isIntegerOrFloat(Tu) {
169 return true
170 }
171
172
173 if isComplex(Vu) && isComplex(Tu) {
174 return true
175 }
176
177
178 if (isInteger(Vu) || isBytesOrRunes(Vu)) && isString(Tu) {
179 return true
180 }
181
182
183 if isString(Vu) && isBytesOrRunes(Tu) {
184 return true
185 }
186
187
188
189 if (isPointer(Vu) || isUintptr(Vu)) && isUnsafePointer(Tu) {
190 return true
191 }
192
193 if isUnsafePointer(Vu) && (isPointer(Tu) || isUintptr(Tu)) {
194 return true
195 }
196
197
198
199 if s, _ := Vu.(*Slice); s != nil {
200 switch a := Tu.(type) {
201 case *Array:
202 if Identical(s.Elem(), a.Elem()) {
203 if check == nil || check.allowVersion(x, go1_20) {
204 return true
205 }
206
207 if cause != nil {
208
209 *cause = "conversion of slice to array requires go1.20 or later"
210 }
211 return false
212 }
213 case *Pointer:
214 if a, _ := under(a.Elem()).(*Array); a != nil {
215 if Identical(s.Elem(), a.Elem()) {
216 if check == nil || check.allowVersion(x, go1_17) {
217 return true
218 }
219
220 if cause != nil {
221 *cause = "conversion of slice to array pointer requires go1.17 or later"
222 }
223 return false
224 }
225 }
226 }
227 }
228
229
230 if Vp == nil && Tp == nil {
231 return false
232 }
233
234 errorf := func(format string, args ...any) {
235 if check != nil && cause != nil {
236 msg := check.sprintf(format, args...)
237 if *cause != "" {
238 msg += "\n\t" + *cause
239 }
240 *cause = msg
241 }
242 }
243
244
245
246 switch {
247 case Vp != nil && Tp != nil:
248 x := *x
249 return Vp.is(func(V *term) bool {
250 if V == nil {
251 return false
252 }
253 x.typ = V.typ
254 return Tp.is(func(T *term) bool {
255 if T == nil {
256 return false
257 }
258 if !x.convertibleTo(check, T.typ, cause) {
259 errorf("cannot convert %s (in %s) to type %s (in %s)", V.typ, Vp, T.typ, Tp)
260 return false
261 }
262 return true
263 })
264 })
265 case Vp != nil:
266 x := *x
267 return Vp.is(func(V *term) bool {
268 if V == nil {
269 return false
270 }
271 x.typ = V.typ
272 if !x.convertibleTo(check, T, cause) {
273 errorf("cannot convert %s (in %s) to type %s", V.typ, Vp, origT)
274 return false
275 }
276 return true
277 })
278 case Tp != nil:
279 return Tp.is(func(T *term) bool {
280 if T == nil {
281 return false
282 }
283 if !x.convertibleTo(check, T.typ, cause) {
284 errorf("cannot convert %s to type %s (in %s)", x.typ, T.typ, Tp)
285 return false
286 }
287 return true
288 })
289 }
290
291 return false
292 }
293
294 func isUintptr(typ Type) bool {
295 t, _ := under(typ).(*Basic)
296 return t != nil && t.kind == Uintptr
297 }
298
299 func isUnsafePointer(typ Type) bool {
300 t, _ := under(typ).(*Basic)
301 return t != nil && t.kind == UnsafePointer
302 }
303
304 func isPointer(typ Type) bool {
305 _, ok := under(typ).(*Pointer)
306 return ok
307 }
308
309 func isBytesOrRunes(typ Type) bool {
310 if s, _ := under(typ).(*Slice); s != nil {
311 t, _ := under(s.elem).(*Basic)
312 return t != nil && (t.kind == Byte || t.kind == Rune)
313 }
314 return false
315 }
316
View as plain text