mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
49b7f76310
Summary: On Linux, /usr/include/bits/byteswap-16.h defines __byteswap_16(x) as an inlined LRVH (Load Reversed Half-word) instruction. The SystemZ back-end did not support this opcode and the inlined assembly would cause a fatal error. Reviewers: bryanpkc, uweigand Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D18732 llvm-svn: 269688
101 lines
2.7 KiB
LLVM
101 lines
2.7 KiB
LLVM
; Test 32-bit byteswaps from registers to memory.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
declare i16 @llvm.bswap.i16(i16 %a)
|
|
|
|
; Check STRVH with no displacement.
|
|
define void @f1(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: strvh %r3, 0(%r2)
|
|
; CHECK: br %r14
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%dst
|
|
ret void
|
|
}
|
|
|
|
; Check the high end of the aligned STRVH range.
|
|
define void @f2(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: strvh %r3, 524286(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i16, i16 *%dst, i64 262143
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the next word up, which needs separate address logic.
|
|
; Other sequences besides this one would be OK.
|
|
define void @f3(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: agfi %r2, 524288
|
|
; CHECK: strvh %r3, 0(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i16, i16 *%dst, i64 262144
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the high end of the negative aligned STRVH range.
|
|
define void @f4(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: strvh %r3, -2(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i16, i16 *%dst, i64 -1
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the low end of the STRVH range.
|
|
define void @f5(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: strvh %r3, -524288(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i16, i16 *%dst, i64 -262144
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the next word down, which needs separate address logic.
|
|
; Other sequences besides this one would be OK.
|
|
define void @f6(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: agfi %r2, -524290
|
|
; CHECK: strvh %r3, 0(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i16, i16 *%dst, i64 -262145
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check that STRVH allows an index.
|
|
define void @f7(i64 %src, i64 %index, i16 %a) {
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: strvh %r4, 524287({{%r3,%r2|%r2,%r3}})
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %src, %index
|
|
%add2 = add i64 %add1, 524287
|
|
%ptr = inttoptr i64 %add2 to i16 *
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store i16 %swapped, i16 *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check that volatile stores do not use STRVH, which might access the
|
|
; storage multple times.
|
|
define void @f8(i16 *%dst, i16 %a) {
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: lrvr [[REG:%r[0-5]]], %r3
|
|
; CHECK: srl [[REG]], 16
|
|
; CHECK: sth [[REG]], 0(%r2)
|
|
; CHECK: br %r14
|
|
%swapped = call i16 @llvm.bswap.i16(i16 %a)
|
|
store volatile i16 %swapped, i16 *%dst
|
|
ret void
|
|
}
|