File: cse-add-with-overflow.ll

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,436 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (43 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download | duplicates (20)
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
; RUN: llc < %s -mtriple=x86_64-darwin -mcpu=generic | FileCheck %s
; XFAIL: *
; rdar:15661073 simple example of redundant adds
;
; MachineCSE should coalesce trivial subregister copies.
;
; The extra movl+addl should be removed during MachineCSE.
; CHECK-LABEL: redundantadd
; CHECK: cmpq
; CHECK: movq
; CHECK-NOT: movl
; CHECK: addl
; CHECK-NOT: addl
; CHECK: ret

define i64 @redundantadd(i64* %a0, i64* %a1) {
entry:
  %tmp8 = load i64, i64* %a0, align 8
  %tmp12 = load i64, i64* %a1, align 8
  %tmp13 = icmp ult i64 %tmp12, -281474976710656
  br i1 %tmp13, label %exit1, label %body

exit1:
  unreachable

body:
  %tmp14 = trunc i64 %tmp8 to i32
  %tmp15 = trunc i64 %tmp12 to i32
  %tmp16 = tail call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %tmp14, i32 %tmp15)
  %tmp17 = extractvalue { i32, i1 } %tmp16, 1
  br i1 %tmp17, label %exit2, label %return

exit2:
  unreachable

return:
  %tmp18 = add i64 %tmp12, %tmp8
  %tmp19 = and i64 %tmp18, 4294967295
  %tmp20 = or i64 %tmp19, -281474976710656
  ret i64 %tmp20
}

declare { i32, i1 } @llvm.sadd.with.overflow.i32(i32, i32)