OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_DEBUG_DEBUG_H_ | 5 #ifndef V8_DEBUG_DEBUG_H_ |
6 #define V8_DEBUG_DEBUG_H_ | 6 #define V8_DEBUG_DEBUG_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/assembler.h" | 10 #include "src/assembler.h" |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 // Mirror cache handling. | 543 // Mirror cache handling. |
544 void ClearMirrorCache(); | 544 void ClearMirrorCache(); |
545 | 545 |
546 MaybeHandle<Object> PromiseHasUserDefinedRejectHandler( | 546 MaybeHandle<Object> PromiseHasUserDefinedRejectHandler( |
547 Handle<JSObject> promise); | 547 Handle<JSObject> promise); |
548 | 548 |
549 void CallEventCallback(v8::DebugEvent event, | 549 void CallEventCallback(v8::DebugEvent event, |
550 Handle<Object> exec_state, | 550 Handle<Object> exec_state, |
551 Handle<Object> event_data, | 551 Handle<Object> event_data, |
552 v8::Debug::ClientData* client_data); | 552 v8::Debug::ClientData* client_data); |
553 void ProcessCompileEventInDebugScope(v8::DebugEvent event, | 553 void ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script); |
554 Handle<Script> script); | |
555 void ProcessDebugEvent(v8::DebugEvent event, | 554 void ProcessDebugEvent(v8::DebugEvent event, |
556 Handle<JSObject> event_data, | 555 Handle<JSObject> event_data, |
557 bool auto_continue); | 556 bool auto_continue); |
558 void NotifyMessageHandler(v8::DebugEvent event, | 557 void NotifyMessageHandler(v8::DebugEvent event, |
559 Handle<JSObject> exec_state, | 558 Handle<JSObject> exec_state, |
560 Handle<JSObject> event_data, | 559 Handle<JSObject> event_data, |
561 bool auto_continue); | 560 bool auto_continue); |
562 void InvokeMessageHandler(MessageImpl message); | 561 void InvokeMessageHandler(MessageImpl message); |
563 | 562 |
564 void ClearOneShot(); | 563 void ClearOneShot(); |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 int call_argc = -1); | 759 int call_argc = -1); |
761 | 760 |
762 static void PatchDebugBreakSlot(Address pc, Handle<Code> code); | 761 static void PatchDebugBreakSlot(Address pc, Handle<Code> code); |
763 static void ClearDebugBreakSlot(Address pc); | 762 static void ClearDebugBreakSlot(Address pc); |
764 }; | 763 }; |
765 | 764 |
766 | 765 |
767 } } // namespace v8::internal | 766 } } // namespace v8::internal |
768 | 767 |
769 #endif // V8_DEBUG_DEBUG_H_ | 768 #endif // V8_DEBUG_DEBUG_H_ |
OLD | NEW |