Searched refs:ShowFormat (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 92 enum class ShowFormat { Text, Json, Yaml }; enum 390 static cl::opt<ShowFormat> 391 SFormat("show-format", cl::init(ShowFormat::Text), 394 cl::values(clEnumValN(ShowFormat::Text, "text", 396 clEnumValN(ShowFormat::Json, "json", "emit JSON"), 397 clEnumValN(ShowFormat::Yaml, "yaml", "emit YAML"))); 2844 static int showInstrProfile(ShowFormat SFormat, raw_fd_ostream &OS) { in showInstrProfile() 2845 if (SFormat == ShowFormat::Json) in showInstrProfile() 2847 if (SFormat == ShowFormat::Yaml) in showInstrProfile() 3234 static int showSampleProfile(ShowFormat SFormat, raw_fd_ostream &OS) { in showSampleProfile() [all …]
|