mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
55f78334c1
The new option is similar to the SampleProfile dump option. - dump raw/indexed format into text profile format - merge the profile and output into text profile format. Note that Value Profiling data text format is not yet designed. That functionality will be added later. Differential Revision: http://reviews.llvm.org/D14894 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253913 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
911 B
Plaintext
22 lines
911 B
Plaintext
Basic tests for testing text dump functions.
|
|
|
|
RUN: llvm-profdata show --all-functions -counts --text %p/Inputs/basic.proftext > %t-basic.proftext1
|
|
RUN: llvm-profdata merge -o %t-basic.proftext2 --text %p/Inputs/basic.proftext
|
|
|
|
RUN: llvm-profdata merge -binary -o %t-basic.profdata1 %t-basic.proftext1
|
|
RUN: llvm-profdata merge -o %t-basic.profdata2 %t-basic.proftext2
|
|
|
|
RUN: llvm-profdata show --all-functions -counts %t-basic.profdata1 > %t-basic.dump3
|
|
RUN: llvm-profdata show --all-functions -counts %t-basic.profdata2 > %t-basic.dump4
|
|
|
|
RUN: llvm-profdata merge -text -o %t-basic.proftext5 %t-basic.profdata1
|
|
RUN: llvm-profdata merge -text -o %t-basic.proftext6 %t-basic.profdata2
|
|
|
|
RUN: diff %t-basic.dump3 %t-basic.dump4
|
|
RUN: diff %t-basic.proftext5 %t-basic.proftext6
|
|
|
|
RUN: not llvm-profdata merge -gcc -o %t-basic-profdata3 %t-basic.proftext2 2>&1 | FileCheck %s --check-prefix=UNKNOWN
|
|
UNKNOWN: Unknown
|
|
|
|
|