Home
last modified time | relevance | path

Searched refs:CompressDebugSections (Results 1 – 14 of 14) sorted by relevance

/external/llvm/include/llvm/MC/
DMCAsmInfo.h369 DebugCompressionType CompressDebugSections; variable
590 return CompressDebugSections; in compressDebugSections()
593 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections() argument
594 this->CompressDebugSections = CompressDebugSections; in setCompressDebugSections()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCAsmInfo.h377 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
626 return CompressDebugSections; in compressDebugSections()
629 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections() argument
630 this->CompressDebugSections = CompressDebugSections; in setCompressDebugSections()
/external/llvm/include/llvm/Target/
DTargetOptions.h100 DisableIntegratedAS(false), CompressDebugSections(false), in TargetOptions()
192 unsigned CompressDebugSections : 1; variable
/external/clang/tools/driver/
Dcc1as_main.cpp88 unsigned CompressDebugSections : 1; member
201 Opts.CompressDebugSections = Args.hasArg(OPT_compress_debug_sections); in CreateFromArgs()
315 if (Opts.CompressDebugSections) in ExecuteAssembler()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mc/
Dllvm-mc.cpp63 static cl::opt<DebugCompressionType> CompressDebugSections( variable
355 if (CompressDebugSections != DebugCompressionType::None) { in main()
361 MAI->setCompressDebugSections(CompressDebugSections); in main()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp60 CompressDebugSections("compress-debug-sections", cl::ValueOptional, variable
429 if (CompressDebugSections != DebugCompressionType::DCT_None) { in main()
435 MAI->setCompressDebugSections(CompressDebugSections); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
DTargetOptions.h203 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
/external/llvm/lib/MC/
DMCAsmInfo.cpp112 CompressDebugSections = DebugCompressionType::DCT_None; in MCAsmInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp67 TmpAsmInfo->setCompressDebugSections(Options.CompressDebugSections); in initAsmInfo()
/external/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp75 if (Options.CompressDebugSections) in initAsmInfo()
/external/clang/lib/CodeGen/
DBackendUtil.cpp605 Options.CompressDebugSections = CodeGenOpts.CompressDebugSections; in CreateTargetMachine()
/external/clang/include/clang/Frontend/
DCodeGenOptions.def32 CODEGENOPT(CompressDebugSections, 1, 0) ///< -Wa,-compress-debug-sections
/external/clang/lib/Driver/
DTools.cpp2847 bool CompressDebugSections = false; in CollectArgsForIntegratedAssembler() local
2921 CompressDebugSections = true; in CollectArgsForIntegratedAssembler()
2924 CompressDebugSections = false; in CollectArgsForIntegratedAssembler()
2956 if (CompressDebugSections) { in CollectArgsForIntegratedAssembler()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp695 Opts.CompressDebugSections = Args.hasArg(OPT_compress_debug_sections); in ParseCodeGenArgs()