File: pr94265.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (31 lines) | stat: -rw-r--r-- 1,253 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=riscv32-- -mattr=+v | FileCheck -check-prefix=RV32I %s
; RUN: llc < %s -mtriple=riscv64-- -mattr=+v | FileCheck -check-prefix=RV64I %s

define <8 x i16> @PR94265(<8 x i32> %a0) #0 {
; RV32I-LABEL: PR94265:
; RV32I:       # %bb.0:
; RV32I-NEXT:    vsetivli zero, 8, e32, m2, ta, ma
; RV32I-NEXT:    vsra.vi v10, v8, 31
; RV32I-NEXT:    vsrl.vi v10, v10, 26
; RV32I-NEXT:    vadd.vv v8, v8, v10
; RV32I-NEXT:    vsetvli zero, zero, e16, m1, ta, ma
; RV32I-NEXT:    vnsrl.wi v10, v8, 6
; RV32I-NEXT:    vsll.vi v8, v10, 10
; RV32I-NEXT:    ret
;
; RV64I-LABEL: PR94265:
; RV64I:       # %bb.0:
; RV64I-NEXT:    vsetivli zero, 8, e32, m2, ta, ma
; RV64I-NEXT:    vsra.vi v10, v8, 31
; RV64I-NEXT:    vsrl.vi v10, v10, 26
; RV64I-NEXT:    vadd.vv v8, v8, v10
; RV64I-NEXT:    vsetvli zero, zero, e16, m1, ta, ma
; RV64I-NEXT:    vnsrl.wi v10, v8, 6
; RV64I-NEXT:    vsll.vi v8, v10, 10
; RV64I-NEXT:    ret
  %t1 = sdiv <8 x i32> %a0, <i32 64, i32 64, i32 64, i32 64, i32 64, i32 64, i32 64, i32 64>
  %t2 = trunc <8 x i32> %t1 to <8 x i16>
  %t3 = shl <8 x i16> %t2, <i16 10, i16 10, i16 10, i16 10, i16 10, i16 10, i16 10, i16 10>
  ret <8 x i16> %t3
}