Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / RISCV / GlobalISel / shift.ll
blobb75cbf8e871a1b2dc332a33fbf896a8cb1d4d430
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
2 ; RUN: llc -mtriple=riscv32 -global-isel -global-isel-abort=1 -verify-machineinstrs < %s 2>&1 | FileCheck %s --check-prefixes=RV32
3 ; RUN: llc -mtriple=riscv64 -global-isel -global-isel-abort=1 -verify-machineinstrs < %s 2>&1 | FileCheck %s --check-prefixes=RV64
5 define i16 @test_lshr_i48(i48 %x) {
6 ; RV32-LABEL: test_lshr_i48:
7 ; RV32:       # %bb.0:
8 ; RV32-NEXT:    srli a0, a0, 16
9 ; RV32-NEXT:    ret
11 ; RV64-LABEL: test_lshr_i48:
12 ; RV64:       # %bb.0:
13 ; RV64-NEXT:    srliw a0, a0, 16
14 ; RV64-NEXT:    ret
15   %lshr = lshr i48 %x, 16
16   %trunc = trunc i48 %lshr to i16
17   ret i16 %trunc
20 define i16 @test_ashr_i48(i48 %x) {
21 ; RV32-LABEL: test_ashr_i48:
22 ; RV32:       # %bb.0:
23 ; RV32-NEXT:    srai a0, a0, 16
24 ; RV32-NEXT:    ret
26 ; RV64-LABEL: test_ashr_i48:
27 ; RV64:       # %bb.0:
28 ; RV64-NEXT:    sraiw a0, a0, 16
29 ; RV64-NEXT:    ret
30   %ashr = ashr i48 %x, 16
31   %trunc = trunc i48 %ashr to i16
32   ret i16 %trunc
35 define i16 @test_shl_i48(i48 %x) {
36 ; RV32-LABEL: test_shl_i48:
37 ; RV32:       # %bb.0:
38 ; RV32-NEXT:    slli a0, a0, 8
39 ; RV32-NEXT:    ret
41 ; RV64-LABEL: test_shl_i48:
42 ; RV64:       # %bb.0:
43 ; RV64-NEXT:    slliw a0, a0, 8
44 ; RV64-NEXT:    ret
45   %shl = shl i48 %x, 8
46   %trunc = trunc i48 %shl to i16
47   ret i16 %trunc