OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/compiler/escape-analysis.h" | 5 #include "src/compiler/escape-analysis.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 if (!IsAllocation(rep) && SetEscaped(rep)) { | 788 if (!IsAllocation(rep) && SetEscaped(rep)) { |
789 TRACE("Setting #%d (%s) to escaped because of use by #%d (%s)\n", | 789 TRACE("Setting #%d (%s) to escaped because of use by #%d (%s)\n", |
790 rep->id(), rep->op()->mnemonic(), use->id(), | 790 rep->id(), rep->op()->mnemonic(), use->id(), |
791 use->op()->mnemonic()); | 791 use->op()->mnemonic()); |
792 return true; | 792 return true; |
793 } | 793 } |
794 break; | 794 break; |
795 case IrOpcode::kSelect: | 795 case IrOpcode::kSelect: |
796 // TODO(mstarzinger): The following list of operators will eventually be | 796 // TODO(mstarzinger): The following list of operators will eventually be |
797 // handled by the EscapeAnalysisReducer (similar to ObjectIsSmi). | 797 // handled by the EscapeAnalysisReducer (similar to ObjectIsSmi). |
| 798 case IrOpcode::kStringCharCodeAt: |
798 case IrOpcode::kObjectIsCallable: | 799 case IrOpcode::kObjectIsCallable: |
799 case IrOpcode::kObjectIsNumber: | 800 case IrOpcode::kObjectIsNumber: |
800 case IrOpcode::kObjectIsReceiver: | 801 case IrOpcode::kObjectIsReceiver: |
801 case IrOpcode::kObjectIsString: | 802 case IrOpcode::kObjectIsString: |
802 case IrOpcode::kObjectIsUndetectable: | 803 case IrOpcode::kObjectIsUndetectable: |
803 if (SetEscaped(rep)) { | 804 if (SetEscaped(rep)) { |
804 TRACE("Setting #%d (%s) to escaped because of use by #%d (%s)\n", | 805 TRACE("Setting #%d (%s) to escaped because of use by #%d (%s)\n", |
805 rep->id(), rep->op()->mnemonic(), use->id(), | 806 rep->id(), rep->op()->mnemonic(), use->id(), |
806 use->op()->mnemonic()); | 807 use->op()->mnemonic()); |
807 return true; | 808 return true; |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1628 } | 1629 } |
1629 } | 1630 } |
1630 return false; | 1631 return false; |
1631 } | 1632 } |
1632 | 1633 |
1633 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); } | 1634 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); } |
1634 | 1635 |
1635 } // namespace compiler | 1636 } // namespace compiler |
1636 } // namespace internal | 1637 } // namespace internal |
1637 } // namespace v8 | 1638 } // namespace v8 |
OLD | NEW |