llvm-mc
all
LLVM Machine Code Playground. It provides a set of tools for working with LLVM machine code. Part of LLVM.
More info →Examples (5)
Assemble assembly code file into object file with machine code
llvm-mc --filetype=obj -o path/to/output.o path/to/input.sDisassemble object file with machine code into assembly code file
llvm-mc --disassemble -o path/to/output.s path/to/input.oCompile LLVM bit code file into assembly code
llvm-mc -o path/to/output.s path/to/input.bcAssemble assembly code from `stdin` and show encoding to `stdout`
made by @shridhargupta | data from tldr-pages