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

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

Issue 11017054: Fix CNLT regression. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix the test to also crash in release mode (without the assert) Created 8 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 | Annotate | Revision Log
« no previous file with comments | « src/objects.cc ('k') | test/mjsunit/regress/regress-cnlt-elements.js » ('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 // 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 } 555 }
556 if (is_undetectable()) { 556 if (is_undetectable()) {
557 PrintF(out, " - undetectable\n"); 557 PrintF(out, " - undetectable\n");
558 } 558 }
559 if (has_instance_call_handler()) { 559 if (has_instance_call_handler()) {
560 PrintF(out, " - instance_call_handler\n"); 560 PrintF(out, " - instance_call_handler\n");
561 } 561 }
562 if (is_access_check_needed()) { 562 if (is_access_check_needed()) {
563 PrintF(out, " - access_check_needed\n"); 563 PrintF(out, " - access_check_needed\n");
564 } 564 }
565 PrintF(out, " - instance descriptors: "); 565 PrintF(out, " - back pointer: ");
566 GetBackPointer()->ShortPrint(out);
567 PrintF(out, "\n - instance descriptors %i #%i %i: ",
568 owns_descriptors(),
569 NumberOfOwnDescriptors(),
570 StoresOwnDescriptors());
566 instance_descriptors()->ShortPrint(out); 571 instance_descriptors()->ShortPrint(out);
567 if (HasTransitionArray()) { 572 if (HasTransitionArray()) {
568 PrintF(out, "\n - transitions: "); 573 PrintF(out, "\n - transitions: ");
569 transitions()->ShortPrint(out); 574 transitions()->ShortPrint(out);
570 } 575 }
571 PrintF(out, "\n - prototype: "); 576 PrintF(out, "\n - prototype: ");
572 prototype()->ShortPrint(out); 577 prototype()->ShortPrint(out);
573 PrintF(out, "\n - constructor: "); 578 PrintF(out, "\n - constructor: ");
574 constructor()->ShortPrint(out); 579 constructor()->ShortPrint(out);
575 PrintF(out, "\n - code cache: "); 580 PrintF(out, "\n - code cache: ");
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1090 } 1095 }
1091 } 1096 }
1092 PrintF(out, "\n"); 1097 PrintF(out, "\n");
1093 } 1098 }
1094 1099
1095 1100
1096 #endif // OBJECT_PRINT 1101 #endif // OBJECT_PRINT
1097 1102
1098 1103
1099 } } // namespace v8::internal 1104 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | test/mjsunit/regress/regress-cnlt-elements.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698