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

Unified Diff: src/serialize.cc

Issue 430213004: Register all ExternalReferences in serializer code. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Removed unused ExternalReferences, added few ASSERTs Created 6 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
« no previous file with comments | « src/mips64/codegen-mips64.cc ('k') | src/x64/codegen-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
===================================================================
--- src/serialize.cc (revision 22763)
+++ src/serialize.cc (working copy)
@@ -398,10 +398,6 @@
UNCLASSIFIED,
38,
"isolate");
- Add(ExternalReference::address_of_minus_zero().address(),
- UNCLASSIFIED,
- 39,
Slava Chigrin 2014/08/05 11:47:15 I decided to not renumber all IDs after this, to a
- "LDoubleConstant::minus_zero");
Add(ExternalReference::address_of_negative_infinity().address(),
UNCLASSIFIED,
40,
@@ -527,6 +523,35 @@
67,
"Debug::restarter_frame_function_pointer_address()");
+ Add(ExternalReference::flush_icache_function(isolate).address(),
+ UNCLASSIFIED,
+ 68,
+ "Isolate::flush_icache_function");
+ Add(ExternalReference::log_enter_external_function(isolate).address(),
+ UNCLASSIFIED,
+ 69,
+ "Isolate::log_enter_external_function");
+ Add(ExternalReference::log_leave_external_function(isolate).address(),
+ UNCLASSIFIED,
+ 70,
+ "Isolate::log_leave_external_function");
+ Add(ExternalReference::address_of_minus_one_half().address(),
+ UNCLASSIFIED,
+ 71,
+ "Isolate::address_of_minus_one_half");
+ Add(ExternalReference::math_log_double_function(isolate).address(),
+ UNCLASSIFIED,
+ 72,
+ "Isolate::math_log_double_function");
+ Add(ExternalReference::stress_deopt_count(isolate).address(),
+ UNCLASSIFIED,
+ 73,
+ "Isolate::stress_deopt_count");
+ Add(ExternalReference::debug_is_active_address(isolate).address(),
+ UNCLASSIFIED,
+ 74,
+ "Isolate::debug_is_active_address");
+
// Add a small set of deopt entry addresses to encoder without generating the
// deopt table code, which isn't possible at deserialization time.
HandleScope scope(isolate);
« no previous file with comments | « src/mips64/codegen-mips64.cc ('k') | src/x64/codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698