summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Lanai/multiply.ll
blob: c92a06c3f017098f15af58c991a5c76a8c9e487c (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
; RUN: llc -march=lanai < %s | FileCheck %s

; Test the in place lowering of mul i32.

define i32 @f6(i32 inreg %a) #0 {
entry:
  %mul = mul nsw i32 %a, 6
  ret i32 %mul
}
; CHECK: sh %r6, 0x1, %r{{[0-9]+}}
; CHECK: sh %r6, 0x3, %r{{[0-9]+}}
; CHECK: sub %r{{[0-9]+}}, %r{{[0-9]+}}, %rv

define i32 @f7(i32 inreg %a) #0 {
entry:
  %mul = mul nsw i32 %a, 7
  ret i32 %mul
}
; CHECK: sh %r6, 0x3, %r{{[0-9]+}}
; CHECK: sub %r{{[0-9]+}}, %r6, %rv

define i32 @f8(i32 inreg %a) #0 {
entry:
  %mul = shl nsw i32 %a, 3
  ret i32 %mul
}
; CHECK: sh %r6, 0x3, %rv

define i32 @fm6(i32 inreg %a) #0 {
entry:
  %mul = mul nsw i32 %a, -6
  ret i32 %mul
}
; CHECK: sh %r6, 0x3, %r{{[0-9]+}}
; CHECK: sh %r6, 0x1, %r{{[0-9]+}}
; CHECK: sub %r{{[0-9]+}}, %r{{[0-9]+}}, %rv

define i32 @fm7(i32 inreg %a) #0 {
entry:
  %mul = mul nsw i32 %a, -7
  ret i32 %mul
}
; CHECK: sh %r6, 0x3, %r{{[0-9]+}}
; CHECK: sub %r6, %r{{[0-9]+}}, %rv

define i32 @fm8(i32 inreg %a) #0 {
entry:
  %mul = mul nsw i32 %a, -8
  ret i32 %mul
}
; CHECK: sh %r6, 0x3, %r{{[0-9]+}}
; CHECK: sub %r{{[0-9]+}}, %r{{[0-9]+}}, %rv

define i32 @h1(i32 inreg %a) #0 {
entry:
  %mul = mul i32 %a, -1431655765
  ret i32 %mul
}
; CHECK: h1
; CHECK: mulsi3
OpenPOWER on IntegriCloud