Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Side by Side Diff: src/IceClFlags.cpp

Issue 1522433004: eliminate code related to --no-ir-gen (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: fix makefiles to eliminate ALLOW_DISABLE_IR_GEN Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===// 1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 ::DisableInternal); 450 ::DisableInternal);
451 OutFlags.setAllowIacaMarks(::AllowIacaMarks); 451 OutFlags.setAllowIacaMarks(::AllowIacaMarks);
452 OutFlags.setAllowUninitializedGlobals(::AllowUninitializedGlobals); 452 OutFlags.setAllowUninitializedGlobals(::AllowUninitializedGlobals);
453 OutFlags.setDataSections(::DataSections); 453 OutFlags.setDataSections(::DataSections);
454 OutFlags.setDecorateAsm(::DecorateAsm); 454 OutFlags.setDecorateAsm(::DecorateAsm);
455 OutFlags.setDefaultFunctionPrefix(::DefaultFunctionPrefix); 455 OutFlags.setDefaultFunctionPrefix(::DefaultFunctionPrefix);
456 OutFlags.setDefaultGlobalPrefix(::DefaultGlobalPrefix); 456 OutFlags.setDefaultGlobalPrefix(::DefaultGlobalPrefix);
457 OutFlags.setDisableHybridAssembly(::DisableHybridAssembly || 457 OutFlags.setDisableHybridAssembly(::DisableHybridAssembly ||
458 (::OutFileType != Ice::FT_Iasm)); 458 (::OutFileType != Ice::FT_Iasm));
459 OutFlags.setDisableInternal(::DisableInternal); 459 OutFlags.setDisableInternal(::DisableInternal);
460 OutFlags.setDisableIRGeneration(::DisableIRGeneration);
461 OutFlags.setDisableTranslation(::DisableTranslation); 460 OutFlags.setDisableTranslation(::DisableTranslation);
462 OutFlags.setDumpStats(::DumpStats); 461 OutFlags.setDumpStats(::DumpStats);
463 OutFlags.setEnableBlockProfile(::EnableBlockProfile); 462 OutFlags.setEnableBlockProfile(::EnableBlockProfile);
464 OutFlags.setForceMemIntrinOpt(::ForceMemIntrinOpt); 463 OutFlags.setForceMemIntrinOpt(::ForceMemIntrinOpt);
465 OutFlags.setFunctionSections(::FunctionSections); 464 OutFlags.setFunctionSections(::FunctionSections);
466 OutFlags.setNumTranslationThreads(::NumThreads); 465 OutFlags.setNumTranslationThreads(::NumThreads);
467 OutFlags.setOptLevel(::OLevel); 466 OutFlags.setOptLevel(::OLevel);
468 OutFlags.setMockBoundsCheck(::MockBoundsCheck); 467 OutFlags.setMockBoundsCheck(::MockBoundsCheck);
469 OutFlags.setPhiEdgeSplit(::EnablePhiEdgeSplit); 468 OutFlags.setPhiEdgeSplit(::EnablePhiEdgeSplit);
470 OutFlags.setRandomSeed(::RandomSeed); 469 OutFlags.setRandomSeed(::RandomSeed);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); 503 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts);
505 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); 504 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors);
506 OutFlagsExtra.setAppName(AppName); 505 OutFlagsExtra.setAppName(AppName);
507 OutFlagsExtra.setInputFileFormat(InputFileFormat); 506 OutFlagsExtra.setInputFileFormat(InputFileFormat);
508 OutFlagsExtra.setIRFilename(IRFilename); 507 OutFlagsExtra.setIRFilename(IRFilename);
509 OutFlagsExtra.setLogFilename(LogFilename); 508 OutFlagsExtra.setLogFilename(LogFilename);
510 OutFlagsExtra.setOutputFilename(OutputFilename); 509 OutFlagsExtra.setOutputFilename(OutputFilename);
511 } 510 }
512 511
513 } // end of namespace Ice 512 } // end of namespace Ice
OLDNEW
« Makefile ('K') | « src/IceClFlags.h ('k') | src/IceCompiler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698