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

Unified Diff: docs/DESIGN.rst

Issue 2069953004: Subzero: Design doc: Include regalloc in Om1 pass list. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/DESIGN.rst
diff --git a/docs/DESIGN.rst b/docs/DESIGN.rst
index 3d324f64ba81798b5a7a038b24f265bbe292254b..8264a7aeac74bb408850e665ef0032c5476dca40 100644
--- a/docs/DESIGN.rst
+++ b/docs/DESIGN.rst
@@ -49,37 +49,37 @@ selection of fast optimization passes. It has two optimization recipes: full
optimizations (``O2``) and minimal optimizations (``Om1``). The recipes are the
following (described in more detail below):
-+-----------------------------------+-----------------------+
-| O2 recipe | Om1 recipe |
-+===================================+=======================+
-| Parse .pexe file | Parse .pexe file |
-+-----------------------------------+-----------------------+
-| Loop nest analysis | |
-+-----------------------------------+-----------------------+
-| Address mode inference | |
-+-----------------------------------+-----------------------+
-| Read-modify-write (RMW) transform | |
-+-----------------------------------+-----------------------+
-| Basic liveness analysis | |
-+-----------------------------------+-----------------------+
-| Load optimization | |
-+-----------------------------------+-----------------------+
-| | Phi lowering (simple) |
-+-----------------------------------+-----------------------+
-| Target lowering | Target lowering |
-+-----------------------------------+-----------------------+
-| Full liveness analysis | |
-+-----------------------------------+-----------------------+
-| Register allocation | |
-+-----------------------------------+-----------------------+
-| Phi lowering (advanced) | |
-+-----------------------------------+-----------------------+
-| Post-phi register allocation | |
-+-----------------------------------+-----------------------+
-| Branch optimization | |
-+-----------------------------------+-----------------------+
-| Code emission | Code emission |
-+-----------------------------------+-----------------------+
++-----------------------------------+-----------------------------+
+| O2 recipe | Om1 recipe |
++===================================+=============================+
+| Parse .pexe file | Parse .pexe file |
++-----------------------------------+-----------------------------+
+| Loop nest analysis | |
++-----------------------------------+-----------------------------+
+| Address mode inference | |
++-----------------------------------+-----------------------------+
+| Read-modify-write (RMW) transform | |
++-----------------------------------+-----------------------------+
+| Basic liveness analysis | |
++-----------------------------------+-----------------------------+
+| Load optimization | |
++-----------------------------------+-----------------------------+
+| | Phi lowering (simple) |
++-----------------------------------+-----------------------------+
+| Target lowering | Target lowering |
++-----------------------------------+-----------------------------+
+| Full liveness analysis | |
++-----------------------------------+-----------------------------+
+| Register allocation | Minimal register allocation |
++-----------------------------------+-----------------------------+
+| Phi lowering (advanced) | |
++-----------------------------------+-----------------------------+
+| Post-phi register allocation | |
++-----------------------------------+-----------------------------+
+| Branch optimization | |
++-----------------------------------+-----------------------------+
+| Code emission | Code emission |
++-----------------------------------+-----------------------------+
Goals
=====
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698