- Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathoverflow.t
263 lines (214 loc) · 8.08 KB
/
overflow.t
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
useTest;
plan98;
#L<S03/Autoincrement precedence>
=begindescription
Mostly copied from Perl 5.8.4 s t/op/inc.t
Verify that addition/subtraction properly handle "overflow"
conditions on common architectures. The current tests are
significant on machines with 32-bit longs, but should not
fail anywhere.
=enddescription
my$a=2147483647;
my$c=$a++;
is($a, 2147483648, "var incremented after post-autoincrement");
is($c, 2147483647, "during post-autoincrement return value is not yet incremented");
$a=2147483647;
$c=++$a;
is($a, 2147483648, "var incremented after pre-autoincrement");
is($c, 2147483648, "during pre-autoincrement return value is incremented");
$a=2147483647;
$a=$a+1;
is($a, 2147483648, 'simple assignment: $a = $a+1');
$a=-2147483648;
$c=$a--;
is($a, -2147483649, "var decremented after post-autodecrement");
is($c, -2147483648, "during post-autodecrement return value is not yet decremented");
$a=-2147483648;
$c=--$a;
is($a, -2147483649, "var decremented after pre-autodecrement");
is($c, -2147483649, "during pre-autodecrement return value is decremented");
$a=-2147483648;
$a=$a-1;
is($a, -2147483649, 'simple assignment: $a = $a-1');
$a=2147483648;
$a= -$a;
$c=$a--;
is($a, -2147483649, "post-decrement negative value");
$a=2147483648;
$a= -$a;
$c=--$a;
is($a, -2147483649, "pre-decrement negative value");
$a=2147483648;
$a= -$a;
$a=$a-1;
is($a, -2147483649, 'assign $a = -$a; $a = $a-1');
$a=2147483648;
my$b= -$a;
$c=$b--;
is($b, ((-$a)-1), "compare -- to -1 op with same origin var");
is($a, 2147483648, "make sure origin var remains unchanged");
$a=2147483648;
$b= -$a;
$c=--$b;
is($b, ((-$a)-1), "same thing with predecremenet");
$a=2147483648;
$b= -$a;
$b=$b-1;
is($b, -(++$a), 'test oder of predecrement in -(++$a)');
{
is(0x80000000div1, 0x80000000, "0x80000000 div 1 == 0x80000000");
is(0x80000000div-1, -0x80000000, "0x80000000 div -1 == -0x80000000");
is(-0x80000000div1, -0x80000000, "-0x80000000 div 1 == -0x80000000");
is(-0x80000000div-1, 0x80000000, "-0x80000000 div -1 == 0x80000000");
is18446744073709551616div1, 18446744073709551616;
is18446744073709551616div2, 9223372036854775808, "Bignums are not working yet";
is18446744073709551616div4294967296, 4294967296, "Bignums are not working yet";
ok18446744073709551616div9223372036854775808==2, '$bignum1 div $bignum2';
}
# UVs should behave properly
{
is4063328477%65535, 27407;
is4063328477%4063328476, 1;
is4063328477%2031664238, 1;
is2031664238%4063328477, 2031664238;
# These should trigger wrapping on 32 bit IVs and UVs
is2147483647+0, 2147483647;
# IV + IV promote to UV
is2147483647+1, 2147483648;
is2147483640+10, 2147483650;
is2147483647+2147483647, 4294967294;
# IV + UV promote to NV
is2147483647+2147483649, 4294967296;
# UV + IV promote to NV
is4294967294+2, 4294967296;
# UV + UV promote to NV
is4294967295+4294967295, 8589934590;
# UV + IV to IV
is2147483648+-1, 2147483647;
is2147483650+-10, 2147483640;
# IV + UV to IV
is-1+2147483648, 2147483647;
is-10+4294967294, 4294967284;
# IV + IV to NV
is-2147483648+-2147483648, -4294967296;
is-2147483640+-10, -2147483650;
}
#?DOES 1
subtryeq_sloppy ($lhs, $rhs, $todo1='') is test-assertion {
my$todo=$todo1; # TODO is rw
$todo=' # TODO '~$todoif$todo;
if ($lhs==$rhs) {
if ($todo) {
#&ok.nextwith($lhs==$rhs,$todo, :todo);
ok($lhs==$rhs,$todo, :todo);
} else {
#&ok.nextwith($lhs==$rhs,$todo);
ok($lhs==$rhs,$todo);
}
} else {
my$error=abs($lhs-$rhs);
$error/=$lhs; # Syntax highlighting fix
if ($todo) {
#&ok.nextwith($error <1e-9,$todo ~ " # " ~ $lhs ~ " is close to " ~ $rhs, :todo);
ok($error<1e-9, $todo~" # "~$lhs~" is close to "~$rhs, :todo);
} else {
#&ok.nextwith($error <1e-9);
ok($error<1e-9);
}
}
}
{
is2147483648-0, 2147483648, '2147483648 - 0 == 2147483648';
is-2147483648-0, -2147483648, '-2147483648 - 0 == -2147483648';
is2000000000-4000000000, -2000000000, '2000000000 - 4000000000 == -2000000000';
}
# https://github.com/Raku/old-issue-tracker/issues/1569
# Believe it or not, this one overflows on 32-bit Rakduo as of 3/8/2010.
{
is-approx7**(-1), 0.14285714285714, '7**(-1) works';
}
{
# The peephole optimiser is wrong to think that it can substitute intops
# in place of regular ops, because i_multiply can overflow.
# (Perl) Bug reported by "Sisyphus" (kalinabears@hdc.com.au)
my$n=1127;
my$float= ($n%1000) *167772160.0;
tryeq_sloppy $float, 21307064320;
# On a 32 bit machine, if the i_multiply op is used, you will probably get
# -167772160. It's actually undefined behaviour, so anything may happen.
my$int= ($n%1000) *167772160;
is$int, 21307064320, '(1127 % 1000) * 167772160 == 21307064320';
}
{
is-1--2147483648, 2147483647, '-1 - -2147483648 == 2147483647';
is2--2147483648, 2147483650, '2 - -2147483648 == 2147483650';
is4294967294-3, 4294967291, '4294967294 - 3 == 4294967291';
is-2147483648--1, -2147483647, '-2147483648 - -1 == -2147483647';
# IV - IV promote to UV
is2147483647--1, 2147483648, '2147483647 - -1 == 2147483648';
is2147483647--2147483648, 4294967295, '2147483647 - -2147483648 == 4294967295';
# UV - IV promote to NV
is4294967294--3, 4294967297, '4294967294 - -3 == 4294967297';
# IV - IV promote to NV
is-2147483648-+1, -2147483649, '-2147483648 - +1 == -2147483649';
# UV - UV promote to IV
is2147483648-2147483650, -2, '2147483648 - 2147483650 == -2';
}
# check with 0xFFFF and 0xFFFF
{
is65535*65535, 4294836225;
is65535*-65535, -4294836225;
is-65535*65535, -4294836225;
is-65535*-65535, 4294836225;
# check with 0xFFFF and 0x10001
is65535*65537, 4294967295;
is65535*-65537, -4294967295;
is-65535*65537, -4294967295;
is-65535*-65537, 4294967295;
# check with 0x10001 and 0xFFFF
is65537*65535, 4294967295;
is65537*-65535, -4294967295;
is-65537*65535, -4294967295;
is-65537*-65535, 4294967295;
# These should all be dones as NVs
is65537*65537, 4295098369;
is65537*-65537, -4295098369;
is-65537*65537, -4295098369;
is-65537*-65537, 4295098369;
# will overflow an IV (in 32-bit)
is46340*46342, 0x80001218;
is46340*-46342, -0x80001218;
is-46340*46342, -0x80001218;
is-46340*-46342, 0x80001218;
is46342*46340, 0x80001218;
is46342*-46340, -0x80001218;
is-46342*46340, -0x80001218;
is-46342*-46340, 0x80001218;
# will overflow a positive IV (in 32-bit)
is65536*32768, 0x80000000;
is65536*-32768, -0x80000000;
is-65536*32768, -0x80000000;
is-65536*-32768, 0x80000000;
is32768*65536, 0x80000000;
is32768*-65536, -0x80000000;
is-32768*65536, -0x80000000;
is-32768*-65536, 0x80000000;
}
#overflow tests from radix.t
{
# some random made up hex strings (these values are checked against Perl)
is:16("FFACD5FE"), 4289517054, 'got the correct int value from hex FFACD5FE';
is:16("AAA4872D"), 2862909229, 'got the correct int value from hex AAA4872D';
is:16<DEAD_BEEF>, 0xDEADBEEF, 'got the correct int value from hex DEAD_BEEF';
is(:8<37777777777>, 0xffff_ffff, 'got the correct int value from oct 3777777777');
is+":16<DeAdBeEf>", 0xDEADBEEF, "radix 16 notation works";
is+":16<dead_beef.face>", 0xDEADBEEF+0xFACE/65536.0, "fractional base 16 works";
is( :2<1.1> *10**10, 15_000_000_000, 'binary number to power of 10' );
is( :2<1.1*10**10>, 15_000_000_000, 'Power of ten in <> works');
}
# https://github.com/Raku/old-issue-tracker/issues/2019
{
ok1/10000000000000000000000000000000<1/1000,
'can construct Rat (or similar) with big denominator';
}
# vim: expandtab shiftwidth=4