Bug 111506
Summary: | The DFG should mark an aliased arguments register as such in the IR | ||
---|---|---|---|
Product: | WebKit | Reporter: | Filip Pizlo <fpizlo> |
Component: | JavaScriptCore | Assignee: | Filip Pizlo <fpizlo> |
Status: | NEW | ||
Severity: | Normal | CC: | barraclough, ggaren, mark.lam, mhahnenberg, msaboff, oliver, sam |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | 109389 | ||
Bug Blocks: |
Filip Pizlo
It currently flags it as such and then lets it sort of die (the GetLocals to it are not referenced), but this feels fragile. We should instead make it live, but make all operations over it indicate explicitly that it is dead. So PhantomLocals remain, GetLocals turn into PhantomLocals, and the SetLocal(PhantomArguments) should become something like SetLocalPhantomArguments, which is a no-op but indicates the start of the PhantomArgument's live range.
This is not a critical bug; it would just be nice to clean this up at some point if we have a chance.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |