Updated: October 28, 2024 |
Valgrind (pronounced val-grinned) is a third-party tool suite that supports runtime analysis of programs. The IDE provides controls for configuring some of these tools, allowing you to track a program's dynamic memory operations, measure its heap usage, and more.
QNX SDP actually includes the binaries for all tools in the Valgrind tool suite release. You can analyze your programs with any of them from the command line. For information on doing so and examples for the four tools mentioned above, see the valgrind entry in the Utilities Reference and the online Valgrind User Manual.
If your program runs fine with Valgrind but encounters a segmentation fault while exiting, you can disable this option to prevent the running of __libc_freeres and avoid the crashing (although there may be falsely reported space leaks in libc.so).
If you're writing suppression files manually, you should disable this option to see the mangled names in your error messages. This form must be used in suppression files.
Higher settings make Valgrind run slower and use more memory, but are necessary for programs with deep call chains. The default value is 12, and the maximum value is 500.
You should only use this option if Valgrind's debugging output directs you to do so. In that case, it will tell you the new threshold you should specify.
You may need to use this option and Max stack frame size together. You have to work out the suitable main thread stack size yourself (e.g., if your program encounters a segmentation fault)—Valgrind won't tell you like it will for the thread stack frame size.
Note that the Run dsymutil (Mac OS X) checkbox has been disabled because QNX Neutrino is not supported for macOS targets.
There's also the Extra Options text field, which lets you manually specify any extra general options you want to pass to the valgrind utility.
There are buttons for opening file navigators and selecting suppression files from the workspace or filesystem, and for removing a listed file.
Option | Description |
---|---|
Profile heap | Whether to profile heap blocks. |
Administrative bytes per block | The number of administrative bytes to use per heap block. This option is effective only if Profile heap is enabled. |
Profile stack | Whether to profile stacks. Enabling this option greatly slows down Massif but produces stack usage data that's easy to read. |
Profile memory at page level | Whether to profile memory at the page level rather than at the level of blocks allocated by malloc(). |
Allocation tree depth | The depth of the allocation tree, which lists the exact parts of code responsible for allocating heap memory. |
Heap allocation threshold | The relative size threshold for heap blocks to be reported individually in the results. Allocations for blocks smaller than this threshold are aggregated into a single results entry. |
Allocation peak inaccuracy | The percentage by which memory allocation must exceed the previous peak to be considered the new peak. Smaller values mean greater accuracy in the peak checking, but for values near 0%, Massif runs very slowly. |
Time units | The time unit for measuring execution progress, one of:
|
Detailed snaphost frequency | How often the heap snapshots are detailed; a value of N means Massif makes every Nth snapshot a detailed one. These snapshots include stack traces of block allocation points, and a breakdown of heap memory by allocation point. |
Max snapshots | The maximum number of snapshots (N) to keep in the results. Whenever Massif takes another snapshot and exceeds this limit, half of them are deleted. For longer programs, the final number of snapshots is between N/2 and N. |
Minimum heap block alignment | The minimum alignment, in bytes, required for all allocated heap blocks. When a program asks for N bytes, Massif rounds N up to the nearest multiple of the value specified by this option. |
Allocation functions | List of the functions to be treated like heap allocation functions. This is useful for functions that are wrappers to malloc() or new. There's a button for opening a dialog box to specify a new function to add to the list, and a button for removing the selected function from it. |
Option | Description |
---|---|
Check for memory leaks | Whether to check for memory leaks. When this option is enabled, Valgrind checks for leaks when the program exits and prints a leak summary. |
Leak resolution | The degree to which stack traces must match to be reported as the same leak, one of:
This option is effective only if Check for memory leaks is enabled. |
Freelist size (blocks) | The size, in bytes, of the space used to store recently freed blocks. A larger freelist means a longer time period in which Memcheck can store freed blocks and detect invalid accesses to them, but also an increased memory footprint. |
Show reachable blocks | Whether to include reachable and indirect memory leaks in the results. Reachable leaks are blocks for which a pointer to the start of the memory can be found but the memory was never freed. Indirect leaks occur when the blocks that point to the memory are lost themselves. |
Allow partial loads | Whether to allow 32-, 64-, 128- and 256-bit naturally aligned loads from addresses for which some bytes are addressable and others are not. When this option is enabled, such loads don't produce an error. When it's disabled, loads from partially invalid addresses produce an illegal-address error, and the resulting bytes are marked as initialized. |
Undefined value errors | Whether to report undefined value use errors. Disabling this option speeds up Memcheck. |
Track origins of uninitialized values | Whether to track the origin of uninitialized memory (e.g., a heap block allocation, stack variable, or client request) when it's used dangerously. Enabling this option severely degrades performance, but greatly reduces the effort needed to find the cause of undefined value use errors. If you enable this option, you must also enable Undefined value errors. |
GCC 2.96 workarounds | Whether to assume that reads and writes some small distance below the stack pointer are due to bugs in GCC 2.96 and hence, not to report them. You should enable this option only if you're using a version of QNX SDP older than 6.5.0 SP1. Otherwise, don't use it because real errors can be overlooked. |
Minimum heap block alignment | The minimum alignment, in bytes, required for all allocated heap blocks. When a program asks for N bytes, Massif rounds N up to the nearest multiple of the value specified by this option. |
Show possibly lost blocks in leak check | Whether to include possible memory leaks in the results. These are blocks for which a pointer to the middle but not the start of the memory can be found. |
Fill malloc'd areas with given value (0x) | The byte pattern with which to fill blocks allocated by malloc(), new, etc, but not by calloc(). This option is useful when trying to solve obscure memory corruption problems. |
Fill free'd areas with given value (0x) | The byte pattern with which to fill blocks released by free(), delete, etc. This option is useful when trying to solve obscure memory corruption problems. |
Ignore Ranges | List of address ranges to be ignored by Memcheck's addressability checking. There's a button for opening a dialog box to specify a new address range to add to the list, and a button for removing a selected range from it. |
Option | Description |
---|---|
Track lockorders | Whether to perform lock order consistency checking. When this option is enabled, Helgrind reports any inconsistencies in the order in which threads acquire locks. Inconsistent locking can lead to lock cycles, which create potential deadlocks that can lead to hard-to-diagnose failures. |
History level | The historical data to keep about conflicting memory accesses, one of:
|
Conflict cache size | Size of the cache to keep for storing data about conflicting memory accesses. This value is the number of memory addresses for which access history is kept, not the number of bytes. This option is effective only when History Level is full. The minimum value is 10,000, and the maximum value is 30,000,000 (thirty million). |
Option | Description |
---|---|
Profile Cache Accesses/Misses | Whether to collect cache access and miss counts. You can't disable both this option and Profile Branch Instructions/Mispredictions (because no information would be collected). |
Profile Branch Instructions/Mispredictions | Whether to collect branch instruction and misprediction counts. You can't disable both this option and Profile Cache Accesses/Misses (because no information would be collected). |
Manually Set Cache Specifications | These checkboxes enable spinners for manually setting the total size, associativity, and
line size of the following caches:
The total size and line size values are in bytes while the associativity value must be a power of two between 1 (for direct mapping) and 1024 (for 1024-way associativity). |
In this case, you need to ensure that the server is running at the correct port and IP address, as explained in the Valgrind subsection of the Configuring shared library support topic.
In this case, you can specify the target directories where the symbols are stored, as described in the Manually loading debug symbols on the target subsection of that same topic.
For information about the effect on a program's performance and behavior for each of the settings, see the smc-check description in the Valgrind User Manual.