OLD | NEW |
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, " - back pointer: "); | 565 PrintF(out, " - back pointer: "); |
566 GetBackPointer()->ShortPrint(out); | 566 GetBackPointer()->ShortPrint(out); |
567 PrintF(out, "\n - instance descriptors %i #%i %i: ", | 567 PrintF(out, "\n - instance descriptors %i #%i: ", |
568 owns_descriptors(), | 568 owns_descriptors(), |
569 NumberOfOwnDescriptors(), | 569 NumberOfOwnDescriptors()); |
570 StoresOwnDescriptors()); | |
571 instance_descriptors()->ShortPrint(out); | 570 instance_descriptors()->ShortPrint(out); |
572 if (HasTransitionArray()) { | 571 if (HasTransitionArray()) { |
573 PrintF(out, "\n - transitions: "); | 572 PrintF(out, "\n - transitions: "); |
574 transitions()->ShortPrint(out); | 573 transitions()->ShortPrint(out); |
575 } | 574 } |
576 PrintF(out, "\n - prototype: "); | 575 PrintF(out, "\n - prototype: "); |
577 prototype()->ShortPrint(out); | 576 prototype()->ShortPrint(out); |
578 PrintF(out, "\n - constructor: "); | 577 PrintF(out, "\n - constructor: "); |
579 constructor()->ShortPrint(out); | 578 constructor()->ShortPrint(out); |
580 PrintF(out, "\n - code cache: "); | 579 PrintF(out, "\n - code cache: "); |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1095 } | 1094 } |
1096 } | 1095 } |
1097 PrintF(out, "\n"); | 1096 PrintF(out, "\n"); |
1098 } | 1097 } |
1099 | 1098 |
1100 | 1099 |
1101 #endif // OBJECT_PRINT | 1100 #endif // OBJECT_PRINT |
1102 | 1101 |
1103 | 1102 |
1104 } } // namespace v8::internal | 1103 } } // namespace v8::internal |
OLD | NEW |