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 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1076 stream->Add(" push "); | 1076 stream->Add(" push "); |
1077 } else { | 1077 } else { |
1078 stream->Add(" var[%d] = ", GetAssignedIndexAt(i)); | 1078 stream->Add(" var[%d] = ", GetAssignedIndexAt(i)); |
1079 } | 1079 } |
1080 values_[i]->PrintNameTo(stream); | 1080 values_[i]->PrintNameTo(stream); |
1081 } | 1081 } |
1082 } | 1082 } |
1083 } | 1083 } |
1084 | 1084 |
1085 | 1085 |
| 1086 void HDeoptimize::PrintDataTo(StringStream* stream) { |
| 1087 if (OperandCount() == 0) return; |
| 1088 OperandAt(0)->PrintNameTo(stream); |
| 1089 for (int i = 1; i < OperandCount(); ++i) { |
| 1090 stream->Add(" "); |
| 1091 OperandAt(i)->PrintNameTo(stream); |
| 1092 } |
| 1093 } |
| 1094 |
| 1095 |
1086 void HEnterInlined::PrintDataTo(StringStream* stream) { | 1096 void HEnterInlined::PrintDataTo(StringStream* stream) { |
1087 SmartPointer<char> name = function()->debug_name()->ToCString(); | 1097 SmartPointer<char> name = function()->debug_name()->ToCString(); |
1088 stream->Add("%s, id=%d", *name, function()->id()); | 1098 stream->Add("%s, id=%d", *name, function()->id()); |
1089 } | 1099 } |
1090 | 1100 |
1091 | 1101 |
1092 HConstant::HConstant(Handle<Object> handle, Representation r) | 1102 HConstant::HConstant(Handle<Object> handle, Representation r) |
1093 : handle_(handle), | 1103 : handle_(handle), |
1094 has_int32_value_(false), | 1104 has_int32_value_(false), |
1095 has_double_value_(false), | 1105 has_double_value_(false), |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1759 | 1769 |
1760 | 1770 |
1761 void HCheckPrototypeMaps::Verify() { | 1771 void HCheckPrototypeMaps::Verify() { |
1762 HInstruction::Verify(); | 1772 HInstruction::Verify(); |
1763 ASSERT(HasNoUses()); | 1773 ASSERT(HasNoUses()); |
1764 } | 1774 } |
1765 | 1775 |
1766 #endif | 1776 #endif |
1767 | 1777 |
1768 } } // namespace v8::internal | 1778 } } // namespace v8::internal |
OLD | NEW |