dash/contrib/auto_gdb
UdjinM6 1b3bd26138
Fix python dead code warnings
Fixes
```
contrib/auto_gdb/log_size.py:22: unused variable 'from_tty' (100% confidence)
contrib/auto_gdb/used_size.py:29: unused variable 'from_tty' (100% confidence)
```
2021-10-05 20:34:01 +03:00
..
common_helpers.py Merge #12987: tests/tools: Enable additional Python flake8 rules for automatic linting via Travis 2020-07-22 12:12:46 -05:00
dash_dbg.sh More of 13510 2020-12-18 12:55:45 -06:00
debug.gdb refactor: PrivateSend -> CoinJoin + Move the tab (#4038) 2021-03-17 18:36:11 -04:00
log_size.py Fix python dead code warnings 2021-10-05 20:34:01 +03:00
README.md GDB automation with Python script to measure memory usage in dashd (#1609) 2018-10-23 14:15:08 +03:00
simple_class_obj.py refactor: PrivateSend -> CoinJoin + Move the tab (#4038) 2021-03-17 18:36:11 -04:00
stl_containers.py Merge #12987: tests/tools: Enable additional Python flake8 rules for automatic linting via Travis 2020-07-22 12:12:46 -05:00
test_used_size.gdb GDB automation with Python script to measure memory usage in dashd (#1609) 2018-10-23 14:15:08 +03:00
used_size.py Fix python dead code warnings 2021-10-05 20:34:01 +03:00

Contents

This directory contains tools to automatically get data about the memory consumption by some objects in dashd process with the help of GDB debugger.

dash_dbg.sh

This shell script attaches GDB to the running dashd process (should be built with debug info), executes debug.gdb script and detaches. By default it uses testnet settings, see script comments to attach it to mainnet dashd.

debug.gdb

Contains debugger instructions to execute during attach: loads python code and executes it for the objects we want to investigate.

log_size.py

Contains definition of the gdb command log_size. After this script loads it can be called from gdb command line or other gdb scripts. Command params: log_size arg0 arg1 arg0 - name of object whose memory will be written in log file arg1 - name of the log file Example:

log_size mnodeman "memlog.txt"

used_size.py

Contains definition of the gdb command used_size. After loading of this script it can be called from gdb command line or other gdb scripts. Command params: used_size arg0 arg1 arg0 - variable to store memory used by the object arg1 - name of object whose memory will be calculated and stored in the first argument Example:

>(gdb) set $size = 0
>(gdb) used_size $size mnodeman
>(gdb) p $size

stl_containers.py

Contains helper classes to calculate memory used by the STL containers (list, vector, map, set, pair).

simple_class_obj.py

Contains a helper class to calculate the memory used by an object as a sum of the memory used by its fields. All processed objects of such type are listed in the this file, you can add new types you are interested in to this list. If a type is not listed here, its size is the return of sizeof (except STL containers which are processed in stl_containers.py).

common_helpers.py

Several helper functions that are used in other python code.