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

Side by Side Diff: test/mjsunit/asm/float32array-negative-offset.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/do-while-false.js ('k') | test/mjsunit/asm/float32array-outofbounds.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 var stdlib = this; 5 var stdlib = this;
6 var buffer = new ArrayBuffer(64 * 1024); 6 var buffer = new ArrayBuffer(64 * 1024);
7 var foreign = {} 7 var foreign = {}
8 8
9 9
10 var m = (function Module(stdlib, foreign, heap) { 10 var m = (function Module(stdlib, foreign, heap) {
11 "use asm"; 11 "use asm";
12 var MEM32 = new stdlib.Float32Array(heap); 12 var MEM32 = new stdlib.Float32Array(heap);
13 function load(i) { 13 function load(i) {
14 i = i|0; 14 i = i|0;
15 i = +MEM32[i >> 2]; 15 return +MEM32[i >> 2];
16 return i;
17 } 16 }
18 function store(i, v) { 17 function store(i, v) {
19 i = i|0; 18 i = i|0;
20 v = +v; 19 v = +v;
21 MEM32[i >> 2] = v; 20 MEM32[i >> 2] = v;
22 } 21 }
23 function load8(i) { 22 function load8(i) {
24 i = i|0; 23 i = i|0;
25 i = +MEM32[i + 8 >> 2]; 24 return +MEM32[i + 8 >> 2];
26 return i;
27 } 25 }
28 function store8(i, v) { 26 function store8(i, v) {
29 i = i|0; 27 i = i|0;
30 v = +v; 28 v = +v;
31 MEM32[i + 8 >> 2] = v; 29 MEM32[i + 8 >> 2] = v;
32 } 30 }
33 return { load: load, store: store, load8: load8, store8: store8 }; 31 return { load: load, store: store, load8: load8, store8: store8 };
34 })(stdlib, foreign, buffer); 32 })(stdlib, foreign, buffer);
35 33
36 assertEquals(NaN, m.load(-8)); 34 assertEquals(NaN, m.load(-8));
37 assertEquals(NaN, m.load8(-16)); 35 assertEquals(NaN, m.load8(-16));
38 m.store(0, 42.0); 36 m.store(0, 42.0);
39 assertEquals(42.0, m.load8(-8)); 37 assertEquals(42.0, m.load8(-8));
40 m.store8(-8, 99.0); 38 m.store8(-8, 99.0);
41 assertEquals(99.0, m.load(0)); 39 assertEquals(99.0, m.load(0));
42 assertEquals(99.0, m.load8(-8)); 40 assertEquals(99.0, m.load8(-8));
OLDNEW
« no previous file with comments | « test/mjsunit/asm/do-while-false.js ('k') | test/mjsunit/asm/float32array-outofbounds.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698