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

Side by Side Diff: test/mjsunit/wasm/stackwalk.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/params.js ('k') | test/mjsunit/wasm/unreachable.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-gc --allow-natives-syntax 5 // Flags: --expose-wasm --expose-gc --allow-natives-syntax
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 8
9 function makeFFI(func) { 9 function makeFFI(func) {
10 var kBodySize = 6; 10 var kBodySize = 6;
11 var kNameFunOffset = 24 + kBodySize + 1; 11 var kNameFunOffset = 24 + kBodySize + 1;
12 var kNameMainOffset = kNameFunOffset + 4; 12 var kNameMainOffset = kNameFunOffset + 4;
13 13
14 var ffi = new Object(); 14 var ffi = new Object();
15 ffi.fun = func; 15 ffi.fun = func;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 var gcer = builder(dogc); 126 var gcer = builder(dogc);
127 gcer(7, 7); 127 gcer(7, 7);
128 128
129 for (var i = 0; i < 9; i++) { 129 for (var i = 0; i < 9; i++) {
130 gcer(8, 8); 130 gcer(8, 8);
131 } 131 }
132 } 132 }
133 133
134 runTest(makeReentrantFFI); 134 runTest(makeReentrantFFI);
135 runTest(makeFFI); 135 runTest(makeFFI);
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/params.js ('k') | test/mjsunit/wasm/unreachable.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698