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

Side by Side Diff: test/mjsunit/wasm/module-memory.js

Issue 1740373002: [wasm] Add a magic word and a version number to the binary. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/instantiate-run-basic.js ('k') | test/mjsunit/wasm/params.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 --expose-gc --stress-compaction 5 // Flags: --expose-wasm --expose-gc --stress-compaction
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 8
9 var kMemSize = 4096; 9 var kMemSize = 4096;
10 10
11 function genModule(memory) { 11 function genModule(memory) {
12 var kBodySize = 27; 12 var kBodySize = 27;
13 var kNameMainOffset = 28 + kBodySize + 1; 13 var kNameMainOffset = kHeaderSize + 28 + kBodySize + 1;
14 14
15 var data = bytes( 15 var data = bytesWithHeader(
16 kDeclMemory, 16 kDeclMemory,
17 12, 12, 1, // memory 17 12, 12, 1, // memory
18 // -- signatures 18 // -- signatures
19 kDeclSignatures, 1, 19 kDeclSignatures, 1,
20 1, kAstI32, kAstI32, // int->int 20 1, kAstI32, kAstI32, // int->int
21 // -- main function 21 // -- main function
22 kDeclFunctions, 1, 22 kDeclFunctions, 1,
23 kDeclFunctionLocals | kDeclFunctionName | kDeclFunctionExport, 23 kDeclFunctionLocals | kDeclFunctionName | kDeclFunctionExport,
24 0, 0, 24 0, 0,
25 kNameMainOffset, 0, 0, 0, // name offset 25 kNameMainOffset, 0, 0, 0, // name offset
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 } 126 }
127 127
128 testOuterMemorySurvivalAcrossGc(); 128 testOuterMemorySurvivalAcrossGc();
129 testOuterMemorySurvivalAcrossGc(); 129 testOuterMemorySurvivalAcrossGc();
130 testOuterMemorySurvivalAcrossGc(); 130 testOuterMemorySurvivalAcrossGc();
131 testOuterMemorySurvivalAcrossGc(); 131 testOuterMemorySurvivalAcrossGc();
132 132
133 133
134 function testOOBThrows() { 134 function testOOBThrows() {
135 var kBodySize = 8; 135 var kBodySize = 8;
136 var kNameMainOffset = 29 + kBodySize + 1; 136 var kNameMainOffset = kHeaderSize + 29 + kBodySize + 1;
137 137
138 var data = bytes( 138 var data = bytesWithHeader(
139 kDeclMemory, 139 kDeclMemory,
140 12, 12, 1, // memory = 4KB 140 12, 12, 1, // memory = 4KB
141 // -- signatures 141 // -- signatures
142 kDeclSignatures, 1, 142 kDeclSignatures, 1,
143 2, kAstI32, kAstI32, kAstI32, // int->int 143 2, kAstI32, kAstI32, kAstI32, // int->int
144 // -- main function 144 // -- main function
145 kDeclFunctions, 1, 145 kDeclFunctions, 1,
146 kDeclFunctionLocals | kDeclFunctionName | kDeclFunctionExport, 146 kDeclFunctionLocals | kDeclFunctionName | kDeclFunctionExport,
147 0, 0, 147 0, 0,
148 kNameMainOffset, 0, 0, 0, // name offset 148 kNameMainOffset, 0, 0, 0, // name offset
(...skipping 23 matching lines...) Expand all
172 } 172 }
173 173
174 174
175 for (offset = 4093; offset < 4124; offset++) { 175 for (offset = 4093; offset < 4124; offset++) {
176 assertTraps(kTrapMemOutOfBounds, read); 176 assertTraps(kTrapMemOutOfBounds, read);
177 assertTraps(kTrapMemOutOfBounds, write); 177 assertTraps(kTrapMemOutOfBounds, write);
178 } 178 }
179 } 179 }
180 180
181 testOOBThrows(); 181 testOOBThrows();
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/instantiate-run-basic.js ('k') | test/mjsunit/wasm/params.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698