File: extract-subvector-equal-length.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (28 lines) | stat: -rw-r--r-- 1,183 bytes parent folder | download | duplicates (13)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -march=amdgcn -mtriple=amdgcn-- -verify-machineinstrs < %s | FileCheck %s

; Test for ICE in SelectionDAG::computeKnownBits when visiting EXTRACT_SUBVECTOR
; with DemandedElts already as wide as the source vector.

define <3 x i32> @quux() {
; CHECK-LABEL: quux:
; CHECK:       ; %bb.0: ; %bb
; CHECK-NEXT:    s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
; CHECK-NEXT:    v_mov_b32_e32 v0, 0
; CHECK-NEXT:    v_mov_b32_e32 v1, 1
; CHECK-NEXT:    v_mov_b32_e32 v2, 1
; CHECK-NEXT:    s_setpc_b64 s[30:31]
bb:
  %tmp = shufflevector <4 x i8> <i8 1, i8 2, i8 3, i8 4>, <4 x i8> undef, <3 x i32> <i32 0, i32 1, i32 2>
  %tmp1 = extractelement <3 x i8> %tmp, i64 0
  %tmp2 = zext i8 %tmp1 to i32
  %tmp3 = insertelement <3 x i32> undef, i32 %tmp2, i32 0
  %tmp4 = extractelement <3 x i8> %tmp, i64 1
  %tmp5 = zext i8 %tmp4 to i32
  %tmp6 = insertelement <3 x i32> %tmp3, i32 %tmp5, i32 1
  %tmp7 = extractelement <3 x i8> %tmp, i64 2
  %tmp8 = zext i8 %tmp7 to i32
  %tmp9 = insertelement <3 x i32> %tmp6, i32 %tmp8, i32 2
  %tmp10 = lshr <3 x i32> %tmp9, <i32 1, i32 1, i32 1>
  ret <3 x i32> %tmp10
}