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

Unified Diff: src/arm/assembler-arm-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
« no previous file with comments | « no previous file | src/assembler.h » ('j') | src/objects.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/assembler-arm-inl.h
===================================================================
--- src/arm/assembler-arm-inl.h (revision 13740)
+++ src/arm/assembler-arm-inl.h (working copy)
@@ -149,6 +149,17 @@
}
+bool RelocInfo::NeedsInitializeRuntimeEntry() {
+ return false;
+}
+
+
+Address RelocInfo::target_runtime_entry(Assembler* origin) {
+ UNREACHABLE();
danno 2013/03/07 14:57:23 Please implement this for all platforms, see comme
haitao.feng 2013/03/08 05:30:05 Done.
+ return NULL;
+}
+
+
Object** RelocInfo::target_object_address() {
// Provide a "natural pointer" to the embedded object,
// which can be de-referenced during heap iteration.
« no previous file with comments | « no previous file | src/assembler.h » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698