File: constant-islands-cbz.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 (67 lines) | stat: -rw-r--r-- 2,719 bytes parent folder | download | duplicates (11)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=thumbv8m.base-none-eabi %s -o - | FileCheck %s --check-prefix=CHECK-T1
; RUN: llc < %s -mtriple=thumbv8m.main-none-eabi %s -o - | FileCheck %s --check-prefix=CHECK-T2

define i32* @test(i32* returned %this, i32 %event_size, i8* %event_pointer) {
; CHECK-T1-LABEL: test:
; CHECK-T1:       @ %bb.0: @ %entry
; CHECK-T1-NEXT:    .save {r4, lr}
; CHECK-T1-NEXT:    push {r4, lr}
; CHECK-T1-NEXT:    mov r4, r0
; CHECK-T1-NEXT:    movs r0, #0
; CHECK-T1-NEXT:    str r0, [r4, #4]
; CHECK-T1-NEXT:    str r0, [r4, #8]
; CHECK-T1-NEXT:    str r0, [r4, #12]
; CHECK-T1-NEXT:    str r0, [r4, #16]
; CHECK-T1-NEXT:    mov r0, r4
; CHECK-T1-NEXT:    cbz r2, .LBB0_2
; CHECK-T1-NEXT:  @ %bb.1: @ %if.else
; CHECK-T1-NEXT:    bl equeue_create_inplace
; CHECK-T1-NEXT:    mov r0, r4
; CHECK-T1-NEXT:    pop {r4, pc}
; CHECK-T1-NEXT:  .LBB0_2: @ %if.then
; CHECK-T1-NEXT:    bl equeue_create
; CHECK-T1-NEXT:    mov r0, r4
; CHECK-T1-NEXT:    pop {r4, pc}
;
; CHECK-T2-LABEL: test:
; CHECK-T2:       @ %bb.0: @ %entry
; CHECK-T2-NEXT:    .save {r4, lr}
; CHECK-T2-NEXT:    push {r4, lr}
; CHECK-T2-NEXT:    mov r4, r0
; CHECK-T2-NEXT:    movs r0, #0
; CHECK-T2-NEXT:    strd r0, r0, [r4, #4]
; CHECK-T2-NEXT:    strd r0, r0, [r4, #12]
; CHECK-T2-NEXT:    mov r0, r4
; CHECK-T2-NEXT:    cbz r2, .LBB0_2
; CHECK-T2-NEXT:  @ %bb.1: @ %if.else
; CHECK-T2-NEXT:    bl equeue_create_inplace
; CHECK-T2-NEXT:    mov r0, r4
; CHECK-T2-NEXT:    pop {r4, pc}
; CHECK-T2-NEXT:  .LBB0_2: @ %if.then
; CHECK-T2-NEXT:    bl equeue_create
; CHECK-T2-NEXT:    mov r0, r4
; CHECK-T2-NEXT:    pop {r4, pc}
entry:
  %_update = getelementptr inbounds i32, i32* %this, i32 1
  %0 = bitcast i32* %_update to i8*
  tail call void @llvm.memset.p0i8.i32(i8* nonnull align 4 %0, i8 0, i32 16, i1 false) #4
  %tobool = icmp eq i8* %event_pointer, null
  %_equeue5 = getelementptr inbounds i32, i32* %this, i32 0
  br i1 %tobool, label %if.then, label %if.else

if.then:                                          ; preds = %entry
  %call4 = tail call i32 @equeue_create(i32* %_equeue5, i32 %event_size) #5
  br label %if.end

if.else:                                          ; preds = %entry
  %call6 = tail call i32 @equeue_create_inplace(i32* %_equeue5, i32 %event_size, i8* nonnull %event_pointer) #5
  br label %if.end

if.end:                                           ; preds = %if.else, %if.then
  ret i32* %this
}

declare dso_local i32 @equeue_create(i32*, i32) local_unnamed_addr #1
declare dso_local i32 @equeue_create_inplace(i32*, i32, i8*) local_unnamed_addr #1
declare void @llvm.memset.p0i8.i32(i8* nocapture writeonly, i8, i32, i1 immarg) #2