HomeSort by relevance Sort by last modified time
    Searched refs:CodeGenOptions (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/lib/Frontend/
CodeGenOptions.cpp 1 //===--- CodeGenOptions.cpp -----------------------------------------------===//
10 #include "clang/Frontend/CodeGenOptions.h"
15 CodeGenOptions::CodeGenOptions() {
18 #include "clang/Frontend/CodeGenOptions.def"
Android.mk 29 CodeGenOptions.cpp \
CompilerInvocation.cpp 363 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
384 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining
385 : CodeGenOptions::OnlyAlwaysInlining);
389 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining());
394 Opts.setVecLib(CodeGenOptions::Accelerate);
396 Opts.setVecLib(CodeGenOptions::NoLibrary);
403 llvm::StringSwitch<CodeGenOptions::DebugInfoKind>(A->getValue())
404 .Case("line-tables-only", CodeGenOptions::DebugLineTablesOnly)
405 .Case("limited", CodeGenOptions::LimitedDebugInfo)
406 .Case("standalone", CodeGenOptions::FullDebugInfo))
    [all...]
  /external/clang/include/clang/CodeGen/
BackendUtil.h 23 class CodeGenOptions;
37 EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
ModuleBuilder.h 31 class CodeGenOptions;
49 const CodeGenOptions &CGO,
CodeGenABITypes.h 40 class CodeGenOptions;
77 /// Default CodeGenOptions object used to initialize the
80 std::unique_ptr<CodeGenOptions> CGO;
  /external/clang/include/clang/Frontend/
ASTConsumers.h 23 class CodeGenOptions;
CompilerInvocation.h 17 #include "clang/Frontend/CodeGenOptions.h"
109 CodeGenOptions CodeGenOpts;
177 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
178 const CodeGenOptions &getCodeGenOpts() const {
CodeGenOptions.h 1 //===--- 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 {
227 #include "clang/Frontend/CodeGenOptions.def"
229 CodeGenOptions();
    [all...]
PCHContainerOperations.h 28 class CodeGenOptions;
CompilerInstance.h 252 CodeGenOptions &getCodeGenOpts() {
255 const CodeGenOptions &getCodeGenOpts() const {
517 /// current CodeGenOptions.
531 /// current CodeGenOptions.
627 const CodeGenOptions *CodeGenOpts = nullptr);
  /frameworks/compile/slang/
slang_backend.h 43 class CodeGenOptions;
129 const clang::CodeGenOptions &mCodeGenOpts;
156 const clang::CodeGenOptions &CodeGenOpts,
slang.h 37 #include "clang/Frontend/CodeGenOptions.h"
55 class CodeGenOptions;
92 clang::CodeGenOptions CodeGenOpts;
208 const clang::CodeGenOptions &CodeGenOpts,
slang.cpp 232 Slang::createBackend(const RSCCOptions &Opts, const clang::CodeGenOptions &CodeGenOpts,
442 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
444 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
  /external/clang/lib/CodeGen/
BackendUtil.cpp 14 #include "clang/Frontend/CodeGenOptions.h"
53 const CodeGenOptions &CodeGenOpts;
118 EmitAssemblyHelper(DiagnosticsEngine &_Diags, const CodeGenOptions &CGOpts,
144 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts,
147 const CodeGenOptions &getCGOpts() const { return CGOpts; }
150 const CodeGenOptions &CGOpts;
185 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
200 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
218 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
248 const CodeGenOptions &CodeGenOpts)
    [all...]
CodeGenTBAA.h 29 class CodeGenOptions;
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
CodeGenABITypes.cpp 22 #include "clang/Frontend/CodeGenOptions.h"
31 : CGO(new CodeGenOptions), HSO(new HeaderSearchOptions),
ModuleBuilder.cpp 22 #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,
ObjectFilePCHContainerOperations.cpp 20 #include "clang/Frontend/CodeGenOptions.h"
49 CodeGenOptions CodeGenOpts;
144 CodeGenOpts.setDebugInfo(CodeGenOptions::FullDebugInfo);
CGDebugInfo.cpp 29 #include "clang/Frontend/CodeGenOptions.h"
405 DebugKind <= CodeGenOptions::DebugLineTablesOnly
408 0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly);
    [all...]
CodeGenModule.h 71 class CodeGenOptions;
264 const CodeGenOptions &CodeGenOpts;
490 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
600 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CodeGenTypes.h 40 class CodeGenOptions;
CodeGenTBAA.cpp 23 #include "clang/Frontend/CodeGenOptions.h"
33 const CodeGenOptions &CGO,
CodeGenModule.cpp 43 #include "clang/Frontend/CodeGenOptions.h"
83 const CodeGenOptions &CGO, llvm::Module &M,
140 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
585 CodeGenOptions::TLSModel M) {
587 case CodeGenOptions::GeneralDynamicTLSModel:
589 case CodeGenOptions::LocalDynamicTLSModel:
591 case CodeGenOptions::InitialExecTLSModel:
593 case CodeGenOptions::LocalExecTLSModel:
    [all...]
  /external/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 160 CodeGenOptions::NoDebugInfo));

Completed in 213 milliseconds

1 2