// Copyright 2015 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #if !V8_ENABLE_WEBASSEMBLY #error This header should only be included if WebAssembly is enabled. #endif // !V8_ENABLE_WEBASSEMBLY #ifndef V8_WASM_WASM_MODULE_BUILDER_H_ #define V8_WASM_WASM_MODULE_BUILDER_H_ #include "src/base/memory.h" #include "src/base/platform/wrappers.h" #include "src/base/vector.h" #include "src/codegen/signature.h" #include "src/wasm/leb-helper.h" #include "src/wasm/local-decl-encoder.h" #include "src/wasm/value-type.h" #include "src/wasm/wasm-module.h" #include "src/wasm/wasm-opcodes.h" #include "src/wasm/wasm-result.h" #include "src/zone/zone-containers.h" namespace v8 { namespace internal { namespace wasm { class ZoneBuffer : public ZoneObject { public: // This struct is just a type tag for Zone::NewArray(size_t) call. struct Buffer {}; static constexpr size_t kInitialSize = 1024; explicit ZoneBuffer(Zone* zone, size_t initial = kInitialSize) : zone_(zone), buffer_(zone->NewArray(initial)) { pos_ = buffer_; end_ = buffer_ + initial; } void write_u8(uint8_t x) { EnsureSpace(1); *(pos_++) = x; } void write_u16(uint16_t x) { EnsureSpace(2); base::WriteLittleEndianValue(reinterpret_cast
(pos_), x); pos_ += 2; } void write_u32(uint32_t x) { EnsureSpace(4); base::WriteLittleEndianValue(reinterpret_cast
(pos_), x); pos_ += 4; } void write_u64(uint64_t x) { EnsureSpace(8); base::WriteLittleEndianValue(reinterpret_cast
(pos_), x); pos_ += 8; } void write_u32v(uint32_t val) { EnsureSpace(kMaxVarInt32Size); LEBHelper::write_u32v(&pos_, val); } void write_i32v(int32_t val) { EnsureSpace(kMaxVarInt32Size); LEBHelper::write_i32v(&pos_, val); } void write_u64v(uint64_t val) { EnsureSpace(kMaxVarInt64Size); LEBHelper::write_u64v(&pos_, val); } void write_i64v(int64_t val) { EnsureSpace(kMaxVarInt64Size); LEBHelper::write_i64v(&pos_, val); } void write_size(size_t val) { EnsureSpace(kMaxVarInt32Size); DCHECK_EQ(val, static_cast(val)); LEBHelper::write_u32v(&pos_, static_cast(val)); } void write_f32(float val) { write_u32(bit_cast(val)); } void write_f64(double val) { write_u64(bit_cast(val)); } void write(const byte* data, size_t size) { if (size == 0) return; EnsureSpace(size); memcpy(pos_, data, size); pos_ += size; } void write_string(base::Vector name) { write_size(name.length()); write(reinterpret_cast(name.begin()), name.length()); } size_t reserve_u32v() { size_t off = offset(); EnsureSpace(kMaxVarInt32Size); pos_ += kMaxVarInt32Size; return off; } // Patch a (padded) u32v at the given offset to be the given value. void patch_u32v(size_t offset, uint32_t val) { byte* ptr = buffer_ + offset; for (size_t pos = 0; pos != kPaddedVarInt32Size; ++pos) { uint32_t next = val >> 7; byte out = static_cast(val & 0x7f); if (pos != kPaddedVarInt32Size - 1) { *(ptr++) = 0x80 | out; val = next; } else { *(ptr++) = out; } } } void patch_u8(size_t offset, byte val) { DCHECK_GE(size(), offset); buffer_[offset] = val; } size_t offset() const { return static_cast(pos_ - buffer_); } size_t size() const { return static_cast(pos_ - buffer_); } const byte* data() const { return buffer_; } const byte* begin() const { return buffer_; } const byte* end() const { return pos_; } void EnsureSpace(size_t size) { if ((pos_ + size) > end_) { size_t new_size = size + (end_ - buffer_) * 2; byte* new_buffer = zone_->NewArray(new_size); memcpy(new_buffer, buffer_, (pos_ - buffer_)); pos_ = new_buffer + (pos_ - buffer_); buffer_ = new_buffer; end_ = new_buffer + new_size; } DCHECK(pos_ + size <= end_); } void Truncate(size_t size) { DCHECK_GE(offset(), size); pos_ = buffer_ + size; } byte** pos_ptr() { return &pos_; } private: Zone* zone_; byte* buffer_; byte* pos_; byte* end_; }; class WasmModuleBuilder; class V8_EXPORT_PRIVATE WasmFunctionBuilder : public ZoneObject { public: // Building methods. void SetSignature(FunctionSig* sig); uint32_t AddLocal(ValueType type); void EmitByte(byte b); void EmitI32V(int32_t val); void EmitU32V(uint32_t val); void EmitCode(const byte* code, uint32_t code_size); void Emit(WasmOpcode opcode); void EmitWithPrefix(WasmOpcode opcode); void EmitGetLocal(uint32_t index); void EmitSetLocal(uint32_t index); void EmitTeeLocal(uint32_t index); void EmitI32Const(int32_t val); void EmitI64Const(int64_t val); void EmitF32Const(float val); void EmitF64Const(double val); void EmitS128Const(Simd128 val); void EmitWithU8(WasmOpcode opcode, const byte immediate); void EmitWithU8U8(WasmOpcode opcode, const byte imm1, const byte imm2); void EmitWithI32V(WasmOpcode opcode, int32_t immediate); void EmitWithU32V(WasmOpcode opcode, uint32_t immediate); void EmitValueType(ValueType type); void EmitDirectCallIndex(uint32_t index); void SetName(base::Vector name); void AddAsmWasmOffset(size_t call_position, size_t to_number_position); void SetAsmFunctionStartPosition(size_t function_position); void SetCompilationHint(WasmCompilationHintStrategy strategy, WasmCompilationHintTier baseline, WasmCompilationHintTier top_tier); size_t GetPosition() const { return body_.size(); } void FixupByte(size_t position, byte value) { body_.patch_u8(position, value); } void DeleteCodeAfter(size_t position); void WriteSignature(ZoneBuffer* buffer) const; void WriteBody(ZoneBuffer* buffer) const; void WriteAsmWasmOffsetTable(ZoneBuffer* buffer) const; WasmModuleBuilder* builder() const { return builder_; } uint32_t func_index() { return func_index_; } inline FunctionSig* signature(); private: explicit WasmFunctionBuilder(WasmModuleBuilder* builder); friend class WasmModuleBuilder; friend Zone; struct DirectCallIndex { size_t offset; uint32_t direct_index; }; WasmModuleBuilder* builder_; LocalDeclEncoder locals_; uint32_t signature_index_; uint32_t func_index_; ZoneBuffer body_; base::Vector name_; ZoneVector i32_temps_; ZoneVector i64_temps_; ZoneVector f32_temps_; ZoneVector f64_temps_; ZoneVector direct_calls_; // Delta-encoded mapping from wasm bytes to asm.js source positions. ZoneBuffer asm_offsets_; uint32_t last_asm_byte_offset_ = 0; uint32_t last_asm_source_position_ = 0; uint32_t asm_func_start_source_position_ = 0; uint8_t hint_ = kNoCompilationHint; }; class V8_EXPORT_PRIVATE WasmModuleBuilder : public ZoneObject { public: explicit WasmModuleBuilder(Zone* zone); WasmModuleBuilder(const WasmModuleBuilder&) = delete; WasmModuleBuilder& operator=(const WasmModuleBuilder&) = delete; // Building methods. uint32_t AddImport(base::Vector name, FunctionSig* sig, base::Vector module = {}); WasmFunctionBuilder* AddFunction(FunctionSig* sig = nullptr); uint32_t AddGlobal(ValueType type, bool mutability = true, WasmInitExpr init = WasmInitExpr()); uint32_t AddGlobalImport(base::Vector name, ValueType type, bool mutability, base::Vector module = {}); void AddDataSegment(const byte* data, uint32_t size, uint32_t dest); uint32_t AddSignature(FunctionSig* sig); uint32_t AddException(FunctionSig* type); uint32_t AddStructType(StructType* type); uint32_t AddArrayType(ArrayType* type); // In the current implementation, it's supported to have uninitialized slots // at the beginning and/or end of the indirect function table, as long as // the filled slots form a contiguous block in the middle. uint32_t AllocateIndirectFunctions(uint32_t count); void SetIndirectFunction(uint32_t indirect, uint32_t direct); void SetMaxTableSize(uint32_t max); uint32_t AddTable(ValueType type, uint32_t min_size); uint32_t AddTable(ValueType type, uint32_t min_size, uint32_t max_size); uint32_t AddTable(ValueType type, uint32_t min_size, uint32_t max_size, WasmInitExpr init); void MarkStartFunction(WasmFunctionBuilder* builder); void AddExport(base::Vector name, ImportExportKindCode kind, uint32_t index); void AddExport(base::Vector name, WasmFunctionBuilder* builder) { AddExport(name, kExternalFunction, builder->func_index()); } uint32_t AddExportedGlobal(ValueType type, bool mutability, WasmInitExpr init, base::Vector name); void ExportImportedFunction(base::Vector name, int import_index); void SetMinMemorySize(uint32_t value); void SetMaxMemorySize(uint32_t value); void SetHasSharedMemory(); // Writing methods. void WriteTo(ZoneBuffer* buffer) const; void WriteAsmJsOffsetTable(ZoneBuffer* buffer) const; Zone* zone() { return zone_; } FunctionSig* GetSignature(uint32_t index) { DCHECK(types_[index].kind == Type::kFunctionSig); return types_[index].sig; } bool IsStructType(uint32_t index) { return types_[index].kind == Type::kStructType; } StructType* GetStructType(uint32_t index) { return types_[index].struct_type; } bool IsArrayType(uint32_t index) { return types_[index].kind == Type::kArrayType; } ArrayType* GetArrayType(uint32_t index) { return types_[index].array_type; } int NumExceptions() { return static_cast(exceptions_.size()); } int NumTypes() { return static_cast(types_.size()); } FunctionSig* GetExceptionType(int index) { return types_[exceptions_[index]].sig; } static const uint32_t kNullIndex; private: struct Type { enum Kind { kFunctionSig, kStructType, kArrayType }; explicit Type(FunctionSig* signature) : kind(kFunctionSig), sig(signature) {} explicit Type(StructType* struct_type) : kind(kStructType), struct_type(struct_type) {} explicit Type(ArrayType* array_type) : kind(kArrayType), array_type(array_type) {} Kind kind; union { FunctionSig* sig; StructType* struct_type; ArrayType* array_type; }; }; struct WasmFunctionImport { base::Vector module; base::Vector name; uint32_t sig_index; }; struct WasmGlobalImport { base::Vector module; base::Vector name; ValueTypeCode type_code; bool mutability; }; struct WasmExport { base::Vector name; ImportExportKindCode kind; int index; // Can be negative for re-exported imports. }; struct WasmGlobal { MOVE_ONLY_NO_DEFAULT_CONSTRUCTOR(WasmGlobal); ValueType type; bool mutability; WasmInitExpr init; }; struct WasmTable { ValueType type; uint32_t min_size; uint32_t max_size; bool has_maximum; WasmInitExpr init; }; struct WasmDataSegment { ZoneVector data; uint32_t dest; }; friend class WasmFunctionBuilder; Zone* zone_; ZoneVector types_; ZoneVector function_imports_; ZoneVector global_imports_; ZoneVector exports_; ZoneVector functions_; ZoneVector tables_; ZoneVector data_segments_; ZoneVector indirect_functions_; ZoneVector globals_; ZoneVector exceptions_; ZoneUnorderedMap signature_map_; int start_function_index_; uint32_t max_table_size_ = 0; uint32_t min_memory_size_; uint32_t max_memory_size_; bool has_max_memory_size_; bool has_shared_memory_; #if DEBUG // Once AddExportedImport is called, no more imports can be added. bool adding_imports_allowed_ = true; // Indirect functions must be allocated before adding extra tables. bool allocating_indirect_functions_allowed_ = true; #endif }; FunctionSig* WasmFunctionBuilder::signature() { return builder_->types_[signature_index_].sig; } } // namespace wasm } // namespace internal } // namespace v8 #endif // V8_WASM_WASM_MODULE_BUILDER_H_