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

1 2

  /external/clang/include/clang/CodeGen/
BackendUtil.h 21 class CodeGenOptions;
34 void EmitBackendOutput(DiagnosticsEngine &Diags, const CodeGenOptions &CGOpts,
ModuleBuilder.h 28 class CodeGenOptions;
43 const CodeGenOptions &CGO,
  /external/clang/include/clang/Frontend/
ASTConsumers.h 22 class CodeGenOptions;
CompilerInvocation.h 17 #include "clang/Frontend/CodeGenOptions.h"
107 CodeGenOptions CodeGenOpts;
175 CodeGenOptions &getCodeGenOpts() { return CodeGenOpts; }
176 const CodeGenOptions &getCodeGenOpts() const {
CodeGenOptions.h 1 //===--- CodeGenOptions.h ---------------------------------------*- C++ -*-===//
10 // This file defines the CodeGenOptions interface.
22 /// \brief Bitfields of CodeGenOptions, split out from CodeGenOptions to ensure
28 #include "clang/Frontend/CodeGenOptions.def"
33 #include "clang/Frontend/CodeGenOptions.def"
36 /// CodeGenOptions - Track various options which control how the code
38 class CodeGenOptions : public CodeGenOptionsBase {
137 #include "clang/Frontend/CodeGenOptions.def"
139 CodeGenOptions() {
    [all...]
CompilerInstance.h 213 CodeGenOptions &getCodeGenOpts() {
216 const CodeGenOptions &getCodeGenOpts() const {
523 const CodeGenOptions *CodeGenOpts = 0);
  /frameworks/compile/slang/
slang_backend.h 40 class CodeGenOptions;
82 const clang::CodeGenOptions &mCodeGenOpts;
105 const clang::CodeGenOptions &CodeGenOpts,
slang.h 47 class CodeGenOptions;
62 static clang::CodeGenOptions CodeGenOpts;
163 createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_rs_backend.h 86 const clang::CodeGenOptions &CodeGenOpts,
slang.cpp 36 #include "clang/Frontend/CodeGenOptions.h"
112 clang::CodeGenOptions Slang::CodeGenOpts;
259 Slang::createBackend(const clang::CodeGenOptions& CodeGenOpts,
468 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo);
470 CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo);
slang_rs.h 84 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
slang_backend.cpp 34 #include "clang/Frontend/CodeGenOptions.h"
205 const clang::CodeGenOptions &CodeGenOpts,
slang_rs.cpp 232 *SlangRS::createBackend(const clang::CodeGenOptions& CodeGenOpts,
  /external/clang/lib/CodeGen/
BackendUtil.cpp 14 #include "clang/Frontend/CodeGenOptions.h"
46 const CodeGenOptions &CodeGenOpts;
109 const CodeGenOptions &CGOpts,
130 PassManagerBuilderWrapper(const CodeGenOptions &CGOpts,
133 const CodeGenOptions &getCGOpts() const { return CGOpts; }
136 const CodeGenOptions &CGOpts;
166 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
184 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
205 const CodeGenOptions &CGOpts = BuilderWrapper.getCGOpts();
211 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining()
    [all...]
CodeGenTBAA.h 29 class CodeGenOptions;
50 const CodeGenOptions &CodeGenOpts;
96 const CodeGenOptions &CGO,
CodeGenTypes.h 39 class CodeGenOptions;
69 const CodeGenOptions &CodeGenOpts;
119 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
ModuleBuilder.cpp 22 #include "clang/Frontend/CodeGenOptions.h"
35 const CodeGenOptions CodeGenOpts; // Intentionally copied in.
41 const CodeGenOptions &CGO, llvm::LLVMContext& C)
146 const CodeGenOptions &CGO,
CGDebugInfo.cpp 29 #include "clang/Frontend/CodeGenOptions.h"
658 if (DebugKind > CodeGenOptions::LimitedDebugInfo)
    [all...]
CodeGenAction.cpp 40 const CodeGenOptions &CodeGenOpts;
54 const CodeGenOptions &compopts,
CodeGenModule.h 69 class CodeGenOptions;
234 const CodeGenOptions &CodeGenOpts;
421 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
507 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
    [all...]
CodeGenTBAA.cpp 23 #include "clang/Frontend/CodeGenOptions.h"
33 const CodeGenOptions &CGO,
CodeGenModule.cpp 38 #include "clang/Frontend/CodeGenOptions.h"
71 CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO,
124 if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo ||
319 CodeGenOptions::TLSModel M) {
321 case CodeGenOptions::GeneralDynamicTLSModel:
323 case CodeGenOptions::LocalDynamicTLSModel:
325 case CodeGenOptions::InitialExecTLSModel:
327 case CodeGenOptions::LocalExecTLSModel:
    [all...]
CGDebugInfo.h 21 #include "clang/Frontend/CodeGenOptions.h"
53 const CodeGenOptions::DebugInfoKind DebugKind;
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 296 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
312 (Opts.OptimizationLevel > 1) ? CodeGenOptions::NormalInlining
313 : CodeGenOptions::OnlyAlwaysInlining);
317 CodeGenOptions::OnlyAlwaysInlining : Opts.getInlining());
320 Opts.setDebugInfo(CodeGenOptions::DebugLineTablesOnly);
324 Opts.setDebugInfo(CodeGenOptions::LimitedDebugInfo);
326 Opts.setDebugInfo(CodeGenOptions::FullDebugInfo);
336 else if (Opts.getDebugInfo() != CodeGenOptions::NoDebugInfo)
455 .Case("legacy", CodeGenOptions::Legacy)
456 .Case("non-legacy", CodeGenOptions::NonLegacy
    [all...]
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 161 CodeGenOptions::NoDebugInfo));

Completed in 618 milliseconds

1 2