c++ Programming Glossary: instrumentation
Heap corruption under Win32; how to locate? http://stackoverflow.com/questions/1069/heap-corruption-under-win32-how-to-locate as slow as under Purify et al. And no Shipping with Purify instrumentation built in is not an option. A colleague just walked past and..
Logging/monitoring all function calls from an application http://stackoverflow.com/questions/152097/logging-monitoring-all-function-calls-from-an-application to your problem. I would suggest using automatic debugger instrumentation using Debugger key under Image File Execution Options with regedit..
valgrind report memory leak when assign a value to a string http://stackoverflow.com/questions/1901322/valgrind-report-memory-leak-when-assign-a-value-to-a-string OpenWorks LLP. 3910 Using valgrind 3.2.3 a dynamic binary instrumentation framework. 3910 Copyright C 2000 2007 and GNU GPL'd by Julian..
Automatically adding Enter/Exit Function Logs to a Project http://stackoverflow.com/questions/2281739/automatically-adding-enter-exit-function-logs-to-a-project programming techniques you can also inject your own instrumentation functions using gcc's finstrument functions command line options...
Visual C++ - Memory Leak Detection http://stackoverflow.com/questions/2820223/visual-c-memory-leak-detection to build it in just include vld.h and doesn't require any instrumentation. I found that I needed to write a couple of scripts though to..
Check if a pointer points to allocated memory on the heap http://stackoverflow.com/questions/3065092/check-if-a-pointer-points-to-allocated-memory-on-the-heap for production code Valgrind is great but it is too much instrumentation slow and as Will said we don't want to use Valgrind like this..
Beyond Stack Sampling: C++ Profilers http://stackoverflow.com/questions/4394606/beyond-stack-sampling-c-profilers some of which are so fragile that they crash under heavy instrumentation due to timing delays. Don't ask me why we're running multiple..
When have you used C++ 'mutable' keyword? http://stackoverflow.com/questions/4554031/when-have-you-used-c-mutable-keyword your code for debugging or testing purposes because instrumentation often needs to modify auxiliary data from inside query methods...
|