File: fix_entry_count_sampled.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,245,028 kB
  • sloc: cpp: 7,619,726; ansic: 1,434,018; asm: 1,058,748; python: 252,740; f90: 94,671; objc: 70,685; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,675; awk: 3,523; javascript: 2,409; xml: 892; fortran: 770
file content (42 lines) | stat: -rw-r--r-- 1,312 bytes parent folder | download | duplicates (5)
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
; RUN: rm -rf %t && split-file %s %t

; RUN: llvm-profdata merge %t/main.proftext -o %t/main.profdata
; RUN: opt < %t/main.ll -passes=pgo-instr-use -pgo-test-profile-file=%t/main.profdata -S | FileCheck %s

;--- main.ll

; Instrumentation PGO sampling makes corrupt looking counters possible.  This
; tests one extreme case:
; Test loading zero profile counts for all instrumented blocks while the entry
; block is not instrumented.  Additionally include a non-zero profile count for
; a select instruction, which prevents short circuiting the PGO application.

target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"

define i32 @test_no_entry_block_counter(i32 %n) {
; CHECK: define i32 @test_no_entry_block_counter(i32 %n)
; CHECK-SAME: !prof ![[ENTRY_COUNT:[0-9]*]]
entry:
  %cmp = icmp slt i32 42, %n
  br i1 %cmp, label %tail1, label %tail2
tail1:
  %ret = select i1 true, i32 %n, i32 42
; CHECK:  %ret = select i1 true, i32 %n, i32 42
; CHECK-SAME: !prof ![[BW_FOR_SELECT:[0-9]+]]
  ret i32 %ret
tail2:
  ret i32 42
}
; CHECK: ![[ENTRY_COUNT]] = !{!"function_entry_count", i64 1}
; CHECK: ![[BW_FOR_SELECT]] = !{!"branch_weights", i32 1, i32 0}

;--- main.proftext
:ir
test_no_entry_block_counter
431494656217155589
3
0
0
1