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

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

Issue 7710018: Fix typo in assert. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Readded missing test Created 9 years, 4 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/handles.cc ('k') | src/interpreter-irregexp.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 break; 771 break;
772 default: 772 default:
773 break; 773 break;
774 } 774 }
775 } 775 }
776 776
777 777
778 void HTypeofIsAndBranch::PrintDataTo(StringStream* stream) { 778 void HTypeofIsAndBranch::PrintDataTo(StringStream* stream) {
779 value()->PrintNameTo(stream); 779 value()->PrintNameTo(stream);
780 stream->Add(" == "); 780 stream->Add(" == ");
781 AssertNoAllocation no_alloc; 781 stream->Add(type_literal_->GetFlatContent().ToAsciiVector());
782 stream->Add(type_literal_->GetFlatContent(no_alloc).ToAsciiVector());
783 } 782 }
784 783
785 784
786 void HChange::PrintDataTo(StringStream* stream) { 785 void HChange::PrintDataTo(StringStream* stream) {
787 HUnaryOperation::PrintDataTo(stream); 786 HUnaryOperation::PrintDataTo(stream);
788 stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic()); 787 stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic());
789 788
790 if (CanTruncateToInt32()) stream->Add(" truncating-int32"); 789 if (CanTruncateToInt32()) stream->Add(" truncating-int32");
791 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?"); 790 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?");
792 } 791 }
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
1872 1871
1873 1872
1874 void HCheckPrototypeMaps::Verify() { 1873 void HCheckPrototypeMaps::Verify() {
1875 HInstruction::Verify(); 1874 HInstruction::Verify();
1876 ASSERT(HasNoUses()); 1875 ASSERT(HasNoUses());
1877 } 1876 }
1878 1877
1879 #endif 1878 #endif
1880 1879
1881 } } // namespace v8::internal 1880 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/handles.cc ('k') | src/interpreter-irregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698