diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 20:35:00 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 20:35:00 +0000 |
commit | 54604f74ae618aca3715cf0d8cb2ede923c0d6c0 (patch) | |
tree | 025f0815f1370c21d61c824e825741c6d02691f8 /hostregs_helper.h | |
parent | 5c16736a371525e1bafd1941b0d9a83c84cb0702 (diff) | |
download | qemu-54604f74ae618aca3715cf0d8cb2ede923c0d6c0.tar.gz qemu-54604f74ae618aca3715cf0d8cb2ede923c0d6c0.tar.bz2 qemu-54604f74ae618aca3715cf0d8cb2ede923c0d6c0.zip |
Some cleanups after dyngen removal
1. hostregs_helper.h: fix comment
2. translate-all.c: rename dyngen_code(_search_pc) to
tcg_gen_code(_search_pc)
3. tcg.c:
- rename dyngen_table_op_count to tcg_table_op_count
- no need to generate a log of dyngen ops generated
- rename dyngen_code(_search_pc) to tcg_gen_code(_search_pc)
4. tcg.h: rename dyngen_code(_search_pc) to
tcg_gen_code(_search_pc)
Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5936 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hostregs_helper.h')
-rw-r--r-- | hostregs_helper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hostregs_helper.h b/hostregs_helper.h index 4fdf8ad964..67e45e744d 100644 --- a/hostregs_helper.h +++ b/hostregs_helper.h @@ -18,9 +18,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* The GCC global register vairable extension is used to reserve some - host registers for use by dyngen. However only the core parts of the - translation engine are compiled with these settings. We must manually +/* The GCC global register variable extension is used to reserve some + host registers for use by generated code. However only the core parts of + the translation engine are compiled with these settings. We must manually save/restore these registers when called from regular code. It is not sufficient to save/restore T0 et. al. as these may be declared with a datatype smaller than the actual register. */ |