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

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

Issue 2369933005: Speedup global_proxy.* attributes/accessors (specialize GlobalProxy access). (Closed)
Patch Set: Merge cached accessors + global proxy specialization Created 4 years, 2 months 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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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