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

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

Issue 17833002: Remove obsolete unchecked accessors in JSFunction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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-inl.h ('k') | src/objects-visiting-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 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
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
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
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/objects-visiting-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698