| 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-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 = 28 + kBodySize + 1; |
| 14 | 14 |
| 15 var data = bytes( | 15 var data = bytes( |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(); |
| OLD | NEW |