Commit 1a8e7d13 authored by Clemens Hammacher's avatar Clemens Hammacher Committed by Commit Bot

[wasm] Reduce test-specific code

This reduces the amount of special paths for testing.
Setup the memory used for testing exactly the same way as in real world.
Also, always connect the interpreter to the instance being executed,
and to the existing WasmInstance struct. This keeps information
synchronized between interpreter and test runner.
These changes allow us to execute e.g. GrowMemory from cctests either
in the interpreter or in compiled code.

R=ahaas@chromium.org

Change-Id: Id4726d061f3cdba789275350f500d769d27d2d63
Reviewed-on: https://chromium-review.googlesource.com/488561
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#44966}
parent 81253a52
...@@ -105,9 +105,12 @@ class InterpreterHandle { ...@@ -105,9 +105,12 @@ class InterpreterHandle {
public: public:
// Initialize in the right order, using helper methods to make this possible. // Initialize in the right order, using helper methods to make this possible.
// WasmInterpreter has to be allocated in place, since it is not movable. // WasmInterpreter has to be allocated in place, since it is not movable.
InterpreterHandle(Isolate* isolate, WasmDebugInfo* debug_info) InterpreterHandle(Isolate* isolate, WasmDebugInfo* debug_info,
WasmInstance* external_instance = nullptr)
: instance_(debug_info->wasm_instance()->compiled_module()->module()), : instance_(debug_info->wasm_instance()->compiled_module()->module()),
interpreter_(isolate, GetBytesEnv(&instance_, debug_info)), interpreter_(isolate, GetBytesEnv(external_instance ? external_instance
: &instance_,
debug_info)),
isolate_(isolate) { isolate_(isolate) {
DisallowHeapAllocation no_gc; DisallowHeapAllocation no_gc;
...@@ -401,8 +404,10 @@ class InterpreterHandle { ...@@ -401,8 +404,10 @@ class InterpreterHandle {
} }
void UpdateMemory(JSArrayBuffer* new_memory) { void UpdateMemory(JSArrayBuffer* new_memory) {
instance_.mem_start = reinterpret_cast<byte*>(new_memory->backing_store()); byte* mem_start = reinterpret_cast<byte*>(new_memory->backing_store());
CHECK(new_memory->byte_length()->ToUint32(&instance_.mem_size)); uint32_t mem_size;
CHECK(new_memory->byte_length()->ToUint32(&mem_size));
interpreter()->UpdateMemory(mem_start, mem_size);
} }
Handle<JSArray> GetScopeDetails(Address frame_pointer, int frame_index, Handle<JSArray> GetScopeDetails(Address frame_pointer, int frame_index,
...@@ -570,12 +575,25 @@ void RedirectCallsitesInInstance(Isolate* isolate, WasmInstanceObject* instance, ...@@ -570,12 +575,25 @@ void RedirectCallsitesInInstance(Isolate* isolate, WasmInstanceObject* instance,
} // namespace } // namespace
Handle<WasmDebugInfo> WasmDebugInfo::New(Handle<WasmInstanceObject> instance) { Handle<WasmDebugInfo> WasmDebugInfo::New(Handle<WasmInstanceObject> instance) {
Isolate* isolate = instance->GetIsolate(); DCHECK(!instance->has_debug_info());
Factory* factory = isolate->factory(); Factory* factory = instance->GetIsolate()->factory();
Handle<FixedArray> arr = factory->NewFixedArray(kFieldCount, TENURED); Handle<FixedArray> arr = factory->NewFixedArray(kFieldCount, TENURED);
arr->set(kWrapperTracerHeader, Smi::kZero); arr->set(kWrapperTracerHeader, Smi::kZero);
arr->set(kInstance, *instance); arr->set(kInstance, *instance);
return Handle<WasmDebugInfo>::cast(arr); Handle<WasmDebugInfo> debug_info = Handle<WasmDebugInfo>::cast(arr);
instance->set_debug_info(*debug_info);
return debug_info;
}
WasmInterpreter* WasmDebugInfo::SetupForTesting(
Handle<WasmInstanceObject> instance_obj, WasmInstance* instance) {
Handle<WasmDebugInfo> debug_info = WasmDebugInfo::New(instance_obj);
Isolate* isolate = instance_obj->GetIsolate();
InterpreterHandle* cpp_handle =
new InterpreterHandle(isolate, *debug_info, instance);
Handle<Object> handle = Managed<InterpreterHandle>::New(isolate, cpp_handle);
debug_info->set(kInterpreterHandle, *handle);
return cpp_handle->interpreter();
} }
bool WasmDebugInfo::IsDebugInfo(Object* object) { bool WasmDebugInfo::IsDebugInfo(Object* object) {
......
...@@ -601,56 +601,15 @@ inline int32_t ExecuteGrowMemory(uint32_t delta_pages, ...@@ -601,56 +601,15 @@ inline int32_t ExecuteGrowMemory(uint32_t delta_pages,
DCHECK_EQ(0, instance->mem_size % WasmModule::kPageSize); DCHECK_EQ(0, instance->mem_size % WasmModule::kPageSize);
uint32_t old_pages = instance->mem_size / WasmModule::kPageSize; uint32_t old_pages = instance->mem_size / WasmModule::kPageSize;
// If an instance is set, execute GrowMemory on the instance. This will also Isolate* isolate = instance_obj.ToHandleChecked()->GetIsolate();
// update the WasmInstance struct used here. int32_t ret = WasmInstanceObject::GrowMemory(
if (!instance_obj.is_null()) { isolate, instance_obj.ToHandleChecked(), delta_pages);
Isolate* isolate = instance_obj.ToHandleChecked()->GetIsolate(); // Some sanity checks.
int32_t ret = WasmInstanceObject::GrowMemory( DCHECK_EQ(ret == -1 ? old_pages : old_pages + delta_pages,
isolate, instance_obj.ToHandleChecked(), delta_pages); instance->mem_size / WasmModule::kPageSize);
// Some sanity checks. DCHECK(ret == -1 || static_cast<uint32_t>(ret) == old_pages);
DCHECK_EQ(ret == -1 ? old_pages : old_pages + delta_pages, USE(old_pages);
instance->mem_size / WasmModule::kPageSize); return ret;
DCHECK(ret == -1 || static_cast<uint32_t>(ret) == old_pages);
return ret;
}
// TODO(ahaas): Move memory allocation to wasm-module.cc for better
// encapsulation.
if (delta_pages > FLAG_wasm_max_mem_pages ||
delta_pages > instance->module->max_mem_pages) {
return -1;
}
uint32_t new_pages = old_pages + delta_pages;
if (new_pages > FLAG_wasm_max_mem_pages ||
new_pages > instance->module->max_mem_pages) {
return -1;
}
byte* new_mem_start;
if (instance->mem_size == 0) {
// TODO(gdeepti): Fix bounds check to take into account size of memtype.
new_mem_start = static_cast<byte*>(
calloc(new_pages * WasmModule::kPageSize, sizeof(byte)));
if (!new_mem_start) return -1;
} else {
DCHECK_NOT_NULL(instance->mem_start);
if (EnableGuardRegions()) {
v8::base::OS::Unprotect(instance->mem_start,
new_pages * WasmModule::kPageSize);
new_mem_start = instance->mem_start;
} else {
new_mem_start = static_cast<byte*>(
realloc(instance->mem_start, new_pages * WasmModule::kPageSize));
if (!new_mem_start) return -1;
}
// Zero initializing uninitialized memory from realloc
memset(new_mem_start + old_pages * WasmModule::kPageSize, 0,
delta_pages * WasmModule::kPageSize);
}
instance->mem_start = new_mem_start;
instance->mem_size = new_pages * WasmModule::kPageSize;
return static_cast<int32_t>(old_pages);
} }
enum InternalOpcode { enum InternalOpcode {
...@@ -2233,7 +2192,8 @@ class ThreadImpl { ...@@ -2233,7 +2192,8 @@ class ThreadImpl {
ExternalCallResult CallIndirectFunction(uint32_t table_index, ExternalCallResult CallIndirectFunction(uint32_t table_index,
uint32_t entry_index, uint32_t entry_index,
uint32_t sig_index) { uint32_t sig_index) {
if (!codemap()->has_instance()) { if (!codemap()->has_instance() ||
!codemap()->instance()->compiled_module()->has_function_tables()) {
// No instance. Rely on the information stored in the WasmModule. // No instance. Rely on the information stored in the WasmModule.
// TODO(wasm): This is only needed for testing. Refactor testing to use // TODO(wasm): This is only needed for testing. Refactor testing to use
// the same paths as production. // the same paths as production.
...@@ -2557,6 +2517,11 @@ void WasmInterpreter::WriteMemory(size_t offset, WasmVal val) { ...@@ -2557,6 +2517,11 @@ void WasmInterpreter::WriteMemory(size_t offset, WasmVal val) {
UNIMPLEMENTED(); UNIMPLEMENTED();
} }
void WasmInterpreter::UpdateMemory(byte* mem_start, uint32_t mem_size) {
internals_->instance_->mem_start = mem_start;
internals_->instance_->mem_size = mem_size;
}
void WasmInterpreter::AddFunctionForTesting(const WasmFunction* function) { void WasmInterpreter::AddFunctionForTesting(const WasmFunction* function) {
internals_->codemap_.AddFunction(function, nullptr, nullptr); internals_->codemap_.AddFunction(function, nullptr, nullptr);
} }
......
...@@ -256,6 +256,8 @@ class V8_EXPORT_PRIVATE WasmInterpreter { ...@@ -256,6 +256,8 @@ class V8_EXPORT_PRIVATE WasmInterpreter {
size_t GetMemorySize(); size_t GetMemorySize();
WasmVal ReadMemory(size_t offset); WasmVal ReadMemory(size_t offset);
void WriteMemory(size_t offset, WasmVal val); void WriteMemory(size_t offset, WasmVal val);
// Update the memory region, e.g. after external GrowMemory.
void UpdateMemory(byte* mem_start, uint32_t mem_size);
//========================================================================== //==========================================================================
// Testing functionality. // Testing functionality.
......
...@@ -533,7 +533,7 @@ Handle<WasmDebugInfo> WasmInstanceObject::GetOrCreateDebugInfo( ...@@ -533,7 +533,7 @@ Handle<WasmDebugInfo> WasmInstanceObject::GetOrCreateDebugInfo(
Handle<WasmInstanceObject> instance) { Handle<WasmInstanceObject> instance) {
if (instance->has_debug_info()) return handle(instance->debug_info()); if (instance->has_debug_info()) return handle(instance->debug_info());
Handle<WasmDebugInfo> new_info = WasmDebugInfo::New(instance); Handle<WasmDebugInfo> new_info = WasmDebugInfo::New(instance);
instance->set_debug_info(*new_info); DCHECK(instance->has_debug_info());
return new_info; return new_info;
} }
......
...@@ -16,6 +16,8 @@ namespace internal { ...@@ -16,6 +16,8 @@ namespace internal {
namespace wasm { namespace wasm {
class InterpretedFrame; class InterpretedFrame;
struct WasmModule; struct WasmModule;
struct WasmInstance;
class WasmInterpreter;
} }
class WasmCompiledModule; class WasmCompiledModule;
...@@ -549,6 +551,13 @@ class WasmDebugInfo : public FixedArray { ...@@ -549,6 +551,13 @@ class WasmDebugInfo : public FixedArray {
static Handle<WasmDebugInfo> New(Handle<WasmInstanceObject>); static Handle<WasmDebugInfo> New(Handle<WasmInstanceObject>);
// Setup a WasmDebugInfo with an existing WasmInstance struct.
// Returns a pointer to the interpreter instantiated inside this
// WasmDebugInfo.
// Use for testing only.
static wasm::WasmInterpreter* SetupForTesting(Handle<WasmInstanceObject>,
wasm::WasmInstance*);
static bool IsDebugInfo(Object*); static bool IsDebugInfo(Object*);
static WasmDebugInfo* cast(Object*); static WasmDebugInfo* cast(Object*);
...@@ -660,8 +669,11 @@ class WasmInstanceWrapper : public FixedArray { ...@@ -660,8 +669,11 @@ class WasmInstanceWrapper : public FixedArray {
}; };
}; };
#undef DECLARE_CASTS
#undef DECLARE_GETTER
#undef DECLARE_ACCESSORS #undef DECLARE_ACCESSORS
#undef DECLARE_OPTIONAL_ACCESSORS #undef DECLARE_OPTIONAL_ACCESSORS
#undef DECLARE_OPTIONAL_GETTER
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8
......
...@@ -325,19 +325,11 @@ TEST(GrowMemoryPreservesData) { ...@@ -325,19 +325,11 @@ TEST(GrowMemoryPreservesData) {
} }
TEST(GrowMemoryInvalidSize) { TEST(GrowMemoryInvalidSize) {
{ // Grow memory by an invalid amount without initial memory.
// Grow memory by an invalid amount without initial memory. WasmRunner<int32_t, uint32_t> r(kExecuteInterpreted);
WasmRunner<int32_t, uint32_t> r(kExecuteInterpreted); r.module().AddMemory(WasmModule::kPageSize);
BUILD(r, WASM_GROW_MEMORY(WASM_GET_LOCAL(0))); BUILD(r, WASM_GROW_MEMORY(WASM_GET_LOCAL(0)));
CHECK_EQ(-1, r.Call(1048575)); CHECK_EQ(-1, r.Call(1048575));
}
{
// Grow memory by an invalid amount without initial memory.
WasmRunner<int32_t, uint32_t> r(kExecuteInterpreted);
r.module().AddMemory(WasmModule::kPageSize);
BUILD(r, WASM_GROW_MEMORY(WASM_GET_LOCAL(0)));
CHECK_EQ(-1, r.Call(1048575));
}
} }
TEST(TestPossibleNondeterminism) { TEST(TestPossibleNondeterminism) {
...@@ -431,6 +423,7 @@ TEST(WasmInterpreterActivations) { ...@@ -431,6 +423,7 @@ TEST(WasmInterpreterActivations) {
TEST(InterpreterLoadWithoutMemory) { TEST(InterpreterLoadWithoutMemory) {
WasmRunner<int32_t, int32_t> r(kExecuteInterpreted); WasmRunner<int32_t, int32_t> r(kExecuteInterpreted);
r.module().AddMemory(0);
BUILD(r, WASM_LOAD_MEM(MachineType::Int32(), WASM_GET_LOCAL(0))); BUILD(r, WASM_LOAD_MEM(MachineType::Int32(), WASM_GET_LOCAL(0)));
CHECK_TRAP32(r.Call(0)); CHECK_TRAP32(r.Call(0));
} }
......
...@@ -76,16 +76,10 @@ class TestingModule : public ModuleEnv { ...@@ -76,16 +76,10 @@ class TestingModule : public ModuleEnv {
public: public:
explicit TestingModule(Zone* zone, WasmExecutionMode mode = kExecuteCompiled) explicit TestingModule(Zone* zone, WasmExecutionMode mode = kExecuteCompiled)
: ModuleEnv(&module_, &instance_), : ModuleEnv(&module_, &instance_),
execution_mode_(mode),
instance_(&module_), instance_(&module_),
isolate_(CcTest::InitIsolateOnce()), isolate_(CcTest::InitIsolateOnce()),
global_offset(0), global_offset(0),
interpreter_( interpreter_(nullptr) {
mode == kExecuteInterpreted
? new WasmInterpreter(
isolate_, ModuleBytesEnv(&module_, &instance_,
Vector<const byte>::empty()))
: nullptr) {
WasmJs::Install(isolate_); WasmJs::Install(isolate_);
instance->module = &module_; instance->module = &module_;
instance->globals_start = global_data; instance->globals_start = global_data;
...@@ -94,22 +88,10 @@ class TestingModule : public ModuleEnv { ...@@ -94,22 +88,10 @@ class TestingModule : public ModuleEnv {
instance->mem_size = 0; instance->mem_size = 0;
memset(global_data, 0, sizeof(global_data)); memset(global_data, 0, sizeof(global_data));
instance_object_ = InitInstanceObject(); instance_object_ = InitInstanceObject();
} if (mode == kExecuteInterpreted) {
interpreter_ =
~TestingModule() { WasmDebugInfo::SetupForTesting(instance_object_, &instance_);
if (instance->mem_start) {
if (EnableGuardRegions() && module_.is_wasm()) {
// See the corresponding code in AddMemory. We use a different
// allocation path when guard regions are enabled, which means we have
// to free it differently too.
const size_t alloc_size =
RoundUp(kWasmMaxHeapOffset, v8::base::OS::CommitPageSize());
v8::base::OS::Free(instance->mem_start, alloc_size);
} else {
free(instance->mem_start);
}
} }
if (interpreter_) delete interpreter_;
} }
void ChangeOriginToAsmjs() { module_.set_origin(kAsmJsOrigin); } void ChangeOriginToAsmjs() { module_.set_origin(kAsmJsOrigin); }
...@@ -118,22 +100,20 @@ class TestingModule : public ModuleEnv { ...@@ -118,22 +100,20 @@ class TestingModule : public ModuleEnv {
CHECK(!module_.has_memory); CHECK(!module_.has_memory);
CHECK_NULL(instance->mem_start); CHECK_NULL(instance->mem_start);
CHECK_EQ(0, instance->mem_size); CHECK_EQ(0, instance->mem_size);
DCHECK(!instance_object_->has_memory_buffer());
module_.has_memory = true; module_.has_memory = true;
if (EnableGuardRegions() && module_.is_wasm()) { bool enable_guard_regions = EnableGuardRegions() && module_.is_wasm();
const size_t alloc_size = uint32_t alloc_size =
RoundUp(kWasmMaxHeapOffset, v8::base::OS::CommitPageSize()); enable_guard_regions ? RoundUp(size, OS::CommitPageSize()) : size;
instance->mem_start = reinterpret_cast<byte*>( Handle<JSArrayBuffer> new_buffer =
v8::base::OS::AllocateGuarded(alloc_size * 2)); wasm::NewArrayBuffer(isolate_, alloc_size, enable_guard_regions);
instance->mem_start += alloc_size; CHECK(!new_buffer.is_null());
const size_t guard_size = RoundUp(size, v8::base::OS::CommitPageSize()); instance_object_->set_memory_buffer(*new_buffer);
v8::base::OS::Unprotect(instance->mem_start, guard_size); instance->mem_start = reinterpret_cast<byte*>(new_buffer->backing_store());
} else {
instance->mem_start = reinterpret_cast<byte*>(malloc(size));
}
CHECK(size == 0 || instance->mem_start); CHECK(size == 0 || instance->mem_start);
memset(instance->mem_start, 0, size); memset(instance->mem_start, 0, size);
instance->mem_size = size; instance->mem_size = size;
return raw_mem_start<byte>(); return instance->mem_start;
} }
template <typename T> template <typename T>
...@@ -289,7 +269,7 @@ class TestingModule : public ModuleEnv { ...@@ -289,7 +269,7 @@ class TestingModule : public ModuleEnv {
} }
void PopulateIndirectFunctionTable() { void PopulateIndirectFunctionTable() {
if (execution_mode_ == kExecuteInterpreted) return; if (interpret()) return;
// Initialize the fixed arrays in instance->function_tables. // Initialize the fixed arrays in instance->function_tables.
for (uint32_t i = 0; i < instance->function_tables.size(); i++) { for (uint32_t i = 0; i < instance->function_tables.size(); i++) {
WasmIndirectFunctionTable& table = module_.function_tables[i]; WasmIndirectFunctionTable& table = module_.function_tables[i];
...@@ -324,12 +304,11 @@ class TestingModule : public ModuleEnv { ...@@ -324,12 +304,11 @@ class TestingModule : public ModuleEnv {
WasmFunction* GetFunctionAt(int index) { return &module_.functions[index]; } WasmFunction* GetFunctionAt(int index) { return &module_.functions[index]; }
WasmInterpreter* interpreter() { return interpreter_; } WasmInterpreter* interpreter() { return interpreter_; }
WasmExecutionMode execution_mode() { return execution_mode_; } bool interpret() { return interpreter_ != nullptr; }
Isolate* isolate() { return isolate_; } Isolate* isolate() { return isolate_; }
Handle<WasmInstanceObject> instance_object() { return instance_object_; } Handle<WasmInstanceObject> instance_object() { return instance_object_; }
private: private:
WasmExecutionMode execution_mode_;
WasmModule module_; WasmModule module_;
WasmInstance instance_; WasmInstance instance_;
Isolate* isolate_; Isolate* isolate_;
...@@ -566,7 +545,6 @@ class WasmFunctionCompiler : private GraphAndBuilders { ...@@ -566,7 +545,6 @@ class WasmFunctionCompiler : private GraphAndBuilders {
if (interpreter_) { if (interpreter_) {
// Add the code to the interpreter. // Add the code to the interpreter.
interpreter_->SetFunctionCodeForTesting(function_, start, end); interpreter_->SetFunctionCodeForTesting(function_, start, end);
return;
} }
// Build the TurboFan graph. // Build the TurboFan graph.
...@@ -714,7 +692,10 @@ class WasmRunnerBase : public HandleAndZoneScope { ...@@ -714,7 +692,10 @@ class WasmRunnerBase : public HandleAndZoneScope {
uint32_t function_index() { return functions_[0]->function_index(); } uint32_t function_index() { return functions_[0]->function_index(); }
WasmFunction* function() { return functions_[0]->function_; } WasmFunction* function() { return functions_[0]->function_; }
WasmInterpreter* interpreter() { return functions_[0]->interpreter_; } WasmInterpreter* interpreter() {
DCHECK(interpret());
return functions_[0]->interpreter_;
}
bool possible_nondeterminism() { return possible_nondeterminism_; } bool possible_nondeterminism() { return possible_nondeterminism_; }
TestingModule& module() { return module_; } TestingModule& module() { return module_; }
Zone* zone() { return &zone_; } Zone* zone() { return &zone_; }
...@@ -729,6 +710,8 @@ class WasmRunnerBase : public HandleAndZoneScope { ...@@ -729,6 +710,8 @@ class WasmRunnerBase : public HandleAndZoneScope {
module_.instance->context = main_isolate()->native_context(); module_.instance->context = main_isolate()->native_context();
} }
bool interpret() { return module_.interpret(); }
private: private:
FunctionSig* CreateSig(MachineType return_type, FunctionSig* CreateSig(MachineType return_type,
Vector<MachineType> param_types) { Vector<MachineType> param_types) {
...@@ -768,8 +751,6 @@ class WasmRunnerBase : public HandleAndZoneScope { ...@@ -768,8 +751,6 @@ class WasmRunnerBase : public HandleAndZoneScope {
bool compiled_ = false; bool compiled_ = false;
bool possible_nondeterminism_ = false; bool possible_nondeterminism_ = false;
bool interpret() { return module_.execution_mode() == kExecuteInterpreted; }
public: public:
// This field has to be static. Otherwise, gcc complains about the use in // This field has to be static. Otherwise, gcc complains about the use in
// the lambda context below. // the lambda context below.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment