| 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_H_ | 5 #ifndef V8_DEBUG_H_ |
| 6 #define V8_DEBUG_H_ | 6 #define V8_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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 // Mirror cache handling. | 546 // Mirror cache handling. |
| 547 void ClearMirrorCache(); | 547 void ClearMirrorCache(); |
| 548 | 548 |
| 549 MaybeHandle<Object> PromiseHasUserDefinedRejectHandler( | 549 MaybeHandle<Object> PromiseHasUserDefinedRejectHandler( |
| 550 Handle<JSObject> promise); | 550 Handle<JSObject> promise); |
| 551 | 551 |
| 552 void CallEventCallback(v8::DebugEvent event, | 552 void CallEventCallback(v8::DebugEvent event, |
| 553 Handle<Object> exec_state, | 553 Handle<Object> exec_state, |
| 554 Handle<Object> event_data, | 554 Handle<Object> event_data, |
| 555 v8::Debug::ClientData* client_data); | 555 v8::Debug::ClientData* client_data); |
| 556 void ProcessCompileEventInDebugScope(v8::DebugEvent event, |
| 557 Handle<Script> script); |
| 556 void ProcessDebugEvent(v8::DebugEvent event, | 558 void ProcessDebugEvent(v8::DebugEvent event, |
| 557 Handle<JSObject> event_data, | 559 Handle<JSObject> event_data, |
| 558 bool auto_continue); | 560 bool auto_continue); |
| 559 void NotifyMessageHandler(v8::DebugEvent event, | 561 void NotifyMessageHandler(v8::DebugEvent event, |
| 560 Handle<JSObject> exec_state, | 562 Handle<JSObject> exec_state, |
| 561 Handle<JSObject> event_data, | 563 Handle<JSObject> event_data, |
| 562 bool auto_continue); | 564 bool auto_continue); |
| 563 void InvokeMessageHandler(MessageImpl message); | 565 void InvokeMessageHandler(MessageImpl message); |
| 564 | 566 |
| 565 static bool CompileDebuggerScript(Isolate* isolate, int index); | 567 static bool CompileDebuggerScript(Isolate* isolate, int index); |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 // several frames above. | 765 // several frames above. |
| 764 // There is no calling conventions here, because it never actually gets | 766 // There is no calling conventions here, because it never actually gets |
| 765 // called, it only gets returned to. | 767 // called, it only gets returned to. |
| 766 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); | 768 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); |
| 767 }; | 769 }; |
| 768 | 770 |
| 769 | 771 |
| 770 } } // namespace v8::internal | 772 } } // namespace v8::internal |
| 771 | 773 |
| 772 #endif // V8_DEBUG_H_ | 774 #endif // V8_DEBUG_H_ |
| OLD | NEW |