OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --harmony-sharedarraybuffer | 5 // Flags: --harmony-sharedarraybuffer |
6 | 6 |
7 function Module(stdlib, foreign, heap) { | 7 function Module(stdlib, foreign, heap, offset) { |
8 "use asm"; | 8 "use asm"; |
9 var MEM8 = new stdlib.Int8Array(heap); | 9 var MEM8 = new stdlib.Int8Array(heap, offset); |
10 var MEM16 = new stdlib.Int16Array(heap); | 10 var MEM16 = new stdlib.Int16Array(heap, offset); |
11 var MEM32 = new stdlib.Int32Array(heap); | 11 var MEM32 = new stdlib.Int32Array(heap, offset); |
12 var MEMU8 = new stdlib.Uint8Array(heap); | 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); |
13 var MEMU16 = new stdlib.Uint16Array(heap); | 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); |
14 var MEMU32 = new stdlib.Uint32Array(heap); | 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); |
15 var sub = stdlib.Atomics.sub; | 15 var sub = stdlib.Atomics.sub; |
16 var fround = stdlib.Math.fround; | 16 var fround = stdlib.Math.fround; |
17 | 17 |
18 function subi8(i, x) { | 18 function subi8(i, x) { |
19 i = i | 0; | 19 i = i | 0; |
20 x = x | 0; | 20 x = x | 0; |
21 return sub(MEM8, i, x)|0; | 21 return sub(MEM8, i, x)|0; |
22 } | 22 } |
23 | 23 |
24 function subi16(i, x) { | 24 function subi16(i, x) { |
(...skipping 29 matching lines...) Expand all Loading... |
54 return { | 54 return { |
55 subi8: subi8, | 55 subi8: subi8, |
56 subi16: subi16, | 56 subi16: subi16, |
57 subi32: subi32, | 57 subi32: subi32, |
58 subu8: subu8, | 58 subu8: subu8, |
59 subu16: subu16, | 59 subu16: subu16, |
60 subu32: subu32, | 60 subu32: subu32, |
61 }; | 61 }; |
62 } | 62 } |
63 | 63 |
64 var sab = new SharedArrayBuffer(16); | |
65 var m = Module(this, {}, sab); | |
66 | |
67 function clearArray() { | 64 function clearArray() { |
68 var ui8 = new Uint8Array(sab); | 65 var ui8 = new Uint8Array(sab); |
69 for (var i = 0; i < sab.byteLength; ++i) { | 66 for (var i = 0; i < sab.byteLength; ++i) { |
70 ui8[i] = 0; | 67 ui8[i] = 0; |
71 } | 68 } |
72 } | 69 } |
73 | 70 |
74 function testElementType(taConstr, f) { | 71 function testElementType(taConstr, f, offset) { |
75 clearArray(); | 72 clearArray(); |
76 | 73 |
77 var ta = new taConstr(sab); | 74 var ta = new taConstr(sab, offset); |
78 var name = Object.prototype.toString.call(ta); | 75 var name = Object.prototype.toString.call(ta); |
79 ta[0] = 30; | 76 ta[0] = 30; |
80 assertEquals(30, f(0, 10), name); | 77 assertEquals(30, f(0, 10), name); |
81 assertEquals(20, ta[0]); | 78 assertEquals(20, ta[0]); |
82 assertEquals(20, f(0, 10), name); | 79 assertEquals(20, f(0, 10), name); |
83 assertEquals(10, ta[0]); | 80 assertEquals(10, ta[0]); |
84 // out of bounds | 81 // out of bounds |
85 assertEquals(0, f(-1, 0), name); | 82 assertEquals(0, f(-1, 0), name); |
86 assertEquals(0, f(ta.length, 0), name); | 83 assertEquals(0, f(ta.length, 0), name); |
87 } | 84 } |
88 | 85 |
89 testElementType(Int8Array, m.subi8); | 86 function testElement(m, offset) { |
90 testElementType(Int16Array, m.subi16); | 87 testElementType(Int8Array, m.subi8, offset); |
91 testElementType(Int32Array, m.subi32); | 88 testElementType(Int16Array, m.subi16, offset); |
92 testElementType(Uint8Array, m.subu8); | 89 testElementType(Int32Array, m.subi32, offset); |
93 testElementType(Uint16Array, m.subu16); | 90 testElementType(Uint8Array, m.subu8, offset); |
94 testElementType(Uint32Array, m.subu32); | 91 testElementType(Uint16Array, m.subu16, offset); |
| 92 testElementType(Uint32Array, m.subu32, offset); |
| 93 } |
| 94 |
| 95 var offset = 0; |
| 96 var sab = new SharedArrayBuffer(16); |
| 97 var m1 = Module(this, {}, sab, offset); |
| 98 testElement(m1, offset); |
| 99 |
| 100 offset = 32; |
| 101 sab = new SharedArrayBuffer(64); |
| 102 var m2 = Module(this, {}, sab, offset); |
| 103 testElement(m2, offset); |
OLD | NEW |