1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
// SPDX-License-Identifier: Apache-2.0
mod arithmetic;
mod assign;
pub(crate) mod constructor;
pub(crate) mod function_call;
pub(crate) mod integers;
pub(crate) mod literals;
mod member_access;
pub mod resolve_expression;
pub mod retrieve_type;
pub(crate) mod strings;
mod subscript;
mod tests;
mod variable;
use super::ast::{ArrayLength, Diagnostic, Expression, Mutability, Namespace, RetrieveType, Type};
use super::diagnostics::Diagnostics;
use super::eval::eval_const_rational;
use super::symtable::{Symtable, VarScope};
use crate::sema::contracts::is_base;
use crate::sema::eval::eval_const_number;
use crate::sema::{symtable::LoopScopes, using::user_defined_operator_binding};
use num_bigint::{BigInt, Sign};
use num_rational::BigRational;
use num_traits::{FromPrimitive, ToPrimitive, Zero};
use solang_parser::pt::{self, CodeLocation};
use std::cmp::Ordering;
use std::collections::HashMap;
/// Compare two mutability levels
pub fn compatible_mutability(left: &Mutability, right: &Mutability) -> bool {
matches!(
(left, right),
// only payable is compatible with payable
(Mutability::Payable(_), Mutability::Payable(_))
// default is compatible with anything but pure and view
| (Mutability::Nonpayable(_), Mutability::Nonpayable(_) | Mutability::Payable(_))
// view is compatible with anything but pure
| (Mutability::View(_), Mutability::View(_) | Mutability::Nonpayable(_) | Mutability::Payable(_))
// pure is compatible with anything
| (Mutability::Pure(_), _) // everything else is not compatible
)
}
/// When resolving an expression, what type are we looking for
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum ResolveTo<'a> {
Unknown, // We don't know what we're looking for, best effort
Integer, // Try to resolve to an integer type value (signed or unsigned, any bit width)
Discard, // We won't be using the result. For example, an expression as a statement
Type(&'a Type), // We will be wanting this type please, e.g. `int64 x = 1;`
}
#[derive(Default)]
pub struct ExprContext {
/// What source file are we in
pub file_no: usize,
// Are we resolving a contract, and if so, which one
pub contract_no: Option<usize>,
/// Are resolving the body of a function, and if so, which one
pub function_no: Option<usize>,
/// Are we currently in an unchecked block
pub unchecked: bool,
/// Are we evaluating a constant expression
pub constant: bool,
/// Are we resolving an l-value
pub lvalue: bool,
/// Are we resolving a yul function (it cannot have external dependencies)
pub yul_function: bool,
/// Loops nesting
pub loops: LoopScopes,
/// Stack of currently active variable scopes
pub active_scopes: Vec<VarScope>,
/// Solidity v0.5 and earlier don't complain about emit resolving to multiple events
pub ambiguous_emit: bool,
}
impl ExprContext {
pub fn enter_scope(&mut self) {
self.active_scopes.push(VarScope {
loc: None,
names: HashMap::new(),
});
}
pub fn leave_scope(&mut self, symtable: &mut Symtable, loc: pt::Loc) {
if let Some(mut curr_scope) = self.active_scopes.pop() {
curr_scope.loc = Some(loc);
symtable.scopes.push(curr_scope);
}
}
}
impl Expression {
/// Is this expression 0
pub(super) fn const_zero(&self, ns: &Namespace) -> bool {
let mut diagnostics = Diagnostics::default();
if let Ok((_, value)) = eval_const_number(self, ns, &mut diagnostics) {
value == BigInt::zero()
} else {
false
}
}
/// Return the type for this expression.
pub fn tys(&self) -> Vec<Type> {
match self {
Expression::Builtin { tys: returns, .. }
| Expression::InternalFunctionCall { returns, .. }
| Expression::ExternalFunctionCall { returns, .. } => returns.to_vec(),
Expression::List { list, .. } => list.iter().map(|e| e.ty()).collect(),
Expression::ExternalFunctionCallRaw { .. } => vec![Type::Bool, Type::DynamicBytes],
_ => vec![self.ty()],
}
}
/// Cast from one type to another, which also automatically derefs any Type::Ref() type.
/// if the cast is explicit (e.g. bytes32(bar) then implicit should be set to false.
pub(crate) fn cast(
&self,
loc: &pt::Loc,
to: &Type,
implicit: bool,
ns: &Namespace,
diagnostics: &mut Diagnostics,
) -> Result<Expression, ()> {
let from = self.ty();
if &from == to {
return Ok(self.clone());
}
if from == Type::Unresolved || *to == Type::Unresolved {
return Ok(self.clone());
}
// First of all, if we have a ref then dereference it
if let Type::Ref(r) = &from {
return if r.is_fixed_reference_type(ns) {
// A struct/fixed array *value* is simply the type, e.g. Type::Struct(_)
// An assignable struct value, e.g. member of another struct, is Type::Ref(Type:Struct(_)).
// However, the underlying types are identical: simply a pointer.
//
// So a Type::Ref(Type::Struct(_)) can be cast to Type::Struct(_).
//
// The Type::Ref(..) just means it can be used as an l-value and assigned
// a new value, unlike say, a struct literal.
if r.as_ref() == to {
Ok(self.clone())
} else {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion from {} to {} not possible",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
}
} else {
Expression::Load {
loc: *loc,
ty: r.as_ref().clone(),
expr: Box::new(self.clone()),
}
.cast(loc, to, implicit, ns, diagnostics)
};
}
// If it's a storage reference then load the value. The expr is the storage slot
if let Type::StorageRef(_, r) = from {
if let Expression::Subscript { array_ty: ty, .. } = self {
if ty.is_storage_bytes() {
return Ok(self.clone());
}
}
return Expression::StorageLoad {
loc: *loc,
ty: *r,
expr: Box::new(self.clone()),
}
.cast(loc, to, implicit, ns, diagnostics);
}
// Special case: when converting literal sign can change if it fits
match (self, &from, to) {
(Expression::NumberLiteral { value, .. }, p, &Type::Uint(to_len))
if p.is_primitive() =>
{
return if value.sign() == Sign::Minus {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion cannot change negative number to '{}'",
to.to_string(ns)
),
));
Err(())
} else {
// Convert to little endian so most significant bytes are at the end; that way
// we can simply resize the vector to the right size
let mut bs = value.to_signed_bytes_le();
bs.resize(to_len as usize / 8, 0xff);
Ok(Expression::NumberLiteral {
loc: *loc,
ty: Type::Uint(to_len),
value: BigInt::from_bytes_le(Sign::Plus, &bs),
})
}
} else if value.bits() >= to_len as u64 {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from '{}' to '{}'",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::NumberLiteral {
loc: *loc,
ty: Type::Uint(to_len),
value: value.clone(),
})
};
}
(Expression::NumberLiteral { value, .. }, p, &Type::Int(to_len))
if p.is_primitive() =>
{
return if value.bits() >= to_len as u64 {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from '{}' to '{}'",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::NumberLiteral {
loc: *loc,
ty: Type::Int(to_len),
value: value.clone(),
})
};
}
(Expression::NumberLiteral { value, .. }, p, &Type::Bytes(to_len))
if p.is_primitive() =>
{
return if value.sign() == Sign::Minus {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"negative number cannot be converted to type '{}'",
to.to_string(ns)
),
));
Err(())
} else if value.sign() == Sign::Plus && from.bytes(ns) != to_len {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"number of {} bytes cannot be converted to type '{}'",
from.bytes(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::NumberLiteral {
loc: *loc,
ty: Type::Bytes(to_len),
value: value.clone(),
})
};
}
(Expression::NumberLiteral { value, .. }, p, &Type::Address(payable))
if p.is_primitive() =>
{
// note: negative values are allowed
return if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
String::from("implicit conversion from int to address not allowed"),
));
Err(())
} else if value.bits() > ns.address_length as u64 * 8 {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"number larger than possible in {} byte address",
ns.address_length,
),
));
Err(())
} else {
Ok(Expression::NumberLiteral {
loc: *loc,
ty: Type::Address(payable),
value: value.clone(),
})
};
}
// Literal strings can be implicitly lengthened
(Expression::BytesLiteral { value, .. }, p, &Type::Bytes(to_len))
if p.is_primitive() =>
{
return if value.len() > to_len as usize && implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from '{}' to '{}'",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
let mut bs = value.to_owned();
// Add zero's at the end as needed
bs.resize(to_len as usize, 0);
Ok(Expression::BytesLiteral {
loc: *loc,
ty: Type::Bytes(to_len),
value: bs,
})
};
}
(Expression::BytesLiteral { loc, value, .. }, _, &Type::DynamicBytes)
| (Expression::BytesLiteral { loc, value, .. }, _, &Type::String) => {
return Ok(Expression::AllocDynamicBytes {
loc: *loc,
ty: to.clone(),
length: Box::new(Expression::NumberLiteral {
loc: *loc,
ty: Type::Uint(32),
value: BigInt::from(value.len()),
}),
init: Some(value.clone()),
});
}
(Expression::NumberLiteral { value, .. }, _, &Type::Rational) => {
return Ok(Expression::RationalNumberLiteral {
loc: *loc,
ty: Type::Rational,
value: BigRational::from(value.clone()),
});
}
(
Expression::ArrayLiteral { .. },
Type::Array(from_ty, from_dims),
Type::Array(to_ty, to_dims),
) => {
if from_ty == to_ty
&& from_dims.len() == to_dims.len()
&& from_dims.len() == 1
&& matches!(to_dims.last().unwrap(), ArrayLength::Dynamic)
{
return Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
});
}
}
_ => (),
};
self.cast_types(loc, &from, to, implicit, ns, diagnostics)
}
fn cast_types(
&self,
loc: &pt::Loc,
from: &Type,
to: &Type,
implicit: bool,
ns: &Namespace,
diagnostics: &mut Diagnostics,
) -> Result<Expression, ()> {
let address_bits = ns.address_length as u16 * 8;
match (&from, &to) {
// Solana builtin AccountMeta struct wants a pointer to an address for the pubkey field,
// not an address. For this specific field we have a special Expression::GetRef() which
// gets the pointer to an address
(Type::Address(_), Type::Ref(to)) if matches!(to.as_ref(), Type::Address(..)) => {
Ok(Expression::GetRef {
loc: *loc,
ty: Type::Ref(Box::new(from.clone())),
expr: Box::new(self.clone()),
})
}
(Type::Bytes(1), Type::Enum(_)) if !implicit => {
self.cast_types(loc, &Type::Uint(8), to, implicit, ns, diagnostics)
}
(Type::Uint(from_width), Type::Enum(enum_no))
| (Type::Int(from_width), Type::Enum(enum_no)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion from {} to {} not allowed",
from.to_string(ns),
to.to_string(ns)
),
));
return Err(());
}
let enum_ty = &ns.enums[*enum_no];
// TODO would be help to have current contract to resolve contract constants
let mut temp_diagnostics = Diagnostics::default();
if let Ok((_, big_number)) = eval_const_number(self, ns, &mut temp_diagnostics) {
if let Some(number) = big_number.to_usize() {
if enum_ty.values.len() > number {
return Ok(Expression::NumberLiteral {
loc: self.loc(),
ty: to.clone(),
value: big_number,
});
}
}
// solc does not detect this problem, just warn about it
diagnostics.push(Diagnostic::warning(
*loc,
format!(
"enum {} has no value with ordinal {}",
to.to_string(ns),
big_number
),
));
}
let to_width = enum_ty.ty.bits(ns);
// TODO needs runtime checks
match from_width.cmp(&to_width) {
Ordering::Greater => Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Less => Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
}
}
(Type::Enum(enum_no), Type::Uint(to_width))
| (Type::Enum(enum_no), Type::Int(to_width)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion from {} to {} not allowed",
from.to_string(ns),
to.to_string(ns)
),
));
return Err(());
}
let enum_ty = &ns.enums[*enum_no];
let from_width = enum_ty.ty.bits(ns);
match from_width.cmp(to_width) {
Ordering::Greater => Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Less => Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
}
}
(Type::Bytes(n), Type::FunctionSelector) if *n == ns.target.selector_length() => {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
(Type::Bytes(1), Type::Uint(8)) | (Type::Uint(8), Type::Bytes(1)) => Ok(self.clone()),
(Type::Uint(from_len), Type::Uint(to_len)) => match from_len.cmp(to_len) {
Ordering::Greater => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
Ordering::Less => Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
},
(Type::Int(from_len), Type::Int(to_len)) => match from_len.cmp(to_len) {
Ordering::Greater => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
Ordering::Less => Ok(Expression::SignExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
},
(Type::Uint(from_len), Type::Int(to_len)) if to_len > from_len => {
Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
(Type::Int(from_len), Type::Uint(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would change sign from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else if from_len > to_len {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else if from_len < to_len {
Ok(Expression::SignExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
(Type::Uint(from_len), Type::Int(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would change sign from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else if from_len > to_len {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else if from_len < to_len {
Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Casting value to uint
(Type::Value, Type::Uint(to_len)) => {
let from_len = ns.value_length * 8;
let to_len = *to_len as usize;
match from_len.cmp(&to_len) {
Ordering::Greater => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
Ordering::Less => Ok(Expression::SignExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
}
}
(Type::Value, Type::Int(to_len)) => {
let from_len = ns.value_length * 8;
let to_len = *to_len as usize;
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would change sign from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else if from_len > to_len {
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else if from_len < to_len {
Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Casting value to uint
(Type::Uint(from_len), Type::Value) => {
let from_len = *from_len as usize;
let to_len = ns.value_length * 8;
match from_len.cmp(&to_len) {
Ordering::Greater => {
diagnostics.push(Diagnostic::cast_warning(
*loc,
format!(
"conversion truncates {} to {}, as value is type {} on target {}",
from.to_string(ns),
to.to_string(ns),
Type::Value.to_string(ns),
ns.target
),
));
Ok(Expression::CheckingTrunc {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
Ordering::Less => Ok(Expression::SignExt {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
Ordering::Equal => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
}
}
// Casting int to address
(Type::Uint(from_len), Type::Address(_)) | (Type::Int(from_len), Type::Address(_)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion from {} to address not allowed",
from.to_string(ns)
),
));
Err(())
} else {
// cast integer it to integer of the same size of address with sign ext etc
let address_to_int = if from.is_signed_int(ns) {
Type::Int(address_bits)
} else {
Type::Uint(address_bits)
};
let expr = match from_len.cmp(&address_bits) {
Ordering::Greater => Expression::Trunc {
loc: *loc,
to: address_to_int,
expr: Box::new(self.clone()),
},
Ordering::Less if from.is_signed_int(ns) => Expression::ZeroExt {
loc: *loc,
to: address_to_int,
expr: Box::new(self.clone()),
},
Ordering::Less => Expression::SignExt {
loc: *loc,
to: address_to_int,
expr: Box::new(self.clone()),
},
Ordering::Equal => self.clone(),
};
// Now cast integer to address
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(expr),
})
}
}
// Casting address to int
(Type::Address(_), Type::Uint(to_len)) | (Type::Address(_), Type::Int(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
// first convert address to int/uint
let address_to_int = if to.is_signed_int(ns) {
Type::Int(address_bits)
} else {
Type::Uint(address_bits)
};
let expr = Expression::Cast {
loc: *loc,
to: address_to_int,
expr: Box::new(self.clone()),
};
// now resize int to request size with sign extension etc
match to_len.cmp(&address_bits) {
Ordering::Less => Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(expr),
}),
Ordering::Greater if to.is_signed_int(ns) => Ok(Expression::ZeroExt {
loc: *loc,
to: to.clone(),
expr: Box::new(expr),
}),
Ordering::Greater => Ok(Expression::SignExt {
loc: *loc,
to: to.clone(),
expr: Box::new(expr),
}),
Ordering::Equal => Ok(expr),
}
}
}
// Lengthing or shorting a fixed bytes array
(Type::Bytes(from_len), Type::Bytes(to_len)) => {
if to_len > from_len {
let shift = (to_len - from_len) * 8;
Ok(Expression::ShiftLeft {
loc: *loc,
ty: to.clone(),
left: Box::new(Expression::ZeroExt {
loc: self.loc(),
to: to.clone(),
expr: Box::new(self.clone()),
}),
right: Box::new(Expression::NumberLiteral {
loc: *loc,
ty: Type::Uint(*to_len as u16 * 8),
value: BigInt::from_u8(shift).unwrap(),
}),
})
} else if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion would truncate from {} to {}",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
} else {
let shift = (from_len - to_len) * 8;
Ok(Expression::Trunc {
loc: *loc,
to: to.clone(),
expr: Box::new(Expression::ShiftRight {
loc: self.loc(),
ty: from.clone(),
left: Box::new(self.clone()),
right: Box::new(Expression::NumberLiteral {
loc: self.loc(),
ty: Type::Uint(*from_len as u16 * 8),
value: BigInt::from_u8(shift).unwrap(),
}),
sign: false,
}),
})
}
}
(Type::Rational, Type::Uint(_) | Type::Int(_) | Type::Value) => {
match eval_const_rational(self, ns) {
Ok((_, big_number)) => {
if big_number.is_integer() {
return Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
});
}
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
}
Err(diag) => {
diagnostics.push(diag);
Err(())
}
}
}
(Type::Uint(_) | Type::Int(_) | Type::Value, Type::Rational) => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
(Type::Bytes(_), Type::DynamicBytes) | (Type::DynamicBytes, Type::Bytes(_)) => {
Ok(Expression::BytesCast {
loc: *loc,
to: to.clone(),
from: from.clone(),
expr: Box::new(self.clone()),
})
}
// Explicit conversion from bytesN to int/uint only allowed with expliciy
// cast and if it is the same size (i.e. no conversion required)
(Type::Bytes(from_len), Type::Uint(to_len))
| (Type::Bytes(from_len), Type::Int(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if *from_len as u16 * 8 != *to_len {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Explicit conversion to bytesN from int/uint only allowed with expliciy
// cast and if it is the same size (i.e. no conversion required)
(Type::Uint(from_len), Type::Bytes(to_len))
| (Type::Int(from_len), Type::Bytes(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if *to_len as u16 * 8 != *from_len {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Explicit conversion from bytesN to address only allowed with expliciy
// cast and if it is the same size (i.e. no conversion required)
(Type::Bytes(from_len), Type::Address(_)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if *from_len as usize != ns.address_length {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Explicit conversion between contract and address is allowed
(Type::Address(false), Type::Address(true))
| (Type::Address(_), Type::Contract(_))
| (Type::Contract(_), Type::Address(_)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Conversion between contracts is allowed if it is a base
(Type::Contract(contract_no_from), Type::Contract(contract_no_to)) => {
if implicit && !is_base(*contract_no_to, *contract_no_from, ns) {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion not allowed since {} is not a base contract of {}",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// conversion from address payable to address is implicitly allowed (not vice versa)
(Type::Address(true), Type::Address(false)) => Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
}),
// Explicit conversion to bytesN from int/uint only allowed with expliciy
// cast and if it is the same size (i.e. no conversion required)
(Type::Address(_), Type::Bytes(to_len)) => {
if implicit {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"implicit conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if *to_len as usize != ns.address_length {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion to {} from {} not allowed",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
(Type::String, Type::DynamicBytes) | (Type::DynamicBytes, Type::String)
if !implicit =>
{
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
// string conversions
// (Type::Bytes(_), Type::String) => Ok(Expression::Cast(self.loc(), to.clone(), Box::new(self.clone()))),
/*
(Type::String, Type::Bytes(to_len)) => {
if let Expression::BytesLiteral(_, from_str) = self {
if from_str.len() > to_len as usize {
diagnostics.push(Output::type_error(
self.loc(),
format!(
"string of {} bytes is too long to fit into {}",
from_str.len(),
to.to_string(ns)
),
));
return Err(());
}
}
Ok(Expression::Cast(self.loc(), to.clone(), Box::new(self.clone()))
}
*/
(Type::Void, _) => {
diagnostics.push(Diagnostic::cast_error(
self.loc(),
"function or method does not return a value".to_string(),
));
Err(())
}
(
Type::ExternalFunction {
params: from_params,
mutability: from_mutablity,
returns: from_returns,
},
Type::ExternalFunction {
params: to_params,
mutability: to_mutablity,
returns: to_returns,
},
)
| (
Type::InternalFunction {
params: from_params,
mutability: from_mutablity,
returns: from_returns,
},
Type::InternalFunction {
params: to_params,
mutability: to_mutablity,
returns: to_returns,
},
) => {
if from_params != to_params {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"function arguments do not match in conversion from '{}' to '{}'",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if from_returns != to_returns {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"function returns do not match in conversion from '{}' to '{}'",
to.to_string(ns),
from.to_string(ns)
),
));
Err(())
} else if !compatible_mutability(from_mutablity, to_mutablity) {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"function mutability not compatible in conversion from '{}' to '{}'",
from.to_string(ns),
to.to_string(ns),
),
));
Err(())
} else {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
}
// Match any array with ArrayLength::AnyFixed if is it fixed for that dimension, and the
// element type and other dimensions also match
(Type::Array(from_elem, from_dim), Type::Array(to_elem, to_dim))
if from_elem == to_elem
&& from_dim.len() == to_dim.len()
&& from_dim.iter().zip(to_dim.iter()).all(|(f, t)| {
f == t || matches!((f, t), (ArrayLength::Fixed(_), ArrayLength::AnyFixed))
}) =>
{
Ok(self.clone())
}
// bytes/address/bytesN -> slice bytes1
(_, Type::Slice(ty)) if can_cast_to_slice(from) && ty.as_ref() == &Type::Bytes(1) => {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: Box::new(self.clone()),
})
}
// bytes[] -> slice slice bytes1
(Type::Array(from, dims), Type::Slice(to))
if dims.len() == 1
&& (from == to
|| (can_cast_to_slice(from)
&& to.slice_depth() == (1, &Type::Bytes(1)))) =>
{
Ok(self.clone())
}
// bytes[][] -> slice slice slice bytes1
(Type::Array(from, dims), Type::Slice(to))
if dims.len() == 2
&& (can_cast_to_slice(from) && to.slice_depth() == (2, &Type::Bytes(1))) =>
{
Ok(self.clone())
}
(Type::FunctionSelector, Type::Bytes(n)) => {
let selector_length = ns.target.selector_length();
if *n == selector_length {
Ok(Expression::Cast {
loc: *loc,
to: to.clone(),
expr: self.clone().into(),
})
} else {
if *n < selector_length {
diagnostics.push(Diagnostic::warning(
*loc,
format!(
"function selector should only be casted to bytes{selector_length} or larger"
),
));
}
self.cast_types(
loc,
&Type::Bytes(selector_length),
to,
implicit,
ns,
diagnostics,
)
}
}
(Type::FunctionSelector, Type::Uint(n) | Type::Int(n)) => {
let selector_width = ns.target.selector_length() * 8;
if *n < selector_width as u16 {
diagnostics.push(Diagnostic::warning(
*loc,
format!(
"function selector needs an integer of at least {selector_width} bits to avoid being truncated"
),
));
}
self.cast_types(
loc,
&Type::Bytes(ns.target.selector_length()),
to,
implicit,
ns,
diagnostics,
)
}
_ => {
diagnostics.push(Diagnostic::cast_error(
*loc,
format!(
"conversion from {} to {} not possible",
from.to_string(ns),
to.to_string(ns)
),
));
Err(())
}
}
}
}
/// Can this type be cast to a bytes slice
fn can_cast_to_slice(ty: &Type) -> bool {
matches!(
ty,
Type::Address(_) | Type::Bytes(_) | Type::DynamicBytes | Type::String
)
}
/// Resolve operator with the given arguments to an expression, if possible
pub(super) fn user_defined_operator(
loc: &pt::Loc,
args: &[&Expression],
oper: pt::UserDefinedOperator,
diagnostics: &mut Diagnostics,
ns: &Namespace,
) -> Option<Expression> {
let ty = args[0].ty();
let ty = ty.deref_any();
if let Type::UserType(..) = ty {
if let Some(using_function) = user_defined_operator_binding(ty, oper, ns) {
if args.iter().all(|expr| expr.ty().deref_any() == ty) {
let func = &ns.functions[using_function.function_no];
return Some(Expression::UserDefinedOperator {
loc: *loc,
ty: func.returns[0].ty.clone(),
oper,
function_no: using_function.function_no,
args: args
.iter()
.map(|e| e.cast(&e.loc(), ty, true, ns, diagnostics).unwrap())
.collect(),
});
}
}
}
None
}