358 lines
11 KiB
Java
Raw Normal View History

/*
2021-02-27 20:40:30 +01:00
* Copyright 2017 - 2021 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.ByteArrayOutputStream;
import java.io.Closeable;
import java.io.IOException;
2019-11-03 19:00:49 +01:00
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
2017-04-09 18:46:27 +02:00
import javax.annotation.Nullable;
2021-02-27 20:40:30 +01:00
import de.inetsoftware.jwebassembly.module.TypeManager.BlockType;
import de.inetsoftware.jwebassembly.module.TypeManager.StructType;
import de.inetsoftware.jwebassembly.wasm.AnyType;
2018-12-03 21:09:22 +01:00
import de.inetsoftware.jwebassembly.wasm.ArrayOperator;
2020-08-09 19:19:58 +02:00
import de.inetsoftware.jwebassembly.wasm.ArrayType;
import de.inetsoftware.jwebassembly.wasm.FunctionType;
2019-11-18 20:08:18 +01:00
import de.inetsoftware.jwebassembly.wasm.MemoryOperator;
import de.inetsoftware.jwebassembly.wasm.NamedStorageType;
2018-12-03 21:09:22 +01:00
import de.inetsoftware.jwebassembly.wasm.NumericOperator;
2018-12-05 22:14:26 +01:00
import de.inetsoftware.jwebassembly.wasm.StructOperator;
2018-12-03 21:09:22 +01:00
import de.inetsoftware.jwebassembly.wasm.ValueType;
import de.inetsoftware.jwebassembly.wasm.VariableOperator;
2018-12-03 21:09:22 +01:00
import de.inetsoftware.jwebassembly.wasm.WasmBlockOperator;
/**
* Module Writer base class.
*
* @author Volker Berlin
*/
public abstract class ModuleWriter implements Closeable {
/**
* The compiler options.
*/
protected final WasmOptions options;
/**
* The stream of the data section for constant data like strings and vtables
*/
protected final ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
/**
* Create a instance with its options.
*
* @param options
* the compiler options
*/
protected ModuleWriter( WasmOptions options ) {
this.options = options;
}
2018-05-30 18:57:36 +02:00
/**
* Finish the prepare after all classes/methods are prepare. This must be call before we can start with write the
* first method.
*/
2019-06-04 18:09:34 +02:00
protected abstract void prepareFinish();
2018-05-30 18:57:36 +02:00
/**
* Write a type/struct.
*
* @param type
* the type to declare/write
* @return type ID
* @throws IOException
* if any I/O error occur
*/
2021-02-27 20:40:30 +01:00
protected abstract int writeStructType( @Nonnull StructType type ) throws IOException;
/**
* Write a block type.
*
* @param type
* the type
* @return type ID
* @throws IOException
* if any I/O error occur
*/
protected abstract int writeBlockType( @Nonnull BlockType type ) throws IOException;
/**
* Mark to write exceptions
*
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeException() throws IOException;
2018-05-30 18:57:36 +02:00
/**
2018-05-31 21:35:01 +02:00
* Prepare a imported single function in the prepare phase.
2018-05-30 18:57:36 +02:00
*
* @param name
* the function name
* @param importModule
* the import module name if it is a import function
* @param importName
* the import name if it is a import function
* @throws IOException
* if any I/O error occur
*/
2018-05-31 21:35:01 +02:00
protected abstract void prepareImport( FunctionName name, String importModule, String importName ) throws IOException;
/**
* Write an export directive
2018-05-21 14:29:32 +02:00
* @param name
* the function name
* @param exportName
* the export name, if null then the same like the method name
*
* @throws IOException
* if any I/O error occur
*/
2018-05-21 14:29:32 +02:00
protected abstract void writeExport( FunctionName name, String exportName ) throws IOException;
/**
* Write the method header.
*
* @param name
2018-05-21 14:29:32 +02:00
* the function name
* @param funcType
* the type of function
*
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeMethodParamStart( @Nonnull FunctionName name, @Nonnull FunctionType funcType ) throws IOException;
/**
* Write a method parameter.
*
* @param kind
* "param", "result" or "local"
* @param valueType
* the data type of the parameter
* @param name
* optional name of the parameter
* @throws IOException
* if any I/O error occur
*/
2019-01-14 20:09:00 +01:00
protected abstract void writeMethodParam( String kind, AnyType valueType, @Nullable String name ) throws IOException;
/**
* Finish the function parameter.
2018-05-12 10:18:33 +02:00
*
* @param name
* the function name
*
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeMethodParamFinish( @Nonnull FunctionName name ) throws IOException;
/**
* Start the writing of method/function code.
*
* @param name
* the function name
* @param sourceFile
* the name of the source file
2018-05-12 10:18:33 +02:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeMethodStart( FunctionName name, String sourceFile ) throws IOException;
/**
* Mark the current output position with Java code position for crating of a source map.
*
* @param javaSourceLine
* the line number in the Java code
*/
protected abstract void markSourceLine( int javaSourceLine );
/**
* Complete the method
*
2017-04-09 18:18:53 +02:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeMethodFinish( ) throws IOException;
2017-04-09 12:44:01 +02:00
/**
* Write a constant number value
2017-04-09 12:44:01 +02:00
*
* @param value
* the value
* @param valueType
* the data type of the number
2017-04-09 12:44:01 +02:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeConst( Number value, ValueType valueType ) throws IOException;
2017-04-09 12:44:01 +02:00
/**
* Write a local variable operation.
*
* @param op
* the operation
* @param idx
* the index of the parameter variable
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeLocal( VariableOperator op, int idx ) throws IOException;
/**
2019-11-03 19:00:49 +01:00
* Write a global variable operation
* @param load
* true: if load or GET
* @param name
* the variable name
2019-04-27 21:14:55 +02:00
* @param type
* the type of the variable
*
* @throws IOException
* if any I/O error occur
*/
2019-04-27 21:14:55 +02:00
protected abstract void writeGlobalAccess( boolean load, FunctionName name, AnyType type ) throws IOException;
2019-11-03 19:00:49 +01:00
/**
* Write a table operation.
* @param load
* true: if "get" else "set"
* @param idx
* the index of the table
*
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeTable( boolean load, @Nonnegative int idx ) throws IOException;
2019-04-27 21:14:55 +02:00
/**
* Write the default/initial value for a type.
*
* @param type
* the type
* @throws IOException
* if an I/O error occurs.
*/
protected abstract void writeDefaultValue( AnyType type ) throws IOException;
/**
* Write a add operator
*
* @param numOp
* the numeric operation
2017-04-09 18:46:27 +02:00
* @param valueType
* the type of the parameters
*
* @throws IOException
* if any I/O error occur
*/
2017-04-11 21:12:27 +02:00
protected abstract void writeNumericOperator( NumericOperator numOp, @Nullable ValueType valueType ) throws IOException;
/**
* Cast a value from one type to another
*
* @param cast
* the operator
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeCast( ValueTypeConvertion cast ) throws IOException;
/**
* Write a call to a function.
*
* @param name
2018-11-24 16:14:52 +01:00
* the function name
* @param comment
* optional comment for the text format
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeFunctionCall( FunctionName name, String comment ) throws IOException;
2018-03-25 12:57:04 +02:00
2019-05-05 17:25:43 +02:00
/**
2019-05-18 21:37:19 +02:00
* Write a function call to an instance function. On the stack there must be the object.
2019-05-05 17:25:43 +02:00
*
* @param name
* the function name
* @param type
* the base type that should be called
2019-05-05 17:25:43 +02:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeVirtualFunctionCall( FunctionName name, AnyType type ) throws IOException;
2019-05-05 17:25:43 +02:00
2018-03-25 12:57:04 +02:00
/**
* Write a block/branch code
*
* @param op
* the operation
* @param data
* extra data depending of the operator
2018-03-25 12:57:04 +02:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeBlockCode( @Nonnull WasmBlockOperator op, @Nullable Object data ) throws IOException;
2018-12-02 19:54:59 +01:00
/**
* Write an array operation.
*
* @param op
* the operation
* @param type
2020-08-09 19:19:58 +02:00
* the type of the array
2018-12-02 19:54:59 +01:00
* @throws IOException
* if any I/O error occur
*/
2020-08-09 19:19:58 +02:00
protected abstract void writeArrayOperator( @Nonnull ArrayOperator op, ArrayType type ) throws IOException;
2018-12-05 22:14:26 +01:00
/**
* Write a struct operation
*
* @param op
* the operation
* @param type
* the type of the struct
* @param fieldName
* the fieldName if the operation is per field
* @param idx
* the index of the field if the operation is per field
2018-12-05 22:14:26 +01:00
* @throws IOException
* if any I/O error occur
*/
protected abstract void writeStructOperator( StructOperator op, AnyType type, NamedStorageType fieldName, int idx ) throws IOException;
/**
2019-11-18 20:08:18 +01:00
* Write a memory operation for the linear memory.
*
2019-11-18 20:08:18 +01:00
* @param memOp
* the memory operation
* @param valueType
* the value type of the stack value
* @param offset
* the offset into the memory. Should be ideally a factor of 4.
2019-11-18 20:08:18 +01:00
* @param alignment
* the alignment of the value on the linear memory (0: 8 Bit; 1: 16 Bit; 2: 32 Bit)
* @throws IOException
* if any I/O error occur
*/
2019-11-18 20:08:18 +01:00
protected abstract void writeMemoryOperator( MemoryOperator memOp, ValueType valueType, int offset, int alignment ) throws IOException;
}