From: Thiemo Seufer <ths@networkno.de>
To: Blue Swirl <blauwirbel@gmail.com>
Cc: qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH, RFC, WIP] TCG for Qemu target Sparc32/64
Date: Fri, 22 Feb 2008 00:06:05 +0000 [thread overview]
Message-ID: <20080222000605.GB6462@networkno.de> (raw)
In-Reply-To: <f43fc5580802211227u4e6e5ee6ofd4582c3a16bce46@mail.gmail.com>
Blue Swirl wrote:
> The attached patch enables most TCG ops for Qemu Sparc32/64 target.
> Sparc32 softmmu and linux-user are OK, but Sparc64 and Sparc32plus
> targets do not work.
>
> Comments?
>
> It would be nice to get rid of T2 usage in std (also stda and
> casa/casxa) but I don't know how to pass a 64-bit value from legacy op
> to TCG stores and loads on a 32-bit target and host.
> Index: qemu/target-sparc/translate.c
> ===================================================================
> --- qemu.orig/target-sparc/translate.c 2008-02-21 20:00:28.000000000 +0000
> +++ qemu/target-sparc/translate.c 2008-02-21 20:02:07.000000000 +0000
> @@ -44,6 +44,81 @@
> #define JUMP_PC 2 /* dynamic pc value which takes only two values
> according to jump_pc[T2] */
>
> +#ifdef TARGET_SPARC64
> +#define TCG_TYPE_TL TCG_TYPE_I64
> +#define tcg_gen_movi_tl tcg_gen_movi_i64
> +#define tcg_gen_mov_tl tcg_gen_mov_i64
> +#define tcg_gen_ld8u_tl tcg_gen_ld8u_i64
> +#define tcg_gen_ld8s_tl tcg_gen_ld8s_i64
> +#define tcg_gen_ld16u_tl tcg_gen_ld16u_i64
> +#define tcg_gen_ld16s_tl tcg_gen_ld16s_i64
> +#define tcg_gen_ld32u_tl tcg_gen_ld32u_i64
> +#define tcg_gen_ld32s_tl tcg_gen_ld32s_i64
> +#define tcg_gen_ld_tl tcg_gen_ld_i64
> +#define tcg_gen_st8_tl tcg_gen_st8_i64
> +#define tcg_gen_st16_tl tcg_gen_st16_i64
> +#define tcg_gen_st32_tl tcg_gen_st32_i64
> +#define tcg_gen_st_tl tcg_gen_st_i64
> +#define tcg_gen_add_tl tcg_gen_add_i64
> +#define tcg_gen_addi_tl tcg_gen_addi_i64
> +#define tcg_gen_sub_tl tcg_gen_sub_i64
> +#define tcg_gen_subi_tl tcg_gen_subi_i64
> +#define tcg_gen_and_tl tcg_gen_and_i64
> +#define tcg_gen_andi_tl tcg_gen_andi_i64
> +#define tcg_gen_or_tl tcg_gen_or_i64
> +#define tcg_gen_ori_tl tcg_gen_ori_i64
> +#define tcg_gen_xor_tl tcg_gen_xor_i64
> +#define tcg_gen_xori_tl tcg_gen_xori_i64
> +#define tcg_gen_shl_tl tcg_gen_shl_i64
> +#define tcg_gen_shli_tl tcg_gen_shli_i64
> +#define tcg_gen_shr_tl tcg_gen_shr_i64
> +#define tcg_gen_shri_tl tcg_gen_shri_i64
> +#define tcg_gen_sar_tl tcg_gen_sar_i64
> +#define tcg_gen_sari_tl tcg_gen_sari_i64
> +#else
> +#define TCG_TYPE_TL TCG_TYPE_I32
> +#define tcg_gen_movi_tl tcg_gen_movi_i32
> +#define tcg_gen_mov_tl tcg_gen_mov_i32
> +#define tcg_gen_ld8u_tl tcg_gen_ld8u_i32
> +#define tcg_gen_ld8s_tl tcg_gen_ld8s_i32
> +#define tcg_gen_ld16u_tl tcg_gen_ld16u_i32
> +#define tcg_gen_ld16s_tl tcg_gen_ld16s_i32
> +#define tcg_gen_ld32u_tl tcg_gen_ld_i32
> +#define tcg_gen_ld32s_tl tcg_gen_ld_i32
> +#define tcg_gen_ld_tl tcg_gen_ld_i32
> +#define tcg_gen_st8_tl tcg_gen_st8_i32
> +#define tcg_gen_st16_tl tcg_gen_st16_i32
> +#define tcg_gen_st32_tl tcg_gen_st_i32
> +#define tcg_gen_st_tl tcg_gen_st_i32
> +#define tcg_gen_add_tl tcg_gen_add_i32
> +#define tcg_gen_addi_tl tcg_gen_addi_i32
> +#define tcg_gen_sub_tl tcg_gen_sub_i32
> +#define tcg_gen_subi_tl tcg_gen_subi_i32
> +#define tcg_gen_and_tl tcg_gen_and_i32
> +#define tcg_gen_andi_tl tcg_gen_andi_i32
> +#define tcg_gen_or_tl tcg_gen_or_i32
> +#define tcg_gen_ori_tl tcg_gen_ori_i32
> +#define tcg_gen_xor_tl tcg_gen_xor_i32
> +#define tcg_gen_xori_tl tcg_gen_xori_i32
> +#define tcg_gen_shl_tl tcg_gen_shl_i32
> +#define tcg_gen_shli_tl tcg_gen_shli_i32
> +#define tcg_gen_shr_tl tcg_gen_shr_i32
> +#define tcg_gen_shri_tl tcg_gen_shri_i32
> +#define tcg_gen_sar_tl tcg_gen_sar_i32
> +#define tcg_gen_sari_tl tcg_gen_sari_i32
> +#endif
This whole lot should probably move to generic code (conditionalized on
TARGET_LONG_BITS), I have the same code in my MIPS prototype.
Thiemo
next prev parent reply other threads:[~2008-02-22 0:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-21 20:27 [Qemu-devel] [PATCH, RFC, WIP] TCG for Qemu target Sparc32/64 Blue Swirl
2008-02-22 0:06 ` Thiemo Seufer [this message]
2008-02-22 16:13 ` Blue Swirl
2008-02-23 18:23 ` [Qemu-devel] " Fabrice Bellard
2008-02-23 18:29 ` Blue Swirl
2008-02-23 18:48 ` Fabrice Bellard
2008-02-23 20:32 ` Paul Brook
2008-02-23 23:59 ` Stuart Brady
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080222000605.GB6462@networkno.de \
--to=ths@networkno.de \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.