OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |