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

Side by Side Diff: docs/LOWERING.rst

Issue 1562543002: move .rst to docs (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: changes suggested by stichnot Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « docs/DESIGN.rst ('k') | docs/README.rst » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Target-specific lowering in ICE 1 Target-specific lowering in ICE
2 =============================== 2 ===============================
3 3
4 This document discusses several issues around generating target-specific ICE 4 This document discusses several issues around generating target-specific ICE
5 instructions from high-level ICE instructions. 5 instructions from high-level ICE instructions.
6 6
7 Meeting register address mode constraints 7 Meeting register address mode constraints
8 ----------------------------------------- 8 -----------------------------------------
9 9
10 Target-specific instructions often require specific operands to be in physical 10 Target-specific instructions often require specific operands to be in physical
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 treatment. 230 treatment.
231 231
232 A ``Variable`` that is not the ``Dest`` can be marked as modified by adding an 232 A ``Variable`` that is not the ``Dest`` can be marked as modified by adding an
233 ``InstFakeDef``. However, this is not sufficient, as the ``Variable`` may have 233 ``InstFakeDef``. However, this is not sufficient, as the ``Variable`` may have
234 no more live uses, which could result in the ``InstFakeDef`` being dead-code 234 no more live uses, which could result in the ``InstFakeDef`` being dead-code
235 eliminated. The solution is to add an ``InstFakeUse`` as well. 235 eliminated. The solution is to add an ``InstFakeUse`` as well.
236 236
237 To summarize, for every source ``Variable`` that is not equal to the 237 To summarize, for every source ``Variable`` that is not equal to the
238 instruction's ``Dest``, append an ``InstFakeDef`` and ``InstFakeUse`` 238 instruction's ``Dest``, append an ``InstFakeDef`` and ``InstFakeUse``
239 instruction to provide the necessary analysis information. 239 instruction to provide the necessary analysis information.
OLDNEW
« no previous file with comments | « docs/DESIGN.rst ('k') | docs/README.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698