Index: src/macro-assembler-ia32.h |
=================================================================== |
--- src/macro-assembler-ia32.h (revision 1355) |
+++ src/macro-assembler-ia32.h (working copy) |
@@ -235,7 +235,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 |
@@ -267,6 +271,8 @@ |
List<Unresolved> unresolved_; |
bool generating_stub_; |
bool allow_stub_calls_; |
+ Handle<Object> code_object_; // This handle will be patched with the code |
+ // code object on installation. |
// Helper functions for generating invokes. |
void InvokePrologue(const ParameterCount& expected, |