OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |