Home
last modified time | relevance | path

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

12

/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
DBackendUtil.cpp46 const CodeGenOptions &CodeGenOpts;
109 const CodeGenOptions &CGOpts, in EmitAssemblyHelper()
130 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts, in PassManagerBuilderWrapper()
133 const CodeGenOptions &getCGOpts() const { return CGOpts; } in getCGOpts()
136 const CodeGenOptions &CGOpts;
161 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addSampleProfileLoaderPass()
174 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addAddressSanitizerPasses()
192 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addMemorySanitizerPass()
213 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addThreadSanitizerPass()
221 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addDataFlowSanitizerPass()
[all …]
DCodeGenTBAA.h29 class CodeGenOptions; variable
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
DModuleBuilder.cpp35 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
41 const CodeGenOptions &CGO, llvm::LLVMContext& C) in CodeGeneratorImpl()
161 const CodeGenOptions &CGO, in CreateLLVMCodeGen()
DCodeGenABITypes.cpp28 const CodeGenOptions &CodeGenOpts, in CodeGenABITypes()
DCGDebugInfo.cpp1399 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateRecordType()
1408 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateInterfaceType()
1415 if (DebugKind > CodeGenOptions::LimitedDebugInfo || in completeType()
1432 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeClassData()
1460 (DebugKind <= CodeGenOptions::LimitedDebugInfo && in CreateType()
2341 if (!D || DebugKind == CodeGenOptions::DebugLineTablesOnly) in getFunctionDeclaration()
2389 if (!D || DebugKind == CodeGenOptions::DebugLineTablesOnly) in getOrCreateFunctionType()
2495 DebugKind <= CodeGenOptions::DebugLineTablesOnly)) in EmitFunctionStart()
2498 if (DebugKind >= CodeGenOptions::LimitedDebugInfo) { in EmitFunctionStart()
2707 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in EmitDeclare()
[all …]
DCodeGenModule.h69 class CodeGenOptions; variable
234 const CodeGenOptions &CodeGenOpts;
430 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
523 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
DCodeGenAction.cpp40 const CodeGenOptions &CodeGenOpts;
54 const CodeGenOptions &compopts, in BackendConsumer()
DCodeGenTypes.h40 class CodeGenOptions; variable
DCodeGenModule.cpp72 CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO, in CodeGenModule()
124 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo || in CodeGenModule()
386 CodeGenOptions::TLSModel M) { in GetLLVMTLSModel()
388 case CodeGenOptions::GeneralDynamicTLSModel: in GetLLVMTLSModel()
390 case CodeGenOptions::LocalDynamicTLSModel: in GetLLVMTLSModel()
392 case CodeGenOptions::InitialExecTLSModel: in GetLLVMTLSModel()
394 case CodeGenOptions::LocalExecTLSModel: in GetLLVMTLSModel()
1325 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { in CompleteDIClassType()
1910 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitGlobalVarDefinition()
3005 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitTopLevelDecl()
DCodeGenTBAA.cpp33 const CodeGenOptions &CGO, in CodeGenTBAA()
DCGDecl.cpp349 CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { in EmitStaticVarDecl()
972 >= CodeGenOptions::LimitedDebugInfo) { in EmitAutoVarAlloca()
1633 >= CodeGenOptions::LimitedDebugInfo) { in EmitParmDecl()
1735 >= CodeGenOptions::LimitedDebugInfo) { in EmitParmDecl()
DCGDebugInfo.h53 const CodeGenOptions::DebugInfoKind DebugKind;
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/
DCompilerInvocation.h107 CodeGenOptions CodeGenOpts;
175 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts()
176 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
DCodeGenOptions.h38 class CodeGenOptions : public CodeGenOptionsBase {
153 CodeGenOptions() { in CodeGenOptions() function
DCompilerInstance.h213 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts()
216 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
523 const CodeGenOptions *CodeGenOpts = 0);
DASTConsumers.h22 class CodeGenOptions; variable
DCodeGenOptions.def1 //===--- CodeGenOptions.def - Code generation option database ------ C++ -*-===//
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/CodeGen/
DBackendUtil.h21 class CodeGenOptions; variable
34 void EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
DModuleBuilder.h28 class CodeGenOptions; variable
43 const CodeGenOptions &CGO,
DCodeGenABITypes.h39 class CodeGenOptions; variable
50 CodeGenABITypes(ASTContext &C, const CodeGenOptions &CodeGenOpts,
/freebsd-10-stable/contrib/llvm/patches/
Dpatch-r265477-clang-r198655-standalone-debug.diff11 Note: I kept the LimitedDebugInfo name in CodeGenOptions::DebugInfoKind
25 (DebugKind <= CodeGenOptions::LimitedDebugInfo &&
47 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
54 @@ -322,10 +323,16 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts,
55 Opts.setDebugInfo(CodeGenOptions::DebugLineTablesOnly);
66 + Opts.setDebugInfo(CodeGenOptions::FullDebugInfo);
68 Opts.setDebugInfo(CodeGenOptions::LimitedDebugInfo);
70 - Opts.setDebugInfo(CodeGenOptions::FullDebugInfo);
223 Index: tools/clang/include/clang/Frontend/CodeGenOptions.h
225 --- tools/clang/include/clang/Frontend/CodeGenOptions.h
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
DCompilerInvocation.cpp297 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, in ParseCodeGenArgs()
315 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining in ParseCodeGenArgs()
316 : CodeGenOptions::OnlyAlwaysInlining); in ParseCodeGenArgs()
320 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining()); in ParseCodeGenArgs()
323 Opts.setDebugInfo(CodeGenOptions::DebugLineTablesOnly); in ParseCodeGenArgs()
333 Opts.setDebugInfo(CodeGenOptions::FullDebugInfo); in ParseCodeGenArgs()
335 Opts.setDebugInfo(CodeGenOptions::LimitedDebugInfo); in ParseCodeGenArgs()
345 else if (Opts.getDebugInfo() != CodeGenOptions::NoDebugInfo) in ParseCodeGenArgs()
469 .Case("legacy", CodeGenOptions::Legacy) in ParseCodeGenArgs()
470 .Case("non-legacy", CodeGenOptions::NonLegacy) in ParseCodeGenArgs()
[all …]
DCompilerInstance.cpp106 const CodeGenOptions *CodeGenOpts, in SetUpDiagnosticLog()
167 const CodeGenOptions *CodeGenOpts) { in createDiagnostics()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
DClangForward.h36 class CodeGenOptions; variable
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
DFrontendActions.cpp161 CodeGenOptions::NoDebugInfo)); in CreateASTConsumer()

12