| Crates.io | source_viewer |
| lib.rs | source_viewer |
| version | 0.4.3 |
| created_at | 2025-03-02 13:07:58.070395+00 |
| updated_at | 2026-01-05 10:40:07.760016+00 |
| description | A CLI tool to inspect and analyze binary sources using DWARF debugging information. |
| homepage | |
| repository | https://github.com/nevakrien/SourceViewer |
| max_upload_size | |
| id | 1574561 |
| size | 137,617 |
Assembly viewing tool with the goal of allowing viewing disassemblies from the perspective of the source file without taking over your compilation setup, any profiling/debug build would do.
SourceViewer lazy loads dwarf debug information to facilitate this even for larger projects/libraries.

This tool is intended for use with C/C++/Rust and is tested on these languages.
You can install SourceViewer using Cargo (recommended) or download prebuilt binaries from the Releases page.
Building from source is also an option but note that the code in the repo is still very unstable.
cargo install source_viewer --locked
or
cargo binstall source_viewer
A typical workload would look something like
SourceViewer view_source sample_code/build/linux_x86_64
Source files:
0: "/snap/zig/11625/lib/libc/glibc/csu/elf-init-2.33.c"
1: "/home/user/Desktop/rust_stuff/SourceViewer/sample_code/get_time.c"
2: "/snap/zig/11625/lib/libc/glibc/sysdeps/x86_64/crtn.S"
3: "/snap/zig/11625/lib/libc/glibc/sysdeps/x86_64/crti.S"
4: "/snap/zig/11625/lib/libc/glibc/sysdeps/x86_64/start-2.33.S"
SourceViewer view_source sample_code/build/linux_x86_64 -w 0
Here we looked at the files that composed our binary and then went into the first file to view its contributions. While in the walk menu pressing h would render a popup with the controls.
the walk menu exposes 2 main ways to interact with assembly
so for example if you want to verify that a function call in line 100 of small.cpp was properly inlined you would start with
SourceViewer libsmall.so src/small.cpp -w 100 #using shorthand view_source is implied
then in walk click Enter and view the instructions.
sometimes you would want to view a binary directly rather than being tied to a specific source file. this is especially useful for smaller programs.
there are useful subcommands like "lines" which shows the entire assembly file,
SourceViewer lines sample_code/build/linux_x86_64
Loading file "sample_code/build/linux_x86_64"
.text
0x010134d0: xor ebp, ebp <unknown> /snap/zig/14333/lib/libc/glibc/sysdeps/x86_64/start-2.33.S:63
0x010134d2: mov r9, rdx <unknown> /snap/zig/14333/lib/libc/glibc/sysdeps/x86_64/start-2.33.S:79
0x010134d5: pop rsi <unknown> /snap/zig/14333/lib/libc/glibc/sysdeps/x86_64/start-2.33.S:85
0x010134d6: mov rdx, rsp <unknown> /snap/zig/14333/lib/libc/glibc/sysdeps/x86_64/start-2.33.S:88
0x010134d9: and rsp, 0xfffffffffffffff0 <unknown> /snap/zig/14333/lib/libc/glibc/sysdeps/x86_64/start-2.33.S:90
...
it can be pumped nicely into less like so
SourceViewer lines sample_code/build/linux_x86_64 --color | less -r
which is likely the main way you would want to use it.
sections an alternative to lines which shows ALL sections and a little less detail
SourceViewer sections sample_code/build/linux_x86_64 --color | less -r
Loading file "sample_code/build/linux_x86_64"
...
Non-Executable Section: .eh_frame_hdr (5004 bytes)
Non-Executable Section: .eh_frame (24444 bytes)
Code Section: .text (316986 bytes)
0x010134d0: xor ebp, ebp
0x010134d2: mov r9, rdx
0x010134d5: pop rsi
0x010134d6: mov rdx, rsp
...
and again it can be pumped into less.
SourceViewer sections sample_code/build/linux_x86_64 --color | less -r
most subcommands are intended for use with other tools. for example functions is extremely useful when combined with grep
SourceViewer functions sample_code/llvm-impl/libsmall_lang.so | grep LLVM
is a quick way to find all LLVM functions in a project.
SourceViewer can be configured by writing to files at the system level. the config-paths command shows the file paths we would use on your system. if the files don't exist SourceViewer would use the default behavior.
supported walk configs:
**asm_percent**: what percent of the screen should be the asm (must be an integer).
just deleting the executable should be enough. if you made config files manually you can delete them.
SourceViewer is specifically designed to be very quick to open even on larger files. as such sometimes errors are discovered late.
also note that on assembly that is not mapped to source is not guaranteed to be correct. this is because sometimes compilers would leave data directly in a code section. and there is absolutely no way to detect that.
However most ISAs are specifically designed with this in mind so errors should not go out of control.
at the moment we only support dwarf
a very good test case is running
cargo run walk target/debug/SourceViewer
compare_test.sh and diff_test.sh are a way to check against regressions. they work by using the installed version of SourceViewer and comparing it to the build version
this is mostly supported for unix and specifically linux/bsd because dwarf is the main format. we might extend in the future.