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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 11871012: Merged r13386 into 3.14 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.14
Patch Set: Created 7 years, 11 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/hydrogen-instructions.h ('k') | src/version.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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 } 718 }
719 719
720 720
721 void HClassOfTestAndBranch::PrintDataTo(StringStream* stream) { 721 void HClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
722 stream->Add("class_of_test("); 722 stream->Add("class_of_test(");
723 value()->PrintNameTo(stream); 723 value()->PrintNameTo(stream);
724 stream->Add(", \"%o\")", *class_name()); 724 stream->Add(", \"%o\")", *class_name());
725 } 725 }
726 726
727 727
728 void HWrapReceiver::PrintDataTo(StringStream* stream) {
729 receiver()->PrintNameTo(stream);
730 stream->Add(" ");
731 function()->PrintNameTo(stream);
732 }
733
734
728 void HAccessArgumentsAt::PrintDataTo(StringStream* stream) { 735 void HAccessArgumentsAt::PrintDataTo(StringStream* stream) {
729 arguments()->PrintNameTo(stream); 736 arguments()->PrintNameTo(stream);
730 stream->Add("["); 737 stream->Add("[");
731 index()->PrintNameTo(stream); 738 index()->PrintNameTo(stream);
732 stream->Add("], length "); 739 stream->Add("], length ");
733 length()->PrintNameTo(stream); 740 length()->PrintNameTo(stream);
734 } 741 }
735 742
736 743
737 void HControlInstruction::PrintDataTo(StringStream* stream) { 744 void HControlInstruction::PrintDataTo(StringStream* stream) {
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after
2634 2641
2635 2642
2636 void HCheckPrototypeMaps::Verify() { 2643 void HCheckPrototypeMaps::Verify() {
2637 HInstruction::Verify(); 2644 HInstruction::Verify();
2638 ASSERT(HasNoUses()); 2645 ASSERT(HasNoUses());
2639 } 2646 }
2640 2647
2641 #endif 2648 #endif
2642 2649
2643 } } // namespace v8::internal 2650 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698