| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-size/ |
| H A D | llvm-size.cpp | 73 static OutputFormatTy OutputFormat; variable 361 if (OutputFormat == darwin && MachO) in printObjectSectionSizes() 367 else if (OutputFormat == sysv) { in printObjectSectionSizes() 563 if (OutputFormat == sysv) in printFileSectionSizes() 763 if (OutputFormat == sysv) in printFileSectionSizes() 799 if (OutputFormat == sysv) in printFileSectionSizes() 831 if (OutputFormat == sysv) in printFileSectionSizes() 838 if (OutputFormat == berkeley) { in printFileSectionSizes() 894 OutputFormat = berkeley; in llvm_size_main() 896 OutputFormat = darwin; in llvm_size_main() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ReplayInlineAdvisor.h | 30 return OutputFormat == Format::LineColumn || in outputColumn() 31 OutputFormat == Format::LineColumnDiscriminator; in outputColumn() 35 return OutputFormat == Format::LineDiscriminator || in outputDiscriminator() 36 OutputFormat == Format::LineColumnDiscriminator; in outputDiscriminator() 39 Format OutputFormat; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/ |
| H A D | RemarkConvert.cpp | 32 static constexpr Format OutputFormat = Format::Bitstream; variable 40 static constexpr Format OutputFormat = Format::YAML; variable 79 auto MaybeOF = getOutputFileForRemarks(OutputFileName, OutputFormat); in tryReserializeYAML2Bitstream() 84 OutputFormat, SerializerMode::Standalone, OF->os(), std::move(StrTab)); in tryReserializeYAML2Bitstream() 109 auto MaybeOF = getOutputFileForRemarks(OutputFileName, OutputFormat); in tryBitstream2YAML() 114 OutputFormat, SerializerMode::Standalone, OF->os()); in tryBitstream2YAML()
|
| H A D | RemarkUtilHelpers.cpp | 49 getOutputFileForRemarks(StringRef OutputFileName, Format OutputFormat) { in getOutputFileForRemarks() argument 50 assert((OutputFormat == Format::YAML || OutputFormat == Format::Bitstream) && in getOutputFileForRemarks() 52 return getOutputFileWithFlags(OutputFileName, OutputFormat == Format::YAML in getOutputFileForRemarks()
|
| H A D | RemarkUtilHelpers.h | 57 getOutputFileForRemarks(StringRef OutputFileName, Format OutputFormat);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | DependencyFile.cpp | 200 OutputFormat(Opts.OutputFormat), InputFileIndex(0) { in DependencyFileGenerator() 290 DependencyOutputFormat OutputFormat) { in PrintFilename() argument 295 if (OutputFormat == DependencyOutputFormat::NMake) { in PrintFilename() 305 assert(OutputFormat == DependencyOutputFormat::Make); in PrintFilename() 377 PrintFilename(OS, File, OutputFormat); in outputDependencyFile() 388 PrintFilename(OS, *I, OutputFormat); in outputDependencyFile()
|
| H A D | ASTConsumers.cpp | 41 OutputKind(K), OutputFormat(Format), FilterString(FilterString), in ASTPrinter() 61 if (OutputFormat == ADOF_Default) in TraverseDecl() 98 D->dump(Out, OutputKind == DumpFull, OutputFormat); in print() 122 ASTDumpOutputFormat OutputFormat; member in __anon4305a2260111::ASTPrinter
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.cpp | 78 case CoverageViewOptions::OutputFormat::Text: in create() 82 case CoverageViewOptions::OutputFormat::HTML: in create() 86 case CoverageViewOptions::OutputFormat::Lcov: in create() 150 case CoverageViewOptions::OutputFormat::Text: in create() 153 case CoverageViewOptions::OutputFormat::HTML: in create() 156 case CoverageViewOptions::OutputFormat::Lcov: in create()
|
| H A D | CoverageViewOptions.h | 20 enum class OutputFormat { enum 48 OutputFormat Format;
|
| H A D | CodeCoverage.cpp | 719 cl::opt<CoverageViewOptions::OutputFormat> Format( in run() 727 cl::init(CoverageViewOptions::OutputFormat::Text)); in run() 854 case CoverageViewOptions::OutputFormat::Text: in run() 859 case CoverageViewOptions::OutputFormat::HTML: in run() 864 case CoverageViewOptions::OutputFormat::Lcov: in run() 1068 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow() 1212 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow() 1248 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport() 1331 case CoverageViewOptions::OutputFormat::Text: in doExport() 1335 case CoverageViewOptions::OutputFormat::HTML: in doExport() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 101 static OutputFormatTy OutputFormat; variable 735 if ((OutputFormat == bsd || OutputFormat == posix || in printSymbolList() 739 } else if (OutputFormat == sysv) { in printSymbolList() 792 OutputFormat != posix) { in printSymbolList() 801 if (OutputFormat == posix) { in printSymbolList() 834 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) { in printSymbolList() 2439 OutputFormat = bsd; in llvm_nm_main() 2441 OutputFormat = posix; in llvm_nm_main() 2443 OutputFormat = sysv; in llvm_nm_main() 2445 OutputFormat = darwin; in llvm_nm_main() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 614 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local 617 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions() 689 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions() 693 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions() 694 if (OutputFormat.empty()) { in parseObjcopyOptions() 695 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions() 698 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions() 701 Config.OutputFormat = Target->Format; in parseObjcopyOptions() 743 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions() 760 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions() [all …]
|
| H A D | llvm-objcopy.cpp | 116 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | DependencyOutputOptions.h | 64 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; variable
|
| H A D | Utils.h | 130 DependencyOutputFormat OutputFormat; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 151 cl::opt<ProfileFormat> OutputFormat( variable 826 ProfileFormat OutputFormat, in writeInstrProfile() argument 835 if (OutputFormat == PF_Text) { in writeInstrProfile() 852 if (OutputFormat == PF_Compact_Binary) in mergeInstrProfile() 854 if (OutputFormat != PF_Binary && OutputFormat != PF_Ext_Binary && in mergeInstrProfile() 855 OutputFormat != PF_Text) in mergeInstrProfile() 1406 ProfileFormat OutputFormat, in handleExtBinaryWriter() argument 1412 if (WriterList.size() > 0 && OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() 1419 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() 1425 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.cpp | 108 if (Opts->OutputFormat != DependencyOutputFormat::Make) in getP1689ModuleDependencyFile()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjCopy/ |
| H A D | CommonConfig.h | 207 FileFormat OutputFormat = FileFormat::Unspecified; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObjcopy.cpp | 181 switch (Config.OutputFormat) { in createWriter()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1261 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 858 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,
|