zhijian lin 23b3203113
[POWERPC] Fixes an error in the handling of the MTVSRBMI instruction for big-endian (#151565)
The patch fixed a bug introduced patch [[PowePC] using MTVSRBMI
instruction instead of constant pool in
power10+](https://github.com/llvm/llvm-project/pull/144084#top).

The issue arose because the layout of vector register elements differs
between little-endian and big-endian modes — specifically, the elements
appear in reverse order. This led to incorrect behavior when loading
constants using MTVSRBMI in big-endian configurations.
2025-08-06 09:36:37 -04:00

89 lines
2.6 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; Verify whether the generated assembly for the following function includes the mtvsrbmi instruction.
; vector unsigned char v00FF()
; {
; vector unsigned char x = { 0xFF, 0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 };
; return x;
; }
; vector unsigned short short00FF()
; {
; vector unsigned short x = { 0xFF, 0,0,0, 0,0,0,0};
; return x;
; }
; vector unsigned int int00FF()
; {
; vector unsigned int x = { 0xFF, 0,0,0};
; return x;
; }
; vector unsigned long long longlong00FF()
; {
; vector unsigned long long x = { 0xFF, 0};
; return x;
; }
; RUN: llc < %s -ppc-asm-full-reg-names -mtriple=powerpc-ibm-aix -mcpu=pwr10 -verify-machineinstrs \
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-BE
; RUN: llc < %s -ppc-asm-full-reg-names -mtriple=powerpc64le-unknown-gnu-linux -mcpu=pwr10 -verify-machineinstrs \
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-LE
; CHECK-NOT: .byte 255
; CHECK-NOT: .byte 0
define dso_local noundef range(i8 -1, 1) <16 x i8> @_Z5v00FFv() {
; CHECK-BE-LABEL: _Z5v00FFv:
; CHECK-BE: # %bb.0: # %entry
; CHECK-BE-NEXT: mtvsrbmi v2, 32768
; CHECK-BE-NEXT: blr
;
; CHECK-LE-LABEL: _Z5v00FFv:
; CHECK-LE: # %bb.0: # %entry
; CHECK-LE-NEXT: mtvsrbmi v2, 1
; CHECK-LE-NEXT: blr
entry:
ret <16 x i8> <i8 -1, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0, i8 0>
}
define dso_local noundef range(i16 0, 256) <8 x i16> @_Z9short00FFv() {
; CHECK-BE-LABEL: _Z9short00FFv:
; CHECK-BE: # %bb.0: # %entry
; CHECK-BE-NEXT: mtvsrbmi v2, 16384
; CHECK-BE-NEXT: blr
;
; CHECK-LE-LABEL: _Z9short00FFv:
; CHECK-LE: # %bb.0: # %entry
; CHECK-LE-NEXT: mtvsrbmi v2, 1
; CHECK-LE-NEXT: blr
entry:
ret <8 x i16> <i16 255, i16 0, i16 0, i16 0, i16 0, i16 0, i16 0, i16 0>
}
define dso_local noundef range(i32 0, 256) <4 x i32> @_Z7int00FFv() {
; CHECK-BE-LABEL: _Z7int00FFv:
; CHECK-BE: # %bb.0: # %entry
; CHECK-BE-NEXT: mtvsrbmi v2, 4096
; CHECK-BE-NEXT: blr
;
; CHECK-LE-LABEL: _Z7int00FFv:
; CHECK-LE: # %bb.0: # %entry
; CHECK-LE-NEXT: mtvsrbmi v2, 1
; CHECK-LE-NEXT: blr
entry:
ret <4 x i32> <i32 255, i32 0, i32 0, i32 0>
}
define dso_local noundef range(i64 0, 256) <2 x i64> @_Z12longlong00FFv() {
; CHECK-BE-LABEL: _Z12longlong00FFv:
; CHECK-BE: # %bb.0: # %entry
; CHECK-BE-NEXT: mtvsrbmi v2, 256
; CHECK-BE-NEXT: blr
;
; CHECK-LE-LABEL: _Z12longlong00FFv:
; CHECK-LE: # %bb.0: # %entry
; CHECK-LE-NEXT: mtvsrbmi v2, 1
; CHECK-LE-NEXT: blr
entry:
ret <2 x i64> <i64 255, i64 0>
}