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 exchange = stdlib.Atomics.exchange; | 15 var exchange = stdlib.Atomics.exchange; |
16 var fround = stdlib.Math.fround; | 16 var fround = stdlib.Math.fround; |
17 | 17 |
18 function exchangei8(i, x) { | 18 function exchangei8(i, x) { |
19 i = i | 0; | 19 i = i | 0; |
20 x = x | 0; | 20 x = x | 0; |
21 return exchange(MEM8, i, x)|0; | 21 return exchange(MEM8, i, x)|0; |
22 } | 22 } |
23 | 23 |
24 function exchangei16(i, x) { | 24 function exchangei16(i, x) { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 var sab = new SharedArrayBuffer(16); | 64 var sab = new SharedArrayBuffer(16); |
65 var m = Module(this, {}, sab); | 65 var m = Module(this, {}, sab); |
66 | 66 |
67 function clearArray() { | 67 function clearArray() { |
68 var ui8 = new Uint8Array(sab); | 68 var ui8 = new Uint8Array(sab); |
69 for (var i = 0; i < sab.byteLength; ++i) { | 69 for (var i = 0; i < sab.byteLength; ++i) { |
70 ui8[i] = 0; | 70 ui8[i] = 0; |
71 } | 71 } |
72 } | 72 } |
73 | 73 |
74 function testElementType(taConstr, f) { | 74 function testElementType(taConstr, f, offset) { |
75 clearArray(); | 75 clearArray(); |
76 | 76 |
77 var ta = new taConstr(sab); | 77 var ta = new taConstr(sab, offset); |
78 var name = Object.prototype.toString.call(ta); | 78 var name = Object.prototype.toString.call(ta); |
79 ta[0] = 0x7f; | 79 ta[0] = 0x7f; |
80 assertEquals(0x7f, f(0, 0xf), name); | 80 assertEquals(0x7f, f(0, 0xf), name); |
81 assertEquals(0xf, ta[0]); | 81 assertEquals(0xf, ta[0]); |
82 // out of bounds | 82 // out of bounds |
83 assertEquals(0, f(-1, 0), name); | 83 assertEquals(0, f(-1, 0), name); |
84 assertEquals(0, f(ta.length, 0), name); | 84 assertEquals(0, f(ta.length, 0), name); |
85 } | 85 } |
86 | 86 |
87 testElementType(Int8Array, m.exchangei8); | 87 function testElement(m, offset) { |
88 testElementType(Int16Array, m.exchangei16); | 88 testElementType(Int8Array, m.exchangei8, offset); |
89 testElementType(Int32Array, m.exchangei32); | 89 testElementType(Int16Array, m.exchangei16, offset); |
90 testElementType(Uint8Array, m.exchangeu8); | 90 testElementType(Int32Array, m.exchangei32, offset); |
91 testElementType(Uint16Array, m.exchangeu16); | 91 testElementType(Uint8Array, m.exchangeu8, offset); |
92 testElementType(Uint32Array, m.exchangeu32); | 92 testElementType(Uint16Array, m.exchangeu16, offset); |
| 93 testElementType(Uint32Array, m.exchangeu32, offset); |
| 94 } |
| 95 |
| 96 var offset = 0; |
| 97 var sab = new SharedArrayBuffer(16); |
| 98 var m1 = Module(this, {}, sab, offset); |
| 99 testElement(m1, offset); |
| 100 |
| 101 offset = 32; |
| 102 sab = new SharedArrayBuffer(64); |
| 103 var m2 = Module(this, {}, sab, offset); |
| 104 testElement(m2, offset); |
OLD | NEW |