Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Unified Diff: README.rst

Issue 265703002: Add Om1 lowering with no optimizations (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Merge changed from Karl's committed CL Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | crosstest/crosstest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.rst
diff --git a/README.rst b/README.rst
index 9de4602ac92d89c17591a6aaa4dc23b85ba13a0c..21d74187eb5e86b619f1134b3f8d62249e96d2bf 100644
--- a/README.rst
+++ b/README.rst
@@ -34,15 +34,24 @@ At this time, ``llvm2ice`` accepts a few arguments:
``-notranslate`` -- Suppress the ICE translation phase, which is useful if
ICE is missing some support.
- ``-target=<TARGET>`` -- Set the target architecture. The default is x8632,
- and x8632fast (generate x8632 code as fast as possible at the cost of code
- quality) is also available. Future targets include x8664, arm32, and arm64.
+ ``-target=<TARGET>`` -- Set the target architecture. The default is x8632.
+ Future targets include x8664, arm32, and arm64.
+
+ ``-O<LEVEL>`` -- Set the optimization level. Valid levels are ``2``, ``1``,
+ ``0``, ``-1``, and ``m1``. Levels ``-1`` and ``m1`` are synonyms, and
+ represent the minimum optimization and worst code quality, but fastest code
+ generation.
``-verbose=<list>`` -- Set verbosity flags. This argument allows a
comma-separated list of values. The default is ``none``, and the value
``inst,pred`` will roughly match the .ll bitcode file. Of particular use
are ``all`` and ``none``.
+ ``-o <FILE>`` -- Set the assembly output file name. Default is stdout.
+
+ ``-log <FILE>`` -- Set the file name for diagnostic output (whose level is
+ controlled by ``-verbose``). Default is stdout.
+
See ir_samples/README.rst for more details.
Running the test suite
« no previous file with comments | « Makefile ('k') | crosstest/crosstest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698