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, offset) { | 7 function Module(stdlib, foreign, heap, offset) { |
8 "use asm"; | 8 "use asm"; |
9 var MEM8 = new stdlib.Int8Array(heap, offset); | 9 var MEM8 = new stdlib.Int8Array(heap, offset); |
10 var MEM16 = new stdlib.Int16Array(heap, offset); | 10 var MEM16 = new stdlib.Int16Array(heap, offset); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 function testElementType(taConstr, f, offset) { | 74 function testElementType(taConstr, f, offset) { |
75 clearArray(); | 75 clearArray(); |
76 | 76 |
77 var ta = new taConstr(sab, offset); | 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 assertThrows(function() { f(-1, 0); }); |
84 assertEquals(0, f(ta.length, 0), name); | 84 assertThrows(function() { f(ta.length, 0); }); |
85 } | 85 } |
86 | 86 |
87 function testElement(m, offset) { | 87 function testElement(m, offset) { |
88 testElementType(Int8Array, m.exchangei8, offset); | 88 testElementType(Int8Array, m.exchangei8, offset); |
89 testElementType(Int16Array, m.exchangei16, offset); | 89 testElementType(Int16Array, m.exchangei16, offset); |
90 testElementType(Int32Array, m.exchangei32, offset); | 90 testElementType(Int32Array, m.exchangei32, offset); |
91 testElementType(Uint8Array, m.exchangeu8, offset); | 91 testElementType(Uint8Array, m.exchangeu8, offset); |
92 testElementType(Uint16Array, m.exchangeu16, offset); | 92 testElementType(Uint16Array, m.exchangeu16, offset); |
93 testElementType(Uint32Array, m.exchangeu32, offset); | 93 testElementType(Uint32Array, m.exchangeu32, offset); |
94 } | 94 } |
95 | 95 |
96 var offset = 0; | 96 var offset = 0; |
97 var sab = new SharedArrayBuffer(16); | 97 var sab = new SharedArrayBuffer(16); |
98 var m1 = Module(this, {}, sab, offset); | 98 var m1 = Module(this, {}, sab, offset); |
99 testElement(m1, offset); | 99 testElement(m1, offset); |
100 | 100 |
101 offset = 32; | 101 offset = 32; |
102 sab = new SharedArrayBuffer(64); | 102 sab = new SharedArrayBuffer(64); |
103 var m2 = Module(this, {}, sab, offset); | 103 var m2 = Module(this, {}, sab, offset); |
104 testElement(m2, offset); | 104 testElement(m2, offset); |
OLD | NEW |