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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 } | 789 } |
790 | 790 |
791 | 791 |
792 void HTypeof::PrintDataTo(StringStream* stream) { | 792 void HTypeof::PrintDataTo(StringStream* stream) { |
793 value()->PrintNameTo(stream); | 793 value()->PrintNameTo(stream); |
794 } | 794 } |
795 | 795 |
796 | 796 |
797 void HChange::PrintDataTo(StringStream* stream) { | 797 void HChange::PrintDataTo(StringStream* stream) { |
798 HUnaryOperation::PrintDataTo(stream); | 798 HUnaryOperation::PrintDataTo(stream); |
799 stream->Add(" %s to %s", from_.Mnemonic(), to().Mnemonic()); | 799 stream->Add(" %s to %s", from().Mnemonic(), to().Mnemonic()); |
800 | 800 |
801 if (CanTruncateToInt32()) stream->Add(" truncating-int32"); | 801 if (CanTruncateToInt32()) stream->Add(" truncating-int32"); |
802 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?"); | 802 if (CheckFlag(kBailoutOnMinusZero)) stream->Add(" -0?"); |
| 803 if (CheckFlag(kDeoptimizeOnUndefined)) stream->Add(" deopt-on-undefined"); |
803 } | 804 } |
804 | 805 |
805 | 806 |
806 void HJSArrayLength::PrintDataTo(StringStream* stream) { | 807 void HJSArrayLength::PrintDataTo(StringStream* stream) { |
807 value()->PrintNameTo(stream); | 808 value()->PrintNameTo(stream); |
808 stream->Add(" "); | 809 stream->Add(" "); |
809 typecheck()->PrintNameTo(stream); | 810 typecheck()->PrintNameTo(stream); |
810 } | 811 } |
811 | 812 |
812 | 813 |
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1934 | 1935 |
1935 | 1936 |
1936 void HCheckPrototypeMaps::Verify() { | 1937 void HCheckPrototypeMaps::Verify() { |
1937 HInstruction::Verify(); | 1938 HInstruction::Verify(); |
1938 ASSERT(HasNoUses()); | 1939 ASSERT(HasNoUses()); |
1939 } | 1940 } |
1940 | 1941 |
1941 #endif | 1942 #endif |
1942 | 1943 |
1943 } } // namespace v8::internal | 1944 } } // namespace v8::internal |
OLD | NEW |