Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp73 static OutputFormatTy OutputFormat; variable
361 if (OutputFormat == darwin && MachO) in printObjectSectionSizes()
365 else if (MachO && OutputFormat == berkeley) in printObjectSectionSizes()
367 else if (OutputFormat == sysv) { in printObjectSectionSizes()
563 if (OutputFormat == sysv) in printFileSectionSizes()
565 else if (MachO && OutputFormat == darwin) in printFileSectionSizes()
568 if (!MachO && OutputFormat == darwin) in printFileSectionSizes()
570 if (OutputFormat == berkeley) { in printFileSectionSizes()
597 if (OutputFormat == sysv) in printFileSectionSizes()
599 else if (MachO && OutputFormat == darwin) { in printFileSectionSizes()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DReplayInlineAdvisor.h30 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
/src/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 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.h57 getOutputFileForRemarks(StringRef OutputFileName, Format OutputFormat);
/src/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.cpp41 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 __anon545441450111::ASTPrinter
/src/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.cpp691 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
693 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
695 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
697 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
699 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
826 case CoverageViewOptions::OutputFormat::Text: in run()
831 case CoverageViewOptions::OutputFormat::HTML: in run()
836 case CoverageViewOptions::OutputFormat::Lcov: in run()
1040 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1184 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
[all …]
H A DCoverageViewOptions.h20 enum class OutputFormat { enum
48 OutputFormat Format;
/src/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp101 static OutputFormatTy OutputFormat; variable
624 if (OutputFormat == posix && !ArchiveName.empty()) in writeFileName()
735 if ((OutputFormat == bsd || OutputFormat == posix || in printSymbolList()
736 OutputFormat == just_symbols) && in printSymbolList()
739 } else if (OutputFormat == sysv) { in printSymbolList()
756 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64; in printSymbolList()
759 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64; in printSymbolList()
762 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64; in printSymbolList()
769 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64; in printSymbolList()
772 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64; in printSymbolList()
[all …]
/src/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp670 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local
673 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
676 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions()
746 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions()
751 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions()
752 if (OutputFormat.empty()) { in parseObjcopyOptions()
753 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
756 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions()
759 Config.OutputFormat = Target->Format; in parseObjcopyOptions()
841 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions()
[all …]
H A Dllvm-objcopy.cpp116 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
/src/contrib/llvm-project/clang/include/clang/Frontend/
H A DDependencyOutputOptions.h64 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; variable
H A DUtils.h130 DependencyOutputFormat OutputFormat; variable
/src/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp151 cl::opt<ProfileFormat> OutputFormat( variable
884 ProfileFormat OutputFormat, in writeInstrProfile() argument
888 OutputFormat == PF_Text ? sys::fs::OF_TextWithCRLF in writeInstrProfile()
893 if (OutputFormat == PF_Text) { in writeInstrProfile()
910 if (OutputFormat == PF_Compact_Binary) in mergeInstrProfile()
912 if (OutputFormat != PF_Binary && OutputFormat != PF_Ext_Binary && in mergeInstrProfile()
913 OutputFormat != PF_Text) in mergeInstrProfile()
1004 writeInstrProfile(OutputFilename, OutputFormat, Contexts[0]->Writer); in mergeInstrProfile()
1395 writeInstrProfile(OutputFilename, OutputFormat, WC->Writer); in supplementInstrProfile()
1465 ProfileFormat OutputFormat, in handleExtBinaryWriter() argument
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h200 FileFormat OutputFormat = FileFormat::Unspecified; member
/src/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp108 if (Opts->OutputFormat != DependencyOutputFormat::Make) in getP1689ModuleDependencyFile()
/src/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp181 switch (Config.OutputFormat) { in createWriter()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1250 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
/src/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td918 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,