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

Side by Side Diff: test/mjsunit/wasm/compile-run-basic.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/calls.js ('k') | test/mjsunit/wasm/divrem-trap.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 kReturnValue = 97; 9 var kReturnValue = 97;
8 10
9 var kBodySize = 2; 11 var kBodySize = 2;
10 var kNameOffset = 15 + kBodySize + 1; 12 var kNameOffset = 15 + kBodySize + 1;
11 13
12 var data = bytes( 14 var data = bytes(
13 // -- signatures 15 // -- signatures
14 kDeclSignatures, 1, 16 kDeclSignatures, 1,
15 0, kAstI32, // signature: void -> int 17 0, kAstI32, // signature: void -> int
16 // -- main function 18 // -- main function
17 kDeclFunctions, 1, 19 kDeclFunctions, 1,
18 kDeclFunctionName | kDeclFunctionExport, 20 kDeclFunctionName | kDeclFunctionExport,
19 0, 0, // signature index 21 0, 0, // signature index
20 kNameOffset, 0, 0, 0, // name offset 22 kNameOffset, 0, 0, 0, // name offset
21 kBodySize, 0, // body size 23 kBodySize, 0, // body size
22 // -- body 24 // -- body
23 kExprI8Const, // -- 25 kExprI8Const, // --
24 kReturnValue, // -- 26 kReturnValue, // --
25 kDeclEnd, 27 kDeclEnd,
26 'm', 'a', 'i', 'n', 0 // name 28 'm', 'a', 'i', 'n', 0 // name
27 ); 29 );
28 30
29 assertEquals(kReturnValue, WASM.compileRun(data)); 31 assertEquals(kReturnValue, WASM.compileRun(data));
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/calls.js ('k') | test/mjsunit/wasm/divrem-trap.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698