Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp99 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 DMCAsmInfo.h377 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
625 DebugCompressionType compressDebugSections() const { in compressDebugSections()
629 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
H A DMCTargetOptions.h27 enum class DebugCompressionType { enum
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp290 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 DCopyConfig.h96 DebugCompressionType CompressionType = DebugCompressionType::None;
/freebsd-12.1/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp63 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 DTargetOptions.h215 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp229 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 DObject.h31 enum class DebugCompressionType; variable
364 DebugCompressionType CompressionType;
371 DebugCompressionType CompressionType);
H A DELFObjcopy.cpp463 if (Config.CompressionType != DebugCompressionType::None) in handleArgs()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DELFObjectWriter.cpp854 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 DCodeGenOptions.def32 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2,
33 llvm::DebugCompressionType::None)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp1051 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()