| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 void HPhi::AddInput(HValue* value) { | 893 void HPhi::AddInput(HValue* value) { |
| 894 inputs_.Add(NULL); | 894 inputs_.Add(NULL); |
| 895 SetOperandAt(OperandCount() - 1, value); | 895 SetOperandAt(OperandCount() - 1, value); |
| 896 // Mark phis that may have 'arguments' directly or indirectly as an operand. | 896 // Mark phis that may have 'arguments' directly or indirectly as an operand. |
| 897 if (!CheckFlag(kIsArguments) && value->CheckFlag(kIsArguments)) { | 897 if (!CheckFlag(kIsArguments) && value->CheckFlag(kIsArguments)) { |
| 898 SetFlag(kIsArguments); | 898 SetFlag(kIsArguments); |
| 899 } | 899 } |
| 900 } | 900 } |
| 901 | 901 |
| 902 | 902 |
| 903 bool HPhi::HasReceiverOperand() { | |
| 904 for (int i = 0; i < OperandCount(); i++) { | |
| 905 if (OperandAt(i)->IsParameter() && | |
| 906 HParameter::cast(OperandAt(i))->index() == 0) { | |
| 907 return true; | |
| 908 } | |
| 909 } | |
| 910 return false; | |
| 911 } | |
| 912 | |
| 913 | |
| 914 HValue* HPhi::GetRedundantReplacement() const { | 903 HValue* HPhi::GetRedundantReplacement() const { |
| 915 HValue* candidate = NULL; | 904 HValue* candidate = NULL; |
| 916 int count = OperandCount(); | 905 int count = OperandCount(); |
| 917 int position = 0; | 906 int position = 0; |
| 918 while (position < count && candidate == NULL) { | 907 while (position < count && candidate == NULL) { |
| 919 HValue* current = OperandAt(position++); | 908 HValue* current = OperandAt(position++); |
| 920 if (current != this) candidate = current; | 909 if (current != this) candidate = current; |
| 921 } | 910 } |
| 922 while (position < count) { | 911 while (position < count) { |
| 923 HValue* current = OperandAt(position++); | 912 HValue* current = OperandAt(position++); |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1457 | 1446 |
| 1458 | 1447 |
| 1459 void HCheckPrototypeMaps::Verify() { | 1448 void HCheckPrototypeMaps::Verify() { |
| 1460 HInstruction::Verify(); | 1449 HInstruction::Verify(); |
| 1461 ASSERT(HasNoUses()); | 1450 ASSERT(HasNoUses()); |
| 1462 } | 1451 } |
| 1463 | 1452 |
| 1464 #endif | 1453 #endif |
| 1465 | 1454 |
| 1466 } } // namespace v8::internal | 1455 } } // namespace v8::internal |
| OLD | NEW |