Displaying 3 results from an estimated 3 matches for "llbrowse3".
Did you mean:
llbrowse
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
One more screen shot: The version I just checked now allows you to see all
of the children of a given compile unit:
[image: llbrowse3.png]
I've already found at least one bug in my compiler's frontend using this
tool :)
Oh, and before I forget, I need three small changes to DebugInfo.h:
- DebugInfoFinder's 'module' parameter should be const.
- isArtificial should return a bool, not an unsigned.
- D...
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
LLBrowse has now been checked in to the llvm.org subversion repository:
http://llvm.org/svn/llvm-project/llbrowse/trunk/
There are instructions for building and running in the doc/ directory.
<http://llvm.org/svn/llvm-project/llbrowse/trunk/>First task if someone
wants to take it on - update all of the source files to have the UIUC
license info at the top, and add a LICENSE.txt file :)
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,