Home
last modified time | relevance | path

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

12

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp51 const CodeGenOptions &CodeGenOpts;
112 const CodeGenOptions &CGOpts, in EmitAssemblyHelper()
138 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts, in PassManagerBuilderWrapper()
141 const CodeGenOptions &getCGOpts() const { return CGOpts; } in getCGOpts()
144 const CodeGenOptions &CGOpts;
169 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addSampleProfileLoaderPass()
187 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addSanitizerCoveragePass()
201 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts(); in addMemorySanitizerPass()
231 const CodeGenOptions &CodeGenOpts) { in createTLI()
238 static void addSymbolRewriterPass(const CodeGenOptions &Opts, in addSymbolRewriterPass()
[all …]
H A DCodeGenTBAA.h29 class CodeGenOptions; variable
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
H A DModuleBuilder.cpp35 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
60 const CodeGenOptions &CGO, llvm::LLVMContext& C, in CodeGeneratorImpl()
240 const CodeGenOptions &CGO, in CreateLLVMCodeGen()
H A DCodeGenABITypes.cpp31 : CGO(new CodeGenOptions), in CodeGenABITypes()
H A DCGDebugInfo.cpp369 DebugKind <= CodeGenOptions::DebugLineTablesOnly in CreateCompileUnit()
372 DebugKind != CodeGenOptions::LocTrackingOnly); in CreateCompileUnit()
1420 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateRecordType()
1429 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo); in getOrCreateInterfaceType()
1436 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeType()
1450 if (DebugKind > CodeGenOptions::LimitedDebugInfo || in completeType()
1456 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeRequiredType()
1470 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly) in completeClassData()
1493 static bool shouldOmitDefinition(CodeGenOptions::DebugInfoKind DebugKind, in shouldOmitDefinition()
1496 if (DebugKind > CodeGenOptions::LimitedDebugInfo) in shouldOmitDefinition()
[all …]
H A DCodeGenModule.h71 class CodeGenOptions; variable
281 const CodeGenOptions &CodeGenOpts;
490 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
602 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } in getCodeGenOpts()
H A DCodeGenTypes.h40 class CodeGenOptions; variable
H A DCodeGenModule.cpp77 CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO, in CodeGenModule()
132 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo || in CodeGenModule()
523 CodeGenOptions::TLSModel M) { in GetLLVMTLSModel()
525 case CodeGenOptions::GeneralDynamicTLSModel: in GetLLVMTLSModel()
527 case CodeGenOptions::LocalDynamicTLSModel: in GetLLVMTLSModel()
529 case CodeGenOptions::InitialExecTLSModel: in GetLLVMTLSModel()
531 case CodeGenOptions::LocalExecTLSModel: in GetLLVMTLSModel()
1479 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { in CompleteDIClassType()
2083 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitGlobalVarDefinition()
3250 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) in EmitTopLevelDecl()
H A DCodeGenTBAA.cpp33 const CodeGenOptions &CGO, in CodeGenTBAA()
H A DCodeGenAction.cpp46 const CodeGenOptions &CodeGenOpts;
60 const CodeGenOptions &compopts, in BackendConsumer()
H A DCGDecl.cpp387 CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { in EmitStaticVarDecl()
1007 >= CodeGenOptions::LimitedDebugInfo) { in EmitAutoVarAlloca()
1668 >= CodeGenOptions::LimitedDebugInfo) { in EmitParmDecl()
1778 >= CodeGenOptions::LimitedDebugInfo) { in EmitParmDecl()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCodeGenOptions.cpp15 CodeGenOptions::CodeGenOptions() { in CodeGenOptions() function in clang::CodeGenOptions
H A DCompilerInvocation.cpp345 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, in ParseCodeGenArgs()
365 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining in ParseCodeGenArgs()
366 : CodeGenOptions::OnlyAlwaysInlining); in ParseCodeGenArgs()
370 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining()); in ParseCodeGenArgs()
373 Opts.setDebugInfo(CodeGenOptions::DebugLineTablesOnly); in ParseCodeGenArgs()
384 Opts.setDebugInfo(CodeGenOptions::FullDebugInfo); in ParseCodeGenArgs()
386 Opts.setDebugInfo(CodeGenOptions::LimitedDebugInfo); in ParseCodeGenArgs()
396 else if (Opts.getDebugInfo() != CodeGenOptions::NoDebugInfo) in ParseCodeGenArgs()
531 .Case("legacy", CodeGenOptions::Legacy) in ParseCodeGenArgs()
532 .Case("non-legacy", CodeGenOptions::NonLegacy) in ParseCodeGenArgs()
[all …]
H A DCMakeLists.txt16 CodeGenOptions.cpp
/minix3/external/bsd/llvm/dist/clang/include/clang/CodeGen/
H A DBackendUtil.h21 class CodeGenOptions; variable
34 void EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
H A DModuleBuilder.h29 class CodeGenOptions; variable
46 const CodeGenOptions &CGO,
H A DCodeGenABITypes.h39 class CodeGenOptions; variable
76 CodeGenOptions *CGO;
/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInvocation.h109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; } in getCodeGenOpts()
178 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
H A DCodeGenOptions.h41 class CodeGenOptions : public CodeGenOptionsBase {
195 CodeGenOptions();
H A DASTConsumers.h23 class CodeGenOptions; variable
H A DCompilerInstance.h232 CodeGenOptions &getCodeGenOpts() { in getCodeGenOpts()
235 const CodeGenOptions &getCodeGenOpts() const { in getCodeGenOpts()
566 const CodeGenOptions *CodeGenOpts = nullptr);
H A DCodeGenOptions.def1 //===--- CodeGenOptions.def - Code generation option database ------ C++ -*-===//
/minix3/external/bsd/llvm/lib/libclangFrontend/
H A DMakefile15 CodeGenOptions.cpp \
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp159 CodeGenOptions::NoDebugInfo)); in CreateASTConsumer()
/minix3/external/bsd/llvm/dist/clang/include/clang/
H A Dmodule.modulemap99 exclude header "Frontend/CodeGenOptions.def"

12