Commit 9804c8e203dae31e31c198d5bfddfe880c81d08b
1 parent
57fec1fe
typos
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3945 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
4 additions
and
4 deletions
tcg/README
| ... | ... | @@ -17,7 +17,7 @@ from the host, although it is never the case for QEMU. |
| 17 | 17 | A TCG "function" corresponds to a QEMU Translated Block (TB). |
| 18 | 18 | |
| 19 | 19 | A TCG "temporary" is a variable only live in a given |
| 20 | -function. Temporaries are allocated explicitely in each function. | |
| 20 | +function. Temporaries are allocated explicitly in each function. | |
| 21 | 21 | |
| 22 | 22 | A TCG "global" is a variable which is live in all the functions. They |
| 23 | 23 | are defined before the functions defined. A TCG global can be a memory |
| ... | ... | @@ -103,7 +103,7 @@ optimizations: |
| 103 | 103 | information is used to suppress moves from a dead temporary to |
| 104 | 104 | another one. It is also used to remove instructions which compute |
| 105 | 105 | dead results. The later is especially useful for condition code |
| 106 | - optimisation in QEMU. | |
| 106 | + optimization in QEMU. | |
| 107 | 107 | |
| 108 | 108 | In the following example: |
| 109 | 109 | |
| ... | ... | @@ -118,7 +118,7 @@ optimizations: |
| 118 | 118 | that some results of a computation are indeed not useful. With the |
| 119 | 119 | macro system, the user can provide several alternative |
| 120 | 120 | implementations which are used depending on the used results. It is |
| 121 | - especially useful for condition code optimisation in QEMU. | |
| 121 | + especially useful for condition code optimization in QEMU. | |
| 122 | 122 | |
| 123 | 123 | Here is an example: |
| 124 | 124 | |
| ... | ... | @@ -413,7 +413,7 @@ register. |
| 413 | 413 | TCG is backward compatible with QEMU "dyngen" operations. It means |
| 414 | 414 | that TCG instructions can be freely mixed with dyngen operations. It |
| 415 | 415 | is expected that QEMU targets will be progressively fully converted to |
| 416 | -TCG. Once a target is fully converted to dyngen, it will be possible | |
| 416 | +TCG. Once a target is fully converted to TCG, it will be possible | |
| 417 | 417 | to apply more optimizations because more registers will be free for |
| 418 | 418 | the generated code. |
| 419 | 419 | ... | ... |