e3e8ea5d65
To be consistent with the all the other tiers and avoid confusion, we rename --opt to ---turbofan, and --always-opt to --always-turbofan. Change-Id: Ie23dc8282b3fb4cf2fbf73b6c3d5264de5d09718 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3610431 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Jakob Linke <jgruber@chromium.org> Cr-Commit-Position: refs/heads/main@{#80336}
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
// Copyright 2022 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.
|
|
|
|
// The GetIterator bytecode is used to implement a part of the iterator
|
|
// protocol (https://tc39.es/ecma262/#sec-getiterator).
|
|
// Here, calling @@iterator property returns invalid JS receiver.
|
|
// This test ensures that the optimized version of the GetIterator bytecode
|
|
// correctly handle the SymbolIteratorInvalid exception without deoptimizing.
|
|
|
|
// Flags: --allow-natives-syntax --turbofan
|
|
|
|
var iteratorCount = 0;
|
|
var exceptionCount = 0;
|
|
|
|
function foo(obj) {
|
|
// The following for-of loop uses the iterator protocol to iterate
|
|
// over the 'obj'.
|
|
// The GetIterator bytecode involves 3 steps:
|
|
// 1. method = GetMethod(obj, @@iterator)
|
|
// 2. iterator = Call(method, obj)
|
|
// 3. if(!IsJSReceiver(iterator)) throw SymbolIteratorInvalid.
|
|
try{
|
|
for(let a of obj){
|
|
assertUnreachable();
|
|
}
|
|
} catch(e){
|
|
exceptionCount++;
|
|
}
|
|
}
|
|
|
|
// This iterator retuns '1' which is not a valid JSReceiver
|
|
var iterator = function() {
|
|
iteratorCount++;
|
|
return 1;
|
|
}
|
|
|
|
let y = {
|
|
get [Symbol.iterator]() {
|
|
return iterator;
|
|
}
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
foo(y);
|
|
foo(y);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
foo(y);
|
|
assertOptimized(foo);
|
|
assertEquals(iteratorCount, 3);
|
|
assertEquals(exceptionCount, 3);
|