Permalink
Please
sign in to comment.
Browse files
src: enable more detailed memory tracking
This will enable more detailed heap snapshots based on a newer V8 API. This commit itself is not tied to that API and could be backported. PR-URL: #21742 Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information...
Showing
with
566 additions
and 91 deletions.
- +2 −0 node.gyp
- +17 −4 src/async_wrap.cc
- +0 −1 src/async_wrap.h
- +2 −8 src/base_object-inl.h
- +9 −4 src/base_object.h
- +59 −18 src/cares_wrap.cc
- +3 −1 src/connect_wrap.h
- +14 −0 src/env.cc
- +4 −1 src/fs_event_wrap.cc
- +5 −1 src/inspector_js_api.cc
- +3 −1 src/js_stream.h
- +107 −0 src/memory_tracker-inl.h
- +87 −0 src/memory_tracker.h
- +6 −0 src/module_wrap.h
- +4 −0 src/node_contextify.cc
- +1 −0 src/node_contextify.h
- +2 −0 src/node_crypto.cc
- +28 −0 src/node_crypto.h
- +6 −1 src/node_crypto_bio.h
- +23 −4 src/node_file.h
- +21 −6 src/node_http2.cc
- +31 −6 src/node_http2.h
- +3 −2 src/node_http_parser.cc
- +4 −0 src/node_i18n.cc
- +14 −8 src/node_messaging.cc
- +10 −3 src/node_messaging.h
- +10 −0 src/node_serdes.cc
- +3 −1 src/node_stat_watcher.h
- +5 −0 src/node_trace_events.cc
- +0 −4 src/node_worker.cc
- +8 −1 src/node_worker.h
- +6 −1 src/node_zlib.cc
- +3 −1 src/pipe_wrap.h
- +3 −1 src/process_wrap.cc
- +4 −0 src/sharedarraybuffer_metadata.cc
- +3 −1 src/signal_wrap.cc
- +9 −2 src/stream_base.h
- +3 −1 src/stream_pipe.h
- +3 −1 src/tcp_wrap.h
- +3 −1 src/timer_wrap.cc
- +9 −0 src/tls_wrap.cc
- +1 −1 src/tls_wrap.h
- +3 −1 src/tty_wrap.h
- +5 −1 src/udp_wrap.cc
- +3 −1 src/udp_wrap.h
- +17 −3 test/cctest/test_node_postmortem_metadata.cc
Oops, something went wrong.
0 comments on commit
712809e