Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(695)

Side by Side Diff: src/objects-debug.cc

Issue 2405213002: V8 support for cached accessors. (Closed)
Patch Set: Toon's feedback. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698