logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Execute LLVM Bitcode - Run Programs with LLI | Online Free DevTools by Hexmos

Execute LLVM bitcode files with LLI. Run LLVM IR code directly and optimize performance. Free online tool, no registration required.

lli

Directly execute programs from LLVM bitcode. More information: https://www.llvm.org/docs/CommandGuide/lli.html.

  • Execute a bitcode or IR file:

lli {{path/to/file.ll}}

  • Execute with command-line arguments:

lli {{path/to/file.ll}} {{argument1 argument2 ...}}

  • Enable all optimizations:

lli -O3 {{path/to/file.ll}}

  • Load a dynamic library before linking:

lli --dlopen={{path/to/library.dll}} {{path/to/file.ll}}

return

See Also