Files
tldr/pages.zh/common/llvm-bcanalyzer.md

16 lines
431 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# llvm-bcanalyzer
> LLVM Bitcode`.bc`)分析器。
> 更多信息:<https://llvm.org/docs/CommandGuide/llvm-bcanalyzer.html>。
- 打印关于 Bitcode 文件的统计信息:
`llvm-bcanalyzer {{path/to/file.bc}}`
- 打印关于 Bitcode 文件的 SGML 表示和统计信息:
`llvm-bcanalyzer -dump {{path/to/file.bc}}`
-`stdin` 读取 Bitcode 文件并进行分析:
`cat {{path/to/file.bc}} | llvm-bcanalyzer`