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

Side by Side Diff: test/mjsunit/asm/int32-mod.js

Issue 620553008: Lower NumberMultiply, NumberDivide, and NumberModulus to Int32Mul, Int32[U]Div, and Int32[U]Mod whe… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: git cl try Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/asm/int32-div.js ('k') | test/mjsunit/asm/int32-mul.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 function Module(stdlib, foreign, heap) {
6 "use asm";
7 function f1(i) {
8 i = i|0;
9 return i % 3;
10 }
11 function f2(i) {
12 i = i|0;
13 return i % 9;
14 }
15 function f3(i) {
16 i = i|0;
17 return i % 1024;
18 }
19 function f4(i) {
20 i = i|0;
21 return i % 3133335;
22 }
23 return { f1: f1, f2: f2, f3: f3, f4: f4 };
24 }
25
26 var m = Module(this, {}, new ArrayBuffer(1024));
27
28 for (var i = -2147483648; i < 2147483648; i += 3999773) {
29 assertEquals(i % 3, m.f1(i));
30 assertEquals(i % 9, m.f2(i));
31 assertEquals(i % 1024, m.f3(i));
32 assertEquals(i % 3133335, m.f4(i));
33 }
OLDNEW
« no previous file with comments | « test/mjsunit/asm/int32-div.js ('k') | test/mjsunit/asm/int32-mul.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698