/* * Copyright 2018 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.util.ArrayList; import java.util.List; import javax.annotation.Nonnegative; import javax.annotation.Nonnull; import javax.annotation.Nullable; import de.inetsoftware.classparser.ConstantRef; /** * Base class for Code Building. * * @author Volker Berlin */ public abstract class WasmCodeBuilder { private final LocaleVariableManager localVariables = new LocaleVariableManager(); private final List instructions = new ArrayList<>(); /** * Get the list of instructions * * @return the list */ List getInstructions() { return instructions; } /** * Get the data types of the local variables. The value is only valid until the next call. * * @param paramCount * the count of method parameter which should be exclude * @return the reused list with fresh values */ List getLocalTypes( int paramCount ) { return localVariables.getLocalTypes( paramCount ); } /** * Reset the code builder. */ protected void reset() { instructions.clear(); localVariables.reset(); } /** * Calculate the index of the variables */ protected void calculateVariables() { localVariables.calculate(); } /** * Create a WasmLoadStoreInstruction. * * @param valueType * the value type * @param load * true: if load * @param javaIdx * the memory/slot index of the variable in Java byte code * @param javaCodePos * the code position/offset in the Java method */ @Nonnull protected void addLoadStoreInstruction( ValueType valueType, boolean load, @Nonnegative int javaIdx, int javaCodePos ) { localVariables.use( valueType, javaIdx ); instructions.add( new WasmLoadStoreInstruction( load, javaIdx, localVariables, javaCodePos ) ); } /** * Create a WasmLoadStoreInstruction get_local/set_local. * * @param load * true: if load * @param wasmIdx * the index of the variable * @param javaCodePos * the code position/offset in the Java method */ @Nonnull protected void addLocalInstruction( boolean load, @Nonnegative int wasmIdx, int javaCodePos ) { instructions.add( new WasmLocalInstruction( load, wasmIdx, javaCodePos ) ); } /** * Add a global instruction * * @param load * true: if load * @param ref * reference to a static field * @param javaCodePos * the code position/offset in the Java method */ protected void addGlobalInstruction( boolean load, ConstantRef ref, int javaCodePos ) { instructions.add( new WasmGlobalInstruction( load, ref, javaCodePos ) ); } /** * Add a constant instruction. * * @param value * the value * @param valueType * the value type * @param javaCodePos * the code position/offset in the Java method */ protected void addConstInstruction( Number value, ValueType valueType, int javaCodePos ) { instructions.add( new WasmConstInstruction( value, valueType, javaCodePos ) ); } /** * Add a constant instruction with unknown value type. * * @param value * the value * @param javaCodePos * the code position/offset in the Java method */ protected void addConstInstruction( Number value, int javaCodePos ) { instructions.add( new WasmConstInstruction( value, javaCodePos ) ); } /** * Add a numeric operation instruction * * @param numOp * the operation * @param valueType * the value type * @param javaCodePos * the code position/offset in the Java method */ protected void addNumericInstruction( @Nullable NumericOperator numOp, @Nullable ValueType valueType, int javaCodePos ) { instructions.add( new WasmNumericInstruction( numOp, valueType, javaCodePos ) ); } /** * Add a value convert/cast instruction. * * @param conversion * the conversion * @param javaCodePos * the code position/offset in the Java method */ protected void addConvertInstruction( ValueTypeConvertion conversion, int javaCodePos ) { instructions.add( new WasmConvertInstruction( conversion, javaCodePos ) ); } /** * Add a static function call. * * @param method * reference to a static method * @param javaCodePos * the code position/offset in the Java method */ protected void addCallInstruction( ConstantRef method, int javaCodePos ) { instructions.add( new WasmCallInstruction( method, javaCodePos ) ); } /** * Add a block operation. * * @param op * the operation * @param data * extra data for some operations * @param javaCodePos * the code position/offset in the Java method */ protected void addBlockInstruction( WasmBlockOperator op, @Nullable Object data, int javaCodePos ) { instructions.add( new WasmBlockInstruction( op, data, javaCodePos ) ); } /** * Add a no operation to the instruction list as marker on the code position. This instruction will not be write to * the output. * * @param javaCodePos * the code position/offset in the Java method */ protected void addNopInstruction( int javaCodePos ) { instructions.add( new WasmNopInstruction( javaCodePos ) ); } }