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