| 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 PrintF(out, " - map = 0x%p\n", reinterpret_cast<void*>(map())); | 857 PrintF(out, " - map = 0x%p\n", reinterpret_cast<void*>(map())); |
| 858 PrintF(out, " - initial_map = "); | 858 PrintF(out, " - initial_map = "); |
| 859 if (has_initial_map()) { | 859 if (has_initial_map()) { |
| 860 initial_map()->ShortPrint(out); | 860 initial_map()->ShortPrint(out); |
| 861 } | 861 } |
| 862 PrintF(out, "\n - shared_info = "); | 862 PrintF(out, "\n - shared_info = "); |
| 863 shared()->ShortPrint(out); | 863 shared()->ShortPrint(out); |
| 864 PrintF(out, "\n - name = "); | 864 PrintF(out, "\n - name = "); |
| 865 shared()->name()->Print(out); | 865 shared()->name()->Print(out); |
| 866 PrintF(out, "\n - context = "); | 866 PrintF(out, "\n - context = "); |
| 867 unchecked_context()->ShortPrint(out); | 867 context()->ShortPrint(out); |
| 868 PrintF(out, "\n - literals = "); | 868 PrintF(out, "\n - literals = "); |
| 869 literals()->ShortPrint(out); | 869 literals()->ShortPrint(out); |
| 870 PrintF(out, "\n - code = "); | 870 PrintF(out, "\n - code = "); |
| 871 code()->ShortPrint(out); | 871 code()->ShortPrint(out); |
| 872 PrintF(out, "\n"); | 872 PrintF(out, "\n"); |
| 873 | 873 |
| 874 PrintProperties(out); | 874 PrintProperties(out); |
| 875 PrintElements(out); | 875 PrintElements(out); |
| 876 | 876 |
| 877 PrintF(out, "\n"); | 877 PrintF(out, "\n"); |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 } | 1240 } |
| 1241 } | 1241 } |
| 1242 PrintF(out, "\n"); | 1242 PrintF(out, "\n"); |
| 1243 } | 1243 } |
| 1244 | 1244 |
| 1245 | 1245 |
| 1246 #endif // OBJECT_PRINT | 1246 #endif // OBJECT_PRINT |
| 1247 | 1247 |
| 1248 | 1248 |
| 1249 } } // namespace v8::internal | 1249 } } // namespace v8::internal |
| OLD | NEW |