| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/flow_graph_optimizer.h" | 5 #include "vm/flow_graph_optimizer.h" |
| 6 | 6 |
| 7 #include "vm/bit_vector.h" | 7 #include "vm/bit_vector.h" |
| 8 #include "vm/cha.h" | 8 #include "vm/cha.h" |
| 9 #include "vm/cpu.h" | 9 #include "vm/cpu.h" |
| 10 #include "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
| (...skipping 7844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7855 // cannot have constant values. | 7855 // cannot have constant values. |
| 7856 void ConstantPropagator::VisitStoreContext(StoreContextInstr* instr) { } | 7856 void ConstantPropagator::VisitStoreContext(StoreContextInstr* instr) { } |
| 7857 | 7857 |
| 7858 | 7858 |
| 7859 void ConstantPropagator::VisitCheckStackOverflow( | 7859 void ConstantPropagator::VisitCheckStackOverflow( |
| 7860 CheckStackOverflowInstr* instr) { } | 7860 CheckStackOverflowInstr* instr) { } |
| 7861 | 7861 |
| 7862 | 7862 |
| 7863 void ConstantPropagator::VisitCheckClass(CheckClassInstr* instr) { } | 7863 void ConstantPropagator::VisitCheckClass(CheckClassInstr* instr) { } |
| 7864 | 7864 |
| 7865 void ConstantPropagator::VisitCheckClassId(CheckClassIdInstr* instr) { } | |
| 7866 | |
| 7867 void ConstantPropagator::VisitGuardFieldClass(GuardFieldClassInstr* instr) { } | 7865 void ConstantPropagator::VisitGuardFieldClass(GuardFieldClassInstr* instr) { } |
| 7868 | 7866 |
| 7869 void ConstantPropagator::VisitGuardFieldLength(GuardFieldLengthInstr* instr) { } | 7867 void ConstantPropagator::VisitGuardFieldLength(GuardFieldLengthInstr* instr) { } |
| 7870 | 7868 |
| 7871 void ConstantPropagator::VisitCheckSmi(CheckSmiInstr* instr) { } | 7869 void ConstantPropagator::VisitCheckSmi(CheckSmiInstr* instr) { } |
| 7872 | 7870 |
| 7873 | 7871 |
| 7874 void ConstantPropagator::VisitCheckEitherNonSmi( | 7872 void ConstantPropagator::VisitCheckEitherNonSmi( |
| 7875 CheckEitherNonSmiInstr* instr) { } | 7873 CheckEitherNonSmiInstr* instr) { } |
| 7876 | 7874 |
| (...skipping 1908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9785 } | 9783 } |
| 9786 | 9784 |
| 9787 // Insert materializations at environment uses. | 9785 // Insert materializations at environment uses. |
| 9788 for (intptr_t i = 0; i < exits.length(); i++) { | 9786 for (intptr_t i = 0; i < exits.length(); i++) { |
| 9789 CreateMaterializationAt(exits[i], alloc, alloc->cls(), *slots); | 9787 CreateMaterializationAt(exits[i], alloc, alloc->cls(), *slots); |
| 9790 } | 9788 } |
| 9791 } | 9789 } |
| 9792 | 9790 |
| 9793 | 9791 |
| 9794 } // namespace dart | 9792 } // namespace dart |
| OLD | NEW |