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

Unified Diff: src/macro-assembler-arm.h

Issue 27133: - Pass the knowledge whether the old GC is compacting to the GC prologue and ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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/macro-assembler-arm.h
===================================================================
--- src/macro-assembler-arm.h (revision 1355)
+++ src/macro-assembler-arm.h (working copy)
@@ -230,7 +230,11 @@
};
List<Unresolved>* unresolved() { return &unresolved_; }
+ Handle<Object> CodeObject() {
Kasper Lund 2009/02/25 15:00:19 Fits on one line?
iposva 2009/02/25 16:42:54 Done.
+ return code_object_;
+ }
+
// ---------------------------------------------------------------------------
// StatsCounter support
@@ -265,6 +269,8 @@
List<Unresolved> unresolved_;
bool generating_stub_;
bool allow_stub_calls_;
+ Handle<Object> code_object_; // This handle will be patched with the code
+ // object on installation.
// Helper functions for generating invokes.
void InvokePrologue(const ParameterCount& expected,

Powered by Google App Engine
This is Rietveld 408576698