Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCAsmInfo.h56 enum class DebugCompressionType { enum
369 DebugCompressionType CompressDebugSections;
589 DebugCompressionType compressDebugSections() const { in compressDebugSections()
593 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCAsmInfo.h377 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
625 DebugCompressionType compressDebugSections() const { in compressDebugSections()
629 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections()
DMCTargetOptions.h27 enum class DebugCompressionType { enum
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mc/
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",
355 if (CompressDebugSections != DebugCompressionType::None) { in main()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp59 static cl::opt<DebugCompressionType>
61 cl::init(DebugCompressionType::DCT_None),
64 clEnumValN(DebugCompressionType::DCT_None, "none",
66 clEnumValN(DebugCompressionType::DCT_Zlib, "zlib",
68 clEnumValN(DebugCompressionType::DCT_ZlibGnu, "zlib-gnu",
429 if (CompressDebugSections != DebugCompressionType::DCT_None) { in main()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
DTargetOptions.h203 DebugCompressionType CompressDebugSections = DebugCompressionType::None;
/external/llvm/lib/MC/
DMCAsmInfo.cpp112 CompressDebugSections = DebugCompressionType::DCT_None; in MCAsmInfo()
DELFObjectWriter.cpp1023 DebugCompressionType::DCT_None; in writeSectionData()
1047 DebugCompressionType::DCT_Zlib; in writeSectionData()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DELFObjectWriter.cpp839 MAI->compressDebugSections() != DebugCompressionType::None; in writeSectionData()
846 assert((MAI->compressDebugSections() == DebugCompressionType::Z || in writeSectionData()
847 MAI->compressDebugSections() == DebugCompressionType::GNU) && in writeSectionData()
863 bool ZlibStyle = MAI->compressDebugSections() == DebugCompressionType::Z; in writeSectionData()
/external/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp76 TmpAsmInfo->setCompressDebugSections(DebugCompressionType::DCT_ZlibGnu); in initAsmInfo()
/external/clang/tools/driver/
Dcc1as_main.cpp316 MAI->setCompressDebugSections(DebugCompressionType::DCT_ZlibGnu); in ExecuteAssembler()