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 5259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5270 // Can either be Smi (no instance descriptors), or a descriptor array with the | 5270 // Can either be Smi (no instance descriptors), or a descriptor array with the |
5271 // header overwritten as a Smi (thus iterating). | 5271 // header overwritten as a Smi (thus iterating). |
5272 DescriptorArray* MutatedInstanceDescriptors() { | 5272 DescriptorArray* MutatedInstanceDescriptors() { |
5273 Object* object = | 5273 Object* object = |
5274 *HeapObject::RawField(this, kInstanceDescriptorsOrBitField3Offset); | 5274 *HeapObject::RawField(this, kInstanceDescriptorsOrBitField3Offset); |
5275 if (object->IsSmi()) { | 5275 if (object->IsSmi()) { |
5276 return GetHeap()->empty_descriptor_array(); | 5276 return GetHeap()->empty_descriptor_array(); |
5277 } else { | 5277 } else { |
5278 DescriptorArray* descriptor_array = | 5278 DescriptorArray* descriptor_array = |
5279 static_cast<DescriptorArray*>(object); | 5279 static_cast<DescriptorArray*>(object); |
5280 Object* map = | 5280 ASSERT(*HeapObject::RawField(descriptor_array, |
5281 *HeapObject::RawField(descriptor_array, DescriptorArray::kMapOffset); | 5281 DescriptorArray::kMapOffset)->IsSmi()); |
5282 ASSERT(map->IsSmi()); | |
5283 return descriptor_array; | 5282 return descriptor_array; |
5284 } | 5283 } |
5285 } | 5284 } |
5286 | 5285 |
5287 // Start iterating over this map's children, possibly destroying a FixedArray | 5286 // Start iterating over this map's children, possibly destroying a FixedArray |
5288 // map (see explanation above). | 5287 // map (see explanation above). |
5289 void ChildIteratorStart() { | 5288 void ChildIteratorStart() { |
5290 IntrusiveMapTransitionIterator(instance_descriptors()).Start(); | 5289 IntrusiveMapTransitionIterator(instance_descriptors()).Start(); |
5291 IntrusivePrototypeTransitionIterator( | 5290 IntrusivePrototypeTransitionIterator( |
5292 unchecked_prototype_transitions()).Start(); | 5291 unchecked_prototype_transitions()).Start(); |
(...skipping 7935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13228 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); | 13227 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); |
13229 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); | 13228 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); |
13230 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); | 13229 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); |
13231 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); | 13230 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); |
13232 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); | 13231 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); |
13233 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); | 13232 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); |
13234 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); | 13233 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); |
13235 } | 13234 } |
13236 | 13235 |
13237 } } // namespace v8::internal | 13236 } } // namespace v8::internal |
OLD | NEW |