Chromium Code Reviews| Index: src/objects-inl.h |
| diff --git a/src/objects-inl.h b/src/objects-inl.h |
| index ee17363acad88af8f2573259d1b2749c24b2f835..11be9ce77f2b9eff05f33d05b2e2b8e280931e22 100644 |
| --- a/src/objects-inl.h |
| +++ b/src/objects-inl.h |
| @@ -3624,6 +3624,7 @@ PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, opt_count, kOptCountOffset) |
| PSEUDO_SMI_ACCESSORS_LO(SharedFunctionInfo, ast_node_count, kAstNodeCountOffset) |
| PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, deopt_counter, kDeoptCounterOffset) |
| + |
|
Vyacheslav Egorov (Chromium)
2012/02/20 08:32:14
accidental edit?
|
| #endif |
| @@ -4119,8 +4120,7 @@ INT_ACCESSORS(Code, instruction_size, kInstructionSizeOffset) |
| ACCESSORS(Code, relocation_info, ByteArray, kRelocationInfoOffset) |
| ACCESSORS(Code, handler_table, FixedArray, kHandlerTableOffset) |
| ACCESSORS(Code, deoptimization_data, FixedArray, kDeoptimizationDataOffset) |
| -ACCESSORS(Code, type_feedback_cells, TypeFeedbackCells, |
| - kTypeFeedbackCellsOffset) |
| +ACCESSORS(Code, type_feedback_info, Object, kTypeFeedbackInfoOffset) |
| ACCESSORS(Code, gc_metadata, Object, kGCMetadataOffset) |
| @@ -4796,6 +4796,13 @@ Object* TypeFeedbackCells::RawUninitializedSentinel(Heap* heap) { |
| } |
| +SMI_ACCESSORS(TypeFeedbackInfo, ic_total_count, kIcTotalCountOffset) |
| +SMI_ACCESSORS(TypeFeedbackInfo, ic_with_typeinfo_count, |
| + kIcWithTypeinfoCountOffset) |
| +ACCESSORS(TypeFeedbackInfo, type_feedback_cells, TypeFeedbackCells, |
| + kTypeFeedbackCellsOffset) |
| + |
| + |
| Relocatable::Relocatable(Isolate* isolate) { |
| ASSERT(isolate == Isolate::Current()); |
| isolate_ = isolate; |