com.codemesh.terp.ant.compiler.cpp
Class OptimizeOption
java.lang.Object
com.codemesh.terp.ant.compiler.AbstractCompilerOption<CppCompiler>
com.codemesh.terp.ant.compiler.cpp.OptimizeOption
- All Implemented Interfaces:
- CompilerOption<CppCompiler>
public class OptimizeOption
- extends AbstractCompilerOption<CppCompiler>
An option for the specification of optimization levels.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
level
protected java.lang.String level
bForSpace
protected boolean bForSpace
bForSpeed
protected boolean bForSpeed
OptimizeOption
public OptimizeOption()
setLevel
public void setLevel(java.lang.String level)
setForSpace
public void setForSpace(boolean bForSpace)
setForSpeed
public void setForSpeed(boolean bForSpeed)
addCommands
public void addCommands(java.util.List<java.lang.String> commandList,
CppCompiler compiler,
CompilerPhase phase)
- Description copied from interface:
CompilerOption
- Adds the compiler switches repreesnted by this option to the list of switches.
Some compiler options may result in more than one switch being added to a compiler
invocation. Other compiler options may result in different options being added
in different phases (compilation vs. linking) of the build.
This method is called by the compiler repeatedly with different values for the
compiler phase to account for these possibilities.
- Parameters:
commandList - the list to which the compiler switches represented
by this option (if any) are added.compiler - the compiler for which we're doing this.phase - the compiler phase in wihch we're doing this.
appliesTo
public boolean appliesTo(CppCompiler compiler,
CompilerPhase phase)
- Description copied from interface:
CompilerOption
- Returns true if this compiler option applies to the given compiler and compiler phase.
Not every option has switches to contribute for every compiler and every compilation
phase. This method allows a quick, inexpensive check to filter out potentially more
expensive calls later on.
- Parameters:
compiler - the compiler for which we're asking.phase - the compiler phase we're executing.
- Returns:
Copyright © 2008-2012 by Codemesh, Inc. All Rights Reserved.