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