Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp73 static OutputFormatTy OutputFormat;
200 /// This is when used when @c OutputFormat is darwin and produces the same in getCommonSize()
275 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and in printDarwinSectionSizes()
350 /// The format used is determined by @c OutputFormat and @c Radix. in printDarwinSegmentSizes()
357 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's
358 // size(1) -m output, else if OutputFormat is darwin and not a Mach-O object
359 // let it fall through to OutputFormat berkeley.
361 if (OutputFormat == darwin && MachO) in printObjectSectionSizes()
363 // If we have a MachOObjectFile and the OutputFormat is berkeley print as in printObjectSectionSizes()
365 else if (MachO && OutputFormat in printObjectSectionSizes()
82 static OutputFormatTy OutputFormat; global() variable
[all...]
/freebsd/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
/freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/
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
/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.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 __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.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;
/freebsd/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 …]
/freebsd/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()
/freebsd/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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h200 FileFormat OutputFormat = FileFormat::Unspecified; member
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp181 switch (Config.OutputFormat) { in createWriter()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1250 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td918 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,