Searched refs:DebugCompressionType (Results 1 – 13 of 13) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/tools/driver/ |
| H A D | cc1as_main.cpp | 99 llvm::DebugCompressionType CompressDebugSections = 100 llvm::DebugCompressionType::None; 222 Opts.CompressDebugSections = llvm::DebugCompressionType::GNU; in CreateFromArgs() 225 llvm::StringSwitch<llvm::DebugCompressionType>(A->getValue()) in CreateFromArgs() 226 .Case("none", llvm::DebugCompressionType::None) in CreateFromArgs() 227 .Case("zlib", llvm::DebugCompressionType::Z) in CreateFromArgs() 228 .Case("zlib-gnu", llvm::DebugCompressionType::GNU) in CreateFromArgs() 229 .Default(llvm::DebugCompressionType::None); in CreateFromArgs()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCAsmInfo.h | 377 DebugCompressionType CompressDebugSections = DebugCompressionType::None; 625 DebugCompressionType compressDebugSections() const { in compressDebugSections() 629 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
|
| H A D | MCTargetOptions.h | 27 enum class DebugCompressionType { enum
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ |
| H A D | CopyConfig.cpp | 290 Config.CompressionType = DebugCompressionType::Z; in parseObjcopyOptions() 294 StringSwitch<DebugCompressionType>( in parseObjcopyOptions() 296 .Case("zlib-gnu", DebugCompressionType::GNU) in parseObjcopyOptions() 297 .Case("zlib", DebugCompressionType::Z) in parseObjcopyOptions() 298 .Default(DebugCompressionType::None); in parseObjcopyOptions() 299 if (Config.CompressionType == DebugCompressionType::None) in parseObjcopyOptions() 379 Config.CompressionType != DebugCompressionType::None) { in parseObjcopyOptions()
|
| H A D | CopyConfig.h | 96 DebugCompressionType CompressionType = DebugCompressionType::None;
|
| /freebsd-12.1/contrib/llvm/tools/llvm-mc/ |
| H A D | llvm-mc.cpp | 63 static cl::opt<DebugCompressionType> CompressDebugSections( 65 cl::init(DebugCompressionType::None), 67 cl::values(clEnumValN(DebugCompressionType::None, "none", "No compression"), 68 clEnumValN(DebugCompressionType::Z, "zlib", 70 clEnumValN(DebugCompressionType::GNU, "zlib-gnu", 359 if (CompressDebugSections != DebugCompressionType::None) { in main()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Target/ |
| H A D | TargetOptions.h | 215 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 229 if (Sec.CompressionType == DebugCompressionType::None) { in visit() 234 if (Sec.CompressionType == DebugCompressionType::GNU) { in visit() 255 DebugCompressionType CompressionType) in CompressedSection() 260 CompressionType = DebugCompressionType::None; in CompressedSection() 271 if (CompressionType == DebugCompressionType::GNU) { in CompressedSection() 289 : CompressionType(DebugCompressionType::None), in CompressedSection()
|
| H A D | Object.h | 31 enum class DebugCompressionType; variable 364 DebugCompressionType CompressionType; 371 DebugCompressionType CompressionType);
|
| H A D | ELFObjcopy.cpp | 463 if (Config.CompressionType != DebugCompressionType::None) in handleArgs()
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | ELFObjectWriter.cpp | 854 MAI->compressDebugSections() != DebugCompressionType::None; in writeSectionData() 861 assert((MAI->compressDebugSections() == DebugCompressionType::Z || in writeSectionData() 862 MAI->compressDebugSections() == DebugCompressionType::GNU) && in writeSectionData() 878 bool ZlibStyle = MAI->compressDebugSections() == DebugCompressionType::Z; in writeSectionData()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | CodeGenOptions.def | 32 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2, 33 llvm::DebugCompressionType::None)
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | CompilerInvocation.cpp | 1051 Opts.setCompressDebugSections(llvm::DebugCompressionType::GNU); in ParseCodeGenArgs() 1053 auto DCT = llvm::StringSwitch<llvm::DebugCompressionType>(A->getValue()) in ParseCodeGenArgs() 1054 .Case("none", llvm::DebugCompressionType::None) in ParseCodeGenArgs() 1055 .Case("zlib", llvm::DebugCompressionType::Z) in ParseCodeGenArgs() 1056 .Case("zlib-gnu", llvm::DebugCompressionType::GNU) in ParseCodeGenArgs() 1057 .Default(llvm::DebugCompressionType::None); in ParseCodeGenArgs()
|