2013-05-06 16:17:29 +00:00
|
|
|
; Test that we can use NI for byte operations that are expressed as i32
|
|
|
|
; or i64 operations.
|
|
|
|
;
|
|
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
|
|
|
|
; Zero extension to 32 bits, negative constant.
|
|
|
|
define void @f1(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f1:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = zext i8 %val to i32
|
|
|
|
%and = and i32 %ext, -2
|
|
|
|
%trunc = trunc i32 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Zero extension to 64 bits, negative constant.
|
|
|
|
define void @f2(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f2:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = zext i8 %val to i64
|
|
|
|
%and = and i64 %ext, -2
|
|
|
|
%trunc = trunc i64 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Zero extension to 32 bits, positive constant.
|
|
|
|
define void @f3(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f3:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = zext i8 %val to i32
|
|
|
|
%and = and i32 %ext, 254
|
|
|
|
%trunc = trunc i32 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Zero extension to 64 bits, positive constant.
|
|
|
|
define void @f4(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f4:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = zext i8 %val to i64
|
|
|
|
%and = and i64 %ext, 254
|
|
|
|
%trunc = trunc i64 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Sign extension to 32 bits, negative constant.
|
|
|
|
define void @f5(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f5:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = sext i8 %val to i32
|
|
|
|
%and = and i32 %ext, -2
|
|
|
|
%trunc = trunc i32 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Sign extension to 64 bits, negative constant.
|
|
|
|
define void @f6(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f6:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = sext i8 %val to i64
|
|
|
|
%and = and i64 %ext, -2
|
|
|
|
%trunc = trunc i64 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Sign extension to 32 bits, positive constant.
|
|
|
|
define void @f7(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f7:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = sext i8 %val to i32
|
|
|
|
%and = and i32 %ext, 254
|
|
|
|
%trunc = trunc i32 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Sign extension to 64 bits, positive constant.
|
|
|
|
define void @f8(i8 *%ptr) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f8:
|
2013-05-06 16:17:29 +00:00
|
|
|
; CHECK: ni 0(%r2), 254
|
|
|
|
; CHECK: br %r14
|
|
|
|
%val = load i8 *%ptr
|
|
|
|
%ext = sext i8 %val to i64
|
|
|
|
%and = and i64 %ext, 254
|
|
|
|
%trunc = trunc i64 %and to i8
|
|
|
|
store i8 %trunc, i8 *%ptr
|
|
|
|
ret void
|
|
|
|
}
|