package org.jruby.ir.operands;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.persistence.IRReaderDecoder;
import org.jruby.ir.persistence.IRWriterEncoder;
import org.jruby.runtime.ThreadContext;
import java.math.BigInteger;
public class Fixnum extends ImmutableLiteral {
final public long value;
public Fixnum(long val) {
super();
value = val;
}
@Override
public OperandType getOperandType() {
return OperandType.FIXNUM;
}
public Fixnum(BigInteger val) {
this(val.longValue());
}
@Override
public Object createCacheObject(ThreadContext context) {
return context.runtime.newFixnum(value);
}
@Override
public int hashCode() {
return 47 * 7 + (int) (this.value ^ (this.value >>> 32));
}
@Override
public boolean equals(Object other) {
return other instanceof Fixnum && value == ((Fixnum) other).value;
}
@Override
public void visit(IRVisitor visitor) {
visitor.Fixnum(this);
}
public long getValue() {
return value;
}
@Override
public void encode(IRWriterEncoder e) {
super.encode(e);
e.encode(value);
}
public static Fixnum decode(IRReaderDecoder d) {
return d.getCurrentScope().getManager().newFixnum(d.decodeLong());
}
@Override
public String toString() {
return "Fixnum:" + value;
}
@Override
public boolean isTruthyImmediate() {
return true;
}
}