Commit 59807ec5 authored by Patrick Thier's avatar Patrick Thier Committed by Commit Bot

Fix d8.test.verifySourcePositions

Add check, that passed argument is a HeapObject.

Bug: chromium:1196503
Change-Id: I23d951b5581781ad3c6867d81c765d13c329d3a8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2808936
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Auto-Submit: Patrick Thier <pthier@chromium.org>
Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73820}
parent 6fda8022
...@@ -1815,19 +1815,21 @@ void Shell::TestVerifySourcePositions( ...@@ -1815,19 +1815,21 @@ void Shell::TestVerifySourcePositions(
const v8::FunctionCallbackInfo<v8::Value>& args) { const v8::FunctionCallbackInfo<v8::Value>& args) {
Isolate* isolate = args.GetIsolate(); Isolate* isolate = args.GetIsolate();
// Check if the argument is a valid function. // Check if the argument is a valid function.
if (args.Length() != 1 || if (args.Length() != 1) {
!i::Handle<i::HeapObject>::cast(Utils::OpenHandle(*args[0])) Throw(isolate, "Expected function as single argument.");
->IsJSFunctionOrBoundFunction()) { return;
}
auto arg_handle = Utils::OpenHandle(*args[0]);
if (!arg_handle->IsHeapObject() || !i::Handle<i::HeapObject>::cast(arg_handle)
->IsJSFunctionOrBoundFunction()) {
Throw(isolate, "Expected function as single argument."); Throw(isolate, "Expected function as single argument.");
return; return;
} }
Local<Value> arg_fun = args[0];
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
HandleScope handle_scope(isolate); HandleScope handle_scope(isolate);
auto callable = i::Handle<i::JSFunctionOrBoundFunction>::cast( auto callable = i::Handle<i::JSFunctionOrBoundFunction>::cast(arg_handle);
Utils::OpenHandle(*arg_fun));
while (callable->IsJSBoundFunction()) { while (callable->IsJSBoundFunction()) {
auto bound_function = i::Handle<i::JSBoundFunction>::cast(callable); auto bound_function = i::Handle<i::JSBoundFunction>::cast(callable);
auto bound_target = bound_function->bound_target_function(); auto bound_target = bound_function->bound_target_function();
......
...@@ -31,5 +31,7 @@ foo(obj, obj); ...@@ -31,5 +31,7 @@ foo(obj, obj);
d8.test.verifySourcePositions(foo); d8.test.verifySourcePositions(foo);
// Make sure invalid calls throw. // Make sure invalid calls throw.
assertThrows(() => {d8.test.verifySourcePositions(0)});
assertThrows(() => {d8.test.verifySourcePositions(obj)});
assertThrows(() => {d8.test.verifySourcePositions(new Proxy(foo, {}))}); assertThrows(() => {d8.test.verifySourcePositions(new Proxy(foo, {}))});
assertThrows(() => {d8.test.verifySourcePositions(%GetUndetectable())}); assertThrows(() => {d8.test.verifySourcePositions(%GetUndetectable())});
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