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

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

Issue 564035: Remove lazy loading of natives files and the natives cache.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 10 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 | Annotate | Revision Log
« 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 } 608 }
609 if (has_named_interceptor()) { 609 if (has_named_interceptor()) {
610 PrintF(" - named_interceptor\n"); 610 PrintF(" - named_interceptor\n");
611 } 611 }
612 if (has_indexed_interceptor()) { 612 if (has_indexed_interceptor()) {
613 PrintF(" - indexed_interceptor\n"); 613 PrintF(" - indexed_interceptor\n");
614 } 614 }
615 if (is_undetectable()) { 615 if (is_undetectable()) {
616 PrintF(" - undetectable\n"); 616 PrintF(" - undetectable\n");
617 } 617 }
618 if (needs_loading()) {
619 PrintF(" - needs_loading\n");
620 }
621 if (has_instance_call_handler()) { 618 if (has_instance_call_handler()) {
622 PrintF(" - instance_call_handler\n"); 619 PrintF(" - instance_call_handler\n");
623 } 620 }
624 if (is_access_check_needed()) { 621 if (is_access_check_needed()) {
625 PrintF(" - access_check_needed\n"); 622 PrintF(" - access_check_needed\n");
626 } 623 }
627 PrintF(" - instance descriptors: "); 624 PrintF(" - instance descriptors: ");
628 instance_descriptors()->ShortPrint(); 625 instance_descriptors()->ShortPrint();
629 PrintF("\n - prototype: "); 626 PrintF("\n - prototype: ");
630 prototype()->ShortPrint(); 627 prototype()->ShortPrint();
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1308 } 1305 }
1309 current = hash; 1306 current = hash;
1310 } 1307 }
1311 return true; 1308 return true;
1312 } 1309 }
1313 1310
1314 1311
1315 #endif // DEBUG 1312 #endif // DEBUG
1316 1313
1317 } } // namespace v8::internal 1314 } } // namespace v8::internal
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