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-atomics --harmony-sharedarraybuffer | 5 // Flags: --harmony-sharedarraybuffer |
6 | 6 |
7 function Module(stdlib, foreign, heap) { | 7 function Module(stdlib, foreign, heap) { |
8 "use asm"; | 8 "use asm"; |
9 var MEM8 = new stdlib.Int8Array(heap); | 9 var MEM8 = new stdlib.Int8Array(heap); |
10 var MEM16 = new stdlib.Int16Array(heap); | 10 var MEM16 = new stdlib.Int16Array(heap); |
11 var MEM32 = new stdlib.Int32Array(heap); | 11 var MEM32 = new stdlib.Int32Array(heap); |
12 var MEMU8 = new stdlib.Uint8Array(heap); | 12 var MEMU8 = new stdlib.Uint8Array(heap); |
13 var MEMU16 = new stdlib.Uint16Array(heap); | 13 var MEMU16 = new stdlib.Uint16Array(heap); |
14 var MEMU32 = new stdlib.Uint32Array(heap); | 14 var MEMU32 = new stdlib.Uint32Array(heap); |
15 var add = stdlib.Atomics.add; | 15 var add = stdlib.Atomics.add; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 assertEquals(0, f(-1, 0), name); | 84 assertEquals(0, f(-1, 0), name); |
85 assertEquals(0, f(ta.length, 0), name); | 85 assertEquals(0, f(ta.length, 0), name); |
86 } | 86 } |
87 | 87 |
88 testElementType(Int8Array, m.addi8); | 88 testElementType(Int8Array, m.addi8); |
89 testElementType(Int16Array, m.addi16); | 89 testElementType(Int16Array, m.addi16); |
90 testElementType(Int32Array, m.addi32); | 90 testElementType(Int32Array, m.addi32); |
91 testElementType(Uint8Array, m.addu8); | 91 testElementType(Uint8Array, m.addu8); |
92 testElementType(Uint16Array, m.addu16); | 92 testElementType(Uint16Array, m.addu16); |
93 testElementType(Uint32Array, m.addu32); | 93 testElementType(Uint32Array, m.addu32); |
OLD | NEW |