| OLD | NEW | 
|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 // | 4 // | 
| 5 // Review notes: | 5 // Review notes: | 
| 6 // | 6 // | 
| 7 // - The use of macros in these inline functions may seem superfluous | 7 // - The use of macros in these inline functions may seem superfluous | 
| 8 // but it is absolutely needed to make sure gcc generates optimal | 8 // but it is absolutely needed to make sure gcc generates optimal | 
| 9 // code. gcc is not happy when attempting to inline too deep. | 9 // code. gcc is not happy when attempting to inline too deep. | 
| 10 // | 10 // | 
| (...skipping 6754 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 6765 INT_ACCESSORS(Code, instruction_size, kInstructionSizeOffset) | 6765 INT_ACCESSORS(Code, instruction_size, kInstructionSizeOffset) | 
| 6766 INT_ACCESSORS(Code, prologue_offset, kPrologueOffset) | 6766 INT_ACCESSORS(Code, prologue_offset, kPrologueOffset) | 
| 6767 INT_ACCESSORS(Code, constant_pool_offset, kConstantPoolOffset) | 6767 INT_ACCESSORS(Code, constant_pool_offset, kConstantPoolOffset) | 
| 6768 #define CODE_ACCESSORS(name, type, offset)           \ | 6768 #define CODE_ACCESSORS(name, type, offset)           \ | 
| 6769   ACCESSORS_CHECKED2(Code, name, type, offset, true, \ | 6769   ACCESSORS_CHECKED2(Code, name, type, offset, true, \ | 
| 6770                      !GetHeap()->InNewSpace(value)) | 6770                      !GetHeap()->InNewSpace(value)) | 
| 6771 CODE_ACCESSORS(relocation_info, ByteArray, kRelocationInfoOffset) | 6771 CODE_ACCESSORS(relocation_info, ByteArray, kRelocationInfoOffset) | 
| 6772 CODE_ACCESSORS(handler_table, FixedArray, kHandlerTableOffset) | 6772 CODE_ACCESSORS(handler_table, FixedArray, kHandlerTableOffset) | 
| 6773 CODE_ACCESSORS(deoptimization_data, FixedArray, kDeoptimizationDataOffset) | 6773 CODE_ACCESSORS(deoptimization_data, FixedArray, kDeoptimizationDataOffset) | 
| 6774 CODE_ACCESSORS(source_position_table, ByteArray, kSourcePositionTableOffset) | 6774 CODE_ACCESSORS(source_position_table, ByteArray, kSourcePositionTableOffset) | 
|  | 6775 CODE_ACCESSORS(trap_handler_index, Smi, kTrapHandlerIndex) | 
| 6775 CODE_ACCESSORS(raw_type_feedback_info, Object, kTypeFeedbackInfoOffset) | 6776 CODE_ACCESSORS(raw_type_feedback_info, Object, kTypeFeedbackInfoOffset) | 
| 6776 CODE_ACCESSORS(next_code_link, Object, kNextCodeLinkOffset) | 6777 CODE_ACCESSORS(next_code_link, Object, kNextCodeLinkOffset) | 
| 6777 #undef CODE_ACCESSORS | 6778 #undef CODE_ACCESSORS | 
| 6778 | 6779 | 
| 6779 void Code::WipeOutHeader() { | 6780 void Code::WipeOutHeader() { | 
| 6780   WRITE_FIELD(this, kRelocationInfoOffset, NULL); | 6781   WRITE_FIELD(this, kRelocationInfoOffset, NULL); | 
| 6781   WRITE_FIELD(this, kHandlerTableOffset, NULL); | 6782   WRITE_FIELD(this, kHandlerTableOffset, NULL); | 
| 6782   WRITE_FIELD(this, kDeoptimizationDataOffset, NULL); | 6783   WRITE_FIELD(this, kDeoptimizationDataOffset, NULL); | 
| 6783   WRITE_FIELD(this, kSourcePositionTableOffset, NULL); | 6784   WRITE_FIELD(this, kSourcePositionTableOffset, NULL); | 
| 6784   // Do not wipe out major/minor keys on a code stub or IC | 6785   // Do not wipe out major/minor keys on a code stub or IC | 
| (...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 8376 #undef WRITE_INT64_FIELD | 8377 #undef WRITE_INT64_FIELD | 
| 8377 #undef READ_BYTE_FIELD | 8378 #undef READ_BYTE_FIELD | 
| 8378 #undef WRITE_BYTE_FIELD | 8379 #undef WRITE_BYTE_FIELD | 
| 8379 #undef NOBARRIER_READ_BYTE_FIELD | 8380 #undef NOBARRIER_READ_BYTE_FIELD | 
| 8380 #undef NOBARRIER_WRITE_BYTE_FIELD | 8381 #undef NOBARRIER_WRITE_BYTE_FIELD | 
| 8381 | 8382 | 
| 8382 }  // namespace internal | 8383 }  // namespace internal | 
| 8383 }  // namespace v8 | 8384 }  // namespace v8 | 
| 8384 | 8385 | 
| 8385 #endif  // V8_OBJECTS_INL_H_ | 8386 #endif  // V8_OBJECTS_INL_H_ | 
| OLD | NEW | 
|---|