File: basic-block-sections-cloning-indirect.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (43 lines) | stat: -rw-r--r-- 1,434 bytes parent folder | download | duplicates (8)
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
;; Test for cloning a path ending with indirect branch with -basic-block-sections.

declare void @effect(i32 zeroext)

;; Test valid application of cloning for a path with indirect branch.
; RUN: echo 'v1' > %t
; RUN: echo 'f bar' >> %t
; RUN: echo 'p 0 1' >> %t
; RUN: echo 'c 0 1.1 2 1' >> %t
; RUN: llc < %s -mtriple=x86_64-pc-linux -O0 -function-sections -basic-block-sections=%t | FileCheck %s

define void @bar(i1 %a, i1 %b) {
b0:
  call void @effect(i32 0)
  br i1 %a, label %b1, label %b2
b1:                                              ; preds = %b0
  call void @effect(i32 1)
  %0 = select i1 %b,                           ; <ptr> [#uses=1]
              ptr blockaddress(@bar, %b2),
              ptr blockaddress(@bar, %b3)
  indirectbr ptr %0, [label %b2, label %b3]
b2:                                              ; preds = %b0, %b1
  call void @effect(i32 2)
  ret void
b3:
  call void @effect(i32 3)                       ; preds = %b1
  ret void
}

; CHECK:        .section    .text.bar,"ax",@progbits
; CHECK:      bar:
; CHECK:      # %bb.0:        # %b0
; CHECK:        je .LBB0_2
; CHECK-NEXT: # %bb.4:        # %b1
; CHECK:        jmpq *%rax
; CHECK-NEXT: .Ltmp0:         # Block address taken
; CHECK-NEXT: .LBB0_2:        # %b2
; CHECK:        retq
; CHECK-NEXT: # %bb.1:        # %b1
; CHECK:        jmpq *%rax
; CHECK:        .section    .text.split.bar,"ax",@progbits
; CHECK:      bar.cold:       # %b3