Closed
Bug 1017790
Opened 11 years ago
Closed 11 years ago
Expose category information in the profiler data
Categories
(DevTools :: Performance Tools (Profiler/Timeline), defect)
DevTools
Performance Tools (Profiler/Timeline)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 32
People
(Reporter: vporof, Assigned: vporof)
References
Details
Attachments
(1 file)
9.47 KB,
patch
|
djvj
:
review+
|
Details | Diff | Splinter Review |
Bug 1007203 adds categories to entries, but we still need to expose it in the profiler data.
Assignee | ||
Updated•11 years ago
|
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → vporof
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•11 years ago
|
||
Attachment #8432760 -
Flags: review?(kvijayan)
Comment 2•11 years ago
|
||
Comment on attachment 8432760 [details] [diff] [review]
v1
Review of attachment 8432760 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/public/ProfilingStack.h
@@ +116,5 @@
> uint32_t flags() const volatile {
> return flags_;
> }
> + uint32_t category() const volatile {
> + return flags_ & ~IS_CPP_ENTRY & ~FRAME_LABEL_COPY;
It's better to define a constant CATEGORY_MASK, and have this expression be:
return flags_ & CATEGORY_MASK
The definition of CATEGORY_MASK should be right alongside the definition of IS_CPP_ENTRY and FRAME_LABEL_COPY
Attachment #8432760 -
Flags: review?(kvijayan) → review+
Assignee | ||
Comment 3•11 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 32
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•