[VE] Add missing regression test

In the previous "Add vector shift instructions", I forgot to add
regression tests for VSRL and VSRD instructions.  This patch is
adding them.

Reviewed By: simoll

Differential Revision: https://reviews.llvm.org/D90167
This commit is contained in:
Kazushi (Jam) Marukawa 2020-10-27 01:00:21 +09:00
parent d26dd74308
commit ccb6191f04
2 changed files with 56 additions and 0 deletions

28
llvm/test/MC/VE/VSRD.s Normal file
View File

@ -0,0 +1,28 @@
# RUN: llvm-mc -triple=ve --show-encoding < %s \
# RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
# RUN: llvm-mc -triple=ve -filetype=obj < %s | llvm-objdump -d - \
# RUN: | FileCheck %s --check-prefixes=CHECK-INST
# CHECK-INST: vsrd %v11, (%v22, %v23), %s20
# CHECK-ENCODING: encoding: [0x00,0x17,0x16,0x0b,0x00,0x94,0x00,0xf4]
vsrd %v11, (%v22, %v23), %s20
# CHECK-INST: vsrd %vix, (%vix, %vix), %s23
# CHECK-ENCODING: encoding: [0x00,0xff,0xff,0xff,0x00,0x97,0x00,0xf4]
vsrd %vix, (%vix, %vix), %s23
# CHECK-INST: vsrd %vix, (%v22, %v30), 22
# CHECK-ENCODING: encoding: [0x00,0x1e,0x16,0xff,0x00,0x16,0x00,0xf4]
vsrd %vix, (%v22, %v30), 22
# CHECK-INST: vsrd %v11, (%v22, %vix), 127, %vm11
# CHECK-ENCODING: encoding: [0x00,0xff,0x16,0x0b,0x00,0x7f,0x0b,0xf4]
vsrd %v11, (%v22, %vix), 127, %vm11
# CHECK-INST: vsrd %v11, (%vix, %v22), 21, %vm11
# CHECK-ENCODING: encoding: [0x00,0x16,0xff,0x0b,0x00,0x15,0x0b,0xf4]
vsrd %v11, (%vix, %v22), 21, %vm11
# CHECK-INST: vsrd %v12, (%v20, %v22), 2, %vm12
# CHECK-ENCODING: encoding: [0x00,0x16,0x14,0x0c,0x00,0x02,0x0c,0xf4]
vsrd %v12, (%v20, %v22), 2, %vm12

28
llvm/test/MC/VE/VSRL.s Normal file
View File

@ -0,0 +1,28 @@
# RUN: llvm-mc -triple=ve --show-encoding < %s \
# RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
# RUN: llvm-mc -triple=ve -filetype=obj < %s | llvm-objdump -d - \
# RUN: | FileCheck %s --check-prefixes=CHECK-INST
# CHECK-INST: vsrl %v11, %v22, %s20
# CHECK-ENCODING: encoding: [0x00,0x16,0x00,0x0b,0x00,0x94,0x20,0xf5]
vsrl %v11, %v22, %s20
# CHECK-INST: vsrl %vix, %vix, %vix
# CHECK-ENCODING: encoding: [0x00,0xff,0xff,0xff,0x00,0x00,0x00,0xf5]
vsrl %vix, %vix, %vix
# CHECK-INST: pvsrl.lo %vix, %v22, 22
# CHECK-ENCODING: encoding: [0x00,0x16,0x00,0xff,0x00,0x16,0x60,0xf5]
pvsrl.lo %vix, %v22, 22
# CHECK-INST: pvsrl.lo %v11, %v22, 127, %vm11
# CHECK-ENCODING: encoding: [0x00,0x16,0x00,0x0b,0x00,0x7f,0x6b,0xf5]
pvsrl.lo %v11, %v22, 127, %vm11
# CHECK-INST: pvsrl.up %v11, %vix, %v22, %vm11
# CHECK-ENCODING: encoding: [0x00,0xff,0x16,0x0b,0x00,0x00,0x8b,0xf5]
pvsrl.up %v11, %vix, %v22, %vm11
# CHECK-INST: pvsrl %v12, %v20, %v22, %vm12
# CHECK-ENCODING: encoding: [0x00,0x14,0x16,0x0c,0x00,0x00,0xcc,0xf5]
pvsrl %v12, %v20, %v22, %vm12