JWebAssembly/src/de/inetsoftware/jwebassembly/module/WasmNumericInstruction.java

102 lines
2.5 KiB
Java
Raw Normal View History

/*
Copyright 2018 - 2019 Volker Berlin (i-net software)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package de.inetsoftware.jwebassembly.module;
import java.io.IOException;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
2018-12-16 18:22:44 +01:00
import de.inetsoftware.jwebassembly.module.WasmInstruction.Type;
import de.inetsoftware.jwebassembly.wasm.AnyType;
2018-12-03 21:09:22 +01:00
import de.inetsoftware.jwebassembly.wasm.NumericOperator;
import de.inetsoftware.jwebassembly.wasm.ValueType;
/**
* WasmInstruction for numeric operation.
*
* @author Volker Berlin
*
*/
class WasmNumericInstruction extends WasmInstruction {
NumericOperator numOp;
private final ValueType valueType;
/**
* Create an instance of numeric operation.
*
* @param numOp
* the numeric operation
* @param valueType
* the type of the parameters
* @param javaCodePos
* the code position/offset in the Java method
*/
WasmNumericInstruction( @Nullable NumericOperator numOp, @Nullable ValueType valueType, int javaCodePos ) {
super( javaCodePos );
this.numOp = numOp;
this.valueType = valueType;
}
2018-12-16 18:22:44 +01:00
/**
* {@inheritDoc}
*/
@Override
Type getType() {
return Type.Numeric;
}
/**
* {@inheritDoc}
*/
public void writeTo( @Nonnull ModuleWriter writer ) throws IOException {
writer.writeNumericOperator( numOp, valueType );
}
2018-08-06 12:52:44 +02:00
/**
* {@inheritDoc}
*/
AnyType getPushValueType() {
2018-08-10 18:25:38 +02:00
switch( numOp ) {
case eq:
case ne:
case gt:
case lt:
case le:
case ge:
2018-08-10 18:25:38 +02:00
return null;
default:
return valueType;
}
}
/**
* {@inheritDoc}
*/
@Override
int getPopCount() {
switch( numOp ) {
case neg:
return 1;
default:
return 2;
}
2018-08-06 12:52:44 +02:00
}
}