2016-05-12 09:06:47 +00:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2019-05-17 12:13:44 +00:00
|
|
|
#include "src/api/api-inl.h"
|
2019-05-21 09:30:15 +00:00
|
|
|
#include "src/codegen/assembler-inl.h"
|
2017-03-13 22:12:23 +00:00
|
|
|
#include "src/trap-handler/trap-handler.h"
|
2016-05-12 09:06:47 +00:00
|
|
|
#include "test/cctest/cctest.h"
|
|
|
|
#include "test/cctest/compiler/value-helper.h"
|
|
|
|
#include "test/cctest/wasm/wasm-run-utils.h"
|
2016-10-05 11:59:47 +00:00
|
|
|
#include "test/common/wasm/test-signatures.h"
|
2017-04-25 11:29:17 +00:00
|
|
|
#include "test/common/wasm/wasm-macro-gen.h"
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-09-01 12:57:34 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
2017-09-21 03:29:52 +00:00
|
|
|
namespace test_wasm_trap_position {
|
2016-05-12 09:06:47 +00:00
|
|
|
|
|
|
|
using v8::Local;
|
|
|
|
using v8::Utils;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-05-10 18:55:22 +00:00
|
|
|
#define CHECK_CSTREQ(exp, found) \
|
|
|
|
do { \
|
|
|
|
const char* exp_ = (exp); \
|
|
|
|
const char* found_ = (found); \
|
|
|
|
DCHECK_NOT_NULL(exp); \
|
|
|
|
if (V8_UNLIKELY(found_ == nullptr || strcmp(exp_, found_) != 0)) { \
|
|
|
|
FATAL("Check failed: (%s) != (%s) ('%s' vs '%s').", #exp, #found, exp_, \
|
|
|
|
found_ ? found_ : "<null>"); \
|
|
|
|
} \
|
2018-09-19 17:41:30 +00:00
|
|
|
} while (false)
|
2016-05-12 09:06:47 +00:00
|
|
|
|
|
|
|
struct ExceptionInfo {
|
|
|
|
const char* func_name;
|
|
|
|
int line_nr;
|
|
|
|
int column;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <int N>
|
2017-08-24 21:49:48 +00:00
|
|
|
void CheckExceptionInfos(v8::internal::Isolate* i_isolate, Handle<Object> exc,
|
2016-05-12 09:06:47 +00:00
|
|
|
const ExceptionInfo (&excInfos)[N]) {
|
|
|
|
// Check that it's indeed an Error object.
|
2016-06-27 09:31:59 +00:00
|
|
|
CHECK(exc->IsJSError());
|
2017-08-24 21:49:48 +00:00
|
|
|
v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(i_isolate);
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2018-07-12 10:06:42 +00:00
|
|
|
exc->Print();
|
2016-05-12 09:06:47 +00:00
|
|
|
// Extract stack frame from the exception.
|
|
|
|
Local<v8::Value> localExc = Utils::ToLocal(exc);
|
|
|
|
v8::Local<v8::StackTrace> stack = v8::Exception::GetStackTrace(localExc);
|
|
|
|
CHECK(!stack.IsEmpty());
|
|
|
|
CHECK_EQ(N, stack->GetFrameCount());
|
|
|
|
|
|
|
|
for (int frameNr = 0; frameNr < N; ++frameNr) {
|
2018-07-24 14:42:13 +00:00
|
|
|
v8::Local<v8::StackFrame> frame = stack->GetFrame(v8_isolate, frameNr);
|
2017-08-24 21:49:48 +00:00
|
|
|
v8::String::Utf8Value funName(v8_isolate, frame->GetFunctionName());
|
2016-05-12 09:06:47 +00:00
|
|
|
CHECK_CSTREQ(excInfos[frameNr].func_name, *funName);
|
|
|
|
CHECK_EQ(excInfos[frameNr].line_nr, frame->GetLineNumber());
|
|
|
|
CHECK_EQ(excInfos[frameNr].column, frame->GetColumn());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-08 13:59:05 +00:00
|
|
|
#undef CHECK_CSTREQ
|
|
|
|
|
2016-05-12 09:06:47 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Trigger a trap for executing unreachable.
|
2020-05-05 10:23:41 +00:00
|
|
|
WASM_COMPILED_EXEC_TEST(Unreachable) {
|
2017-07-26 20:12:27 +00:00
|
|
|
// Create a WasmRunner with stack checks and traps enabled.
|
2018-09-13 14:55:18 +00:00
|
|
|
WasmRunner<void> r(execution_tier, nullptr, "main", kRuntimeExceptionSupport);
|
2016-05-12 09:06:47 +00:00
|
|
|
TestSignatures sigs;
|
2016-12-16 10:13:11 +00:00
|
|
|
|
|
|
|
BUILD(r, WASM_UNREACHABLE);
|
|
|
|
uint32_t wasm_index = r.function()->func_index;
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-19 16:34:11 +00:00
|
|
|
Handle<JSFunction> js_wasm_wrapper = r.builder().WrapCode(wasm_index);
|
2016-05-12 09:06:47 +00:00
|
|
|
|
|
|
|
Handle<JSFunction> js_trampoline = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CompileRun("(function callFn(fn) { fn(); })"))));
|
|
|
|
|
|
|
|
Isolate* isolate = js_wasm_wrapper->GetIsolate();
|
|
|
|
isolate->SetCaptureStackTraceForUncaughtExceptions(true, 10,
|
|
|
|
v8::StackTrace::kOverview);
|
|
|
|
Handle<Object> global(isolate->context().global_object(), isolate);
|
|
|
|
MaybeHandle<Object> maybe_exc;
|
|
|
|
Handle<Object> args[] = {js_wasm_wrapper};
|
|
|
|
MaybeHandle<Object> returnObjMaybe =
|
2017-01-17 13:01:03 +00:00
|
|
|
Execution::TryCall(isolate, js_trampoline, global, 1, args,
|
|
|
|
Execution::MessageHandling::kReport, &maybe_exc);
|
2016-05-12 09:06:47 +00:00
|
|
|
CHECK(returnObjMaybe.is_null());
|
|
|
|
|
|
|
|
ExceptionInfo expected_exceptions[] = {
|
2019-11-05 13:15:28 +00:00
|
|
|
{"main", 1, 7}, // --
|
|
|
|
{"callFn", 1, 24} // --
|
2016-05-12 09:06:47 +00:00
|
|
|
};
|
2017-08-24 21:49:48 +00:00
|
|
|
CheckExceptionInfos(isolate, maybe_exc.ToHandleChecked(),
|
|
|
|
expected_exceptions);
|
2016-05-12 09:06:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Trigger a trap for loading from out-of-bounds.
|
2020-05-05 10:23:41 +00:00
|
|
|
WASM_COMPILED_EXEC_TEST(IllegalLoad) {
|
2018-09-13 14:55:18 +00:00
|
|
|
WasmRunner<void> r(execution_tier, nullptr, "main", kRuntimeExceptionSupport);
|
2016-05-12 09:06:47 +00:00
|
|
|
TestSignatures sigs;
|
2017-07-26 20:12:27 +00:00
|
|
|
|
2017-08-19 16:34:11 +00:00
|
|
|
r.builder().AddMemory(0L);
|
2016-12-16 10:13:11 +00:00
|
|
|
|
|
|
|
BUILD(r, WASM_IF(WASM_ONE, WASM_SEQ(WASM_LOAD_MEM(MachineType::Int32(),
|
|
|
|
WASM_I32V_1(-3)),
|
|
|
|
WASM_DROP)));
|
|
|
|
uint32_t wasm_index_1 = r.function()->func_index;
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2016-12-19 15:03:13 +00:00
|
|
|
WasmFunctionCompiler& f2 = r.NewFunction<void>("call_main");
|
2016-05-12 09:06:47 +00:00
|
|
|
// Insert a NOP such that the position of the call is not one.
|
2016-12-16 10:13:11 +00:00
|
|
|
BUILD(f2, WASM_NOP, WASM_CALL_FUNCTION0(wasm_index_1));
|
|
|
|
uint32_t wasm_index_2 = f2.function_index();
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-19 16:34:11 +00:00
|
|
|
Handle<JSFunction> js_wasm_wrapper = r.builder().WrapCode(wasm_index_2);
|
2016-05-12 09:06:47 +00:00
|
|
|
|
|
|
|
Handle<JSFunction> js_trampoline = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CompileRun("(function callFn(fn) { fn(); })"))));
|
|
|
|
|
|
|
|
Isolate* isolate = js_wasm_wrapper->GetIsolate();
|
|
|
|
isolate->SetCaptureStackTraceForUncaughtExceptions(true, 10,
|
|
|
|
v8::StackTrace::kOverview);
|
|
|
|
Handle<Object> global(isolate->context().global_object(), isolate);
|
|
|
|
MaybeHandle<Object> maybe_exc;
|
|
|
|
Handle<Object> args[] = {js_wasm_wrapper};
|
|
|
|
MaybeHandle<Object> returnObjMaybe =
|
2017-01-17 13:01:03 +00:00
|
|
|
Execution::TryCall(isolate, js_trampoline, global, 1, args,
|
|
|
|
Execution::MessageHandling::kReport, &maybe_exc);
|
2016-05-12 09:06:47 +00:00
|
|
|
CHECK(returnObjMaybe.is_null());
|
|
|
|
|
|
|
|
ExceptionInfo expected_exceptions[] = {
|
2019-11-05 13:15:28 +00:00
|
|
|
{"main", 1, 13}, // --
|
|
|
|
{"call_main", 1, 30}, // --
|
|
|
|
{"callFn", 1, 24} // --
|
2016-05-12 09:06:47 +00:00
|
|
|
};
|
2017-08-24 21:49:48 +00:00
|
|
|
CheckExceptionInfos(isolate, maybe_exc.ToHandleChecked(),
|
|
|
|
expected_exceptions);
|
2016-05-12 09:06:47 +00:00
|
|
|
}
|
2017-09-01 12:57:34 +00:00
|
|
|
|
2017-09-21 03:29:52 +00:00
|
|
|
} // namespace test_wasm_trap_position
|
2017-09-01 12:57:34 +00:00
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|