OLD | NEW |
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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 CHECK(length() >= 0 && length() <= Smi::kMaxValue); | 718 CHECK(length() >= 0 && length() <= Smi::kMaxValue); |
719 if (IsSymbol()) { | 719 if (IsSymbol()) { |
720 CHECK(!Heap::InNewSpace(this)); | 720 CHECK(!Heap::InNewSpace(this)); |
721 } | 721 } |
722 } | 722 } |
723 | 723 |
724 | 724 |
725 void JSFunction::JSFunctionPrint() { | 725 void JSFunction::JSFunctionPrint() { |
726 HeapObject::PrintHeader("Function"); | 726 HeapObject::PrintHeader("Function"); |
727 PrintF(" - map = 0x%p\n", map()); | 727 PrintF(" - map = 0x%p\n", map()); |
728 PrintF(" - is boilerplate: %s\n", IsBoilerplate() ? "yes" : "no"); | |
729 PrintF(" - initial_map = "); | 728 PrintF(" - initial_map = "); |
730 if (has_initial_map()) { | 729 if (has_initial_map()) { |
731 initial_map()->ShortPrint(); | 730 initial_map()->ShortPrint(); |
732 } | 731 } |
733 PrintF("\n - shared_info = "); | 732 PrintF("\n - shared_info = "); |
734 shared()->ShortPrint(); | 733 shared()->ShortPrint(); |
735 PrintF("\n - name = "); | 734 PrintF("\n - name = "); |
736 shared()->name()->Print(); | 735 shared()->name()->Print(); |
737 PrintF("\n - context = "); | 736 PrintF("\n - context = "); |
738 unchecked_context()->ShortPrint(); | 737 unchecked_context()->ShortPrint(); |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 } | 1324 } |
1326 current = hash; | 1325 current = hash; |
1327 } | 1326 } |
1328 return true; | 1327 return true; |
1329 } | 1328 } |
1330 | 1329 |
1331 | 1330 |
1332 #endif // DEBUG | 1331 #endif // DEBUG |
1333 | 1332 |
1334 } } // namespace v8::internal | 1333 } } // namespace v8::internal |
OLD | NEW |