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

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

Issue 10703005: Allow inlining of functions containing RegExp literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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/mips/lithium-codegen-mips.cc ('k') | src/x64/lithium-codegen-x64.cc » ('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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 PrintF(out, " - initial_map = "); 732 PrintF(out, " - initial_map = ");
733 if (has_initial_map()) { 733 if (has_initial_map()) {
734 initial_map()->ShortPrint(out); 734 initial_map()->ShortPrint(out);
735 } 735 }
736 PrintF(out, "\n - shared_info = "); 736 PrintF(out, "\n - shared_info = ");
737 shared()->ShortPrint(out); 737 shared()->ShortPrint(out);
738 PrintF(out, "\n - name = "); 738 PrintF(out, "\n - name = ");
739 shared()->name()->Print(out); 739 shared()->name()->Print(out);
740 PrintF(out, "\n - context = "); 740 PrintF(out, "\n - context = ");
741 unchecked_context()->ShortPrint(out); 741 unchecked_context()->ShortPrint(out);
742 PrintF(out, "\n - literals = ");
743 literals()->ShortPrint(out);
742 PrintF(out, "\n - code = "); 744 PrintF(out, "\n - code = ");
743 code()->ShortPrint(out); 745 code()->ShortPrint(out);
744 PrintF(out, "\n"); 746 PrintF(out, "\n");
745 747
746 PrintProperties(out); 748 PrintProperties(out);
747 PrintElements(out); 749 PrintElements(out);
748 750
749 PrintF(out, "\n"); 751 PrintF(out, "\n");
750 } 752 }
751 753
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 desc.Print(out); 1021 desc.Print(out);
1020 } 1022 }
1021 PrintF(out, "\n"); 1023 PrintF(out, "\n");
1022 } 1024 }
1023 1025
1024 1026
1025 #endif // OBJECT_PRINT 1027 #endif // OBJECT_PRINT
1026 1028
1027 1029
1028 } } // namespace v8::internal 1030 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698