forked from nikomatsakis/pjs-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestMap.js
179 lines (153 loc) · 6.91 KB
/
TestMap.js
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
if (typeof(libdir) === "undefined") { load("Util.js"); } else { load(libdir+"/"+"Util.js"); }
// Test name format:
// map<N>DimArrayOf<G1>sTo<G2>s where <N> is a positive integer (or its
// equivalent word in English) and <G1> and <G2> are both grain types
// (potentially an array themselves.)
function mapOneDimArrayOfUint8ToUint32s() {
var intype = new ArrayType(uint8, 4);
var type = new ArrayType(uint32, 4);
var i1 = intype.build(i => i);
var r1 = i1.mapPar(type, j => j*2);
var r2 = i1.mapPar(type, 1, j => j*2);
assertTypedEqual(type, r1, new type([0, 2, 4, 6]));
assertTypedEqual(type, r1, r2);
}
function mapOneDimArrayOfUint32ToUint8s() {
var intype = new ArrayType(uint32, 4);
var type = new ArrayType(uint8, 4);
var i1 = intype.build(i => i);
var r1 = i1.mapPar(type, j => j*200);
var r2 = i1.mapPar(type, 1, j => j*200);
assertTypedEqual(type, r1, new type([0, 200, 400 % 256, 600 % 256]));
assertTypedEqual(type, r1, r2);
}
function mapTwoDimArrayOfUint8ToUint32s() {
var intype = new ArrayType(new ArrayType(uint8, 4), 4);
var rowtype = new ArrayType(uint32, 4);
var type = new ArrayType(rowtype, 4);
var i1 = new type([[10, 11, 12, 13],
[20, 21, 22, 23],
[30, 31, 32, 33],
[40, 41, 42, 43]]);
var r1 = i1.mapPar(type, 2, x => x*2);
var r2 = i1.mapPar(type, 1, a => a.mapPar(rowtype, 1, x => x*2));
var r3 = i1.mapPar(type, 1, a => a.mapPar(rowtype, 1, (x, j, c, out) => Handle.set(out, x*2)));
var r4 = i1.mapPar(type, 1, (a, j, c, out) => { out[0] = a[0]*2;
out[1] = a[1]*2;
out[2] = a[2]*2;
out[3] = a[3]*2; });
assertTypedEqual(type, r1, new type([[20, 22, 24, 26],
[40, 42, 44, 46],
[60, 62, 64, 66],
[80, 82, 84, 86]]));
assertTypedEqual(type, r1, r2);
assertTypedEqual(type, r1, r3);
assertTypedEqual(type, r1, r4);
}
function mapTwoDimArrayOfUint32ToUint8s() {
var intype = new ArrayType(new ArrayType(uint32, 4), 4);
var rowtype = new ArrayType(uint8, 4);
var type = new ArrayType(rowtype, 4);
var i1 = new type([[10, 11, 12, 13],
[20, 21, 22, 23],
[30, 31, 32, 33],
[40, 41, 42, 43]]);
var r1 = i1.mapPar(type, 2, x => x*2);
var r2 = i1.mapPar(type, 1, a => a.mapPar(rowtype, 1, x => x*2));
var r3 = i1.mapPar(type, 1, a => a.mapPar(rowtype, 1, (x, j, c, out) => Handle.set(out, x*2)));
var r4 = i1.mapPar(type, 1, (a, j, c, out) => { out[0] = a[0]*2;
out[1] = a[1]*2;
out[2] = a[2]*2;
out[3] = a[3]*2; });
assertTypedEqual(type, r1, new type([[20, 22, 24, 26],
[40, 42, 44, 46],
[60, 62, 64, 66],
[80, 82, 84, 86]]));
assertTypedEqual(type, r1, r2);
assertTypedEqual(type, r1, r3);
assertTypedEqual(type, r1, r4);
}
function mapOneDimArrayOfArrayOfUint8ToUint32s() {
var intype = new ArrayType(new ArrayType(uint8, 4), 4);
var type = new ArrayType(uint32, 4);
var i1 = new intype([[0xdd, 0xcc, 0xbb, 0xaa],
[0x09, 0x08, 0x07, 0x06],
[0x15, 0x14, 0x13, 0x12],
[0x23, 0x32, 0x41, 0x50]]);
function combine(a,b,c,d) { return a << 24 | b << 16 | c << 8 | d; }
var r1 = i1.mapPar(type, x => combine(x[0], x[1], x[2], x[3]));
var r2 = i1.mapPar(type, 1, (x, i, c, out) => Handle.set(out, combine(x[0], x[1], x[2], x[3])));
assertTypedEqual(type, r1, new type([0xddccbbaa, 0x09080706, 0x15141312, 0x23324150]));
assertTypedEqual(type, r1, r2);
}
function mapOneDimArrayOfUint32ToArrayOfUint8s() {
var intype = new ArrayType(uint32, 4);
var type = new ArrayType(new ArrayType(uint8, 4), 4);
var i1 = new intype([0xddccbbaa, 0x09080706, 0x15141312, 0x23324150]);
function divide(a) { return [a >> 24 & 0xFF, a >> 16 & 0xFF, a >> 8 & 0xFF, a & 0xFF]; }
var r1 = i1.mapPar(type, x => divide(x));
var r2 = i1.mapPar(type, 1, (x, i, c, out) => {
var [a,b,c,d] = divide(x);
out[0] = a; out[1] = b; out[2] = c; out[3] = d;
});
assertTypedEqual(type, r1, new type([[0xdd, 0xcc, 0xbb, 0xaa],
[0x09, 0x08, 0x07, 0x06],
[0x15, 0x14, 0x13, 0x12],
[0x23, 0x32, 0x41, 0x50]]));
assertTypedEqual(type, r1, r2);
}
var Grain = new StructType({f: uint32});
function wrapG(v) { return new Grain({f: v}); }
function doubleG(g) { return new Grain({f: g.f * 2}); }
function tenG(x, y) { return new Grain({f: x * 10 + y}); }
function mapOneDimArrayOfStructsToStructs() {
var type = new ArrayType(Grain, 4);
var i1 = type.build(wrapG);
var r1 = i1.mapPar(type, doubleG);
var r2 = i1.mapPar(type, 1, doubleG);
var r3 = i1.mapPar(type, 1, (g, j, c, out) => { out.f = g.f * 2; });
assertTypedEqual(type, r1, new type([{f:0}, {f:2},
{f:4}, {f:6}]));
assertTypedEqual(type, r1, r2);
assertTypedEqual(type, r1, r3);
}
function mapTwoDimArrayOfStructsToStructs() {
var rowtype = new ArrayType(Grain, 2);
var type = new ArrayType(rowtype, 2);
var i1 = type.build(2, tenG);
var r1 = i1.mapPar(type, 2, doubleG);
var r2 = i1.mapPar(type, 1, (m) => m.mapPar(rowtype, 1, doubleG));
var r3 = i1.mapPar(type, 1, (m, j, c, out) => { out[0].f = m[0].f * 2; out[1].f = m[1].f * 2; });
assertTypedEqual(type, r1, new type([[{f:00}, {f:02}],
[{f:20}, {f:22}]]));
assertTypedEqual(type, r1, r2);
assertTypedEqual(type, r1, r3);
}
function mapOneDimArrayOfStructsToArrayOfStructs() {
var Line = new ArrayType(Grain, 2);
var Box = new ArrayType(Line, 2);
var i1 = Line.build(wrapG);
var r1 = i1.mapPar(Box, (g) => Line.build((y) => tenG(g.f, y)));
var r2 = i1.mapPar(Box, (g) => i1.mapPar(Line, (y) => tenG(g.f, y.f)));
var r3 = i1.mapPar(Box, (g, j, c, out) => { out[0] = tenG(g.f, 0); out[1] = tenG(g.f, 1); });
assertTypedEqual(Box, r1, new Box([[{f:00}, {f:01}],
[{f:10}, {f:11}]]));
assertTypedEqual(Box, r1, r2);
assertTypedEqual(Box, r1, r3);
}
try {
mapOneDimArrayOfUint8ToUint32s();
mapOneDimArrayOfUint32ToUint8s();
mapTwoDimArrayOfUint8ToUint32s();
mapTwoDimArrayOfUint32ToUint8s();
mapOneDimArrayOfArrayOfUint8ToUint32s();
mapOneDimArrayOfUint32ToArrayOfUint8s();
mapOneDimArrayOfStructsToStructs();
mapTwoDimArrayOfStructsToStructs();
mapOneDimArrayOfStructsToArrayOfStructs();
} catch (e) {
print(e.name);
print(e.message);
print(e.stack);
throw e;
}