mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
		
			
				
	
	
		
			31 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2017 the V8 project authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style license that can be
 | |
| // found in the LICENSE file.
 | |
| 
 | |
| PAGE_SIZE = 0x10000;
 | |
| PAGES = 10;
 | |
| 
 | |
| memory = new WebAssembly.Memory({initial: PAGES});
 | |
| buffer = memory.buffer;
 | |
| 
 | |
| var func = (function (stdlib, env, heap) {
 | |
|     "use asm";
 | |
| 
 | |
|     var array = new stdlib.Int32Array(heap);
 | |
| 
 | |
|     return function () {
 | |
|         array[0] = 0x41424344;
 | |
|         array[1] = 0x45464748;
 | |
|     }
 | |
| }({Int32Array: Int32Array}, {}, buffer));
 | |
| 
 | |
| for (var i = 0; i < 1000; ++i)
 | |
|     func();
 | |
| 
 | |
| memory.grow(1);
 | |
| 
 | |
| func();
 | |
| 
 | |
| for(var i = 0; i < 2; ++i)
 | |
|     new ArrayBuffer(PAGE_SIZE * PAGES);
 |