On 2024/12/19 下午8:23, Xianglai Li wrote:
From: ghy <2247883...@qq.com>

Refer to the link below for a description of the vldi instructions:
https://jia.je/unofficial-loongarch-intrinsics-guide/lsx/misc/#synopsis_88
Fixed errors in vldi instruction implementation.

Signed-off-by: Guo Hongyu <guohongy...@mails.ucas.ac.cn>
Tested-by: Xianglai Li <lixiang...@loongson.cn>
Signed-off-by: Xianglai Li <lixiang...@loongson.cn>
---
Cc: Bibo Mao <maob...@loongson.cn>
Cc: Hongyu Guo <guohongy...@mails.ucas.ac.cn>
Cc: Song Gao <gaos...@loongson.cn>
Cc: Xianglai Li <lixiang...@loongson.cn>

  target/loongarch/tcg/insn_trans/trans_vec.c.inc | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/loongarch/tcg/insn_trans/trans_vec.c.inc 
b/target/loongarch/tcg/insn_trans/trans_vec.c.inc
index 92b1d22e28..d317dfcc1c 100644
--- a/target/loongarch/tcg/insn_trans/trans_vec.c.inc
+++ b/target/loongarch/tcg/insn_trans/trans_vec.c.inc
@@ -3480,7 +3480,7 @@ static uint64_t vldi_get_value(DisasContext *ctx, 
uint32_t imm)
          break;
      case 1:
          /* data: {2{16'0, imm[7:0], 8'0}} */
-        data = (t << 24) | (t << 8);
+        data = (t << 40) | (t << 8);
          break;
      case 2:
          /* data: {2{8'0, imm[7:0], 16'0}} */

Reviewed-by: Bibo Mao <maob...@loongson.cn>


Reply via email to