File: pr94265.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (33 lines) | stat: -rw-r--r-- 1,441 bytes parent folder | download | duplicates (6)
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
32
33
; 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
; RUN: llc < %s -mtriple=riscv32-- -mattr=+zve32x,+zvl128b | FileCheck -check-prefix=RV32I %s
; RUN: llc < %s -mtriple=riscv64-- -mattr=+zve32x,+zvl128b | 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
}