NEW 111506
The DFG should mark an aliased arguments register as such in the IR
https://bugs.webkit.org/show_bug.cgi?id=111506
Summary The DFG should mark an aliased arguments register as such in the IR
Filip Pizlo
Reported 2013-03-05 18:16:00 PST
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
Note You need to log in before you can comment on or make changes to this bug.