Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCAsmInfo.h523 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
865 DebugCompressionType compressDebugSections() const { in compressDebugSections()
869 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
H A DMCTargetOptions.h28 enum class DebugCompressionType { enum
/llvm-project-15.0.7/clang/tools/driver/
H A Dcc1as_main.cpp100 llvm::DebugCompressionType CompressDebugSections =
101 llvm::DebugCompressionType::None;
238 llvm::StringSwitch<llvm::DebugCompressionType>(A->getValue()) in CreateFromArgs()
239 .Case("none", llvm::DebugCompressionType::None) in CreateFromArgs()
240 .Case("zlib", llvm::DebugCompressionType::Z) in CreateFromArgs()
241 .Default(llvm::DebugCompressionType::None); in CreateFromArgs()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetOptions.h258 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
/llvm-project-15.0.7/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",
403 if (CompressDebugSections != DebugCompressionType::None) { in main()
/llvm-project-15.0.7/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h266 DebugCompressionType CompressionType = DebugCompressionType::None;
/llvm-project-15.0.7/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp723 Config.CompressionType = StringSwitch<DebugCompressionType>(A->getValue()) in parseObjcopyOptions()
724 .Case("zlib", DebugCompressionType::Z) in parseObjcopyOptions()
725 .Default(DebugCompressionType::None); in parseObjcopyOptions()
726 if (Config.CompressionType == DebugCompressionType::None) in parseObjcopyOptions()
989 Config.CompressionType != DebugCompressionType::None) { in parseObjcopyOptions()
/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.h30 enum class DebugCompressionType; variable
539 DebugCompressionType CompressionType;
546 DebugCompressionType CompressionType);
H A DELFObject.cpp495 case DebugCompressionType::None: in visit()
498 case DebugCompressionType::Z: in visit()
512 DebugCompressionType CompressionType) in CompressedSection()
517 assert(CompressionType != DebugCompressionType::None); in CompressedSection()
531 : CompressionType(DebugCompressionType::None), in CompressedSection()
H A DELFObjcopy.cpp508 if (Config.CompressionType != DebugCompressionType::None) { in replaceAndRemoveSections()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DCodeGenOptions.def31 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2,
32 llvm::DebugCompressionType::None)
/llvm-project-15.0.7/llvm/lib/MC/
H A DELFObjectWriter.cpp852 MAI->compressDebugSections() != DebugCompressionType::None; in writeSectionData()
858 assert(MAI->compressDebugSections() == DebugCompressionType::Z && in writeSectionData()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td5265 NormalizedValuesScope<"llvm::DebugCompressionType">, NormalizedValues<["None", "Z"]>,