| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
llvm-svn: 155524
|
|
|
|
|
|
| |
or malloc_info are called. If MallocStackLogging is enabled, then you can now use --stack to dump the backtrace of the code that allocated each malloc block.
llvm-svn: 155262
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(lldb) command script import heap.py
Find all malloc blocks that contains a pointer value of 0x1234000:
(lldb) ptr_refs 0x1234000
Find all malloc blocks that contain a C string:
(lldb) cstr_refs "hello"
Get info on a malloc block that starts at or contains 0x12340000
(lldb) malloc_info 0x12340000
llvm-svn: 154602
|
|
|
|
|
|
| |
find values on the heap and print out the dynamic type of the malloc block that contains the data. I will be modifying this a bit more to tweak the output and make the output more useful.
llvm-svn: 154504
|
|
|
|
|
|
| |
results that are found by the function calls to find_pointer_in_heap().
llvm-svn: 154435
|
|
llvm-svn: 154419
|