[PATCH] D80413: [docs][llvm-extract] Add missing alias/bb options
Jinsong Ji via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 21 21:06:11 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9b7fba142111: [docs][llvm-extract] Add missing alias/bb options (authored by jsji).
Changed prior to commit:
https://reviews.llvm.org/D80413?vs=265621&id=265666#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80413/new/
https://reviews.llvm.org/D80413
Files:
llvm/docs/CommandGuide/llvm-extract.rst
Index: llvm/docs/CommandGuide/llvm-extract.rst
===================================================================
--- llvm/docs/CommandGuide/llvm-extract.rst
+++ llvm/docs/CommandGuide/llvm-extract.rst
@@ -26,6 +26,28 @@
OPTIONS
-------
+**--alias** *alias-name*
+
+ Extract the alias named *function-name* from the LLVM bitcode. May be
+ specified multiple times to extract multiple alias at once.
+
+**--ralias** *alias-regular-expr*
+
+ Extract the alias matching *alias-regular-expr* from the LLVM bitcode.
+ All alias matching the regular expression will be extracted. May be
+ specified multiple times.
+
+**--bb** *basic-block-specifier*
+
+ Extract basic blocks(s) specicified in *basic-block-specifier*. May be
+ specified multiple times. Each <function:bb[;bb]> specifier pair will create
+ a function. If multiple basic blocks are specified in one pair, the first
+ block in the sequence should dominate the rest.
+
+**--delete**
+
+ Delete specified Globals from Module.
+
**-f**
Enable binary output on terminals. Normally, :program:`llvm-extract` will
@@ -59,6 +81,10 @@
Preserve the values of constant globals.
+**--recursive**
+
+ Recursively extract all called functions
+
**-help**
Print a summary of command line options.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D80413.265666.patch
Type: text/x-patch
Size: 1265 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200522/30c928e5/attachment.bin>
More information about the llvm-commits
mailing list