HomeSort by relevance Sort by last modified time
    Searched refs:TargetOpts (Results 1 - 23 of 23) sorted by null

  /external/clang/include/clang/Frontend/
CompilerInvocation.h 60 std::shared_ptr<TargetOptions> TargetOpts;
79 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
81 return *TargetOpts.get();
ASTUnit.h 96 std::shared_ptr<TargetOptions> TargetOpts;
    [all...]
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 38 TargetOpts(new TargetOptions)
40 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
41 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
50 std::shared_ptr<TargetOptions> TargetOpts;
PPCallbacksTest.cpp 117 SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions()) {
118 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
119 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
129 std::shared_ptr<TargetOptions> TargetOpts;
LexerTest.cpp 56 TargetOpts(new TargetOptions)
58 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
59 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
110 std::shared_ptr<TargetOptions> TargetOpts;
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 50 const TargetOptions TargetOpts;
137 TargetOpts(CI.getTargetOpts()), LangOpts(CI.getLangOpts()), OS(OS),
246 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
253 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CodeGenAction.cpp 49 const TargetOptions &TargetOpts;
71 const TargetOptions &TargetOpts, const LangOptions &LangOpts,
77 TargetOpts(TargetOpts), LangOpts(LangOpts), AsmOutStream(OS),
191 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
776 const TargetOptions &TargetOpts = CI.getTargetOpts();
777 if (TheModule->getTargetTriple() != TargetOpts.Triple) {
780 << TargetOpts.Triple;
781 TheModule->setTargetTriple(TargetOpts.Triple);
818 EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts,
    [all...]
BackendUtil.cpp 54 const clang::TargetOptions &TargetOpts;
122 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
479 llvm::join(TargetOpts.Features.begin(), TargetOpts.Features.end(), ",");
502 if (!TargetOpts.Reciprocals.empty())
503 Options.Reciprocals = TargetRecip(TargetOpts.Reciprocals);
578 Options.MCOptions.ABIName = TargetOpts.ABI;
580 TargetMachine *TM = TheTarget->createTargetMachine(Triple, TargetOpts.CPU,
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 39 TargetOpts(new TargetOptions) {
40 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
41 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
50 std::shared_ptr<TargetOptions> TargetOpts;
  /frameworks/compile/slang/
slang_backend.h 157 const clang::TargetOptions &TargetOpts,
slang_backend.cpp 212 const clang::TargetOptions &TargetOpts, PragmaList *Pragmas,
216 : ASTConsumer(), mTargetOpts(TargetOpts), mpModule(nullptr), mpOS(OS),
  /external/clang/lib/Frontend/
FrontendActions.cpp 496 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
499 Out.indent(4) << " Triple: " << TargetOpts.Triple << "\n";
500 Out.indent(4) << " CPU: " << TargetOpts.CPU << "\n";
501 Out.indent(4) << " ABI: " << TargetOpts.ABI << "\n";
503 if (!TargetOpts.FeaturesAsWritten.empty()) {
505 for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size();
507 Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n";
ASTUnit.cpp 494 std::shared_ptr<TargetOptions> &TargetOpts;
501 std::shared_ptr<TargetOptions> &TargetOpts,
503 : PP(PP), Context(Context), LangOpt(LangOpt), TargetOpts(TargetOpts),
518 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
524 this->TargetOpts = std::make_shared<TargetOptions>(TargetOpts);
526 TargetInfo::CreateTargetInfo(PP.getDiagnostics(), this->TargetOpts);
718 *AST->PP, Context, AST->ASTFileLangOpts, AST->TargetOpts, AST->Target,
    [all...]
ChainedIncludesSource.cpp 155 Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
CompilerInvocation.cpp 53 : LangOpts(new LangOptions()), TargetOpts(new TargetOptions()),
61 TargetOpts(new TargetOptions(X.getTargetOpts())),
365 const TargetOptions &TargetOpts) {
368 llvm::Triple Triple = llvm::Triple(TargetOpts.Triple);
    [all...]
CompilerInstance.cpp 800 getInvocation().TargetOpts));
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 52 std::shared_ptr<TargetOptions> TargetOpts;
112 assert(TargetOpts && "Missing target options");
113 return *TargetOpts;
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 131 virtual bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
235 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
272 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 27 TargetInfo::TargetInfo(const llvm::Triple &T) : TargetOpts(), Triple(T) {
Targets.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 95 const TargetOptions &TargetOpts, bool Complain,
97 return First->ReadTargetOptions(TargetOpts, Complain,
99 Second->ReadTargetOptions(TargetOpts, Complain,
253 static bool checkTargetOptions(const TargetOptions &TargetOpts,
258 if (TargetOpts.Field != ExistingTargetOpts.Field) { \
261 << Name << TargetOpts.Field << ExistingTargetOpts.Field; \
281 SmallVector<StringRef, 4> ReadFeatures(TargetOpts.FeaturesAsWritten.begin(),
282 TargetOpts.FeaturesAsWritten.end());
323 bool PCHValidator::ReadTargetOptions(const TargetOptions &TargetOpts,
327 return checkTargetOptions(TargetOpts, ExistingTargetOpts
    [all...]
ASTWriter.cpp     [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 114 static llvm::TargetOptions TargetOpts;

Completed in 660 milliseconds