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

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

Issue 1094014: Merge the partial_snapshots branch back into bleeding_edge. For... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 9 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
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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 } 1325 }
1329 current = hash; 1326 current = hash;
1330 } 1327 }
1331 return true; 1328 return true;
1332 } 1329 }
1333 1330
1334 1331
1335 #endif // DEBUG 1332 #endif // DEBUG
1336 1333
1337 } } // namespace v8::internal 1334 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698