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

Unified Diff: src/mips/assembler-mips-inl.h

Issue 11574027: Use direct jump and call instruction for X64 when the deoptimization entries are in the code range (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 10 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/mips/assembler-mips-inl.h
===================================================================
--- src/mips/assembler-mips-inl.h (revision 13740)
+++ src/mips/assembler-mips-inl.h (working copy)
@@ -202,6 +202,17 @@
}
+bool RelocInfo::NeedsInitializeRuntimeEntry() {
+ return false;
+}
+
+
+Address RelocInfo::target_runtime_entry() {
+ UNREACHABLE();
+ return NULL;
+}
+
+
Object** RelocInfo::target_object_address() {
// Provide a "natural pointer" to the embedded object,
// which can be de-referenced during heap iteration.

Powered by Google App Engine
This is Rietveld 408576698