Home
last modified time | relevance | path

Searched refs:OutputFormat (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp77 static OutputFormatTy OutputFormat; variable
365 if (OutputFormat == darwin && MachO) in printObjectSectionSizes()
369 else if (MachO && OutputFormat == berkeley) in printObjectSectionSizes()
371 else if (OutputFormat == sysv) { in printObjectSectionSizes()
566 if (OutputFormat == sysv) in printFileSectionSizes()
568 else if (MachO && OutputFormat == darwin) in printFileSectionSizes()
571 if (!MachO && OutputFormat == darwin) in printFileSectionSizes()
573 if (OutputFormat == berkeley) { in printFileSectionSizes()
600 if (OutputFormat == sysv) in printFileSectionSizes()
602 else if (MachO && OutputFormat == darwin) { in printFileSectionSizes()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DReplayInlineAdvisor.h29 return OutputFormat == Format::LineColumn || in outputColumn()
30 OutputFormat == Format::LineColumnDiscriminator; in outputColumn()
34 return OutputFormat == Format::LineDiscriminator || in outputDiscriminator()
35 OutputFormat == Format::LineColumnDiscriminator; in outputDiscriminator()
38 Format OutputFormat; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkConvert.cpp32 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 DRemarkUtil.cpp77 static constexpr Format OutputFormat = Format::Bitstream; global() variable
85 static constexpr Format OutputFormat = Format::YAML; global() variable
137 getOutputFileForRemarks(StringRef OutputFileName,Format OutputFormat) getOutputFileForRemarks() argument
H A DRemarkUtilHelpers.cpp49 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 DRemarkUtilHelpers.h62 getOutputFileForRemarks(StringRef OutputFileName, Format OutputFormat);
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyFile.cpp226 OutputFormat(Opts.OutputFormat), InputFileIndex(0) { in DependencyFileGenerator()
316 DependencyOutputFormat OutputFormat) { in PrintFilename() argument
321 if (OutputFormat == DependencyOutputFormat::NMake) { in PrintFilename()
331 assert(OutputFormat == DependencyOutputFormat::Make); in PrintFilename()
403 PrintFilename(OS, File, OutputFormat); in outputDependencyFile()
414 PrintFilename(OS, *I, OutputFormat); in outputDependencyFile()
H A DASTConsumers.cpp38 OutputKind(K), OutputFormat(Format), FilterString(FilterString), in ASTPrinter()
44 : Out(Out), OwnedOut(nullptr), OutputKind(K), OutputFormat(Format), in ASTPrinter()
65 if (OutputFormat == ADOF_Default) in TraverseDecl()
102 D->dump(Out, OutputKind == DumpFull, OutputFormat); in print()
127 ASTDumpOutputFormat OutputFormat; member in __anon5e8766f00111::ASTPrinter
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp78 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 DCodeCoverage.cpp697 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
699 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
701 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
703 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
705 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
841 case CoverageViewOptions::OutputFormat::Text: in run()
846 case CoverageViewOptions::OutputFormat::HTML: in run()
851 case CoverageViewOptions::OutputFormat::Lcov: in run()
1065 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1215 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
[all …]
H A DCoverageViewOptions.h20 enum class OutputFormat { enum
50 OutputFormat Format;
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp103 static OutputFormatTy OutputFormat; variable
626 if (OutputFormat == posix && !ArchiveName.empty()) in writeFileName()
737 if ((OutputFormat == bsd || OutputFormat == posix || in printSymbolList()
738 OutputFormat == just_symbols) && in printSymbolList()
741 } else if (OutputFormat == sysv) { in printSymbolList()
758 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64; in printSymbolList()
761 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64; in printSymbolList()
764 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64; in printSymbolList()
771 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64; in printSymbolList()
774 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64; in printSymbolList()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp769 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local
772 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
775 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions()
845 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions()
850 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions()
851 if (OutputFormat.empty()) { in parseObjcopyOptions()
852 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
855 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions()
858 Config.OutputFormat = Target->Format; in parseObjcopyOptions()
940 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions()
[all …]
H A Dllvm-objcopy.cpp102 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp174 static cl::opt<ProfileFormat> OutputFormat( variable
945 ProfileFormat OutputFormat, in writeInstrProfile() argument
949 OutputFormat == PF_Text ? sys::fs::OF_TextWithCRLF in writeInstrProfile()
954 if (OutputFormat == PF_Text) { in writeInstrProfile()
971 if (OutputFormat == PF_Compact_Binary) in mergeInstrProfile()
973 if (OutputFormat != PF_Binary && OutputFormat != PF_Ext_Binary && in mergeInstrProfile()
974 OutputFormat != PF_Text) in mergeInstrProfile()
1092 writeInstrProfile(OutputFilename, OutputFormat, Contexts[0]->Writer); in mergeInstrProfile()
1481 writeInstrProfile(OutputFilename, OutputFormat, WC->Writer); in supplementInstrProfile()
1551 ProfileFormat OutputFormat, in handleExtBinaryWriter() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp109 if (Opts->OutputFormat != DependencyOutputFormat::Make) in getP1689ModuleDependencyFile()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h213 FileFormat OutputFormat = FileFormat::Unspecified; member
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp176 switch (Config.OutputFormat) { in createWriter()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1258 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td827 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,