blob: ed32210fb4fabc35a9d477e796001dfefbad81d4 [file] [log] [blame]
/*
* This file is part of the Jikes RVM project (http://jikesrvm.org).
*
* This file is licensed to You under the Eclipse Public License (EPL);
* You may not use this file except in compliance with the License. You
* may obtain a copy of the License at
*
* http://www.opensource.org/licenses/eclipse-1.0.php
*
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership.
*/
package org.mmtk.utility.options;
import static org.mmtk.policy.immix.ImmixConstants.DEFAULT_SIMPLE_SPILL_THRESHOLD;
public class DefragSimpleSpillThreshold extends org.vmutil.options.FloatOption {
/**
* Create the option.
*/
public DefragSimpleSpillThreshold() {
super(Options.set, "Defrag Simple Spill Threshold",
"Blocks with this fraction spilled will be defrag sources",
DEFAULT_SIMPLE_SPILL_THRESHOLD);
}
/**
* Ensure the value is valid.
*/
protected void validate() {
failIf((this.value <= 0 || this.value > 1.0), "Ratio must be a float between 0 and 1");
}
}