Home
last modified time | relevance | path

Searched refs:CompressDebugSections (Results 1 – 20 of 20) 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-10.0/llvm/include/llvm/MC/
DMCAsmInfo.h389 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
656 return CompressDebugSections; in compressDebugSections()
659 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections() argument
660 this->CompressDebugSections = CompressDebugSections; in setCompressDebugSections()
/external/llvm-project/llvm/include/llvm/MC/
DMCAsmInfo.h420 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
697 return CompressDebugSections; in compressDebugSections()
700 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { in setCompressDebugSections() argument
701 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-10.0/llvm/include/llvm/Target/
DTargetOptions.h215 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
/external/llvm-project/llvm/tools/llvm-mc/
Dllvm-mc.cpp64 static cl::opt<DebugCompressionType> CompressDebugSections( variable
367 if (CompressDebugSections != DebugCompressionType::None) { in main()
373 MAI->setCompressDebugSections(CompressDebugSections); in main()
/external/llvm/lib/MC/
DMCAsmInfo.cpp112 CompressDebugSections = DebugCompressionType::DCT_None; in MCAsmInfo()
/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/llvm-project/clang/tools/driver/
Dcc1as_main.cpp99 llvm::DebugCompressionType CompressDebugSections = member
225 Opts.CompressDebugSections = in CreateFromArgs()
366 MAI->setCompressDebugSections(Opts.CompressDebugSections); in ExecuteAssembler()
/external/llvm-project/llvm/include/llvm/Target/
DTargetOptions.h237 DebugCompressionType CompressDebugSections = DebugCompressionType::None; variable
/external/llvm-project/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp69 TmpAsmInfo->setCompressDebugSections(Options.CompressDebugSections); in initAsmInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp66 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/llvm-project/clang/include/clang/Basic/
DCodeGenOptions.def31 ENUM_CODEGENOPT(CompressDebugSections, llvm::DebugCompressionType, 2,
/external/llvm-project/clang/lib/CodeGen/
DBackendUtil.cpp494 Options.CompressDebugSections = CodeGenOpts.getCompressDebugSections(); in initTargetOptions()
/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()