WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
82312
DFG OSR exit should not generate an exit for variables of inlinees if the inlinees are not in scope
https://bugs.webkit.org/show_bug.cgi?id=82312
Summary
DFG OSR exit should not generate an exit for variables of inlinees if the inl...
Filip Pizlo
Reported
2012-03-27 02:13:08 PDT
Currently DFG OSR exit computes a value recovery, and generates recovery code, for every variable within the DFG code block's Graph::m_localVars, which ends up being the high watermark of the stack for all inlinees. This means that for example in this code: function foo(a, b) { return a + b; } function bar(a, b, c) { var x = foo(a, b); return x + c.f; } If we OSR exit at c.f, then the exit will include code to restore local variables within foo(), which is clearly redundant since foo() is out of scope at that point. Patch forthcoming.
Attachments
the patch
(3.58 KB, patch)
2012-03-27 02:18 PDT
,
Filip Pizlo
oliver
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Filip Pizlo
Comment 1
2012-03-27 02:18:16 PDT
Created
attachment 134007
[details]
the patch
Eric Seidel (no email)
Comment 2
2012-03-27 12:36:40 PDT
Attachment 134007
[details]
was posted by a committer and has review+, assigning to Filip Pizlo for commit.
Filip Pizlo
Comment 3
2012-03-27 14:55:01 PDT
Landed in
http://trac.webkit.org/changeset/112320
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug