| 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 #ifndef VM_INTERMEDIATE_LANGUAGE_H_ | 5 #ifndef VM_INTERMEDIATE_LANGUAGE_H_ |
| 6 #define VM_INTERMEDIATE_LANGUAGE_H_ | 6 #define VM_INTERMEDIATE_LANGUAGE_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 #include "vm/ast.h" | 9 #include "vm/ast.h" |
| 10 #include "vm/growable_array.h" | 10 #include "vm/growable_array.h" |
| (...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1851 }; | 1851 }; |
| 1852 | 1852 |
| 1853 | 1853 |
| 1854 struct BranchLabels { | 1854 struct BranchLabels { |
| 1855 Label* true_label; | 1855 Label* true_label; |
| 1856 Label* false_label; | 1856 Label* false_label; |
| 1857 Label* fall_through; | 1857 Label* fall_through; |
| 1858 }; | 1858 }; |
| 1859 | 1859 |
| 1860 | 1860 |
| 1861 struct InductionVariableInfo; | 1861 class InductionVariableInfo; |
| 1862 | 1862 |
| 1863 | 1863 |
| 1864 class PhiInstr : public Definition { | 1864 class PhiInstr : public Definition { |
| 1865 public: | 1865 public: |
| 1866 PhiInstr(JoinEntryInstr* block, intptr_t num_inputs) | 1866 PhiInstr(JoinEntryInstr* block, intptr_t num_inputs) |
| 1867 : block_(block), | 1867 : block_(block), |
| 1868 inputs_(num_inputs), | 1868 inputs_(num_inputs), |
| 1869 is_alive_(false), | 1869 is_alive_(false), |
| 1870 representation_(kTagged), | 1870 representation_(kTagged), |
| 1871 reaching_defs_(NULL), | 1871 reaching_defs_(NULL), |
| (...skipping 6572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8444 Isolate* isolate, bool opt) const { \ | 8444 Isolate* isolate, bool opt) const { \ |
| 8445 UNIMPLEMENTED(); \ | 8445 UNIMPLEMENTED(); \ |
| 8446 return NULL; \ | 8446 return NULL; \ |
| 8447 } \ | 8447 } \ |
| 8448 void Name::EmitNativeCode(FlowGraphCompiler* compiler) { UNIMPLEMENTED(); } | 8448 void Name::EmitNativeCode(FlowGraphCompiler* compiler) { UNIMPLEMENTED(); } |
| 8449 | 8449 |
| 8450 | 8450 |
| 8451 } // namespace dart | 8451 } // namespace dart |
| 8452 | 8452 |
| 8453 #endif // VM_INTERMEDIATE_LANGUAGE_H_ | 8453 #endif // VM_INTERMEDIATE_LANGUAGE_H_ |
| OLD | NEW |