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

Side by Side Diff: test/mjsunit/wasm/indirect-calls.js

Issue 1537643002: Add --enable-wasm to wasm tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/wasm/ffi-error.js ('k') | test/mjsunit/wasm/instantiate-module-basic.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 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: --expose-wasm
6
5 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
6 8
7 var module = (function () { 9 var module = (function () {
8 var kFuncWithBody = 9; 10 var kFuncWithBody = 9;
9 var kFuncImported = 7; 11 var kFuncImported = 7;
10 var kBodySize1 = 5; 12 var kBodySize1 = 5;
11 var kBodySize2 = 8; 13 var kBodySize2 = 8;
12 var kFuncTableSize = 8; 14 var kFuncTableSize = 8;
13 var kSubOffset = 13 + kFuncWithBody + kBodySize1 + kFuncImported + kFuncWithBo dy + kBodySize2 + kFuncTableSize + 1; 15 var kSubOffset = 13 + kFuncWithBody + kBodySize1 + kFuncImported + kFuncWithBo dy + kBodySize2 + kFuncTableSize + 1;
14 var kAddOffset = kSubOffset + 4; 16 var kAddOffset = kSubOffset + 4;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 assertFalse(module === null); 64 assertFalse(module === null);
63 assertFalse(module === 0); 65 assertFalse(module === 0);
64 assertEquals("object", typeof module); 66 assertEquals("object", typeof module);
65 assertEquals("function", typeof module.main); 67 assertEquals("function", typeof module.main);
66 68
67 assertEquals(5, module.main(0, 12, 7)); 69 assertEquals(5, module.main(0, 12, 7));
68 assertEquals(19, module.main(1, 12, 7)); 70 assertEquals(19, module.main(1, 12, 7));
69 71
70 assertTraps(kTrapFuncSigMismatch, "module.main(2, 12, 33)"); 72 assertTraps(kTrapFuncSigMismatch, "module.main(2, 12, 33)");
71 assertTraps(kTrapFuncInvalid, "module.main(3, 12, 33)"); 73 assertTraps(kTrapFuncInvalid, "module.main(3, 12, 33)");
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/ffi-error.js ('k') | test/mjsunit/wasm/instantiate-module-basic.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698