Home
last modified time | relevance | path

Searched refs:CodeGenOptions (Results 1 – 25 of 38) sorted by relevance

12

/external/clang/lib/CodeGen/
DBackendUtil.cpp53 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 …]
DCodeGenTBAA.h29 class CodeGenOptions; variable
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
DModuleBuilder.cpp36 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
62 const PreprocessorOptions &PPO, const CodeGenOptions &CGO, in CodeGeneratorImpl()
245 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen()
DCGDebugInfo.cpp405 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 …]
DCodeGenABITypes.cpp31 : CGO(new CodeGenOptions), HSO(new HeaderSearchOptions), in CodeGenABITypes()
DObjectFilePCHContainerOperations.cpp49 CodeGenOptions CodeGenOpts;
144 CodeGenOpts.setDebugInfo(CodeGenOptions::FullDebugInfo); in PCHContainerGenerator()
DCodeGenModule.h71 class CodeGenOptions; variable
264 const CodeGenOptions &CodeGenOpts;
490 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
600 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
DCodeGenTypes.h40 class CodeGenOptions; variable
DCodeGenTBAA.cpp33 const CodeGenOptions &CGO, in CodeGenTBAA()
DCodeGenModule.cpp83 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()
DCodeGenAction.cpp48 const CodeGenOptions &CodeGenOpts;
70 const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts, in BackendConsumer()
/external/clang/lib/Frontend/
DCodeGenOptions.cpp15 CodeGenOptions::CodeGenOptions() { in CodeGenOptions() function in clang::CodeGenOptions
DCompilerInvocation.cpp363 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 …]
DCMakeLists.txt16 CodeGenOptions.cpp
DAndroid.mk29 CodeGenOptions.cpp \
/external/clang/include/clang/Frontend/
DCompilerInvocation.h109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts()
178 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
DCodeGenOptions.h42 class CodeGenOptions : public CodeGenOptionsBase {
229 CodeGenOptions();
DASTConsumers.h23 class CodeGenOptions; variable
DCompilerInstance.h252 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts()
255 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
627 const CodeGenOptions *CodeGenOpts = nullptr);
DPCHContainerOperations.h28 class CodeGenOptions; variable
/external/clang/include/clang/CodeGen/
DBackendUtil.h23 class CodeGenOptions; variable
37 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
DModuleBuilder.h31 class CodeGenOptions; variable
49 const CodeGenOptions &CGO,
DCodeGenABITypes.h40 class CodeGenOptions; variable
80 std::unique_ptr<CodeGenOptions> CGO;
/external/clang/lib/Frontend/Rewrite/
DFrontendActions.cpp160 CodeGenOptions::NoDebugInfo)); in CreateASTConsumer()
/external/clang/include/clang/
Dmodule.modulemap89 textual header "Frontend/CodeGenOptions.def"

12