1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/X86/combine-sext-in-reg.ll
Simon Pilgrim 09a65b6f28 [DAGCombine] Add (sext_in_reg (zext x)) -> (sext x) combine
Handle the case where a sign extension has ended up being split into separate stages (typically to get around vector legal ops) and a zext + sext_in_reg gets inserted.

Differential Revision: https://reviews.llvm.org/D27461

llvm-svn: 288842
2016-12-06 19:09:37 +00:00

47 lines
1.7 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4.1 | FileCheck %s --check-prefix=SSE
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx2 | FileCheck %s --check-prefix=AVX
; fold sextinreg(zext) -> sext
define <4 x i64> @sextinreg_zext_v16i8_4i64(<16 x i8> %a0) {
; SSE-LABEL: sextinreg_zext_v16i8_4i64:
; SSE: # BB#0:
; SSE-NEXT: pmovsxbq %xmm0, %xmm2
; SSE-NEXT: psrld $16, %xmm0
; SSE-NEXT: pmovsxbq %xmm0, %xmm1
; SSE-NEXT: movdqa %xmm2, %xmm0
; SSE-NEXT: retq
;
; AVX-LABEL: sextinreg_zext_v16i8_4i64:
; AVX: # BB#0:
; AVX-NEXT: vpmovsxbq %xmm0, %ymm0
; AVX-NEXT: retq
%1 = shufflevector <16 x i8> %a0, <16 x i8> undef, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
%2 = zext <4 x i8> %1 to <4 x i64>
%3 = shl <4 x i64> %2, <i64 56, i64 56, i64 56, i64 56>
%4 = ashr <4 x i64> %3, <i64 56, i64 56, i64 56, i64 56>
ret <4 x i64> %4
}
; fold sextinreg(zext(sext)) -> sext
define <4 x i64> @sextinreg_zext_sext_v16i8_4i64(<16 x i8> %a0) {
; SSE-LABEL: sextinreg_zext_sext_v16i8_4i64:
; SSE: # BB#0:
; SSE-NEXT: pmovsxbq %xmm0, %xmm2
; SSE-NEXT: psrld $16, %xmm0
; SSE-NEXT: pmovsxbq %xmm0, %xmm1
; SSE-NEXT: movdqa %xmm2, %xmm0
; SSE-NEXT: retq
;
; AVX-LABEL: sextinreg_zext_sext_v16i8_4i64:
; AVX: # BB#0:
; AVX-NEXT: vpmovsxbq %xmm0, %ymm0
; AVX-NEXT: retq
%1 = shufflevector <16 x i8> %a0, <16 x i8> undef, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
%2 = sext <4 x i8> %1 to <4 x i32>
%3 = zext <4 x i32> %2 to <4 x i64>
%4 = shl <4 x i64> %3, <i64 32, i64 32, i64 32, i64 32>
%5 = ashr <4 x i64> %4, <i64 32, i64 32, i64 32, i64 32>
ret <4 x i64> %5
}