2017-07-21 01:20:36 +08:00
|
|
|
You need a checkout of clang with compiler-rt to generate the
|
|
|
|
binary file here. These shell commands can be used to regenerate
|
|
|
|
it.
|
|
|
|
$ SRC=path/to/llvm
|
|
|
|
$ CFE=$SRC/tools/clang
|
|
|
|
$ TESTDIR=$SRC/test/tools/llvm-profdata
|
|
|
|
$ CFE_TESTDIR=$CFE/test/Profile
|
|
|
|
$ clang -o a.out -fprofile-instr-generate $CFE_TESTDIR/c-general.c
|
|
|
|
$ LLVM_PROFILE_FILE=$TESTDIR/Inputs/c-general.profraw ./a.out
|
2014-03-22 05:20:35 +08:00
|
|
|
|
2016-04-20 07:51:52 +08:00
|
|
|
RUN: llvm-profdata show %p/Inputs/c-general.profraw -o - | FileCheck %s
|
2017-07-12 04:30:43 +08:00
|
|
|
RUN: llvm-profdata show %p/Inputs/c-general.profraw --topn=3 -o - | FileCheck %s --check-prefix=TOPN
|
2014-07-31 07:02:01 +08:00
|
|
|
RUN: llvm-profdata show %p/Inputs/c-general.profraw -o - --function=switches | FileCheck %s -check-prefix=SWITCHES -check-prefix=CHECK
|
2014-03-22 05:20:35 +08:00
|
|
|
|
|
|
|
SWITCHES-LABEL: Counters:
|
|
|
|
SWITCHES-NEXT: switches:
|
2015-11-19 02:14:55 +08:00
|
|
|
SWITCHES-NEXT: Hash: 0x2618e4f23f2e8daa
|
2014-03-22 05:20:35 +08:00
|
|
|
SWITCHES-NEXT: Counters: 19
|
|
|
|
SWITCHES-NEXT: Function count: 1
|
|
|
|
SWITCHES-LABEL: Functions shown: 1
|
|
|
|
|
2015-11-19 02:14:55 +08:00
|
|
|
CHECK-LABEL: Total functions: 12
|
2014-03-22 05:20:35 +08:00
|
|
|
CHECK-NEXT: Maximum function count: 1
|
|
|
|
CHECK-NEXT: Maximum internal block count: 100
|
2017-07-12 04:30:43 +08:00
|
|
|
TOPN: boolean_operators, max count = 100
|
|
|
|
TOPN-NEXT: simple_loops, max count = 100
|
|
|
|
TOPN-NEXT: conditionals, max count = 100
|