ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Ir​View

Generate dot/pdf files of llvm IR directly from Sublime Text

Details

Installs

  • Total 391
  • Win 288
  • Mac 81
  • Linux 22
Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
Mac 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

IRView

What it does

A quickly way to visualize callgraph, control flow graph, regions, … of LLVM Intermediate Representation files on Sublime Text.

But -view-* passes already does that, no?

Yes but those passes never worked with me.

Which passes are supported by IRView?

  • callgraph
  • cfg (-only)
  • dom (-only)
  • postdom (-only)
  • regions (-only)

Dependencies

opt and dot. Make sure you have dot in your path. dot can be obtained by installing the graphviz package. Check their website for more info.

If you don't have LLVM installed, check the instructions below on how to download and compile LLVM 6.0

svn co http://llvm.org/svn/llvm-project/llvm/tags/RELEASE_601/final llvm 
cd llvm/tools 
svn co http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_601/final clang 
cd ..
mkdir build
cd build

cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86" \
-DLLVM_USE_LINKER="gold" \ # options: ld, gold, lld

make -j4

Contributing

Please, test it on other platforms (Linux and Windows).

Found a bug?

Please, report