791e085d2f
Add an always_sparkplug testing variant, and fix a couple of issues it found. Bug: v8:11420 Change-Id: I7d87a41e3413f40271a0140118531f075d633b23 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2773047 Reviewed-by: Patrick Thier <pthier@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Auto-Submit: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/master@{#73529}
25 lines
727 B
JavaScript
25 lines
727 B
JavaScript
// Copyright 2020 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: --allow-natives-syntax --super-ic --sparkplug --no-always-sparkplug
|
|
|
|
export let exported = 17;
|
|
import imported from 'test-baseline-module-helper.mjs';
|
|
|
|
function run(f, ...args) {
|
|
try { f(...args); } catch (e) {}
|
|
%CompileBaseline(f);
|
|
return f(...args);
|
|
}
|
|
|
|
function construct(f, ...args) {
|
|
try { new f(...args); } catch (e) {}
|
|
%CompileBaseline(f);
|
|
return new f(...args);
|
|
}
|
|
|
|
assertEquals(17, run((o)=>{ return exported; }));
|
|
assertEquals(12, run((o)=>{ return imported; }));
|
|
assertEquals(20, run((o)=>{ exported = 20; return exported; }));
|