LLVM-PROFDATA(1) | LLVM | LLVM-PROFDATA(1) |
llvm-profdata - Profile data tool
llvm-profdata command [args…]
The llvm-profdata tool is a small utility for working with profile data files.
llvm-profdata merge [options] [filename…]
llvm-profdata merge takes several profile data files generated by PGO instrumentation and merges them together into a single indexed profile data file.
By default profile data is merged without modification. This means that the relative importance of each input file is proportional to the number of samples or counts it contains. In general, the input from a longer training run will be interpreted as relatively more important than a shorter run. Depending on the nature of the training runs it may be useful to adjust the weight given to each input file by using the -weighted-input option.
Profiles passed in via -weighted-input, -input-files, or via positional arguments are processed once for each time they are seen.
The format of the generated file can be generated in one of three ways:
Emit the profile using a binary encoding. For instrumentation-based profile the output format is the indexed binary format.
Emit the profile in text mode. This option can also be used with both sample-based and instrumentation-based profile. When this option is used the profile will be dumped in the text format that is parsable by the profile reader.
Emit the profile using GCC’s gcov format (Not yet supported).
Merge three profiles:
llvm-profdata merge foo.profdata bar.profdata baz.profdata -output merged.profdata
The input file foo.profdata is especially important, multiply its counts by 10:
llvm-profdata merge -weighted-input=10,foo.profdata bar.profdata baz.profdata -output merged.profdata
Exactly equivalent to the previous invocation (explicit form; useful for programmatic invocation):
llvm-profdata merge -weighted-input=10,foo.profdata -weighted-input=1,bar.profdata -weighted-input=1,baz.profdata -output merged.profdata
llvm-profdata show [options] [filename]
llvm-profdata show takes a profile data file and displays the information about the profile counters for this file and for any of the specified function(s).
If filename is omitted or is -, then llvm-profdata show reads its input from standard input.
llvm-profdata returns 1 if the command is omitted or is invalid, if it cannot read input files, or if there is a mismatch between their data.
Maintained by The LLVM Team (http://llvm.org/).
2003-2020, LLVM Project
2020-09-18 | 7 |