summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2008-11-20-DivMulRem.ll
blob: 0c0e55a0b2d9a80ff643ad1321d85f1f87b87c33 (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
61
62
63
64
65
66
67
; RUN: opt < %s -instcombine -S | FileCheck %s
; PR3103

define i8 @test1(i8 %x, i8 %y) {
; CHECK-LABEL: @test1(
  %A = udiv i8 %x, %y
; CHECK-NEXT: urem
  %B = mul i8 %A, %y
  %C = sub i8 %x, %B
  ret i8 %C
; CHECK-NEXT: ret
}

define i8 @test2(i8 %x, i8 %y) {
; CHECK-LABEL: @test2(
  %A = sdiv i8 %x, %y
; CHECK-NEXT: srem
  %B = mul i8 %A, %y
  %C = sub i8 %x, %B
  ret i8 %C
; CHECK-NEXT: ret
}

define i8 @test3(i8 %x, i8 %y) {
; CHECK-LABEL: @test3(
  %A = udiv i8 %x, %y
; CHECK-NEXT: urem
  %B = mul i8 %A, %y
  %C = sub i8 %B, %x
; CHECK-NEXT: sub
  ret i8 %C
; CHECK-NEXT: ret
}

define i8 @test4(i8 %x) {
; CHECK-LABEL: @test4(
  %A = udiv i8 %x, 3
; CHECK-NEXT: urem
  %B = mul i8 %A, -3
; CHECK-NEXT: sub
  %C = sub i8 %x, %B
; CHECK-NEXT: add
  ret i8 %C
; CHECK-NEXT: ret
}

define i32 @test5(i32 %x, i32 %y) {
; CHECK-LABEL: @test5(
; (((X / Y) * Y) / Y) -> X / Y
  %div = sdiv i32 %x, %y
; CHECK-NEXT: sdiv
  %mul = mul i32 %div, %y
  %r = sdiv i32 %mul, %y
  ret i32 %r
; CHECK-NEXT: ret
}

define i32 @test6(i32 %x, i32 %y) {
; CHECK-LABEL: @test6(
; (((X / Y) * Y) / Y) -> X / Y
  %div = udiv i32 %x, %y
; CHECK-NEXT: udiv
  %mul = mul i32 %div, %y
  %r = udiv i32 %mul, %y
  ret i32 %r
; CHECK-NEXT: ret
}