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

Unified Diff: src/ia32/assembler-ia32-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/ia32/assembler-ia32-inl.h
===================================================================
--- src/ia32/assembler-ia32-inl.h (revision 13740)
+++ src/ia32/assembler-ia32-inl.h (working copy)
@@ -124,6 +124,17 @@
}
+bool RelocInfo::NeedsInitializeRuntimeEntry() {
+ return false;
+}
+
+
+Address RelocInfo::target_runtime_entry(Assembler* origin) {
+ UNREACHABLE();
+ return NULL;
+}
+
+
Object** RelocInfo::target_object_address() {
ASSERT(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
return &Memory::Object_at(pc_);

Powered by Google App Engine
This is Rietveld 408576698