// 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. #include "src/api-natives.h" #include "src/api.h" #include "src/asmjs/asm-js.h" #include "src/asmjs/asm-typer.h" #include "src/asmjs/asm-wasm-builder.h" #include "src/assert-scope.h" #include "src/ast/ast.h" #include "src/execution.h" #include "src/factory.h" #include "src/handles.h" #include "src/isolate.h" #include "src/objects.h" #include "src/parsing/parse-info.h" #include "src/wasm/module-decoder.h" #include "src/wasm/wasm-js.h" #include "src/wasm/wasm-limits.h" #include "src/wasm/wasm-module.h" #include "src/wasm/wasm-objects.h" #include "src/wasm/wasm-result.h" typedef uint8_t byte; using v8::internal::wasm::ErrorThrower; namespace v8 { namespace { i::Handle<i::String> v8_str(i::Isolate* isolate, const char* str) { return isolate->factory()->NewStringFromAsciiChecked(str); } Local<String> v8_str(Isolate* isolate, const char* str) { return Utils::ToLocal(v8_str(reinterpret_cast<i::Isolate*>(isolate), str)); } struct RawBuffer { const byte* start; const byte* end; size_t size() { return static_cast<size_t>(end - start); } }; RawBuffer GetRawBufferSource( v8::Local<v8::Value> source, ErrorThrower* thrower) { const byte* start = nullptr; const byte* end = nullptr; if (source->IsArrayBuffer()) { // A raw array buffer was passed. Local<ArrayBuffer> buffer = Local<ArrayBuffer>::Cast(source); ArrayBuffer::Contents contents = buffer->GetContents(); start = reinterpret_cast<const byte*>(contents.Data()); end = start + contents.ByteLength(); } else if (source->IsTypedArray()) { // A TypedArray was passed. Local<TypedArray> array = Local<TypedArray>::Cast(source); Local<ArrayBuffer> buffer = array->Buffer(); ArrayBuffer::Contents contents = buffer->GetContents(); start = reinterpret_cast<const byte*>(contents.Data()) + array->ByteOffset(); end = start + array->ByteLength(); } else { thrower->TypeError("Argument 0 must be an ArrayBuffer or Uint8Array"); } if (start == nullptr || end == start) { thrower->CompileError("BufferSource argument is empty"); } return {start, end}; } static i::MaybeHandle<i::WasmModuleObject> CreateModuleObject( v8::Isolate* isolate, const v8::Local<v8::Value> source, ErrorThrower* thrower) { i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::MaybeHandle<i::JSObject> nothing; RawBuffer buffer = GetRawBufferSource(source, thrower); if (buffer.start == nullptr) return i::MaybeHandle<i::WasmModuleObject>(); DCHECK(source->IsArrayBuffer() || source->IsTypedArray()); return i::wasm::CreateModuleObjectFromBytes( i_isolate, buffer.start, buffer.end, thrower, i::wasm::kWasmOrigin, i::Handle<i::Script>::null(), i::Vector<const byte>::empty()); } static bool ValidateModule(v8::Isolate* isolate, const v8::Local<v8::Value> source, ErrorThrower* thrower) { i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::MaybeHandle<i::JSObject> nothing; RawBuffer buffer = GetRawBufferSource(source, thrower); if (buffer.start == nullptr) return false; DCHECK(source->IsArrayBuffer() || source->IsTypedArray()); return i::wasm::ValidateModuleBytes(i_isolate, buffer.start, buffer.end, thrower, i::wasm::ModuleOrigin::kWasmOrigin); } static bool BrandCheck(Isolate* isolate, i::Handle<i::Object> value, i::Handle<i::Symbol> sym, const char* msg) { if (value->IsJSObject()) { i::Handle<i::JSObject> object = i::Handle<i::JSObject>::cast(value); Maybe<bool> has_brand = i::JSObject::HasOwnProperty(object, sym); if (has_brand.IsNothing()) return false; if (has_brand.ToChecked()) return true; } v8::Local<v8::Value> e = v8::Exception::TypeError(v8_str(isolate, msg)); isolate->ThrowException(e); return false; } void WebAssemblyCompile(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); HandleScope scope(isolate); ErrorThrower thrower(reinterpret_cast<i::Isolate*>(isolate), "WebAssembly.compile()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a buffer source"); return; } i::MaybeHandle<i::JSObject> module_obj = CreateModuleObject(isolate, args[0], &thrower); Local<Context> context = isolate->GetCurrentContext(); v8::Local<v8::Promise::Resolver> resolver; if (!v8::Promise::Resolver::New(context).ToLocal(&resolver)) return; if (thrower.error()) { resolver->Reject(context, Utils::ToLocal(thrower.Reify())); } else { resolver->Resolve(context, Utils::ToLocal(module_obj.ToHandleChecked())); } v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(resolver->GetPromise()); } void WebAssemblyValidate(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); HandleScope scope(isolate); ErrorThrower thrower(reinterpret_cast<i::Isolate*>(isolate), "WebAssembly.validate()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a buffer source"); return; } v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); if (ValidateModule(isolate, args[0], &thrower)) { return_value.Set(v8::True(isolate)); } else { return_value.Set(v8::False(isolate)); } } void WebAssemblyModule(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); HandleScope scope(isolate); ErrorThrower thrower(reinterpret_cast<i::Isolate*>(isolate), "WebAssembly.Module()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a buffer source"); return; } if (args.Length() > 2) { thrower.LinkError( "WebAssembly.instantiate accepts no more than 2 parameters"); return; } i::MaybeHandle<i::JSObject> module_obj = CreateModuleObject(isolate, args[0], &thrower); if (module_obj.is_null()) return; v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(Utils::ToLocal(module_obj.ToHandleChecked())); } MaybeLocal<Value> InstantiateModuleImpl( i::Isolate* i_isolate, i::Handle<i::JSObject> i_module_obj, const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { // It so happens that in both the WebAssembly.instantiate, as well as // WebAssembly.Instance ctor, the positions of the ffi object and memory // are the same. If that changes later, we refactor the consts into // parameters. static const int kFfiOffset = 1; static const int kMemOffset = 2; MaybeLocal<Value> nothing; i::Handle<i::JSReceiver> ffi = i::Handle<i::JSObject>::null(); if (args.Length() > kFfiOffset && !args[kFfiOffset]->IsUndefined()) { if (!args[kFfiOffset]->IsObject()) { thrower->TypeError("Argument %d must be an object", kFfiOffset); return nothing; } Local<Object> obj = Local<Object>::Cast(args[kFfiOffset]); ffi = i::Handle<i::JSReceiver>::cast(v8::Utils::OpenHandle(*obj)); } i::Handle<i::JSArrayBuffer> memory = i::Handle<i::JSArrayBuffer>::null(); if (args.Length() > kMemOffset && !args[kMemOffset]->IsUndefined()) { if (!args[kMemOffset]->IsObject()) { thrower->TypeError("Argument %d must be a WebAssembly.Memory", kMemOffset); return nothing; } Local<Object> obj = Local<Object>::Cast(args[kMemOffset]); i::Handle<i::Object> mem_obj = v8::Utils::OpenHandle(*obj); if (!i::WasmJs::IsWasmMemoryObject(i_isolate, mem_obj)) { thrower->TypeError("Argument %d must be a WebAssembly.Memory", kMemOffset); return nothing; } memory = i::Handle<i::JSArrayBuffer>( i::Handle<i::WasmMemoryObject>::cast(mem_obj)->buffer(), i_isolate); } i::MaybeHandle<i::JSObject> instance = i::wasm::WasmModule::Instantiate( i_isolate, thrower, i_module_obj, ffi, memory); if (instance.is_null()) { if (!thrower->error()) thrower->RuntimeError("Could not instantiate module"); return nothing; } DCHECK(!i_isolate->has_pending_exception()); return Utils::ToLocal(instance.ToHandleChecked()); } void WebAssemblyModuleImports(const v8::FunctionCallbackInfo<v8::Value>& args) { HandleScope scope(args.GetIsolate()); v8::Isolate* isolate = args.GetIsolate(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); ErrorThrower thrower(i_isolate, "WebAssembly.Instance()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a WebAssembly.Module"); return; } Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args[0]), i::Handle<i::Symbol>(i_context->wasm_module_sym()), "Argument 0 must be a WebAssembly.Module")) { return; } Local<Object> module_obj = Local<Object>::Cast(args[0]); i::Handle<i::WasmModuleObject> i_module_obj = i::Handle<i::WasmModuleObject>::cast(v8::Utils::OpenHandle(*module_obj)); i::Handle<i::JSArray> imports = i::wasm::GetImports(i_isolate, i_module_obj); v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(Utils::ToLocal(imports)); } void WebAssemblyModuleExports(const v8::FunctionCallbackInfo<v8::Value>& args) { HandleScope scope(args.GetIsolate()); v8::Isolate* isolate = args.GetIsolate(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); ErrorThrower thrower(i_isolate, "WebAssembly.Module.exports()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a WebAssembly.Module"); return; } Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args[0]), i::Handle<i::Symbol>(i_context->wasm_module_sym()), "Argument 0 must be a WebAssembly.Module")) { return; } Local<Object> module_obj = Local<Object>::Cast(args[0]); i::Handle<i::WasmModuleObject> i_module_obj = i::Handle<i::WasmModuleObject>::cast(v8::Utils::OpenHandle(*module_obj)); i::Handle<i::JSArray> exports = i::wasm::GetExports(i_isolate, i_module_obj); v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(Utils::ToLocal(exports)); } void WebAssemblyInstance(const v8::FunctionCallbackInfo<v8::Value>& args) { HandleScope scope(args.GetIsolate()); v8::Isolate* isolate = args.GetIsolate(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); ErrorThrower thrower(i_isolate, "WebAssembly.Instance()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a WebAssembly.Module"); return; } Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args[0]), i::Handle<i::Symbol>(i_context->wasm_module_sym()), "Argument 0 must be a WebAssembly.Module")) { return; } Local<Object> module_obj = Local<Object>::Cast(args[0]); i::Handle<i::JSObject> i_module_obj = i::Handle<i::JSObject>::cast(v8::Utils::OpenHandle(*module_obj)); MaybeLocal<Value> instance = InstantiateModuleImpl(i_isolate, i_module_obj, args, &thrower); if (instance.IsEmpty()) return; v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(instance.ToLocalChecked()); } void WebAssemblyInstantiate(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); HandleScope scope(isolate); ErrorThrower thrower(i_isolate, "WebAssembly.compile()"); if (args.Length() < 1) { thrower.TypeError("Argument 0 must be a buffer source"); return; } i::MaybeHandle<i::JSObject> module_obj = CreateModuleObject(isolate, args[0], &thrower); Local<Context> context = isolate->GetCurrentContext(); v8::Local<v8::Promise::Resolver> resolver; if (!v8::Promise::Resolver::New(context).ToLocal(&resolver)) return; if (module_obj.is_null()) { DCHECK(thrower.error()); resolver->Reject(context, Utils::ToLocal(thrower.Reify())); } else { MaybeLocal<Value> instance = InstantiateModuleImpl( i_isolate, module_obj.ToHandleChecked(), args, &thrower); if (instance.IsEmpty()) { DCHECK(thrower.error()); resolver->Reject(context, Utils::ToLocal(thrower.Reify())); } else { DCHECK(!thrower.error()); resolver->Resolve(context, instance.ToLocalChecked()); } } v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(resolver->GetPromise()); } bool GetIntegerProperty(v8::Isolate* isolate, ErrorThrower* thrower, Local<Context> context, Local<v8::Object> object, Local<String> property, int* result, int lower_bound, int upper_bound) { v8::MaybeLocal<v8::Value> maybe = object->Get(context, property); v8::Local<v8::Value> value; if (maybe.ToLocal(&value)) { int64_t number; if (!value->IntegerValue(context).To(&number)) return false; if (number < static_cast<int64_t>(lower_bound)) { thrower->RangeError("Property value %" PRId64 " is below the lower bound %d", number, lower_bound); return false; } if (number > static_cast<int64_t>(upper_bound)) { thrower->RangeError("Property value %" PRId64 " is above the upper bound %d", number, upper_bound); return false; } *result = static_cast<int>(number); return true; } return false; } const int max_table_size = 1 << 26; void WebAssemblyTable(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); HandleScope scope(isolate); ErrorThrower thrower(reinterpret_cast<i::Isolate*>(isolate), "WebAssembly.Module()"); if (args.Length() < 1 || !args[0]->IsObject()) { thrower.TypeError("Argument 0 must be a table descriptor"); return; } Local<Context> context = isolate->GetCurrentContext(); Local<v8::Object> descriptor = args[0]->ToObject(context).ToLocalChecked(); // The descriptor's 'element'. { v8::MaybeLocal<v8::Value> maybe = descriptor->Get(context, v8_str(isolate, "element")); v8::Local<v8::Value> value; if (!maybe.ToLocal(&value)) return; v8::Local<v8::String> string; if (!value->ToString(context).ToLocal(&string)) return; bool equal; if (!string->Equals(context, v8_str(isolate, "anyfunc")).To(&equal)) return; if (!equal) { thrower.TypeError("Descriptor property 'element' must be 'anyfunc'"); return; } } // The descriptor's 'initial'. int initial; if (!GetIntegerProperty(isolate, &thrower, context, descriptor, v8_str(isolate, "initial"), &initial, 0, max_table_size)) { return; } // The descriptor's 'maximum'. int maximum = 0; Local<String> maximum_key = v8_str(isolate, "maximum"); Maybe<bool> has_maximum = descriptor->Has(context, maximum_key); if (has_maximum.IsNothing()) { // There has been an exception, just return. return; } if (has_maximum.FromJust()) { if (!GetIntegerProperty(isolate, &thrower, context, descriptor, maximum_key, &maximum, initial, max_table_size)) { return; } } else { maximum = static_cast<int>(i::wasm::kV8MaxWasmTableSize); } i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::Handle<i::FixedArray> fixed_array; i::Handle<i::JSObject> table_obj = i::WasmTableObject::New(i_isolate, initial, maximum, &fixed_array); v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(Utils::ToLocal(table_obj)); } void WebAssemblyMemory(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); HandleScope scope(isolate); ErrorThrower thrower(reinterpret_cast<i::Isolate*>(isolate), "WebAssembly.Memory()"); if (args.Length() < 1 || !args[0]->IsObject()) { thrower.TypeError("Argument 0 must be a memory descriptor"); return; } Local<Context> context = isolate->GetCurrentContext(); Local<v8::Object> descriptor = args[0]->ToObject(context).ToLocalChecked(); // The descriptor's 'initial'. int initial; if (!GetIntegerProperty(isolate, &thrower, context, descriptor, v8_str(isolate, "initial"), &initial, 0, 65536)) { return; } // The descriptor's 'maximum'. int maximum = 0; Local<String> maximum_key = v8_str(isolate, "maximum"); Maybe<bool> has_maximum = descriptor->Has(context, maximum_key); if (has_maximum.IsNothing()) { // There has been an exception, just return. return; } if (has_maximum.FromJust()) { if (!GetIntegerProperty(isolate, &thrower, context, descriptor, maximum_key, &maximum, initial, 65536)) { return; } } i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); size_t size = static_cast<size_t>(i::wasm::WasmModule::kPageSize) * static_cast<size_t>(initial); i::Handle<i::JSArrayBuffer> buffer = i::wasm::NewArrayBuffer(i_isolate, size, i::FLAG_wasm_guard_pages); if (buffer.is_null()) { thrower.RangeError("could not allocate memory"); return; } i::Handle<i::JSObject> memory_obj = i::WasmMemoryObject::New( i_isolate, buffer, has_maximum.FromJust() ? maximum : -1); args.GetReturnValue().Set(Utils::ToLocal(memory_obj)); } void WebAssemblyTableGetLength( const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_table_sym()), "Receiver is not a WebAssembly.Table")) { return; } auto receiver = i::Handle<i::WasmTableObject>::cast(Utils::OpenHandle(*args.This())); args.GetReturnValue().Set( v8::Number::New(isolate, receiver->current_length())); } void WebAssemblyTableGrow(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_table_sym()), "Receiver is not a WebAssembly.Table")) { return; } i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); auto receiver = i::Handle<i::WasmTableObject>::cast(Utils::OpenHandle(*args.This())); i::Handle<i::FixedArray> old_array(receiver->functions(), i_isolate); int old_size = old_array->length(); int64_t new_size64 = 0; if (args.Length() > 0 && !args[0]->IntegerValue(context).To(&new_size64)) { return; } new_size64 += old_size; if (new_size64 < old_size || new_size64 > receiver->maximum_length()) { v8::Local<v8::Value> e = v8::Exception::RangeError( v8_str(isolate, new_size64 < old_size ? "trying to shrink table" : "maximum table size exceeded")); isolate->ThrowException(e); return; } int new_size = static_cast<int>(new_size64); if (new_size != old_size) { i::Handle<i::FixedArray> new_array = i_isolate->factory()->NewFixedArray(new_size); for (int i = 0; i < old_size; ++i) new_array->set(i, old_array->get(i)); i::Object* null = i_isolate->heap()->null_value(); for (int i = old_size; i < new_size; ++i) new_array->set(i, null); receiver->set_functions(*new_array); } // TODO(titzer): update relevant instances. } void WebAssemblyTableGet(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_table_sym()), "Receiver is not a WebAssembly.Table")) { return; } i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); auto receiver = i::Handle<i::WasmTableObject>::cast(Utils::OpenHandle(*args.This())); i::Handle<i::FixedArray> array(receiver->functions(), i_isolate); int i = 0; if (args.Length() > 0 && !args[0]->Int32Value(context).To(&i)) return; v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); if (i < 0 || i >= array->length()) { v8::Local<v8::Value> e = v8::Exception::RangeError(v8_str(isolate, "index out of bounds")); isolate->ThrowException(e); return; } i::Handle<i::Object> value(array->get(i), i_isolate); return_value.Set(Utils::ToLocal(value)); } void WebAssemblyTableSet(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_table_sym()), "Receiver is not a WebAssembly.Table")) { return; } if (args.Length() < 2) { v8::Local<v8::Value> e = v8::Exception::TypeError( v8_str(isolate, "Argument 1 must be null or a function")); isolate->ThrowException(e); return; } i::Handle<i::Object> value = Utils::OpenHandle(*args[1]); if (!value->IsNull(i_isolate) && (!value->IsJSFunction() || i::Handle<i::JSFunction>::cast(value)->code()->kind() != i::Code::JS_TO_WASM_FUNCTION)) { v8::Local<v8::Value> e = v8::Exception::TypeError( v8_str(isolate, "Argument 1 must be null or a WebAssembly function")); isolate->ThrowException(e); return; } auto receiver = i::Handle<i::WasmTableObject>::cast(Utils::OpenHandle(*args.This())); i::Handle<i::FixedArray> array(receiver->functions(), i_isolate); int i; if (!args[0]->Int32Value(context).To(&i)) return; if (i < 0 || i >= array->length()) { v8::Local<v8::Value> e = v8::Exception::RangeError(v8_str(isolate, "index out of bounds")); isolate->ThrowException(e); return; } i::Handle<i::FixedArray> dispatch_tables(receiver->dispatch_tables(), i_isolate); if (value->IsNull(i_isolate)) { i::wasm::UpdateDispatchTables(i_isolate, dispatch_tables, i, i::Handle<i::JSFunction>::null()); } else { i::wasm::UpdateDispatchTables(i_isolate, dispatch_tables, i, i::Handle<i::JSFunction>::cast(value)); } i::Handle<i::FixedArray>::cast(array)->set(i, *value); } void WebAssemblyMemoryGrow(const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_memory_sym()), "Receiver is not a WebAssembly.Memory")) { return; } if (args.Length() < 1) { v8::Local<v8::Value> e = v8::Exception::TypeError( v8_str(isolate, "Argument 0 required, must be numeric value of pages")); isolate->ThrowException(e); return; } uint32_t delta = args[0]->Uint32Value(context).FromJust(); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::Handle<i::Object> receiver = i::Handle<i::Object>::cast(Utils::OpenHandle(*args.This())); int32_t ret = i::wasm::GrowWebAssemblyMemory(i_isolate, receiver, delta); if (ret == -1) { v8::Local<v8::Value> e = v8::Exception::Error( v8_str(isolate, "Unable to grow instance memory.")); isolate->ThrowException(e); return; } v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(ret); } void WebAssemblyMemoryGetBuffer( const v8::FunctionCallbackInfo<v8::Value>& args) { v8::Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); i::Handle<i::Context> i_context = Utils::OpenHandle(*context); if (!BrandCheck(isolate, Utils::OpenHandle(*args.This()), i::Handle<i::Symbol>(i_context->wasm_memory_sym()), "Receiver is not a WebAssembly.Memory")) { return; } i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::Handle<i::WasmMemoryObject> receiver = i::Handle<i::WasmMemoryObject>::cast(Utils::OpenHandle(*args.This())); i::Handle<i::Object> buffer(receiver->buffer(), i_isolate); DCHECK(buffer->IsJSArrayBuffer()); v8::ReturnValue<v8::Value> return_value = args.GetReturnValue(); return_value.Set(Utils::ToLocal(buffer)); } } // namespace // TODO(titzer): we use the API to create the function template because the // internal guts are too ugly to replicate here. static i::Handle<i::FunctionTemplateInfo> NewTemplate(i::Isolate* i_isolate, FunctionCallback func) { Isolate* isolate = reinterpret_cast<Isolate*>(i_isolate); Local<FunctionTemplate> templ = FunctionTemplate::New(isolate, func); templ->ReadOnlyPrototype(); return v8::Utils::OpenHandle(*templ); } namespace internal { Handle<JSFunction> InstallFunc(Isolate* isolate, Handle<JSObject> object, const char* str, FunctionCallback func, int length = 0) { Handle<String> name = v8_str(isolate, str); Handle<FunctionTemplateInfo> temp = NewTemplate(isolate, func); Handle<JSFunction> function = ApiNatives::InstantiateFunction(temp).ToHandleChecked(); JSFunction::SetName(function, name, isolate->factory()->empty_string()); function->shared()->set_length(length); PropertyAttributes attributes = static_cast<PropertyAttributes>(DONT_ENUM); JSObject::AddProperty(object, name, function, attributes); return function; } Handle<JSFunction> InstallGetter(Isolate* isolate, Handle<JSObject> object, const char* str, FunctionCallback func) { Handle<String> name = v8_str(isolate, str); Handle<FunctionTemplateInfo> temp = NewTemplate(isolate, func); Handle<JSFunction> function = ApiNatives::InstantiateFunction(temp).ToHandleChecked(); v8::PropertyAttribute attributes = static_cast<v8::PropertyAttribute>(v8::DontEnum); Utils::ToLocal(object)->SetAccessorProperty(Utils::ToLocal(name), Utils::ToLocal(function), Local<Function>(), attributes); return function; } void WasmJs::Install(Isolate* isolate) { Handle<JSGlobalObject> global = isolate->global_object(); Handle<Context> context(global->native_context(), isolate); // TODO(titzer): once FLAG_expose_wasm is gone, this should become a DCHECK. if (context->get(Context::WASM_FUNCTION_MAP_INDEX)->IsMap()) return; // Install Maps. // TODO(titzer): Also make one for strict mode functions? Handle<Map> prev_map = Handle<Map>(context->sloppy_function_map(), isolate); InstanceType instance_type = prev_map->instance_type(); int internal_fields = JSObject::GetInternalFieldCount(*prev_map); CHECK_EQ(0, internal_fields); int pre_allocated = prev_map->GetInObjectProperties() - prev_map->unused_property_fields(); int instance_size = 0; int in_object_properties = 0; int wasm_internal_fields = internal_fields + 1 // module instance object + 1 // function arity + 1; // function signature JSFunction::CalculateInstanceSizeHelper(instance_type, wasm_internal_fields, 0, &instance_size, &in_object_properties); int unused_property_fields = in_object_properties - pre_allocated; Handle<Map> map = Map::CopyInitialMap( prev_map, instance_size, in_object_properties, unused_property_fields); context->set_wasm_function_map(*map); // Install symbols. Factory* factory = isolate->factory(); // Create private symbols. Handle<Symbol> module_sym = factory->NewPrivateSymbol(); context->set_wasm_module_sym(*module_sym); Handle<Symbol> instance_sym = factory->NewPrivateSymbol(); context->set_wasm_instance_sym(*instance_sym); Handle<Symbol> table_sym = factory->NewPrivateSymbol(); context->set_wasm_table_sym(*table_sym); Handle<Symbol> memory_sym = factory->NewPrivateSymbol(); context->set_wasm_memory_sym(*memory_sym); // Install the JS API. // Setup WebAssembly Handle<String> name = v8_str(isolate, "WebAssembly"); Handle<JSFunction> cons = factory->NewFunction(name); JSFunction::SetInstancePrototype( cons, Handle<Object>(context->initial_object_prototype(), isolate)); cons->shared()->set_instance_class_name(*name); Handle<JSObject> webassembly = factory->NewJSObject(cons, TENURED); PropertyAttributes attributes = static_cast<PropertyAttributes>(DONT_ENUM); JSObject::AddProperty(global, name, webassembly, attributes); // Setup compile InstallFunc(isolate, webassembly, "compile", WebAssemblyCompile, 1); // Setup validate InstallFunc(isolate, webassembly, "validate", WebAssemblyValidate, 1); // Setup instantiate InstallFunc(isolate, webassembly, "instantiate", WebAssemblyInstantiate, 1); // Setup Module Handle<JSFunction> module_constructor = InstallFunc(isolate, webassembly, "Module", WebAssemblyModule, 1); context->set_wasm_module_constructor(*module_constructor); Handle<JSObject> module_proto = factory->NewJSObject(module_constructor, TENURED); i::Handle<i::Map> module_map = isolate->factory()->NewMap( i::JS_OBJECT_TYPE, i::JSObject::kHeaderSize + WasmModuleObject::kFieldCount * i::kPointerSize); JSFunction::SetInitialMap(module_constructor, module_map, module_proto); JSObject::AddProperty(module_proto, isolate->factory()->constructor_string(), module_constructor, DONT_ENUM); InstallFunc(isolate, module_constructor, "imports", WebAssemblyModuleImports, 1); InstallFunc(isolate, module_constructor, "exports", WebAssemblyModuleExports, 1); // Setup Instance Handle<JSFunction> instance_constructor = InstallFunc(isolate, webassembly, "Instance", WebAssemblyInstance, 1); context->set_wasm_instance_constructor(*instance_constructor); Handle<JSObject> instance_proto = factory->NewJSObject(instance_constructor, TENURED); i::Handle<i::Map> instance_map = isolate->factory()->NewMap( i::JS_OBJECT_TYPE, i::JSObject::kHeaderSize + WasmInstanceObject::kFieldCount * i::kPointerSize); JSFunction::SetInitialMap(instance_constructor, instance_map, instance_proto); JSObject::AddProperty(instance_proto, isolate->factory()->constructor_string(), instance_constructor, DONT_ENUM); // Setup Table Handle<JSFunction> table_constructor = InstallFunc(isolate, webassembly, "Table", WebAssemblyTable, 1); context->set_wasm_table_constructor(*table_constructor); Handle<JSObject> table_proto = factory->NewJSObject(table_constructor, TENURED); i::Handle<i::Map> table_map = isolate->factory()->NewMap( i::JS_OBJECT_TYPE, i::JSObject::kHeaderSize + WasmTableObject::kFieldCount * i::kPointerSize); JSFunction::SetInitialMap(table_constructor, table_map, table_proto); JSObject::AddProperty(table_proto, isolate->factory()->constructor_string(), table_constructor, DONT_ENUM); InstallGetter(isolate, table_proto, "length", WebAssemblyTableGetLength); InstallFunc(isolate, table_proto, "grow", WebAssemblyTableGrow, 1); InstallFunc(isolate, table_proto, "get", WebAssemblyTableGet, 1); InstallFunc(isolate, table_proto, "set", WebAssemblyTableSet, 2); // Setup Memory Handle<JSFunction> memory_constructor = InstallFunc(isolate, webassembly, "Memory", WebAssemblyMemory, 1); context->set_wasm_memory_constructor(*memory_constructor); Handle<JSObject> memory_proto = factory->NewJSObject(memory_constructor, TENURED); i::Handle<i::Map> memory_map = isolate->factory()->NewMap( i::JS_OBJECT_TYPE, i::JSObject::kHeaderSize + WasmMemoryObject::kFieldCount * i::kPointerSize); JSFunction::SetInitialMap(memory_constructor, memory_map, memory_proto); JSObject::AddProperty(memory_proto, isolate->factory()->constructor_string(), memory_constructor, DONT_ENUM); InstallFunc(isolate, memory_proto, "grow", WebAssemblyMemoryGrow, 1); InstallGetter(isolate, memory_proto, "buffer", WebAssemblyMemoryGetBuffer); // Setup errors attributes = static_cast<PropertyAttributes>(DONT_ENUM); Handle<JSFunction> compile_error( isolate->native_context()->wasm_compile_error_function()); JSObject::AddProperty(webassembly, isolate->factory()->CompileError_string(), compile_error, attributes); Handle<JSFunction> link_error( isolate->native_context()->wasm_link_error_function()); JSObject::AddProperty(webassembly, isolate->factory()->LinkError_string(), link_error, attributes); Handle<JSFunction> runtime_error( isolate->native_context()->wasm_runtime_error_function()); JSObject::AddProperty(webassembly, isolate->factory()->RuntimeError_string(), runtime_error, attributes); } static bool HasBrand(i::Handle<i::Object> value, i::Handle<i::Symbol> symbol) { if (value->IsJSObject()) { i::Handle<i::JSObject> object = i::Handle<i::JSObject>::cast(value); Maybe<bool> has_brand = i::JSObject::HasOwnProperty(object, symbol); if (has_brand.IsNothing()) return false; if (has_brand.ToChecked()) return true; } return false; } bool WasmJs::IsWasmMemoryObject(Isolate* isolate, Handle<Object> value) { i::Handle<i::Symbol> symbol(isolate->context()->wasm_memory_sym(), isolate); return HasBrand(value, symbol); } bool WasmJs::IsWasmTableObject(Isolate* isolate, Handle<Object> value) { i::Handle<i::Symbol> symbol(isolate->context()->wasm_table_sym(), isolate); return HasBrand(value, symbol); } } // namespace internal } // namespace v8