search for: ensurevisible

Displaying 3 results from an estimated 3 matches for "ensurevisible".

2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...be created in GIMP. - Add a "search" function that allows searching for a symbol by name. (This one's not trivial due to the lazy construction of tree nodes. Basically what it needs to do is walk the tree (avoiding cycles), and call treeCtrl->SelectItem and treeCtrl->EnsureVisible on the node whose caption contains the search string. I have some notes on how to do this.) - Make sure the app isn't leaking memory when loading a new module over an old one. In the mean time, I'll be working on getting DWARF derived type DIEs to display as much information as po...
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...> - Add a "search" function that allows searching for a symbol by name. > (This one's not trivial due to the lazy construction of tree nodes. > Basically what it needs to do is walk the tree (avoiding cycles), and call > treeCtrl->SelectItem and treeCtrl->EnsureVisible on the node whose caption > contains the search string. I have some notes on how to do this.) > - Make sure the app isn't leaking memory when loading a new module over > an old one. > > In the mean time, I'll be working on getting DWARF derived type DIEs to > disp...
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
I've written a little GUI application that displays an LLVM module as an expandable tree, which can be useful for examining the module's contents. Some features: - Based on wxWidgets, so it's completely cross-platform. - CMake build script can locate both LLVM and wxWidgets installations automatically. - Loads either .ll or .bc files. - Supports browsing of LLVM types,