diff options
| author | Richard Henderson | 2014-08-06 20:48:48 +0200 |
|---|---|---|
| committer | Richard Henderson | 2014-09-29 20:55:27 +0200 |
| commit | 90379ca84ebe94b0adc08794d90ea1e196b2a724 (patch) | |
| tree | c55ace94c6a479b4ecf8f01042553d5712aaa93c /tcg/sparc/tcg-target.h | |
| parent | tcg-sparc: Support addsub2_i64 (diff) | |
| download | qemu-90379ca84ebe94b0adc08794d90ea1e196b2a724.tar.gz qemu-90379ca84ebe94b0adc08794d90ea1e196b2a724.tar.xz qemu-90379ca84ebe94b0adc08794d90ea1e196b2a724.zip | |
tcg-sparc: Use ADDXC in addsub2_i64
On T4 and newer Sparc chips we have an add-with-carry insn
that takes its input from %xcc instead of %icc.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/sparc/tcg-target.h')
| -rw-r--r-- | tcg/sparc/tcg-target.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tcg/sparc/tcg-target.h b/tcg/sparc/tcg-target.h index a44d34f6f7..099b3080bf 100644 --- a/tcg/sparc/tcg-target.h +++ b/tcg/sparc/tcg-target.h @@ -85,6 +85,12 @@ typedef enum { #define TCG_TARGET_EXTEND_ARGS 1 #endif +#if defined(__VIS__) && __VIS__ >= 0x300 +#define use_vis3_instructions 1 +#else +extern bool use_vis3_instructions; +#endif + /* optional instructions */ #define TCG_TARGET_HAS_div_i32 1 #define TCG_TARGET_HAS_rem_i32 0 |
