| OLD | NEW |
| 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 = 30; |
| 13 var kNameMainOffset = kHeaderSize + 28 + kBodySize + 1; | 13 var kNameMainOffset = kHeaderSize + 20 + kBodySize + 1; |
| 14 | 14 |
| 15 var data = bytesWithHeader( | 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 kDeclFunctionName | kDeclFunctionExport, |
| 24 0, 0, | 24 0, 0, |
| 25 kNameMainOffset, 0, 0, 0, // name offset | 25 kNameMainOffset, 0, 0, 0, // name offset |
| 26 1, 0, // local int32 count | |
| 27 0, 0, // local int64 count | |
| 28 0, 0, // local float32 count | |
| 29 0, 0, // local float64 count | |
| 30 kBodySize, 0, // code size | 26 kBodySize, 0, // code size |
| 31 // main body: while(i) { if(mem[i]) return -1; i -= 4; } return 0; | 27 // main body: while(i) { if(mem[i]) return -1; i -= 4; } return 0; |
| 28 1, |
| 29 1, kAstI32, |
| 32 kExprBlock,2, | 30 kExprBlock,2, |
| 33 kExprLoop,1, | 31 kExprLoop,1, |
| 34 kExprIf, | 32 kExprIf, |
| 35 kExprGetLocal,0, | 33 kExprGetLocal,0, |
| 36 kExprBr, 0, | 34 kExprBr, 0, |
| 37 kExprIfElse, | 35 kExprIfElse, |
| 38 kExprI32LoadMem,0,kExprGetLocal,0, | 36 kExprI32LoadMem,0,kExprGetLocal,0, |
| 39 kExprBr,2, kExprI8Const, 255, | 37 kExprBr,2, kExprI8Const, 255, |
| 40 kExprSetLocal,0, | 38 kExprSetLocal,0, |
| 41 kExprI32Sub,kExprGetLocal,0,kExprI8Const,4, | 39 kExprI32Sub,kExprGetLocal,0,kExprI8Const,4, |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 123 } |
| 126 } | 124 } |
| 127 | 125 |
| 128 testOuterMemorySurvivalAcrossGc(); | 126 testOuterMemorySurvivalAcrossGc(); |
| 129 testOuterMemorySurvivalAcrossGc(); | 127 testOuterMemorySurvivalAcrossGc(); |
| 130 testOuterMemorySurvivalAcrossGc(); | 128 testOuterMemorySurvivalAcrossGc(); |
| 131 testOuterMemorySurvivalAcrossGc(); | 129 testOuterMemorySurvivalAcrossGc(); |
| 132 | 130 |
| 133 | 131 |
| 134 function testOOBThrows() { | 132 function testOOBThrows() { |
| 135 var kBodySize = 8; | 133 var kBodySize = 11; |
| 136 var kNameMainOffset = kHeaderSize + 29 + kBodySize + 1; | 134 var kNameMainOffset = kHeaderSize + 21 + kBodySize + 1; |
| 137 | 135 |
| 138 var data = bytesWithHeader( | 136 var data = bytesWithHeader( |
| 139 kDeclMemory, | 137 kDeclMemory, |
| 140 12, 12, 1, // memory = 4KB | 138 12, 12, 1, // memory = 4KB |
| 141 // -- signatures | 139 // -- signatures |
| 142 kDeclSignatures, 1, | 140 kDeclSignatures, 1, |
| 143 2, kAstI32, kAstI32, kAstI32, // int->int | 141 2, kAstI32, kAstI32, kAstI32, // int->int |
| 144 // -- main function | 142 // -- main function |
| 145 kDeclFunctions, 1, | 143 kDeclFunctions, 1, |
| 146 kDeclFunctionLocals | kDeclFunctionName | kDeclFunctionExport, | 144 kDeclFunctionName | kDeclFunctionExport, |
| 147 0, 0, | 145 0, 0, |
| 148 kNameMainOffset, 0, 0, 0, // name offset | 146 kNameMainOffset, 0, 0, 0, // name offset |
| 149 1, 0, // local int32 count | |
| 150 0, 0, // local int64 count | |
| 151 0, 0, // local float32 count | |
| 152 0, 0, // local float64 count | |
| 153 kBodySize, 0, // code size | 147 kBodySize, 0, // code size |
| 154 // geti: return mem[a] = mem[b] | 148 // geti: return mem[a] = mem[b] |
| 149 1, 1, kAstI32, |
| 155 kExprI32StoreMem, 0, kExprGetLocal, 0, kExprI32LoadMem, 0, kExprGetLocal, 1, | 150 kExprI32StoreMem, 0, kExprGetLocal, 0, kExprI32LoadMem, 0, kExprGetLocal, 1, |
| 156 // names | 151 // names |
| 157 kDeclEnd, | 152 kDeclEnd, |
| 158 'g','e','t','i', 0 // -- | 153 'g','e','t','i', 0 // -- |
| 159 ); | 154 ); |
| 160 | 155 |
| 161 var memory = null; | 156 var memory = null; |
| 162 var module = _WASMEXP_.instantiateModule(data, null, memory); | 157 var module = _WASMEXP_.instantiateModule(data, null, memory); |
| 163 | 158 |
| 164 var offset; | 159 var offset; |
| 165 | 160 |
| 166 function read() { return module.geti(0, offset); } | 161 function read() { return module.geti(0, offset); } |
| 167 function write() { return module.geti(offset, 0); } | 162 function write() { return module.geti(offset, 0); } |
| 168 | 163 |
| 169 for (offset = 0; offset < 4092; offset++) { | 164 for (offset = 0; offset < 4092; offset++) { |
| 170 assertEquals(0, read()); | 165 assertEquals(0, read()); |
| 171 assertEquals(0, write()); | 166 assertEquals(0, write()); |
| 172 } | 167 } |
| 173 | 168 |
| 174 | 169 |
| 175 for (offset = 4093; offset < 4124; offset++) { | 170 for (offset = 4093; offset < 4124; offset++) { |
| 176 assertTraps(kTrapMemOutOfBounds, read); | 171 assertTraps(kTrapMemOutOfBounds, read); |
| 177 assertTraps(kTrapMemOutOfBounds, write); | 172 assertTraps(kTrapMemOutOfBounds, write); |
| 178 } | 173 } |
| 179 } | 174 } |
| 180 | 175 |
| 181 testOOBThrows(); | 176 testOOBThrows(); |
| OLD | NEW |