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 1672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1683 HValue* use = it.value(); | 1683 HValue* use = it.value(); |
1684 if (use->IsPhi()) { | 1684 if (use->IsPhi()) { |
1685 int id = HPhi::cast(use)->phi_id(); | 1685 int id = HPhi::cast(use)->phi_id(); |
1686 if (connected_phis[i]->UnionIsChanged(*connected_phis[id])) | 1686 if (connected_phis[i]->UnionIsChanged(*connected_phis[id])) |
1687 change = true; | 1687 change = true; |
1688 } | 1688 } |
1689 } | 1689 } |
1690 } | 1690 } |
1691 } | 1691 } |
1692 | 1692 |
1693 // (3) Sum up the non-phi use counts of all connected phis. Don't include | 1693 // (3) Use the phi reachability information from step 2 to |
1694 // the non-phi uses of the phi itself. | 1694 // (a) sum up the non-phi use counts of all connected phis. |
1695 // (b) push information about values which can't be converted to integer | |
1696 // without deoptimization through the phi use-def chains, avoiding | |
1697 // unnecessary deoptimizations later. | |
1695 for (int i = 0; i < phi_count; ++i) { | 1698 for (int i = 0; i < phi_count; ++i) { |
1696 HPhi* phi = phi_list->at(i); | 1699 HPhi* phi = phi_list->at(i); |
1700 bool cti = phi->AllOperandsConvertibleToInteger(); | |
1697 for (BitVector::Iterator it(connected_phis.at(i)); | 1701 for (BitVector::Iterator it(connected_phis.at(i)); |
1698 !it.Done(); | 1702 !it.Done(); |
1699 it.Advance()) { | 1703 it.Advance()) { |
1700 int index = it.Current(); | 1704 int index = it.Current(); |
1701 if (index != i) { | 1705 HPhi* it_use = phi_list->at(it.Current()); |
1702 HPhi* it_use = phi_list->at(it.Current()); | 1706 if (index != i) phi->AddNonPhiUsesFrom(it_use); // Don't count twice! |
1703 phi->AddNonPhiUsesFrom(it_use); | 1707 if (!cti) it_use->set_is_convertible_to_integer(false); |
1704 } | |
1705 } | |
1706 } | |
1707 | |
1708 // (4) Compute phis that definitely can't be converted to integer | |
1709 // without deoptimization and mark them to avoid unnecessary deoptimization. | |
1710 change = true; | |
1711 while (change) { | |
1712 change = false; | |
1713 for (int i = 0; i < phi_count; ++i) { | |
1714 HPhi* phi = phi_list->at(i); | |
1715 for (int j = 0; j < phi->OperandCount(); ++j) { | |
1716 if (phi->IsConvertibleToInteger() && | |
1717 !phi->OperandAt(j)->IsConvertibleToInteger()) { | |
1718 phi->set_is_convertible_to_integer(false); | |
1719 change = true; | |
1720 break; | |
1721 } | |
1722 } | |
1723 } | 1708 } |
1724 } | 1709 } |
1725 | 1710 |
1726 | 1711 |
1712 | |
fschneider
2011/09/09 13:02:07
Remove extra newlines.
| |
1727 for (int i = 0; i < graph_->blocks()->length(); ++i) { | 1713 for (int i = 0; i < graph_->blocks()->length(); ++i) { |
1728 HBasicBlock* block = graph_->blocks()->at(i); | 1714 HBasicBlock* block = graph_->blocks()->at(i); |
1729 const ZoneList<HPhi*>* phis = block->phis(); | 1715 const ZoneList<HPhi*>* phis = block->phis(); |
1730 for (int j = 0; j < phis->length(); ++j) { | 1716 for (int j = 0; j < phis->length(); ++j) { |
1731 AddToWorklist(phis->at(j)); | 1717 AddToWorklist(phis->at(j)); |
1732 } | 1718 } |
1733 | 1719 |
1734 HInstruction* current = block->first(); | 1720 HInstruction* current = block->first(); |
1735 while (current != NULL) { | 1721 while (current != NULL) { |
1736 AddToWorklist(current); | 1722 AddToWorklist(current); |
(...skipping 5081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6818 } | 6804 } |
6819 } | 6805 } |
6820 | 6806 |
6821 #ifdef DEBUG | 6807 #ifdef DEBUG |
6822 if (graph_ != NULL) graph_->Verify(); | 6808 if (graph_ != NULL) graph_->Verify(); |
6823 if (allocator_ != NULL) allocator_->Verify(); | 6809 if (allocator_ != NULL) allocator_->Verify(); |
6824 #endif | 6810 #endif |
6825 } | 6811 } |
6826 | 6812 |
6827 } } // namespace v8::internal | 6813 } } // namespace v8::internal |
OLD | NEW |