File: ldst-opt-after-block-placement.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (51 lines) | stat: -rw-r--r-- 1,416 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -O3 -mtriple=aarch64-arm < %s | FileCheck %s

; Run at O3 to make sure we can optimize load/store instructions after Machine
; Block Placement takes place using Tail Duplication Threshold = 4.

define void @foo(i1 %cond, i64* %ptr) {
; CHECK-LABEL: foo:
; CHECK:       // %bb.0: // %entry
; CHECK-NEXT:    tbz w0, #0, .LBB0_2
; CHECK-NEXT:  // %bb.1: // %if.then
; CHECK-NEXT:    ldp x9, x8, [x1, #8]
; CHECK-NEXT:    str xzr, [x1, #16]
; CHECK-NEXT:    cmp x8, x9
; CHECK-NEXT:    b.lt .LBB0_3
; CHECK-NEXT:    b .LBB0_4
; CHECK-NEXT:  .LBB0_2: // %if.else
; CHECK-NEXT:    ldp x8, x9, [x1]
; CHECK-NEXT:    cmp x8, x9
; CHECK-NEXT:    b.ge .LBB0_4
; CHECK-NEXT:  .LBB0_3: // %exit1
; CHECK-NEXT:    str xzr, [x1, #8]
; CHECK-NEXT:  .LBB0_4: // %common.ret
; CHECK-NEXT:    ret
entry:
  br i1 %cond, label %if.then, label %if.else

if.then:
  %0 = getelementptr inbounds i64, i64* %ptr, i64 2
  %1 = load i64, i64* %0, align 8
  store i64 0, i64* %0, align 8
  br label %if.end

if.else:
  %2 = load i64, i64* %ptr, align 8
  br label %if.end

if.end:
  %3 = phi i64 [ %1, %if.then ], [ %2, %if.else ]
  %4 = getelementptr inbounds i64, i64* %ptr, i64 1
  %5 = load i64, i64* %4, align 8
  %6 = icmp slt i64 %3, %5
  br i1 %6, label %exit1, label %exit2

exit1:
  store i64 0, i64* %4, align 8
  ret void

exit2:
  ret void
}