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

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

Issue 1605037: Remove some remaining references to boilerplate functions. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 8 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') | src/objects-inl.h » ('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 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
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
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
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698