Searched refs:CodeGenOptions (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCodeGenOptions.cpp1 //===--- CodeGenOptions.cpp -----------------------------------------------===//
10 #include "clang/Frontend/CodeGenOptions.h"
15 CodeGenOptions::CodeGenOptions() { function in class:clang::CodeGenOptions
18 #include "clang/Frontend/CodeGenOptions.def"
24 bool CodeGenOptions::isNoBuiltinFunc(const char *Name) const {
H A DCompilerInvocation.cpp378 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
399 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining
400 : CodeGenOptions::OnlyAlwaysInlining);
404 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining());
409 Opts.setVecLib(CodeGenOptions::Accelerate);
411 Opts.setVecLib(CodeGenOptions::NoLibrary);
419 .Case("line-tables-only", CodeGenOptions::DebugLineTablesOnly)
420 .Case("limited", CodeGenOptions::LimitedDebugInfo)
421 .Case("standalone", CodeGenOptions::FullDebugInfo)
427 Opts.setDebugInfo(static_cast<CodeGenOptions
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DBackendUtil.h23 class CodeGenOptions;
36 void EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
H A DModuleBuilder.h31 class CodeGenOptions;
49 const CodeGenOptions &CGO,
H A DCodeGenABITypes.h40 class CodeGenOptions;
77 /// Default CodeGenOptions object used to initialize the
80 std::unique_ptr<CodeGenOptions> CGO;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DASTConsumers.h23 class CodeGenOptions;
H A DCompilerInvocation.h17 #include "clang/Frontend/CodeGenOptions.h"
109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
178 const CodeGenOptions &getCodeGenOpts() const {
H A DCodeGenOptions.h1 //===--- CodeGenOptions.h ---------------------------------------*- C++ -*-===//
10 // This file defines the CodeGenOptions interface.
26 /// \brief Bitfields of CodeGenOptions, split out from CodeGenOptions to ensure
32 #include "clang/Frontend/CodeGenOptions.def"
37 #include "clang/Frontend/CodeGenOptions.def"
40 /// CodeGenOptions - Track various options which control how the code
42 class CodeGenOptions : public CodeGenOptionsBase { class in namespace:clang
230 #include "clang/Frontend/CodeGenOptions.def"
232 CodeGenOptions();
[all...]
H A DPCHContainerOperations.h28 class CodeGenOptions;
H A DCompilerInstance.h252 CodeGenOptions &getCodeGenOpts() {
255 const CodeGenOptions &getCodeGenOpts() const {
517 /// current CodeGenOptions.
531 /// current CodeGenOptions.
627 const CodeGenOptions *CodeGenOpts = nullptr);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp14 #include "clang/Frontend/CodeGenOptions.h"
54 const CodeGenOptions &CodeGenOpts;
118 EmitAssemblyHelper(DiagnosticsEngine &_Diags, const CodeGenOptions &CGOpts,
143 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts,
146 const CodeGenOptions &getCGOpts() const { return CGOpts; }
149 const CodeGenOptions &CGOpts;
184 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
199 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
217 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
247 const CodeGenOptions
[all...]
H A DCodeGenTBAA.h29 class CodeGenOptions;
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
H A DCodeGenABITypes.cpp22 #include "clang/Frontend/CodeGenOptions.h"
31 : CGO(new CodeGenOptions), HSO(new HeaderSearchOptions),
H A DModuleBuilder.cpp22 #include "clang/Frontend/CodeGenOptions.h"
36 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
62 const PreprocessorOptions &PPO, const CodeGenOptions &CGO,
245 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO,
H A DObjectFilePCHContainerOperations.cpp20 #include "clang/Frontend/CodeGenOptions.h"
49 CodeGenOptions CodeGenOpts;
152 CodeGenOpts.setDebugInfo(CodeGenOptions::FullDebugInfo);
H A DCGDebugInfo.cpp29 #include "clang/Frontend/CodeGenOptions.h"
405 DebugKind <= CodeGenOptions::DebugLineTablesOnly
408 0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly);
1449 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
1461 assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
1476 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
1489 if (DebugKind > CodeGenOptions::LimitedDebugInfo ||
1495 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
1512 if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
1534 static bool shouldOmitDefinition(CodeGenOptions
[all...]
H A DCodeGenModule.h71 class CodeGenOptions;
264 const CodeGenOptions &CodeGenOpts;
490 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
600 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
H A DCodeGenTypes.h40 class CodeGenOptions;
H A DCodeGenTBAA.cpp23 #include "clang/Frontend/CodeGenOptions.h"
33 const CodeGenOptions &CGO,
H A DCodeGenModule.cpp43 #include "clang/Frontend/CodeGenOptions.h"
83 const CodeGenOptions &CGO, llvm::Module &M,
140 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
589 CodeGenOptions::TLSModel M) {
591 case CodeGenOptions::GeneralDynamicTLSModel:
593 case CodeGenOptions::LocalDynamicTLSModel:
595 case CodeGenOptions::InitialExecTLSModel:
597 case CodeGenOptions::LocalExecTLSModel:
1693 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) {
2442 if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions
[all...]
H A DCodeGenAction.cpp46 const CodeGenOptions &CodeGenOpts;
68 const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts,
/freebsd-11.0-release/lib/clang/libclangfrontend/
H A DMakefile14 CodeGenOptions.cpp \
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DClangForward.h36 class CodeGenOptions;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp308 m_compiler->getCodeGenOpts().setDebugInfo(CodeGenOptions::FullDebugInfo);
310 m_compiler->getCodeGenOpts().setDebugInfo(CodeGenOptions::NoDebugInfo);
400 if (m_compiler->getCodeGenOpts().getDebugInfo() == CodeGenOptions::FullDebugInfo)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp160 CodeGenOptions::NoDebugInfo));

Completed in 136 milliseconds

12