File: compat.proftext

package info (click to toggle)
llvm-toolchain-3.8 1%3A3.8.1-24
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 379,280 kB
  • ctags: 388,501
  • sloc: cpp: 2,309,705; ansic: 477,070; objc: 100,918; asm: 97,974; python: 95,911; sh: 18,634; makefile: 7,294; perl: 5,584; ml: 5,460; pascal: 4,661; lisp: 2,548; xml: 686; cs: 350; php: 212; csh: 117
file content (67 lines) | stat: -rw-r--r-- 2,368 bytes parent folder | download | duplicates (2)
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
# Compatibility tests for older profile format versions. These ensure
# that we don't break compatibility with an older profile version
# without noticing it.

# The input file at %S/Inputs/compat.profdata.v1 was generated with
# llvm-profdata merge from r214548.

# RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function function_count_only --counts | FileCheck %s -check-prefix=FUNC_COUNT_ONLY
function_count_only
0
1
97531
# FUNC_COUNT_ONLY:      Hash: 0x{{0+$}}
# FUNC_COUNT_ONLY-NEXT: Counters: 1
# FUNC_COUNT_ONLY-NEXT: Function count: 97531
# FUNC_COUNT_ONLY-NEXT: Block counts: []

# RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function "name with spaces" --counts | FileCheck %s -check-prefix=SPACES
name with spaces
1024
2
0
0
# SPACES:      Hash: 0x{{0+}}400
# SPACES-NEXT: Counters: 2
# SPACES-NEXT: Function count: 0
# SPACES-NEXT: Block counts: [0]

# RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function large_numbers --counts | FileCheck %s -check-prefix=LARGENUM
large_numbers
4611686018427387903
6
2305843009213693952
1152921504606846976
576460752303423488
288230376151711744
144115188075855872
72057594037927936
# LARGENUM:      Hash: 0x3fffffffffffffff
# LARGENUM-NEXT: Counters: 6
# LARGENUM-NEXT: Function count: 2305843009213693952
# LARGENUM-NEXT: Block counts: [1152921504606846976, 576460752303423488, 288230376151711744, 144115188075855872, 72057594037927936]

# RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 | FileCheck %s -check-prefix=SUMMARY
# SUMMARY: Total functions: 3
# SUMMARY: Maximum function count: 2305843009213693952
# SUMMARY: Maximum internal block count: 1152921504606846976

# RUN: llvm-profdata show %S/Inputs/compat.profdata.v2 -all-functions --counts | FileCheck %s -check-prefix=FORMATV2

# FORMATV2: Counters:
# FORMATV2-NEXT:   foo:
# FORMATV2-NEXT:     Hash: 0x000000000000000a
# FORMATV2-NEXT:     Counters: 2
# FORMATV2-NEXT:     Function count: 499500
# FORMATV2-NEXT:     Block counts: [179900]
# FORMATV2-NEXT:   main:
# FORMATV2-NEXT:     Hash: 0x000000000000410a
# FORMATV2-NEXT:     Counters: 4
# FORMATV2-NEXT:     Function count: 1
# FORMATV2-NEXT:     Block counts: [1000, 1000000, 499500]
# FORMATV2-NEXT: Functions shown: 2
# FORMATV2-NEXT: Total functions: 2
# FORMATV2-NEXT: Maximum function count: 499500
# FORMATV2-NEXT: Maximum internal block count: 1000000