| 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/globals.h" // Needed here to get TARGET_ARCH_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
| 7 | 7 |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 | 9 |
| 10 #include "lib/error.h" | 10 #include "lib/error.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 UNIMPLEMENTED(); | 165 UNIMPLEMENTED(); |
| 166 return NULL; | 166 return NULL; |
| 167 } | 167 } |
| 168 | 168 |
| 169 | 169 |
| 170 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 170 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 171 UNIMPLEMENTED(); | 171 UNIMPLEMENTED(); |
| 172 } | 172 } |
| 173 | 173 |
| 174 | 174 |
| 175 LocationSummary* LoadUntaggedInstr::MakeLocationSummary() const { |
| 176 UNIMPLEMENTED(); |
| 177 return NULL; |
| 178 } |
| 179 |
| 180 |
| 181 void LoadUntaggedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 182 UNIMPLEMENTED(); |
| 183 } |
| 184 |
| 185 |
| 175 CompileType LoadIndexedInstr::ComputeType() const { | 186 CompileType LoadIndexedInstr::ComputeType() const { |
| 176 UNIMPLEMENTED(); | 187 UNIMPLEMENTED(); |
| 177 return CompileType::Dynamic(); | 188 return CompileType::Dynamic(); |
| 178 } | 189 } |
| 179 | 190 |
| 180 | 191 |
| 181 Representation LoadIndexedInstr::representation() const { | 192 Representation LoadIndexedInstr::representation() const { |
| 182 UNIMPLEMENTED(); | 193 UNIMPLEMENTED(); |
| 183 return kTagged; | 194 return kTagged; |
| 184 } | 195 } |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 757 |
| 747 | 758 |
| 748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 759 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 749 UNIMPLEMENTED(); | 760 UNIMPLEMENTED(); |
| 750 } | 761 } |
| 751 | 762 |
| 752 } // namespace dart | 763 } // namespace dart |
| 753 | 764 |
| 754 #endif // defined TARGET_ARCH_MIPS | 765 #endif // defined TARGET_ARCH_MIPS |
| 755 | 766 |
| OLD | NEW |