/external/clang/lib/CodeGen/ |
D | BackendUtil.cpp | 53 const CodeGenOptions &CodeGenOpts; 118 EmitAssemblyHelper(DiagnosticsEngine &_Diags, const CodeGenOptions &CGOpts, in EmitAssemblyHelper() 144 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts, in PassManagerBuilderWrapper() 147 const CodeGenOptions &getCGOpts() const { return CGOpts; } in getCGOpts() 150 const CodeGenOptions &CGOpts; 185 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addSanitizerCoveragePass() 200 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addAddressSanitizerPasses() 218 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addMemorySanitizerPass() 248 const CodeGenOptions &CodeGenOpts) { in createTLII() 254 case CodeGenOptions::Accelerate: in createTLII() [all …]
|
D | CodeGenTBAA.h | 29 class CodeGenOptions; variable 50 const CodeGenOptions &CodeGenOpts; 96 const CodeGenOptions &CGO,
|
D | ModuleBuilder.cpp | 36 const CodeGenOptions CodeGenOpts; // Intentionally copied in. 62 const PreprocessorOptions &PPO, const CodeGenOptions &CGO, in CodeGeneratorImpl() 245 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen()
|
D | CGDebugInfo.cpp | 405 DebugKind <= CodeGenOptions::DebugLineTablesOnly in CreateCompileUnit() 408 0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly); in CreateCompileUnit() 1449 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateRecordType() 1461 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateStandaloneType() 1476 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeType() 1489 if (DebugKind > CodeGenOptions::LimitedDebugInfo || in completeType() 1495 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeRequiredType() 1512 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeClassData() 1534 static bool shouldOmitDefinition(CodeGenOptions::DebugInfoKind DebugKind, in shouldOmitDefinition() 1542 if (DebugKind > CodeGenOptions::LimitedDebugInfo) in shouldOmitDefinition() [all …]
|
D | CodeGenABITypes.cpp | 31 : CGO(new CodeGenOptions), HSO(new HeaderSearchOptions), in CodeGenABITypes()
|
D | ObjectFilePCHContainerOperations.cpp | 49 CodeGenOptions CodeGenOpts; 144 CodeGenOpts.setDebugInfo(CodeGenOptions::FullDebugInfo); in PCHContainerGenerator()
|
D | CodeGenModule.h | 71 class CodeGenOptions; variable 264 const CodeGenOptions &CodeGenOpts; 490 const CodeGenOptions &CodeGenOpts, llvm::Module &M, 600 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
|
D | CodeGenTypes.h | 40 class CodeGenOptions; variable
|
D | CodeGenTBAA.cpp | 33 const CodeGenOptions &CGO, in CodeGenTBAA()
|
D | CodeGenModule.cpp | 83 const CodeGenOptions &CGO, llvm::Module &M, in CodeGenModule() 140 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo || in CodeGenModule() 585 CodeGenOptions::TLSModel M) { in GetLLVMTLSModel() 587 case CodeGenOptions::GeneralDynamicTLSModel: in GetLLVMTLSModel() 589 case CodeGenOptions::LocalDynamicTLSModel: in GetLLVMTLSModel() 591 case CodeGenOptions::InitialExecTLSModel: in GetLLVMTLSModel() 593 case CodeGenOptions::LocalExecTLSModel: in GetLLVMTLSModel() 1670 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { in CompleteDIClassType() 2419 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitGlobalVarDefinition() 3575 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitTopLevelDecl()
|
D | CodeGenAction.cpp | 48 const CodeGenOptions &CodeGenOpts; 70 const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts, in BackendConsumer()
|
/external/clang/lib/Frontend/ |
D | CodeGenOptions.cpp | 15 CodeGenOptions::CodeGenOptions() { in CodeGenOptions() function in clang::CodeGenOptions
|
D | CompilerInvocation.cpp | 363 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, in ParseCodeGenArgs() 384 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining in ParseCodeGenArgs() 385 : CodeGenOptions::OnlyAlwaysInlining); in ParseCodeGenArgs() 389 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining()); in ParseCodeGenArgs() 394 Opts.setVecLib(CodeGenOptions::Accelerate); in ParseCodeGenArgs() 396 Opts.setVecLib(CodeGenOptions::NoLibrary); in ParseCodeGenArgs() 403 llvm::StringSwitch<CodeGenOptions::DebugInfoKind>(A->getValue()) in ParseCodeGenArgs() 404 .Case("line-tables-only", CodeGenOptions::DebugLineTablesOnly) in ParseCodeGenArgs() 405 .Case("limited", CodeGenOptions::LimitedDebugInfo) in ParseCodeGenArgs() 406 .Case("standalone", CodeGenOptions::FullDebugInfo)); in ParseCodeGenArgs() [all …]
|
D | CMakeLists.txt | 16 CodeGenOptions.cpp
|
D | Android.mk | 29 CodeGenOptions.cpp \
|
/external/clang/include/clang/Frontend/ |
D | CompilerInvocation.h | 109 CodeGenOptions CodeGenOpts; 177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts() 178 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
|
D | CodeGenOptions.h | 42 class CodeGenOptions : public CodeGenOptionsBase { 229 CodeGenOptions();
|
D | ASTConsumers.h | 23 class CodeGenOptions; variable
|
D | CompilerInstance.h | 252 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts() 255 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts() 627 const CodeGenOptions *CodeGenOpts = nullptr);
|
D | PCHContainerOperations.h | 28 class CodeGenOptions; variable
|
/external/clang/include/clang/CodeGen/ |
D | BackendUtil.h | 23 class CodeGenOptions; variable 37 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
|
D | ModuleBuilder.h | 31 class CodeGenOptions; variable 49 const CodeGenOptions &CGO,
|
D | CodeGenABITypes.h | 40 class CodeGenOptions; variable 80 std::unique_ptr<CodeGenOptions> CGO;
|
/external/clang/lib/Frontend/Rewrite/ |
D | FrontendActions.cpp | 160 CodeGenOptions::NoDebugInfo)); in CreateASTConsumer()
|
/external/clang/include/clang/ |
D | module.modulemap | 89 textual header "Frontend/CodeGenOptions.def"
|