Closed
Bug 858928
Opened 12 years ago
Closed 9 years ago
Switch XRE_StartupTimelineRecord() from PRTime to mozilla::TimeStamp
Categories
(Toolkit :: Startup and Profile System, defect)
Toolkit
Startup and Profile System
Tracking
()
RESOLVED
FIXED
mozilla42
Tracking | Status | |
---|---|---|
firefox42 | --- | fixed |
People
(Reporter: gsvelto, Assigned: gsvelto)
References
Details
Attachments
(1 file, 3 obsolete files)
(deleted),
patch
|
gsvelto
:
review+
|
Details | Diff | Splinter Review |
After bug 793735 will have landed it would be good to switch XRE_StartupTimelineRecord() to use the TimeStamp class in order to have end-to-end compatible timestamps in the startup timeline. Changing the function signature from PRTime to TimeStamp will also require fixing up the current users of this function, namely browser/app/nsBrowserApp.cpp and mozglue/android/APKOpen.cpp.
Assignee | ||
Updated•9 years ago
|
Assignee: nobody → gsvelto
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•9 years ago
|
||
Now that TimeStamp is in mozglue we can finally remove these 100+ lines of redundant code. The try run is here: https://treeherder.mozilla.org/#/jobs?repo=try&revision=cff5b63a2187
Attachment #8625755 -
Flags: review?(nfroyd)
Assignee | ||
Comment 2•9 years ago
|
||
Whoops, I attached the wrong patch, this is the right one.
Attachment #8625755 -
Attachment is obsolete: true
Attachment #8625755 -
Flags: review?(nfroyd)
Attachment #8625756 -
Flags: review?(nfroyd)
Assignee | ||
Comment 3•9 years ago
|
||
It turns out that the Android build was broken, I've updated the patch to fix this issue.
Attachment #8625756 -
Attachment is obsolete: true
Attachment #8625756 -
Flags: review?(nfroyd)
Attachment #8626042 -
Flags: review?(nfroyd)
Comment 4•9 years ago
|
||
Comment on attachment 8626042 [details] [diff] [review]
[PATCH v2] Switch XRE_StartupTimelineRecord() from PRTime to TimeStamp
Review of attachment 8626042 [details] [diff] [review]:
-----------------------------------------------------------------
Hooray for deleted code.
::: mozglue/android/moz.build
@@ +30,5 @@
>
> GENERATED_INCLUDES += ['/build']
> LOCAL_INCLUDES += [
> '../linker',
> + '../misc',
I assume this is to pick up TimeStamp.h? Can't we just get it by including mozilla/TimeStamp.h in APKOpen.cpp instead of bare TimeStamp.h?
Attachment #8626042 -
Flags: review?(nfroyd) → review+
Assignee | ||
Comment 5•9 years ago
|
||
(In reply to Nathan Froyd [:froydnj] [:nfroyd] from comment #4)
> I assume this is to pick up TimeStamp.h? Can't we just get it by including
> mozilla/TimeStamp.h in APKOpen.cpp instead of bare TimeStamp.h?
I'm not sure, I can try, I just went along with what the code did with the rest of the headers :-)
Assignee | ||
Comment 6•9 years ago
|
||
I've just tried using mozilla/TimeStamp.h so that I don't have to add misc to the local includes, this seems to work across all of our architectures:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=ab357f02d24a
Shall I land the patch this way then?
Flags: needinfo?(nfroyd)
Assignee | ||
Comment 8•9 years ago
|
||
Final version of the patch addressing the review comment in comment 4, carrying over the r+ flag.
Attachment #8626042 -
Attachment is obsolete: true
Attachment #8630002 -
Flags: review+
Assignee | ||
Comment 9•9 years ago
|
||
Time to land, the green try run for patch v3 is this one: https://treeherder.mozilla.org/#/jobs?repo=try&revision=ab357f02d24a
Keywords: checkin-needed
Comment 10•9 years ago
|
||
Keywords: checkin-needed
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox42:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla42
Comment 12•9 years ago
|
||
A surprise side effect of this change is that mozglue.dll (and in turn msvcr120.dll) is now loaded slightly earlier in startup. Previously the load was caused by DllBlocklist_Initialize() and now it is caused by TimeStamp::Now(). I *think* this is okay, but there is a very delicate balance in the startup sequence on Windows, so keep an eye out for regressions.
You need to log in
before you can comment on or make changes to this bug.
Description
•