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

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: follow code review Created 7 years, 3 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
« no previous file with comments | « src/liveedit.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index d05dd2612270c8e16f3f0c7d0354d94eaddbe49a..534557dafac6c1c89552b46d9cc5ded45d534b70 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
« no previous file with comments | « src/liveedit.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698