Index: src/assembler.h |
diff --git a/src/assembler.h b/src/assembler.h |
index 2d9e727e578ce448bf512fb41632eaaa81c71acd..f66f8bfa7eb8495a400865bfecbb755d0f42587a 100644 |
--- a/src/assembler.h |
+++ b/src/assembler.h |
@@ -254,7 +254,7 @@ class RelocInfo BASE_EMBEDDED { |
CODE_TARGET_CONTEXT, // Code target used for contextual loads and stores. |
DEBUG_BREAK, // Code target for the debugger statement. |
EMBEDDED_OBJECT, |
- GLOBAL_PROPERTY_CELL, |
+ CELL, |
// Everything after runtime_entry (inclusive) is not GC'ed. |
RUNTIME_ENTRY, |
@@ -282,7 +282,7 @@ class RelocInfo BASE_EMBEDDED { |
FIRST_PSEUDO_RELOC_MODE = CODE_AGE_SEQUENCE, |
LAST_PSEUDO_RELOC_MODE = CODE_AGE_SEQUENCE, |
LAST_CODE_ENUM = DEBUG_BREAK, |
- LAST_GCED_ENUM = GLOBAL_PROPERTY_CELL, |
+ LAST_GCED_ENUM = CELL, |
// Modes <= LAST_COMPACT_ENUM are guaranteed to have compact encoding. |
LAST_COMPACT_ENUM = CODE_TARGET_WITH_ID, |
LAST_STANDARD_NONCOMPACT_ENUM = INTERNAL_REFERENCE |
@@ -386,9 +386,9 @@ class RelocInfo BASE_EMBEDDED { |
INLINE(void set_target_runtime_entry(Address target, |
WriteBarrierMode mode = |
UPDATE_WRITE_BARRIER)); |
- INLINE(JSGlobalPropertyCell* target_cell()); |
- INLINE(Handle<JSGlobalPropertyCell> target_cell_handle()); |
- INLINE(void set_target_cell(JSGlobalPropertyCell* cell, |
+ INLINE(Cell* target_cell()); |
+ INLINE(Handle<Cell> target_cell_handle()); |
+ INLINE(void set_target_cell(Cell* cell, |
WriteBarrierMode mode = UPDATE_WRITE_BARRIER)); |
INLINE(Code* code_age_stub()); |
INLINE(void set_code_age_stub(Code* stub)); |