Closed
Bug 756823
Opened 13 years ago
Closed 13 years ago
rm Root, s/RootedVar/Root/g
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla15
People
(Reporter: bhackett1024, Assigned: bhackett1024)
References
Details
(Whiteboard: [js:t])
Attachments
(1 file)
|
612.01 KB,
patch
|
billm
:
review+
|
Details | Diff | Splinter Review |
Root<T> isn't used for much, and things would me more concise if it was removed and RootedVar<T> was renamed to Root<T>. This would also make rooted variables slightly more efficient by killing a store during initialization.
| Assignee | ||
Comment 1•13 years ago
|
||
Massive patch, but is basically just doing what's in the bug name. Everything interesting is in the header files --- changes to gc/Root.h, and rewriting inner autorooter classes which previously depended on Root<T>.
Assignee: general → bhackett1024
Attachment #625444 -
Flags: review?(wmccloskey)
Comment on attachment 625444 [details] [diff] [review]
patch (5fc7462dd394)
Review of attachment 625444 [details] [diff] [review]:
-----------------------------------------------------------------
Personally I would prefer the name RootedX to RootX, but whatever. This is a step forward.
Attachment #625444 -
Flags: review?(wmccloskey) → review+
Updated•13 years ago
|
Whiteboard: [js:t]
| Assignee | ||
Comment 3•13 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/779d3807d806
This just does the rm Root part, I had to work out some mysterious non-reproducible tbpl failures and it seems better to split up. I can do Rooted<T> for the second part.
Whiteboard: [js:t] → [js:t][leave open when merging]
| Assignee | ||
Comment 4•13 years ago
|
||
Whiteboard: [js:t][leave open when merging] → [js:t]
Comment 5•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla15
Comment 6•13 years ago
|
||
You need to log in
before you can comment on or make changes to this bug.
Description
•