soot.jimple.FloatConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
package soot.jimple;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 1997 - 1999 Raja Vallee-Rai
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import soot.FloatType;
import soot.Type;
import soot.util.Switch;
/**
* Floating point constant with single precision.
*/
public class FloatConstant extends RealConstant {
private static final long serialVersionUID = 8670501761494749605L;
public static final FloatConstant ZERO = new FloatConstant(0);
public static final FloatConstant ONE = new FloatConstant(1);
public final float value;
private FloatConstant(float value) {
this.value = value;
}
public static FloatConstant v(float value) {
if (Float.compare(value, 0F) == 0) {
return ZERO;
}
if (Float.compare(value, 1F) == 0) {
return ONE;
}
return new FloatConstant(value);
}
@Override
public boolean equals(Object c) {
return c instanceof FloatConstant && Float.compare(((FloatConstant) c).value, value) == 0;
}
/**
* Returns a hash code for this FloatConstant object.
*/
@Override
public int hashCode() {
return Float.floatToIntBits(value);
}
// PTC 1999/06/28
@Override
public NumericConstant add(NumericConstant c) {
assertInstanceOf(c);
return FloatConstant.v(this.value + ((FloatConstant) c).value);
}
@Override
public NumericConstant subtract(NumericConstant c) {
assertInstanceOf(c);
return FloatConstant.v(this.value - ((FloatConstant) c).value);
}
@Override
public NumericConstant multiply(NumericConstant c) {
assertInstanceOf(c);
return FloatConstant.v(this.value * ((FloatConstant) c).value);
}
@Override
public NumericConstant divide(NumericConstant c) {
assertInstanceOf(c);
return FloatConstant.v(this.value / ((FloatConstant) c).value);
}
@Override
public NumericConstant remainder(NumericConstant c) {
assertInstanceOf(c);
return FloatConstant.v(this.value % ((FloatConstant) c).value);
}
@Override
public NumericConstant equalEqual(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) == 0 ? 1 : 0);
}
@Override
public NumericConstant notEqual(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) != 0 ? 1 : 0);
}
@Override
public boolean isLessThan(NumericConstant c) {
assertInstanceOf(c);
return Float.compare(this.value, ((FloatConstant) c).value) < 0;
}
@Override
public NumericConstant lessThan(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) < 0 ? 1 : 0);
}
@Override
public NumericConstant lessThanOrEqual(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) <= 0 ? 1 : 0);
}
@Override
public NumericConstant greaterThan(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) > 0 ? 1 : 0);
}
@Override
public NumericConstant greaterThanOrEqual(NumericConstant c) {
assertInstanceOf(c);
return IntConstant.v(Float.compare(this.value, ((FloatConstant) c).value) >= 0 ? 1 : 0);
}
@Override
public IntConstant cmpg(RealConstant constant) {
assertInstanceOf(constant);
final float cValue = ((FloatConstant) constant).value;
if (this.value < cValue) {
return IntConstant.v(-1);
} else if (this.value == cValue) {
return IntConstant.v(0);
} else {
return IntConstant.v(1);
}
}
@Override
public IntConstant cmpl(RealConstant constant) {
assertInstanceOf(constant);
final float cValue = ((FloatConstant) constant).value;
if (this.value > cValue) {
return IntConstant.v(1);
} else if (this.value == cValue) {
return IntConstant.v(0);
} else {
return IntConstant.v(-1);
}
}
@Override
public NumericConstant negate() {
return FloatConstant.v(-(this.value));
}
@Override
public String toString() {
String floatString = Float.toString(value);
switch (floatString) {
case "NaN":
case "Infinity":
case "-Infinity":
return "#" + floatString + "F";
default:
return floatString + "F";
}
}
@Override
public Type getType() {
return FloatType.v();
}
@Override
public void apply(Switch sw) {
((ConstantSwitch) sw).caseFloatConstant(this);
}
/**
* Checks if passed argument is instance of expected class.
*
* @param constant
* the instance to check
* @throws IllegalArgumentException
* when check fails
*/
private void assertInstanceOf(NumericConstant constant) {
if (!(constant instanceof FloatConstant)) {
throw new IllegalArgumentException("FloatConstant expected");
}
}
}