| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
| v8::TracingController* controller = | ||
| node::tracing::TraceEventHelper::GetTracingController(); | ||
| if (controller == nullptr) return 0; |
There was a problem hiding this comment.
may be move this to the beginning of the function? here and in AddMetadataEventImpl ?
Sorry, something went wrong.
There was a problem hiding this comment.
@gireeshpunathil How would I do that without introducing a potential memory leak?
Sorry, something went wrong.
There was a problem hiding this comment.
@addaleax - I am sorry, but not following: we have a nullcheck and return (with no trace action) in the middle of a function, it can be moved to the start of the function, to save some cpu cycles in cases where the tracing controller is NULL?
Sorry, something went wrong.
There was a problem hiding this comment.
@gireeshpunathil Yes, but the lines between the start of the function and here take ownership of memory, so moving this line would cause a memory leak?
Sorry, something went wrong.
There was a problem hiding this comment.
do you mean the std::unique_ptr<v8::ConvertableToTraceFormat> objects? cant those be allocated only in the normal path? i.e., if TracingController object is not null?
Sorry, something went wrong.
There was a problem hiding this comment.
@gireeshpunathil They are not being allocated here, though – this function only takes ownership of them.
Sorry, something went wrong.
|
CI: https://ci.nodejs.org/job/node-test-pull-request/31833/ (:yellow_heart:) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixes: #33800
Checklist