OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 4269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4280 WRITE_FIELD(this, kBitField3Offset, Smi::FromInt(value >> 1)); | 4280 WRITE_FIELD(this, kBitField3Offset, Smi::FromInt(value >> 1)); |
4281 } | 4281 } |
4282 | 4282 |
4283 | 4283 |
4284 uint32_t Map::bit_field3() { | 4284 uint32_t Map::bit_field3() { |
4285 Object* value = READ_FIELD(this, kBitField3Offset); | 4285 Object* value = READ_FIELD(this, kBitField3Offset); |
4286 return Smi::cast(value)->value(); | 4286 return Smi::cast(value)->value(); |
4287 } | 4287 } |
4288 | 4288 |
4289 | 4289 |
| 4290 void Map::set_has_migrated(bool value) { |
| 4291 set_bit_field3(HasMigrated::update(bit_field3(), value)); |
| 4292 } |
| 4293 |
| 4294 |
| 4295 bool Map::has_migrated() { |
| 4296 return HasMigrated::decode(bit_field3()); |
| 4297 } |
| 4298 |
| 4299 |
4290 void Map::ClearTransitions(Heap* heap, WriteBarrierMode mode) { | 4300 void Map::ClearTransitions(Heap* heap, WriteBarrierMode mode) { |
4291 Object* back_pointer = GetBackPointer(); | 4301 Object* back_pointer = GetBackPointer(); |
4292 | 4302 |
4293 if (Heap::ShouldZapGarbage() && HasTransitionArray()) { | 4303 if (Heap::ShouldZapGarbage() && HasTransitionArray()) { |
4294 ZapTransitions(); | 4304 ZapTransitions(); |
4295 } | 4305 } |
4296 | 4306 |
4297 WRITE_FIELD(this, kTransitionsOrBackPointerOffset, back_pointer); | 4307 WRITE_FIELD(this, kTransitionsOrBackPointerOffset, back_pointer); |
4298 CONDITIONAL_WRITE_BARRIER( | 4308 CONDITIONAL_WRITE_BARRIER( |
4299 heap, this, kTransitionsOrBackPointerOffset, back_pointer, mode); | 4309 heap, this, kTransitionsOrBackPointerOffset, back_pointer, mode); |
(...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6411 #undef WRITE_UINT32_FIELD | 6421 #undef WRITE_UINT32_FIELD |
6412 #undef READ_SHORT_FIELD | 6422 #undef READ_SHORT_FIELD |
6413 #undef WRITE_SHORT_FIELD | 6423 #undef WRITE_SHORT_FIELD |
6414 #undef READ_BYTE_FIELD | 6424 #undef READ_BYTE_FIELD |
6415 #undef WRITE_BYTE_FIELD | 6425 #undef WRITE_BYTE_FIELD |
6416 | 6426 |
6417 | 6427 |
6418 } } // namespace v8::internal | 6428 } } // namespace v8::internal |
6419 | 6429 |
6420 #endif // V8_OBJECTS_INL_H_ | 6430 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |