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/parallel_compilation.js

Issue 2361053004: Revert of [wasm] Master CL for Binary 0xC changes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 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/module-memory.js ('k') | test/mjsunit/wasm/receiver.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 --wasm-num-compilation-tasks=10 5 // Flags: --expose-wasm --wasm-num-compilation-tasks=10
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 load("test/mjsunit/wasm/wasm-module-builder.js"); 8 load("test/mjsunit/wasm/wasm-module-builder.js");
9 9
10 function assertModule(module, memsize) { 10 function assertModule(module, memsize) {
11 // Check the module exists. 11 // Check the module exists.
12 assertFalse(module === undefined); 12 assertFalse(module === undefined);
13 assertFalse(module === null); 13 assertFalse(module === null);
14 assertFalse(module === 0); 14 assertFalse(module === 0);
15 assertEquals("object", typeof module); 15 assertEquals("object", typeof module);
16 16
17 // Check the memory is an ArrayBuffer. 17 // Check the memory is an ArrayBuffer.
18 var mem = module.exports.memory; 18 var mem = module.exports.memory;
19 assertFalse(mem === undefined); 19 assertFalse(mem === undefined);
20 assertFalse(mem === null); 20 assertFalse(mem === null);
21 assertFalse(mem === 0); 21 assertFalse(mem === 0);
22 assertEquals("object", typeof mem); 22 assertEquals("object", typeof mem);
23 assertTrue(mem instanceof WebAssembly.Memory); 23 assertTrue(mem instanceof ArrayBuffer);
24 var buf = mem.buffer;
25 assertTrue(buf instanceof ArrayBuffer);
26 assertEquals(memsize, buf.byteLength);
27 for (var i = 0; i < 4; i++) { 24 for (var i = 0; i < 4; i++) {
28 module.exports.memory = 0; // should be ignored 25 module.exports.memory = 0; // should be ignored
29 mem.buffer = 0; // should be ignored 26 assertEquals(mem, module.exports.memory);
30 assertSame(mem, module.exports.memory);
31 assertSame(buf, mem.buffer);
32 } 27 }
28
29 assertEquals(memsize, module.exports.memory.byteLength);
33 } 30 }
34 31
35 function assertFunction(module, func) { 32 function assertFunction(module, func) {
36 assertEquals("object", typeof module.exports); 33 assertEquals("object", typeof module.exports);
37 34
38 var exp = module.exports[func]; 35 var exp = module.exports[func];
39 assertFalse(exp === undefined); 36 assertFalse(exp === undefined);
40 assertFalse(exp === null); 37 assertFalse(exp === null);
41 assertFalse(exp === 0); 38 assertFalse(exp === 0);
42 assertEquals("function", typeof exp); 39 assertEquals("function", typeof exp);
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 kExprI32Add, // -- 77 kExprI32Add, // --
81 ]) 78 ])
82 .exportFunc() 79 .exportFunc()
83 80
84 builder.addMemory(1, 1, true); 81 builder.addMemory(1, 1, true);
85 for (i = 1; i < 256; i++) { 82 for (i = 1; i < 256; i++) {
86 f[i] = builder.addFunction("add" + i, kSig_i_ii) 83 f[i] = builder.addFunction("add" + i, kSig_i_ii)
87 .addBody([ // -- 84 .addBody([ // --
88 kExprGetLocal, 0, // -- 85 kExprGetLocal, 0, // --
89 kExprGetLocal, 1, // -- 86 kExprGetLocal, 1, // --
90 kExprCallFunction, f[i >>> 1].index]) // -- 87 kExprCallFunction, kArity2, f[i >>> 1].index]) // --
91 .exportFunc() 88 .exportFunc()
92 } 89 }
93 var module = builder.instantiate(); 90 var module = builder.instantiate();
94 assertModule(module, kPageSize); 91 assertModule(module, kPageSize);
95 92
96 // Check the properties of the functions. 93 // Check the properties of the functions.
97 for (i = 0; i < 256; i++) { 94 for (i = 0; i < 256; i++) {
98 var add = assertFunction(module, "add" + i); 95 var add = assertFunction(module, "add" + i);
99 assertEquals(88, add(33, 55)); 96 assertEquals(88, add(33, 55));
100 assertEquals(88888, add(33333, 55555)); 97 assertEquals(88888, add(33333, 55555));
101 assertEquals(8888888, add(3333333, 5555555)); 98 assertEquals(8888888, add(3333333, 5555555));
102 } 99 }
103 })(); 100 })();
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/module-memory.js ('k') | test/mjsunit/wasm/receiver.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698