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

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

Issue 7709024: Replace ToAsciiVector and ToUC16Vector with single function that returns a tagged value. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Require AssertNoAllocation. Fixed bug detected by this requirement. 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 stream->Add(type_literal_->ToAsciiVector()); 781 AssertNoAllocation no_alloc;
782 stream->Add(type_literal_->GetFlatContent(no_alloc).ToAsciiVector());
782 } 783 }
783 784
784 785
785 void HChange::PrintDataTo(StringStream* stream) { 786 void HChange::PrintDataTo(StringStream* stream) {
786 HUnaryOperation::PrintDataTo(stream); 787 HUnaryOperation::PrintDataTo(stream);
787 stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic()); 788 stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic());
788 789
789 if (CanTruncateToInt32()) stream->Add(" truncating-int32"); 790 if (CanTruncateToInt32()) stream->Add(" truncating-int32");
790 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?"); 791 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?");
791 } 792 }
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
1871 1872
1872 1873
1873 void HCheckPrototypeMaps::Verify() { 1874 void HCheckPrototypeMaps::Verify() {
1874 HInstruction::Verify(); 1875 HInstruction::Verify();
1875 ASSERT(HasNoUses()); 1876 ASSERT(HasNoUses());
1876 } 1877 }
1877 1878
1878 #endif 1879 #endif
1879 1880
1880 } } // namespace v8::internal 1881 } } // 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