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

Side by Side Diff: test/mjsunit/wasm/unreachable.js

Issue 1577803002: [wasm] Rename the WASM object to _WASMEXP_. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/wasm/stackwalk.js ('k') | test/mjsunit/wasm/verify-function-basic-errors.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 5 // Flags: --expose-wasm
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 8
9 var module = (function () { 9 var module = (function () {
10 var kFuncWithBody = 9; 10 var kFuncWithBody = 9;
11 var kFuncImported = 7; 11 var kFuncImported = 7;
12 var kBodySize1 = 1; 12 var kBodySize1 = 1;
13 var kMainOffset = 6 + kFuncWithBody + kBodySize1 + 1; 13 var kMainOffset = 6 + kFuncWithBody + kBodySize1 + 1;
14 14
15 var ffi = new Object(); 15 var ffi = new Object();
16 ffi.add = (function(a, b) { return a + b | 0; }); 16 ffi.add = (function(a, b) { return a + b | 0; });
17 17
18 return WASM.instantiateModule(bytes( 18 return _WASMEXP_.instantiateModule(bytes(
19 // -- signatures 19 // -- signatures
20 kDeclSignatures, 1, 20 kDeclSignatures, 1,
21 0, kAstStmt, // void -> void 21 0, kAstStmt, // void -> void
22 // -- function #0 (unreachable) 22 // -- function #0 (unreachable)
23 kDeclFunctions, 1, 23 kDeclFunctions, 1,
24 kDeclFunctionName | kDeclFunctionExport, 24 kDeclFunctionName | kDeclFunctionExport,
25 0, 0, // signature offset 25 0, 0, // signature offset
26 kMainOffset, 0, 0, 0, // name offset 26 kMainOffset, 0, 0, 0, // name offset
27 kBodySize1, 0, // body size 27 kBodySize1, 0, // body size
28 kExprUnreachable, 28 kExprUnreachable,
(...skipping 10 matching lines...) Expand all
39 assertEquals("function", typeof module.main); 39 assertEquals("function", typeof module.main);
40 40
41 var exception = ""; 41 var exception = "";
42 try { 42 try {
43 assertEquals(0, module.main()); 43 assertEquals(0, module.main());
44 } catch(e) { 44 } catch(e) {
45 print("correctly caught: " + e); 45 print("correctly caught: " + e);
46 exception = e; 46 exception = e;
47 } 47 }
48 assertEquals("unreachable", exception); 48 assertEquals("unreachable", exception);
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/stackwalk.js ('k') | test/mjsunit/wasm/verify-function-basic-errors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698