| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 CHECK(instance_size() == kVariableSizeSentinel || | 360 CHECK(instance_size() == kVariableSizeSentinel || |
| 361 (kPointerSize <= instance_size() && | 361 (kPointerSize <= instance_size() && |
| 362 instance_size() < heap->Capacity())); | 362 instance_size() < heap->Capacity())); |
| 363 VerifyHeapPointer(prototype()); | 363 VerifyHeapPointer(prototype()); |
| 364 VerifyHeapPointer(instance_descriptors()); | 364 VerifyHeapPointer(instance_descriptors()); |
| 365 SLOW_ASSERT(instance_descriptors()->IsSortedNoDuplicates()); | 365 SLOW_ASSERT(instance_descriptors()->IsSortedNoDuplicates()); |
| 366 if (HasTransitionArray()) { | 366 if (HasTransitionArray()) { |
| 367 SLOW_ASSERT(transitions()->IsSortedNoDuplicates()); | 367 SLOW_ASSERT(transitions()->IsSortedNoDuplicates()); |
| 368 SLOW_ASSERT(transitions()->IsConsistentWithBackPointers(this)); | 368 SLOW_ASSERT(transitions()->IsConsistentWithBackPointers(this)); |
| 369 } | 369 } |
| 370 ASSERT(!is_observed() || instance_type() < FIRST_JS_OBJECT_TYPE || | |
| 371 instance_type() > LAST_JS_OBJECT_TYPE || | |
| 372 has_slow_elements_kind() || has_external_array_elements()); | |
| 373 } | 370 } |
| 374 | 371 |
| 375 | 372 |
| 376 void Map::SharedMapVerify() { | 373 void Map::SharedMapVerify() { |
| 377 MapVerify(); | 374 MapVerify(); |
| 378 CHECK(is_shared()); | 375 CHECK(is_shared()); |
| 379 CHECK(instance_descriptors()->IsEmpty()); | 376 CHECK(instance_descriptors()->IsEmpty()); |
| 380 CHECK_EQ(0, pre_allocated_property_fields()); | 377 CHECK_EQ(0, pre_allocated_property_fields()); |
| 381 CHECK_EQ(0, unused_property_fields()); | 378 CHECK_EQ(0, unused_property_fields()); |
| 382 CHECK_EQ(StaticVisitorBase::GetVisitorId(instance_type(), instance_size()), | 379 CHECK_EQ(StaticVisitorBase::GetVisitorId(instance_type(), instance_size()), |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 for (int i = 0; i < number_of_transitions(); ++i) { | 1197 for (int i = 0; i < number_of_transitions(); ++i) { |
| 1201 if (!CheckOneBackPointer(current_map, GetTarget(i))) return false; | 1198 if (!CheckOneBackPointer(current_map, GetTarget(i))) return false; |
| 1202 } | 1199 } |
| 1203 return true; | 1200 return true; |
| 1204 } | 1201 } |
| 1205 | 1202 |
| 1206 | 1203 |
| 1207 #endif // DEBUG | 1204 #endif // DEBUG |
| 1208 | 1205 |
| 1209 } } // namespace v8::internal | 1206 } } // namespace v8::internal |
| OLD | NEW |