mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 13:44:29 +01:00 
			
		
		
		
	sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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.
 | 
						|
 | 
						|
// Flags: --expose-gc --allow-natives-syntax --verify-heap
 | 
						|
 | 
						|
var o = { f : 0 };
 | 
						|
 | 
						|
var shouldDeopt = true;
 | 
						|
 | 
						|
// This tests a scenario where a function has an embedded object reference,
 | 
						|
// the function is lazy-deoptimized, the object is then collected, but the
 | 
						|
// code object keeps the dangling pointer.
 | 
						|
 | 
						|
function deopt() {
 | 
						|
  if (shouldDeopt) {
 | 
						|
    // Change the global object. This deoptimizes function f because
 | 
						|
    // it optimistically embedded the reference to o as a constant.
 | 
						|
    o = { f : 2 };
 | 
						|
    // Collect the original object o; at this point, f should invalidate
 | 
						|
    // its invalid reference to the original object.
 | 
						|
    gc();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Forwarding function to make sure that function f is not the topomost
 | 
						|
// optimized frame (GC treats reference from topmost optimized code strongly).
 | 
						|
function dummy_opt() { deopt(); }
 | 
						|
function dummy() { dummy_opt(); }
 | 
						|
%NeverOptimizeFunction(deopt);
 | 
						|
%NeverOptimizeFunction(dummy);
 | 
						|
 | 
						|
// When optimized, the function f embeds the constant reference
 | 
						|
// to the original object o.
 | 
						|
function f() {
 | 
						|
  dummy();
 | 
						|
  return o.f;
 | 
						|
}
 | 
						|
 | 
						|
shouldDeopt = false;
 | 
						|
f();
 | 
						|
f();
 | 
						|
 | 
						|
%OptimizeFunctionOnNextCall(f);
 | 
						|
%OptimizeFunctionOnNextCall(dummy_opt);
 | 
						|
shouldDeopt = true;
 | 
						|
assertEquals(2, f());
 |