Home
last modified time | relevance | path

Searched refs:DebugCompressionType (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmInfo.h511 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
843 DebugCompressionType compressDebugSections() const { in compressDebugSections()
847 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
H A DMCTargetOptions.h28 enum class DebugCompressionType { enum
/freebsd-13.1/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp100 llvm::DebugCompressionType CompressDebugSections =
101 llvm::DebugCompressionType::None;
228 llvm::StringSwitch<llvm::DebugCompressionType>(A->getValue()) in CreateFromArgs()
229 .Case("none", llvm::DebugCompressionType::None) in CreateFromArgs()
230 .Case("zlib", llvm::DebugCompressionType::Z) in CreateFromArgs()
231 .Case("zlib-gnu", llvm::DebugCompressionType::GNU) in CreateFromArgs()
232 .Default(llvm::DebugCompressionType::None); in CreateFromArgs()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp74 static cl::opt<DebugCompressionType> CompressDebugSections(
76 cl::init(DebugCompressionType::None),
78 cl::values(clEnumValN(DebugCompressionType::None, "none", "No compression"),
79 clEnumValN(DebugCompressionType::Z, "zlib",
81 clEnumValN(DebugCompressionType::GNU, "zlib-gnu",
405 if (CompressDebugSections != DebugCompressionType::None) { in main()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetOptions.h230 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCommonConfig.h274 DebugCompressionType CompressionType = DebugCompressionType::None;
H A DConfigManager.cpp762 Config.CompressionType = DebugCompressionType::Z; in parseObjcopyOptions()
766 StringSwitch<DebugCompressionType>( in parseObjcopyOptions()
768 .Case("zlib-gnu", DebugCompressionType::GNU) in parseObjcopyOptions()
769 .Case("zlib", DebugCompressionType::Z) in parseObjcopyOptions()
770 .Default(DebugCompressionType::None); in parseObjcopyOptions()
771 if (Config.CompressionType == DebugCompressionType::None) in parseObjcopyOptions()
1031 Config.CompressionType != DebugCompressionType::None) { in parseObjcopyOptions()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h30 enum class DebugCompressionType; variable
529 DebugCompressionType CompressionType;
536 create(const SectionBase &Sec, DebugCompressionType CompressionType);
554 DebugCompressionType CompressionType, Error &Err);
H A DObject.cpp522 if (Sec.CompressionType == DebugCompressionType::None) { in visit()
527 if (Sec.CompressionType == DebugCompressionType::GNU) { in visit()
550 DebugCompressionType CompressionType) { in create()
567 DebugCompressionType CompressionType, in CompressedSection()
583 if (CompressionType == DebugCompressionType::GNU) { in CompressedSection()
601 : CompressionType(DebugCompressionType::None), in CompressedSection()
H A DELFObjcopy.cpp477 if (Config.CompressionType != DebugCompressionType::None) { in replaceAndRemoveSections()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp857 MAI->compressDebugSections() != DebugCompressionType::None; in writeSectionData()
864 assert((MAI->compressDebugSections() == DebugCompressionType::Z || in writeSectionData()
865 MAI->compressDebugSections() == DebugCompressionType::GNU) && in writeSectionData()
881 bool ZlibStyle = MAI->compressDebugSections() == DebugCompressionType::Z; in writeSectionData()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def31 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2,
32 llvm::DebugCompressionType::None)
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4815 NormalizedValuesScope<"llvm::DebugCompressionType">, NormalizedValues<["None", "Z", "GNU"]>,