forked from ballerina-platform/nballerina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathint.bal
289 lines (265 loc) · 7.59 KB
/
int.bal
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
// Implementation specific to basic type int.
public type IntSubtype readonly & Range[];
// Ranges are inclusive
// Require min <= max
public type Range readonly & record {|
int min;
int max;
|};
public function intConst(int value) returns ComplexSemType {
IntSubtype t = [{ min: value, max: value }];
return basicSubtype(BT_INT, t);
}
public function intRange(int min, int max) returns SemType {
if min == int:MIN_VALUE && max == int:MAX_VALUE {
return INT;
}
IntSubtype t = [{ min, max }];
return basicSubtype(BT_INT, t);
}
function validIntWidth(boolean signed, int bits) returns error? {
if bits <= 0 {
return error((bits == 0 ? "zero" : "negative") + " width in bits");
}
if signed {
if bits > 64 {
return error("width of signed integers limited to 64");
}
}
else {
if bits > 63 {
return error("width of unsigned integers limited to 63");
}
}
}
public function validIntWidthSigned(int bits) returns error? => validIntWidth(true, bits);
public function validIntWidthUnsigned(int bits) returns error? => validIntWidth(false, bits);
public function intWidthSigned(int bits) returns SemType {
checkpanic validIntWidth(true, bits);
if bits == 64 {
return INT;
}
IntSubtype t = [{ min: -(1 << (bits - 1)), max: (1 << (bits - 1)) - 1 }];
return basicSubtype(BT_INT, t);
}
public function intWidthUnsigned(int bits) returns SemType {
checkpanic validIntWidth(false, bits);
IntSubtype t = [{ min: 0, max: (1 << bits) - 1 }];
return basicSubtype(BT_INT, t);
}
// Widen to UnsignedN
function intSubtypeWidenUnsigned(SubtypeData d) returns SubtypeData {
if d is boolean {
return d;
}
IntSubtype v = <IntSubtype>d;
if v[0].min < 0 {
return true;
}
Range r = v[v.length() - 1];
int i = 8;
while i <= 32 {
if r.max < (1 << i) {
IntSubtype w = [{ min: 0, max: (1 << i) - 1 }];
return w;
}
i = i * 2;
}
return true;
}
function intSubtypeSingleValue(SubtypeData d) returns int? {
if d is boolean {
return ();
}
IntSubtype v = <IntSubtype>d;
if v.length() != 1 {
return ();
}
int min = v[0].min;
if min != v[0].max {
return ();
}
return min;
}
function intSubtypeContains(SubtypeData d, int n) returns boolean {
if d is boolean {
return d;
}
IntSubtype v = <IntSubtype>d;
foreach Range r in v {
if r.min <= n && n <= r.max {
return true;
}
}
return false;
}
function intSubtypeUnion(ProperSubtypeData d1, ProperSubtypeData d2) returns SubtypeData {
IntSubtype v1 = <IntSubtype>d1;
IntSubtype v2 = <IntSubtype>d2;
Range[] v = rangeListUnion(v1, v2);
if v.length() == 1 && v[0].min == int:MIN_VALUE && v[0].max == int:MAX_VALUE {
return true;
}
return v.cloneReadOnly();
}
function intSubtypeIntersect(ProperSubtypeData d1, ProperSubtypeData d2) returns SubtypeData {
IntSubtype v1 = <IntSubtype>d1;
IntSubtype v2 = <IntSubtype>d2;
Range[] v = rangeListIntersect(v1, v2);
if v.length() == 0 {
return false;
}
return v.cloneReadOnly();
}
function intSubtypeComplement(ProperSubtypeData d) returns SubtypeData {
IntSubtype v = <IntSubtype>d;
return rangeListComplement(v).cloneReadOnly();
}
function intSubtypeOverlapRange(IntSubtype subtype, Range range) returns boolean {
return intSubtypeIntersect(subtype, [range]) != false;
}
function intSubtypeMax(IntSubtype subtype) returns int {
return subtype[subtype.length() - 1].max;
}
function intSubtypeMin(IntSubtype subtype) returns int {
return subtype[0].min;
}
function rangeListUnion(Range[] v1, Range[] v2) returns Range[] {
Range[] result = [];
int i1 = 0;
int i2 = 0;
int len1 = v1.length();
int len2 = v2.length();
while true {
if i1 >= len1 {
if i2 >= len2 {
break;
}
rangeUnionPush(result, v2[i2]);
i2 += 1;
}
else if i2 >= len2 {
rangeUnionPush(result, v1[i1]);
i1 += 1;
}
else {
Range r1 = v1[i1];
Range r2 = v2[i2];
var combined = rangeUnion(r1, r2);
if combined is Range {
rangeUnionPush(result, combined);
i1 += 1;
i2 += 1;
}
else if combined < 0 {
rangeUnionPush(result, r1);
i1 += 1;
}
else {
rangeUnionPush(result, r2);
i2 += 1;
}
}
}
return result;
}
function rangeUnionPush(Range[] ranges, Range next) {
int lastIndex = ranges.length() - 1;
if lastIndex < 0 {
ranges.push(next);
return;
}
var combined = rangeUnion(ranges[lastIndex], next);
if combined is Range {
ranges[lastIndex] = combined;
}
else {
ranges.push(next);
}
}
// Returns a range if there is a single range representing the union of r1 and r1.
// -1 means union is empty because r1 is before r2, with no overlap
// 1 means union is empty because r2 is before r1 with no overlap
// Precondition r1 and r2 are non-empty
function rangeUnion(Range r1, Range r2) returns -1|1|Range {
if r1.max < r2.min {
// we can still merge if the ranges are adjacent
if r1.max + 1 != r2.min {
return -1;
}
}
if r2.max < r1.min {
// we can still merge if the ranges are adjacent
if r2.max + 1 != r2.min {
return 1;
}
}
return { min: int:min(r1.min, r2.min), max: int:max(r1.max, r2.max) };
}
function rangeListIntersect(Range[] v1, Range[] v2) returns Range[] {
Range[] result = [];
int i1 = 0;
int i2 = 0;
int len1 = v1.length();
int len2 = v2.length();
while true {
if i1 >= len1 || i2 >= len2 {
break;
}
else {
Range r1 = v1[i1];
Range r2 = v2[i2];
var combined = rangeIntersect(r1, r2);
if combined is Range {
// no need for rangeUnionPush here
result.push(combined);
i1 += 1;
i2 += 1;
}
else if combined < 0 {
i1 += 1;
}
else {
i2 += 1;
}
}
}
return result;
}
// when Range is returned, it is non-empty and the intersection of r1 and r2
// -1 means empty intersection because r1 before r2
// 1 means empty intersection because r1 after r2
function rangeIntersect(Range r1, Range r2) returns -1|1|Range {
// there are two possibilities for no overlap
if r1.max < r2.min {
return -1;
}
if r2.max < r1.min {
return 1;
}
// we know they have a non-empty overlap
return { min: int:max(r1.min, r2.min), max: int:min(r1.max, r2.max) };
}
// precondition v is not empty
function rangeListComplement(Range[] v) returns Range[] {
Range[] result = [];
int len = v.length();
int min = v[0].min;
if min > int:MIN_VALUE {
result.push({min: int:MIN_VALUE, max: min - 1});
}
foreach int i in 1 ..< len {
result.push({ min: v[i - 1].max + 1, max: v[i].min - 1 });
}
int max = v[v.length() - 1].max;
if max < int:MAX_VALUE {
result.push({ min: max + 1, max: int:MAX_VALUE });
}
return result;
}
final BasicTypeOps intOps = {
union: intSubtypeUnion,
intersect: intSubtypeIntersect,
complement: intSubtypeComplement,
isEmpty: notIsEmpty
};