2016-04-19 14:19:58 +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"
|
2020-02-20 07:54:45 +00:00
|
|
|
#include "src/objects/stack-frame-info-inl.h"
|
2016-04-19 14:19:58 +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-04-19 14:19:58 +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_stack {
|
2016-04-19 14:19:58 +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-04-19 14:19:58 +00:00
|
|
|
|
2017-08-24 21:49:48 +00:00
|
|
|
void PrintStackTrace(v8::Isolate* isolate, v8::Local<v8::StackTrace> stack) {
|
2016-04-19 14:19:58 +00:00
|
|
|
printf("Stack Trace (length %d):\n", stack->GetFrameCount());
|
|
|
|
for (int i = 0, e = stack->GetFrameCount(); i != e; ++i) {
|
2018-07-24 14:42:13 +00:00
|
|
|
v8::Local<v8::StackFrame> frame = stack->GetFrame(isolate, i);
|
2016-04-19 14:19:58 +00:00
|
|
|
v8::Local<v8::String> script = frame->GetScriptName();
|
|
|
|
v8::Local<v8::String> func = frame->GetFunctionName();
|
2017-08-24 21:49:48 +00:00
|
|
|
printf(
|
|
|
|
"[%d] (%s) %s:%d:%d\n", i,
|
|
|
|
script.IsEmpty() ? "<null>" : *v8::String::Utf8Value(isolate, script),
|
|
|
|
func.IsEmpty() ? "<null>" : *v8::String::Utf8Value(isolate, func),
|
|
|
|
frame->GetLineNumber(), frame->GetColumn());
|
2016-04-19 14:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ExceptionInfo {
|
2016-05-06 09:07:30 +00:00
|
|
|
const char* func_name;
|
2017-08-31 10:28:47 +00:00
|
|
|
int line_nr; // 1-based
|
|
|
|
int column; // 1-based
|
2016-04-19 14:19:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <int N>
|
2017-08-24 21:49:48 +00:00
|
|
|
void CheckExceptionInfos(v8::internal::Isolate* i_isolate, Handle<Object> exc,
|
2016-04-19 14:19:58 +00:00
|
|
|
const ExceptionInfo (&excInfos)[N]) {
|
2016-04-20 15:09:36 +00:00
|
|
|
// Check that it's indeed an Error object.
|
2016-06-27 09:31:59 +00:00
|
|
|
CHECK(exc->IsJSError());
|
2016-04-19 14:19:58 +00:00
|
|
|
|
2017-08-24 21:49:48 +00:00
|
|
|
v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(i_isolate);
|
|
|
|
|
2016-04-20 15:09:36 +00:00
|
|
|
// Extract stack frame from the exception.
|
2016-04-19 14:19:58 +00:00
|
|
|
Local<v8::Value> localExc = Utils::ToLocal(exc);
|
|
|
|
v8::Local<v8::StackTrace> stack = v8::Exception::GetStackTrace(localExc);
|
2017-08-24 21:49:48 +00:00
|
|
|
PrintStackTrace(v8_isolate, stack);
|
2016-04-19 14:19:58 +00:00
|
|
|
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-06 09:07:30 +00:00
|
|
|
CHECK_CSTREQ(excInfos[frameNr].func_name, *funName);
|
2017-08-31 10:28:47 +00:00
|
|
|
// Line and column are 1-based in v8::StackFrame, just as in ExceptionInfo.
|
2016-05-06 09:07:30 +00:00
|
|
|
CHECK_EQ(excInfos[frameNr].line_nr, frame->GetLineNumber());
|
|
|
|
CHECK_EQ(excInfos[frameNr].column, frame->GetColumn());
|
2016-04-19 14:19:58 +00:00
|
|
|
}
|
2017-08-31 10:28:47 +00:00
|
|
|
|
|
|
|
CheckComputeLocation(i_isolate, exc, excInfos[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckComputeLocation(v8::internal::Isolate* i_isolate, Handle<Object> exc,
|
|
|
|
const ExceptionInfo& topLocation) {
|
|
|
|
MessageLocation loc;
|
|
|
|
CHECK(i_isolate->ComputeLocationFromStackTrace(&loc, exc));
|
|
|
|
printf("loc start: %d, end: %d\n", loc.start_pos(), loc.end_pos());
|
|
|
|
Handle<JSMessageObject> message = i_isolate->CreateMessage(exc, nullptr);
|
|
|
|
printf("msg start: %d, end: %d, line: %d, col: %d\n",
|
2019-05-09 09:26:56 +00:00
|
|
|
message->GetStartPosition(), message->GetEndPosition(),
|
2017-08-31 10:28:47 +00:00
|
|
|
message->GetLineNumber(), message->GetColumnNumber());
|
2019-05-09 09:26:56 +00:00
|
|
|
CHECK_EQ(loc.start_pos(), message->GetStartPosition());
|
|
|
|
CHECK_EQ(loc.end_pos(), message->GetEndPosition());
|
2017-08-31 10:28:47 +00:00
|
|
|
// In the message, the line is 1-based, but the column is 0-based.
|
|
|
|
CHECK_EQ(topLocation.line_nr, message->GetLineNumber());
|
|
|
|
CHECK_LE(1, topLocation.column);
|
2019-06-13 08:22:03 +00:00
|
|
|
// TODO(szuend): Remove or re-enable the following check once it is decided
|
|
|
|
// whether Script::PositionInfo.column should be the offset
|
|
|
|
// relative to the module or relative to the function.
|
|
|
|
// CHECK_EQ(topLocation.column - 1, message->GetColumnNumber());
|
2016-04-19 14:19:58 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 13:59:05 +00:00
|
|
|
#undef CHECK_CSTREQ
|
|
|
|
|
2016-04-19 14:19:58 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-06-09 12:21:52 +00:00
|
|
|
// Call from JS to wasm to JS and throw an Error from JS.
|
2020-05-05 10:23:41 +00:00
|
|
|
WASM_COMPILED_EXEC_TEST(CollectDetailedWasmStack_ExplicitThrowFromJs) {
|
2016-04-19 14:19:58 +00:00
|
|
|
TestSignatures sigs;
|
2018-04-06 10:18:18 +00:00
|
|
|
HandleScope scope(CcTest::InitIsolateOnce());
|
|
|
|
const char* source =
|
|
|
|
"(function js() {\n function a() {\n throw new Error(); };\n a(); })";
|
|
|
|
Handle<JSFunction> js_function =
|
|
|
|
Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
|
|
|
*v8::Local<v8::Function>::Cast(CompileRun(source))));
|
|
|
|
ManuallyImportedJSFunction import = {sigs.v_v(), js_function};
|
|
|
|
uint32_t js_throwing_index = 0;
|
2018-08-21 15:01:31 +00:00
|
|
|
WasmRunner<void> r(execution_tier, &import);
|
2016-04-19 14:19:58 +00:00
|
|
|
|
2016-05-06 09:07:30 +00:00
|
|
|
// Add a nop such that we don't always get position 1.
|
2016-12-16 10:13:11 +00:00
|
|
|
BUILD(r, WASM_NOP, WASM_CALL_FUNCTION0(js_throwing_index));
|
|
|
|
uint32_t wasm_index_1 = r.function()->func_index;
|
2016-04-19 14:19:58 +00:00
|
|
|
|
2016-12-19 15:03:13 +00:00
|
|
|
WasmFunctionCompiler& f2 = r.NewFunction<void>("call_main");
|
2016-12-16 10:13:11 +00:00
|
|
|
BUILD(f2, WASM_CALL_FUNCTION0(wasm_index_1));
|
|
|
|
uint32_t wasm_index_2 = f2.function_index();
|
2016-04-19 14:19:58 +00:00
|
|
|
|
2017-08-19 16:34:11 +00:00
|
|
|
Handle<JSFunction> js_wasm_wrapper = r.builder().WrapCode(wasm_index_2);
|
2016-04-19 14:19:58 +00:00
|
|
|
|
2016-04-20 15:09:36 +00:00
|
|
|
Handle<JSFunction> js_trampoline = Handle<JSFunction>::cast(
|
2016-04-19 14:19:58 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CompileRun("(function callFn(fn) { fn(); })"))));
|
|
|
|
|
2016-04-20 15:09:36 +00:00
|
|
|
Isolate* isolate = js_wasm_wrapper->GetIsolate();
|
2016-04-19 14:19:58 +00:00
|
|
|
isolate->SetCaptureStackTraceForUncaughtExceptions(true, 10,
|
|
|
|
v8::StackTrace::kOverview);
|
|
|
|
Handle<Object> global(isolate->context().global_object(), isolate);
|
2016-04-20 15:09:36 +00:00
|
|
|
MaybeHandle<Object> maybe_exc;
|
|
|
|
Handle<Object> args[] = {js_wasm_wrapper};
|
2016-04-19 14:19:58 +00:00
|
|
|
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-04-19 14:19:58 +00:00
|
|
|
CHECK(returnObjMaybe.is_null());
|
|
|
|
|
2016-04-20 15:09:36 +00:00
|
|
|
ExceptionInfo expected_exceptions[] = {
|
2019-11-05 13:15:28 +00:00
|
|
|
{"a", 3, 8}, // -
|
|
|
|
{"js", 4, 2}, // -
|
|
|
|
{"main", 1, 8}, // -
|
|
|
|
{"call_main", 1, 21}, // -
|
|
|
|
{"callFn", 1, 24} // -
|
2016-05-06 09:07:30 +00:00
|
|
|
};
|
2017-08-24 21:49:48 +00:00
|
|
|
CheckExceptionInfos(isolate, maybe_exc.ToHandleChecked(),
|
|
|
|
expected_exceptions);
|
2016-04-20 15:09:36 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 07:54:45 +00:00
|
|
|
// Trigger a trap in wasm, stack should contain a source url.
|
2020-05-05 10:23:41 +00:00
|
|
|
WASM_COMPILED_EXEC_TEST(CollectDetailedWasmStack_WasmUrl) {
|
2020-02-20 07:54:45 +00:00
|
|
|
// Create a WasmRunner with stack checks and traps enabled.
|
|
|
|
WasmRunner<int> r(execution_tier, nullptr, "main", kRuntimeExceptionSupport);
|
|
|
|
|
|
|
|
std::vector<byte> code(1, kExprUnreachable);
|
|
|
|
r.Build(code.data(), code.data() + code.size());
|
|
|
|
|
|
|
|
WasmFunctionCompiler& f = r.NewFunction<int>("call_main");
|
|
|
|
BUILD(f, WASM_CALL_FUNCTION0(0));
|
|
|
|
uint32_t wasm_index = f.function_index();
|
|
|
|
|
|
|
|
Handle<JSFunction> js_wasm_wrapper = r.builder().WrapCode(wasm_index);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
// Set the wasm script source url.
|
|
|
|
const char* url = "http://example.com/example.wasm";
|
|
|
|
const Handle<String> source_url =
|
|
|
|
isolate->factory()->InternalizeUtf8String(url);
|
|
|
|
r.builder().instance_object()->module_object().script().set_source_url(
|
|
|
|
*source_url);
|
|
|
|
|
|
|
|
// Run the js wrapper.
|
|
|
|
Handle<Object> global(isolate->context().global_object(), isolate);
|
|
|
|
MaybeHandle<Object> maybe_exc;
|
|
|
|
Handle<Object> args[] = {js_wasm_wrapper};
|
|
|
|
MaybeHandle<Object> maybe_return_obj =
|
|
|
|
Execution::TryCall(isolate, js_trampoline, global, 1, args,
|
|
|
|
Execution::MessageHandling::kReport, &maybe_exc);
|
|
|
|
|
|
|
|
CHECK(maybe_return_obj.is_null());
|
|
|
|
Handle<Object> exception = maybe_exc.ToHandleChecked();
|
|
|
|
|
|
|
|
// Extract stack trace from the exception.
|
|
|
|
Handle<FixedArray> stack_trace_object =
|
|
|
|
isolate->GetDetailedStackTrace(Handle<JSObject>::cast(exception));
|
|
|
|
CHECK(!stack_trace_object.is_null());
|
|
|
|
Handle<StackTraceFrame> stack_frame = Handle<StackTraceFrame>::cast(
|
|
|
|
handle(stack_trace_object->get(0), isolate));
|
|
|
|
|
|
|
|
MaybeHandle<String> maybe_stack_trace_str =
|
|
|
|
SerializeStackTraceFrame(isolate, stack_frame);
|
|
|
|
CHECK(!maybe_stack_trace_str.is_null());
|
|
|
|
Handle<String> stack_trace_str = maybe_stack_trace_str.ToHandleChecked();
|
|
|
|
|
|
|
|
// Check if the source_url is part of the stack trace.
|
|
|
|
CHECK_NE(std::string(stack_trace_str->ToCString().get()).find(url),
|
|
|
|
std::string::npos);
|
|
|
|
}
|
|
|
|
|
2017-06-09 12:21:52 +00:00
|
|
|
// Trigger a trap in wasm, stack should be JS -> wasm -> wasm.
|
2020-05-05 10:23:41 +00:00
|
|
|
WASM_COMPILED_EXEC_TEST(CollectDetailedWasmStack_WasmError) {
|
2017-08-31 10:28:47 +00:00
|
|
|
for (int pos_shift = 0; pos_shift < 3; ++pos_shift) {
|
|
|
|
// Test a position with 1, 2 or 3 bytes needed to represent it.
|
|
|
|
int unreachable_pos = 1 << (8 * pos_shift);
|
|
|
|
TestSignatures sigs;
|
|
|
|
// Create a WasmRunner with stack checks and traps enabled.
|
2018-09-13 14:55:18 +00:00
|
|
|
WasmRunner<int> r(execution_tier, nullptr, "main",
|
|
|
|
kRuntimeExceptionSupport);
|
2017-08-31 10:28:47 +00:00
|
|
|
|
|
|
|
std::vector<byte> code(unreachable_pos + 1, kExprNop);
|
|
|
|
code[unreachable_pos] = kExprUnreachable;
|
|
|
|
r.Build(code.data(), code.data() + code.size());
|
|
|
|
|
|
|
|
uint32_t wasm_index_1 = r.function()->func_index;
|
|
|
|
|
|
|
|
WasmFunctionCompiler& f2 = r.NewFunction<int>("call_main");
|
|
|
|
BUILD(f2, WASM_CALL_FUNCTION0(0));
|
|
|
|
uint32_t wasm_index_2 = f2.function_index();
|
|
|
|
|
|
|
|
Handle<JSFunction> js_wasm_wrapper = r.builder().WrapCode(wasm_index_2);
|
|
|
|
|
|
|
|
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> maybe_return_obj =
|
|
|
|
Execution::TryCall(isolate, js_trampoline, global, 1, args,
|
|
|
|
Execution::MessageHandling::kReport, &maybe_exc);
|
|
|
|
CHECK(maybe_return_obj.is_null());
|
|
|
|
Handle<Object> exception = maybe_exc.ToHandleChecked();
|
|
|
|
|
|
|
|
static constexpr int kMainLocalsLength = 1;
|
2019-06-13 08:22:03 +00:00
|
|
|
const int main_offset =
|
|
|
|
r.builder().GetFunctionAt(wasm_index_1)->code.offset();
|
|
|
|
const int call_main_offset =
|
|
|
|
r.builder().GetFunctionAt(wasm_index_2)->code.offset();
|
|
|
|
|
2019-11-05 13:15:28 +00:00
|
|
|
// Column is 1-based, so add 1 for the expected wasm output. Line number
|
|
|
|
// is always 1.
|
2019-06-13 08:22:03 +00:00
|
|
|
const int expected_main_pos =
|
|
|
|
unreachable_pos + main_offset + kMainLocalsLength + 1;
|
|
|
|
const int expected_call_main_pos = call_main_offset + kMainLocalsLength + 1;
|
2017-08-31 10:28:47 +00:00
|
|
|
ExceptionInfo expected_exceptions[] = {
|
2019-11-05 13:15:28 +00:00
|
|
|
{"main", 1, expected_main_pos}, // -
|
|
|
|
{"call_main", 1, expected_call_main_pos}, // -
|
|
|
|
{"callFn", 1, 24} //-
|
2017-08-31 10:28:47 +00:00
|
|
|
};
|
|
|
|
CheckExceptionInfos(isolate, exception, expected_exceptions);
|
|
|
|
}
|
2016-04-19 14:19:58 +00:00
|
|
|
}
|
2017-09-01 12:57:34 +00:00
|
|
|
|
2017-09-21 03:29:52 +00:00
|
|
|
} // namespace test_wasm_stack
|
2017-09-01 12:57:34 +00:00
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|