Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: src/serialize.cc

Issue 22801003: Patch CEntry stub to swallow exception if liveedit/restart frame needs it. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: add test Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index 746c926653d6a21aa8f1674f33c53ce0cf0196aa..3273402e07cdc4310fcb3041ffe236f9bfc34bee 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -206,10 +206,16 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
DEBUG_ADDRESS,
Debug::k_debug_break_return_address << kDebugIdShift,
"Debug::debug_break_return_address()");
- Add(Debug_Address(Debug::k_restarter_frame_function_pointer).address(isolate),
+ Add(Debug_Address(Debug::k_restarter_frame_function_pointer)
+ .address(isolate),
DEBUG_ADDRESS,
Debug::k_restarter_frame_function_pointer << kDebugIdShift,
"Debug::restarter_frame_function_pointer_address()");
+ Add(Debug_Address(Debug::k_c_entry_frame_to_ignore_exception)
+ .address(isolate),
+ DEBUG_ADDRESS,
+ Debug::k_c_entry_frame_to_ignore_exception << kDebugIdShift,
+ "Debug::c_entry_frame_to_ignore_exception_address()");
#endif
// Stat counters

Powered by Google App Engine
This is Rietveld 408576698