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 #include "src/objects.h" | 5 #include "src/objects.h" |
6 | 6 |
7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
8 #include "src/disasm.h" | 8 #include "src/disasm.h" |
9 #include "src/disassembler.h" | 9 #include "src/disassembler.h" |
10 #include "src/field-type.h" | 10 #include "src/field-type.h" |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 TemplateInfoVerify(); | 1007 TemplateInfoVerify(); |
1008 VerifyPointer(serial_number()); | 1008 VerifyPointer(serial_number()); |
1009 VerifyPointer(call_code()); | 1009 VerifyPointer(call_code()); |
1010 VerifyPointer(prototype_template()); | 1010 VerifyPointer(prototype_template()); |
1011 VerifyPointer(parent_template()); | 1011 VerifyPointer(parent_template()); |
1012 VerifyPointer(named_property_handler()); | 1012 VerifyPointer(named_property_handler()); |
1013 VerifyPointer(indexed_property_handler()); | 1013 VerifyPointer(indexed_property_handler()); |
1014 VerifyPointer(instance_template()); | 1014 VerifyPointer(instance_template()); |
1015 VerifyPointer(signature()); | 1015 VerifyPointer(signature()); |
1016 VerifyPointer(access_check_info()); | 1016 VerifyPointer(access_check_info()); |
| 1017 VerifyPointer(cache_property()); |
1017 } | 1018 } |
1018 | 1019 |
1019 | 1020 |
1020 void ObjectTemplateInfo::ObjectTemplateInfoVerify() { | 1021 void ObjectTemplateInfo::ObjectTemplateInfoVerify() { |
1021 CHECK(IsObjectTemplateInfo()); | 1022 CHECK(IsObjectTemplateInfo()); |
1022 TemplateInfoVerify(); | 1023 TemplateInfoVerify(); |
1023 VerifyPointer(constructor()); | 1024 VerifyPointer(constructor()); |
1024 VerifyPointer(data()); | 1025 VerifyPointer(data()); |
1025 } | 1026 } |
1026 | 1027 |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 | 1364 |
1364 // Both are done at the same time. | 1365 // Both are done at the same time. |
1365 CHECK_EQ(new_it.done(), old_it.done()); | 1366 CHECK_EQ(new_it.done(), old_it.done()); |
1366 } | 1367 } |
1367 | 1368 |
1368 | 1369 |
1369 #endif // DEBUG | 1370 #endif // DEBUG |
1370 | 1371 |
1371 } // namespace internal | 1372 } // namespace internal |
1372 } // namespace v8 | 1373 } // namespace v8 |
OLD | NEW |