Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: test/mjsunit/asm/int32array-unaligned.js

Issue 2663243002: [asm] Fix lots of invalid asm.js tests (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/asm/int32array-outofbounds.js ('k') | test/mjsunit/asm/int32div.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 function Module(stdlib, foreign, heap) { 5 function Module(stdlib, foreign, heap) {
6 "use asm"; 6 "use asm";
7 var MEM32 = new stdlib.Int32Array(heap); 7 var MEM32 = new stdlib.Int32Array(heap);
8 function load(i) { 8 function load(i) {
9 i = i|0; 9 i = i|0;
10 i = MEM32[i >> 2] | 0; 10 i = MEM32[i >> 2] | 0;
11 return i; 11 return i | 0;
12 } 12 }
13 function store(i, v) { 13 function store(i, v) {
14 i = i|0; 14 i = i|0;
15 v = v|0; 15 v = v|0;
16 MEM32[i >> 2] = v; 16 MEM32[i >> 2] = v;
17 } 17 }
18 return { load: load, store: store }; 18 return { load: load, store: store };
19 } 19 }
20 20
21 var m = Module(this, {}, new ArrayBuffer(1024)); 21 var m = Module(this, {}, new ArrayBuffer(1024));
(...skipping 12 matching lines...) Expand all
34 for (var i = 0; i < 4; ++i) { 34 for (var i = 0; i < 4; ++i) {
35 assertEquals(0x12345678, m.load(i)); 35 assertEquals(0x12345678, m.load(i));
36 } 36 }
37 for (var i = 4; i < 8; ++i) { 37 for (var i = 4; i < 8; ++i) {
38 assertEquals(0x11223344, m.load(i)); 38 assertEquals(0x11223344, m.load(i));
39 } 39 }
40 for (var i = 8; i < 12; ++i) { 40 for (var i = 8; i < 12; ++i) {
41 assertEquals(-1, m.load(i)); 41 assertEquals(-1, m.load(i));
42 } 42 }
43 } 43 }
OLDNEW
« no previous file with comments | « test/mjsunit/asm/int32array-outofbounds.js ('k') | test/mjsunit/asm/int32div.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698