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 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1107 TemplateInfoVerify(); | 1107 TemplateInfoVerify(); |
1108 VerifyPointer(serial_number()); | 1108 VerifyPointer(serial_number()); |
1109 VerifyPointer(call_code()); | 1109 VerifyPointer(call_code()); |
1110 VerifyPointer(prototype_template()); | 1110 VerifyPointer(prototype_template()); |
1111 VerifyPointer(parent_template()); | 1111 VerifyPointer(parent_template()); |
1112 VerifyPointer(named_property_handler()); | 1112 VerifyPointer(named_property_handler()); |
1113 VerifyPointer(indexed_property_handler()); | 1113 VerifyPointer(indexed_property_handler()); |
1114 VerifyPointer(instance_template()); | 1114 VerifyPointer(instance_template()); |
1115 VerifyPointer(signature()); | 1115 VerifyPointer(signature()); |
1116 VerifyPointer(access_check_info()); | 1116 VerifyPointer(access_check_info()); |
| 1117 VerifyPointer(cached_property_name()); |
1117 } | 1118 } |
1118 | 1119 |
1119 | 1120 |
1120 void ObjectTemplateInfo::ObjectTemplateInfoVerify() { | 1121 void ObjectTemplateInfo::ObjectTemplateInfoVerify() { |
1121 CHECK(IsObjectTemplateInfo()); | 1122 CHECK(IsObjectTemplateInfo()); |
1122 TemplateInfoVerify(); | 1123 TemplateInfoVerify(); |
1123 VerifyPointer(constructor()); | 1124 VerifyPointer(constructor()); |
1124 VerifyPointer(data()); | 1125 VerifyPointer(data()); |
1125 } | 1126 } |
1126 | 1127 |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1463 | 1464 |
1464 // Both are done at the same time. | 1465 // Both are done at the same time. |
1465 CHECK_EQ(new_it.done(), old_it.done()); | 1466 CHECK_EQ(new_it.done(), old_it.done()); |
1466 } | 1467 } |
1467 | 1468 |
1468 | 1469 |
1469 #endif // DEBUG | 1470 #endif // DEBUG |
1470 | 1471 |
1471 } // namespace internal | 1472 } // namespace internal |
1472 } // namespace v8 | 1473 } // namespace v8 |
OLD | NEW |