Skip to content

Commit 1061e43

Browse files
psmarshalljasnell
authored andcommitted
v8: backport faf5f52627c from upstream v8
Original commit message: [debugger,api] deprecate everything in v8-debug.h R=clemensh@chromium.org, jgruber@chromium.org BUG=v8:5530 Review-Url: https://codereview.chromium.org/2727393003 Cr-Commit-Position: refs/heads/master@{#43714} PR-URL: #13217 Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent a56f969 commit 1061e43

File tree

6 files changed

+323
-353
lines changed

6 files changed

+323
-353
lines changed

deps/v8/include/v8-debug.h

+24-19
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
#include "v8.h" // NOLINT(build/include)
99

1010
/**
11-
* Debugger support for the V8 JavaScript engine.
11+
* ATTENTION: The debugger API exposed by this file is deprecated and will be
12+
* removed by the end of 2017. Please use the V8 inspector declared
13+
* in include/v8-inspector.h instead.
1214
*/
1315
namespace v8 {
1416

@@ -140,21 +142,19 @@ class V8_EXPORT Debug {
140142
*/
141143
typedef void (*MessageHandler)(const Message& message);
142144

143-
/**
144-
* This is now a no-op.
145-
*/
146-
typedef void (*DebugMessageDispatchHandler)();
147-
148-
static bool SetDebugEventListener(Isolate* isolate, EventCallback that,
149-
Local<Value> data = Local<Value>());
145+
V8_DEPRECATED("No longer supported", static bool SetDebugEventListener(
146+
Isolate* isolate, EventCallback that,
147+
Local<Value> data = Local<Value>()));
150148

151149
// Schedule a debugger break to happen when JavaScript code is run
152150
// in the given isolate.
153-
static void DebugBreak(Isolate* isolate);
151+
V8_DEPRECATED("No longer supported",
152+
static void DebugBreak(Isolate* isolate));
154153

155154
// Remove scheduled debugger break in given isolate if it has not
156155
// happened yet.
157-
static void CancelDebugBreak(Isolate* isolate);
156+
V8_DEPRECATED("No longer supported",
157+
static void CancelDebugBreak(Isolate* isolate));
158158

159159
// Check if a debugger break is scheduled in the given isolate.
160160
V8_DEPRECATED("No longer supported",
@@ -189,10 +189,10 @@ class V8_EXPORT Debug {
189189
* }
190190
* \endcode
191191
*/
192-
// TODO(dcarney): data arg should be a MaybeLocal
193-
static MaybeLocal<Value> Call(Local<Context> context,
194-
v8::Local<v8::Function> fun,
195-
Local<Value> data = Local<Value>());
192+
V8_DEPRECATED("No longer supported",
193+
static MaybeLocal<Value> Call(
194+
Local<Context> context, v8::Local<v8::Function> fun,
195+
Local<Value> data = Local<Value>()));
196196

197197
// This is now a no-op.
198198
V8_DEPRECATED("No longer supported",
@@ -221,23 +221,28 @@ class V8_EXPORT Debug {
221221
* (default Isolate if not provided). V8 will abort if LiveEdit is
222222
* unexpectedly used. LiveEdit is enabled by default.
223223
*/
224-
static void SetLiveEditEnabled(Isolate* isolate, bool enable);
224+
V8_DEPRECATED("No longer supported",
225+
static void SetLiveEditEnabled(Isolate* isolate, bool enable));
225226

226227
/**
227228
* Returns array of internal properties specific to the value type. Result has
228229
* the following format: [<name>, <value>,...,<name>, <value>]. Result array
229230
* will be allocated in the current context.
230231
*/
231-
static MaybeLocal<Array> GetInternalProperties(Isolate* isolate,
232-
Local<Value> value);
232+
V8_DEPRECATED("No longer supported",
233+
static MaybeLocal<Array> GetInternalProperties(
234+
Isolate* isolate, Local<Value> value));
233235

234236
/**
235237
* Defines if the ES2015 tail call elimination feature is enabled or not.
236238
* The change of this flag triggers deoptimization of all functions that
237239
* contain calls at tail position.
238240
*/
239-
static bool IsTailCallEliminationEnabled(Isolate* isolate);
240-
static void SetTailCallEliminationEnabled(Isolate* isolate, bool enabled);
241+
V8_DEPRECATED("No longer supported",
242+
static bool IsTailCallEliminationEnabled(Isolate* isolate));
243+
V8_DEPRECATED("No longer supported",
244+
static void SetTailCallEliminationEnabled(Isolate* isolate,
245+
bool enabled));
241246
};
242247

243248

deps/v8/src/api.cc

+32-37
Original file line numberDiff line numberDiff line change
@@ -8931,17 +8931,12 @@ bool Debug::SetDebugEventListener(Isolate* isolate, EventCallback that,
89318931
return true;
89328932
}
89338933

8934-
void Debug::DebugBreak(Isolate* isolate) {
8935-
reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak();
8936-
}
8937-
8934+
void Debug::DebugBreak(Isolate* isolate) { debug::DebugBreak(isolate); }
89388935

89398936
void Debug::CancelDebugBreak(Isolate* isolate) {
8940-
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
8941-
internal_isolate->stack_guard()->ClearDebugBreak();
8937+
debug::CancelDebugBreak(isolate);
89428938
}
89438939

8944-
89458940
bool Debug::CheckDebugBreak(Isolate* isolate) {
89468941
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
89478942
return internal_isolate->stack_guard()->CheckDebugBreak();
@@ -8956,29 +8951,15 @@ void Debug::SendCommand(Isolate* isolate, const uint16_t* command, int length,
89568951
MaybeLocal<Value> Debug::Call(Local<Context> context,
89578952
v8::Local<v8::Function> fun,
89588953
v8::Local<v8::Value> data) {
8959-
PREPARE_FOR_EXECUTION(context, Debug, Call, Value);
8960-
i::Handle<i::Object> data_obj;
8961-
if (data.IsEmpty()) {
8962-
data_obj = isolate->factory()->undefined_value();
8963-
} else {
8964-
data_obj = Utils::OpenHandle(*data);
8965-
}
8966-
Local<Value> result;
8967-
has_pending_exception =
8968-
!ToLocal<Value>(isolate->debug()->Call(Utils::OpenHandle(*fun), data_obj),
8969-
&result);
8970-
RETURN_ON_FAILED_EXECUTION(Value);
8971-
RETURN_ESCAPED(result);
8954+
return debug::Call(context, fun, data);
89728955
}
89738956

8974-
89758957
void Debug::ProcessDebugMessages(Isolate* isolate) {}
89768958

89778959
Local<Context> Debug::GetDebugContext(Isolate* isolate) {
89788960
return debug::GetDebugContext(isolate);
89798961
}
89808962

8981-
89828963
MaybeLocal<Context> Debug::GetDebuggedContext(Isolate* isolate) {
89838964
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
89848965
ENTER_V8(i_isolate);
@@ -8989,8 +8970,7 @@ MaybeLocal<Context> Debug::GetDebuggedContext(Isolate* isolate) {
89898970
}
89908971

89918972
void Debug::SetLiveEditEnabled(Isolate* isolate, bool enable) {
8992-
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
8993-
internal_isolate->debug()->set_live_edit_enabled(enable);
8973+
debug::SetLiveEditEnabled(isolate, enable);
89948974
}
89958975

89968976
bool Debug::IsTailCallEliminationEnabled(Isolate* isolate) {
@@ -9005,13 +8985,7 @@ void Debug::SetTailCallEliminationEnabled(Isolate* isolate, bool enabled) {
90058985

90068986
MaybeLocal<Array> Debug::GetInternalProperties(Isolate* v8_isolate,
90078987
Local<Value> value) {
9008-
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
9009-
ENTER_V8(isolate);
9010-
i::Handle<i::Object> val = Utils::OpenHandle(*value);
9011-
i::Handle<i::JSArray> result;
9012-
if (!i::Runtime::GetInternalProperties(isolate, val).ToHandle(&result))
9013-
return MaybeLocal<Array>();
9014-
return Utils::ToLocal(result);
8988+
return debug::GetInternalProperties(v8_isolate, value);
90158989
}
90168990

90178991
Local<Context> debug::GetDebugContext(Isolate* isolate) {
@@ -9023,22 +8997,43 @@ Local<Context> debug::GetDebugContext(Isolate* isolate) {
90238997
MaybeLocal<Value> debug::Call(Local<Context> context,
90248998
v8::Local<v8::Function> fun,
90258999
v8::Local<v8::Value> data) {
9026-
return Debug::Call(context, fun, data);
9000+
PREPARE_FOR_EXECUTION(context, Debug, Call, Value);
9001+
i::Handle<i::Object> data_obj;
9002+
if (data.IsEmpty()) {
9003+
data_obj = isolate->factory()->undefined_value();
9004+
} else {
9005+
data_obj = Utils::OpenHandle(*data);
9006+
}
9007+
Local<Value> result;
9008+
has_pending_exception = !ToLocal<Value>(
9009+
isolate->debug()->Call(Utils::OpenHandle(*fun), data_obj), &result);
9010+
RETURN_ON_FAILED_EXECUTION(Value);
9011+
RETURN_ESCAPED(result);
90279012
}
90289013

90299014
void debug::SetLiveEditEnabled(Isolate* isolate, bool enable) {
9030-
Debug::SetLiveEditEnabled(isolate, enable);
9015+
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
9016+
internal_isolate->debug()->set_live_edit_enabled(enable);
90319017
}
90329018

9033-
void debug::DebugBreak(Isolate* isolate) { Debug::DebugBreak(isolate); }
9019+
void debug::DebugBreak(Isolate* isolate) {
9020+
reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak();
9021+
}
90349022

90359023
void debug::CancelDebugBreak(Isolate* isolate) {
9036-
Debug::CancelDebugBreak(isolate);
9024+
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
9025+
internal_isolate->stack_guard()->ClearDebugBreak();
90379026
}
90389027

9039-
MaybeLocal<Array> debug::GetInternalProperties(Isolate* isolate,
9028+
MaybeLocal<Array> debug::GetInternalProperties(Isolate* v8_isolate,
90409029
Local<Value> value) {
9041-
return Debug::GetInternalProperties(isolate, value);
9030+
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
9031+
ENTER_V8(isolate);
9032+
i::Handle<i::Object> val = Utils::OpenHandle(*value);
9033+
i::Handle<i::JSArray> result;
9034+
if (!i::Runtime::GetInternalProperties(isolate, val).ToHandle(&result))
9035+
return MaybeLocal<Array>();
9036+
return Utils::ToLocal(result);
90429037
}
90439038

90449039
void debug::ChangeBreakOnException(Isolate* isolate, ExceptionBreakState type) {

deps/v8/test/cctest/cctest.h

+4-7
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <memory>
3232

3333
#include "include/libplatform/libplatform.h"
34-
#include "include/v8-debug.h"
34+
#include "src/debug/debug-interface.h"
3535
#include "src/utils.h"
3636
#include "src/v8.h"
3737
#include "src/zone/accounting-allocator.h"
@@ -547,18 +547,15 @@ static inline void CheckDoubleEquals(double expected, double actual) {
547547
CHECK_GE(expected, actual - kEpsilon);
548548
}
549549

550-
551-
static void DummyDebugEventListener(
552-
const v8::Debug::EventDetails& event_details) {}
553-
550+
static v8::debug::DebugDelegate dummy_delegate;
554551

555552
static inline void EnableDebugger(v8::Isolate* isolate) {
556-
v8::Debug::SetDebugEventListener(isolate, &DummyDebugEventListener);
553+
v8::debug::SetDebugDelegate(isolate, &dummy_delegate);
557554
}
558555

559556

560557
static inline void DisableDebugger(v8::Isolate* isolate) {
561-
v8::Debug::SetDebugEventListener(isolate, nullptr);
558+
v8::debug::SetDebugDelegate(isolate, nullptr);
562559
}
563560

564561

deps/v8/test/cctest/compiler/test-run-bytecode-graph-builder.cc

+14-7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
#include "src/compilation-info.h"
88
#include "src/compiler/pipeline.h"
9+
#include "src/debug/debug-interface.h"
910
#include "src/execution.h"
1011
#include "src/handles.h"
1112
#include "src/interpreter/bytecode-array-builder.h"
@@ -2966,16 +2967,22 @@ TEST(BytecodeGraphBuilderIllegalConstDeclaration) {
29662967
}
29672968
}
29682969

2969-
static int debug_break_count = 0;
2970-
static void DebugEventCounter(const v8::Debug::EventDetails& event_details) {
2971-
if (event_details.GetEvent() == v8::Break) debug_break_count++;
2972-
}
2970+
class CountBreakDebugDelegate : public v8::debug::DebugDelegate {
2971+
public:
2972+
void BreakProgramRequested(v8::Local<v8::Context> paused_context,
2973+
v8::Local<v8::Object> exec_state,
2974+
v8::Local<v8::Value> break_points_hit) override {
2975+
debug_break_count++;
2976+
}
2977+
int debug_break_count = 0;
2978+
};
29732979

29742980
TEST(BytecodeGraphBuilderDebuggerStatement) {
2981+
CountBreakDebugDelegate delegate;
29752982
HandleAndZoneScope scope;
29762983
Isolate* isolate = scope.main_isolate();
29772984

2978-
v8::Debug::SetDebugEventListener(CcTest::isolate(), DebugEventCounter);
2985+
v8::debug::SetDebugDelegate(CcTest::isolate(), &delegate);
29792986

29802987
ExpectedSnippet<0> snippet = {
29812988
"function f() {"
@@ -2988,9 +2995,9 @@ TEST(BytecodeGraphBuilderDebuggerStatement) {
29882995
auto callable = tester.GetCallable<>();
29892996
Handle<Object> return_value = callable().ToHandleChecked();
29902997

2991-
v8::Debug::SetDebugEventListener(CcTest::isolate(), nullptr);
2998+
v8::debug::SetDebugDelegate(CcTest::isolate(), nullptr);
29922999
CHECK(return_value.is_identical_to(snippet.return_value()));
2993-
CHECK_EQ(2, debug_break_count);
3000+
CHECK_EQ(2, delegate.debug_break_count);
29943001
}
29953002

29963003
} // namespace compiler

0 commit comments

Comments
 (0)