• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1RUN: printf '\201Rforpl\377' > %t
2RUN: printf '\4\0\0\0\0\0\0\0' >> %t
3RUN: printf '\2\0\0\0\0\0\0\0' >> %t
4RUN: printf '\3\0\0\0\0\0\0\0' >> %t
5RUN: printf '\20\0\0\0\0\0\0\0' >> %t
6RUN: printf '\0\0\0\1\0\0\0\0' >> %t
7RUN: printf '\0\0\0\2\0\0\0\0' >> %t
8RUN: printf '\0\0\0\0\0\0\0\0' >> %t
9
10RUN: printf '\254\275\030\333\114\302\370\134' >> %t
11RUN: printf '\1\0\0\0\0\0\0\0' >> %t
12RUN: printf '\0\0\0\1' >> %t
13RUN: printf '\0\0\0\0' >> %t
14RUN: printf '\0\0\0\0' >> %t
15RUN: printf '\1\0\0\0' >> %t
16RUN: printf '\0\0\0\0\0\0\0\0' >> %t
17
18RUN: printf '\067\265\035\031\112\165\023\344' >> %t
19RUN: printf '\02\0\0\0\0\0\0\0' >> %t
20RUN: printf '\10\0\0\1' >> %t
21RUN: printf '\0\0\0\0' >> %t
22RUN: printf '\0\0\0\0' >> %t
23RUN: printf '\2\0\0\0' >> %t
24RUN: printf '\0\0\0\0\0\0\0\0' >> %t
25
26RUN: printf '\023\0\0\0\0\0\0\0' >> %t
27RUN: printf '\067\0\0\0\0\0\0\0' >> %t
28RUN: printf '\101\0\0\0\0\0\0\0' >> %t
29RUN: printf '\7\0foo\1bar\0\0\0\0\0\0\0' >> %t
30
31RUN: llvm-profdata show %t -all-functions -counts | FileCheck %s
32
33CHECK: Counters:
34CHECK:   foo:
35CHECK:     Hash: 0x0000000000000001
36CHECK:     Counters: 1
37CHECK:     Function count: 19
38CHECK:     Block counts: []
39CHECK:   bar:
40CHECK:     Hash: 0x0000000000000002
41CHECK:     Counters: 2
42CHECK:     Function count: 55
43CHECK:     Block counts: [65]
44CHECK: Functions shown: 2
45CHECK: Total functions: 2
46CHECK: Maximum function count: 55
47CHECK: Maximum internal block count: 65
48