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

Side by Side Diff: test/mjsunit/asm/int32-tmod.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/int32-mul.js ('k') | test/mjsunit/asm/int32-udiv.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 function f0(i) { 7 function f0(i) {
8 i = i|0; 8 i = i|0;
9 return i % 2 | 0; 9 return (i | 0) % 2 | 0;
10 } 10 }
11 function f1(i) { 11 function f1(i) {
12 i = i|0; 12 i = i|0;
13 return i % 3 | 0; 13 return (i | 0) % 3 | 0;
14 } 14 }
15 function f2(i) { 15 function f2(i) {
16 i = i|0; 16 i = i|0;
17 return i % 9 | 0; 17 return (i | 0) % 9 | 0;
18 } 18 }
19 function f3(i) { 19 function f3(i) {
20 i = i|0; 20 i = i|0;
21 return i % 1024 | 0; 21 return (i | 0) % 1024 | 0;
22 } 22 }
23 function f4(i) { 23 function f4(i) {
24 i = i|0; 24 i = i|0;
25 return i % 3333339 | 0; 25 return (i | 0) % 3333339 | 0;
26 } 26 }
27 return { f0: f0, f1: f1, f2: f2, f3: f3, f4: f4 }; 27 return { f0: f0, f1: f1, f2: f2, f3: f3, f4: f4 };
28 } 28 }
29 29
30 var m = Module(this, {}, new ArrayBuffer(1024)); 30 var m = Module(this, {}, new ArrayBuffer(1024));
31 31
32 for (var i = -2147483648; i < 2147483648; i += 3999773) { 32 for (var i = -2147483648; i < 2147483648; i += 3999773) {
33 assertEquals(i % 2 | 0, m.f0(i)); 33 assertEquals(i % 2 | 0, m.f0(i));
34 assertEquals(i % 3 | 0, m.f1(i)); 34 assertEquals(i % 3 | 0, m.f1(i));
35 assertEquals(i % 9 | 0, m.f2(i)); 35 assertEquals(i % 9 | 0, m.f2(i));
36 assertEquals(i % 1024 | 0, m.f3(i)); 36 assertEquals(i % 1024 | 0, m.f3(i));
37 assertEquals(i % 3333339 | 0, m.f4(i)); 37 assertEquals(i % 3333339 | 0, m.f4(i));
38 } 38 }
OLDNEW
« no previous file with comments | « test/mjsunit/asm/int32-mul.js ('k') | test/mjsunit/asm/int32-udiv.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698