Searched refs:DebugCompressionType (Results 1 – 13 of 13) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmInfo.h | 511 DebugCompressionType CompressDebugSections = DebugCompressionType::None; 843 DebugCompressionType compressDebugSections() const { in compressDebugSections() 847 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
|
| H A D | MCTargetOptions.h | 28 enum class DebugCompressionType { enum
|
| /freebsd-13.1/contrib/llvm-project/clang/tools/driver/ |
| H A D | cc1as_main.cpp | 100 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 D | llvm-mc.cpp | 74 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 D | TargetOptions.h | 230 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | CommonConfig.h | 274 DebugCompressionType CompressionType = DebugCompressionType::None;
|
| H A D | ConfigManager.cpp | 762 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 D | Object.h | 30 enum class DebugCompressionType; variable 529 DebugCompressionType CompressionType; 536 create(const SectionBase &Sec, DebugCompressionType CompressionType); 554 DebugCompressionType CompressionType, Error &Err);
|
| H A D | Object.cpp | 522 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 D | ELFObjcopy.cpp | 477 if (Config.CompressionType != DebugCompressionType::None) { in replaceAndRemoveSections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | ELFObjectWriter.cpp | 857 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 D | CodeGenOptions.def | 31 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2, 32 llvm::DebugCompressionType::None)
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 4815 NormalizedValuesScope<"llvm::DebugCompressionType">, NormalizedValues<["None", "Z", "GNU"]>,
|