Commit 9c4d1396 authored by mtrofin's avatar mtrofin Committed by Commit bot

We want to enable frame elision for stubs and bytecode handlers.

Disabling it for anything else, to avoid compile time overhead.

BUG=

Review URL: https://codereview.chromium.org/1641653005

Cr-Commit-Position: refs/heads/master@{#33587}
parent e1084094
......@@ -1441,7 +1441,8 @@ void Pipeline::AllocateRegisters(const RegisterConfiguration* config,
Run<MergeSplintersPhase>();
}
if (FLAG_turbo_frame_elision) {
// We plan to enable frame elision only for stubs and bytecode handlers.
if (FLAG_turbo_frame_elision && info()->IsStub()) {
Run<LocateSpillSlotsPhase>();
Run<FrameElisionPhase>();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment