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

Unified Diff: README.rst

Issue 956123002: Subzero: Change the name llvm2ice to the more appropriate pnacl-sz. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make comment correct Created 5 years, 10 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
Index: README.rst
diff --git a/README.rst b/README.rst
index e84dda9ee5dfbc975e0fe3411f3b6d02f9ed2906..2deea75a03997b7e9f467938f455a1d91995a6d2 100644
--- a/README.rst
+++ b/README.rst
@@ -32,23 +32,23 @@ inside a debugger. ``NOASSERT=1`` disables assertions and is the preferred
configuration for performance testing the translator. ``MINIMAL=1`` attempts to
minimize the size of the translator by compiling out everything unnecessary.
-The result of the ``make`` command is the target ``llvm2ice`` in the current
+The result of the ``make`` command is the target ``pnacl-sz`` in the current
directory.
-``llvm2ice``
+``pnacl-sz``
------------
-The ``llvm2ice`` program parses a pexe or an LLVM bitcode file and translates it
+The ``pnacl-sz`` program parses a pexe or an LLVM bitcode file and translates it
into ICE (Subzero's intermediate representation). It then invokes the ICE
translate method to lower it to target-specific machine code, optionally dumping
the intermediate representation at various stages of the translation.
The program can be run as follows::
- ../llvm2ice ./path/to/<file>.pexe
- ../llvm2ice ./tests_lit/llvm2ice_tests/<file>.ll
+ ../pnacl-sz ./path/to/<file>.pexe
Karl 2015/02/26 17:03:34 Doesn't this require -build-on-read?
Jim Stichnoth 2015/02/26 17:11:33 No, thanks to a magical moment: https://coderevie
+ ../pnacl-sz ./tests_lit/pnacl-sz_tests/<file>.ll
-At this time, ``llvm2ice`` accepts a number of arguments, including the
+At this time, ``pnacl-sz`` accepts a number of arguments, including the
following:
``-help`` -- Show available arguments and possible values. (Note: this
@@ -105,12 +105,12 @@ A convenient way to run both the lit tests and the cross tests is::
make -f Makefile.standalone check
-Assembling ``llvm2ice`` output as needed
+Assembling ``pnacl-sz`` output as needed
----------------------------------------
-``llvm2ice`` can now produce a native ELF binary using ``-filetype=obj``.
+``pnacl-sz`` can now produce a native ELF binary using ``-filetype=obj``.
-``llvm2ice`` can also produce textual assembly code in a structure suitable for
+``pnacl-sz`` can also produce textual assembly code in a structure suitable for
input to ``llvm-mc``, using ``-filetype=asm`` or ``-filetype=iasm``. An object
file can then be produced using the command::
« Makefile.standalone ('K') | « Makefile.standalone ('k') | bloat/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698