File: funnel-shift2.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (31 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (7)
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
; RUN: llc -mtriple=hexagon < %s | FileCheck %s

; This patch corrects the order of operands in the pattern that lowers funnel
; shift-left.

; CHECK: r[[R17:[0-9]+]]:[[R16:[0-9]+]] = combine
; CHECK: call parity
; CHECK: r[[R1:[0-9]+]]:[[R0:[0-9]+]] = asl(r[[R1]]:[[R0]],#63)
; CHECK: r[[R1]]:[[R0]] |= lsr(r[[R17]]:[[R16]],#1)

target triple = "hexagon-unknown-unknown-elf"

define dso_local i64 @fshl(i64 %x, i64 %y) {
entry:
  %x.addr = alloca i64, align 8
  %y.addr = alloca i64, align 8
  store i64 %x, i64* %x.addr, align 8
  store i64 %y, i64* %y.addr, align 8
  %0 = load i64, i64* %x.addr, align 8
  %shr = lshr i64 %0, 1
  %1 = load i64, i64* %x.addr, align 8
  %2 = load i64, i64* %y.addr, align 8
  %call = call i64 @parity(i64 %1, i64 %2)
  %shl = shl i64 %call, 63
  %or = or i64 %shr, %shl
  store i64 %or, i64* %x.addr, align 8
  %3 = load i64, i64* %x.addr, align 8
  ret i64 %3
}

declare dso_local i64 @parity(i64, i64)