search for: 97b669dd

Displaying 2 results from an estimated 2 matches for "97b669dd".

2013 Feb 24
0
[LLVMdev] Canonical way to visualize LLVM IR?
...ermany dressler at zib.de Phone: +49 30 84185-261 http://www.zib.de/ -------------- next part -------------- A non-text attachment was scrubbed... Name: graph.dot.pdf Type: application/pdf Size: 67493 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130224/97b669dd/attachment.pdf>
2013 Feb 24
2
[LLVMdev] Canonical way to visualize LLVM IR?
Hello, LLVM provides several ways to visual IR structure straight in its core - Function::viewCFG() to render control flow graph, then -view-* options to llc to render various stages of transforming to machine code. However, I wasn't able to find a way to render complete DAG visualization of normal IR - which besides CFG would also show dataflow (and other flows, if any). What people use to