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

Side by Side Diff: test/mjsunit/wasm/compile-run-basic.js

Issue 1504713014: Initial import of v8-native WASM. (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
(Empty)
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
3 // found in the LICENSE file.
4
5 load("test/mjsunit/wasm/wasm-constants.js");
6
7 var kReturnValue = 97;
8
9 var kBodySize = 2;
10 var kNameOffset = 15 + kBodySize + 1;
11
12 var data = bytes(
13 // -- signatures
14 kDeclSignatures, 1,
15 0, kAstI32, // signature: void -> int
16 // -- main function
17 kDeclFunctions, 1,
18 kDeclFunctionName | kDeclFunctionExport,
19 0, 0, // signature index
20 kNameOffset, 0, 0, 0, // name offset
21 kBodySize, 0, // body size
22 // -- body
23 kExprI8Const, // --
24 kReturnValue, // --
25 kDeclEnd,
26 'm', 'a', 'i', 'n', 0 // name
27 );
28
29 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