alpha: fix lit sign
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 14 Sep 2008 16:09:15 +0000 (16:09 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 14 Sep 2008 16:09:15 +0000 (16:09 +0000)
according to the alpha arch reference, the literal field of an operate
instruction is unsigned:

If bit <12> of the instruction is 1, an 8-bit zero-extended literal
constant is formed by bits
<20:13> of the instruction. The l teral is interpreted as a positive
integer bet ween 0 and 255
and is zero-extended to 64 bits.

This patch fixes the mis-interpretation of the literal field.

(Tristan Gingold)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5211 c046a42c-6fe2-441c-8c8c-71466251a162

target-alpha/translate.c

index 847646f..e6dc473 100644 (file)
@@ -351,7 +351,7 @@ static always_inline void gen_fbcond (DisasContext *ctx,
 
 static always_inline void gen_arith2 (DisasContext *ctx,
                                       void (*gen_arith_op)(void),
-                                      int rb, int rc, int islit, int8_t lit)
+                                      int rb, int rc, int islit, uint8_t lit)
 {
     if (islit)
         tcg_gen_movi_i64(cpu_T[0], lit);
@@ -367,7 +367,7 @@ static always_inline void gen_arith2 (DisasContext *ctx,
 static always_inline void gen_arith3 (DisasContext *ctx,
                                       void (*gen_arith_op)(void),
                                       int ra, int rb, int rc,
-                                      int islit, int8_t lit)
+                                      int islit, uint8_t lit)
 {
     if (ra != 31)
         tcg_gen_mov_i64(cpu_T[0], cpu_ir[ra]);
@@ -387,7 +387,7 @@ static always_inline void gen_arith3 (DisasContext *ctx,
 static always_inline void gen_cmov (DisasContext *ctx,
                                     void (*gen_test_op)(void),
                                     int ra, int rb, int rc,
-                                    int islit, int8_t lit)
+                                    int islit, uint8_t lit)
 {
     if (ra != 31)
         tcg_gen_mov_i64(cpu_T[0], cpu_ir[ra]);