| 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_ARM. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. |
| 6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 UNIMPLEMENTED(); | 243 UNIMPLEMENTED(); |
| 244 return NULL; | 244 return NULL; |
| 245 } | 245 } |
| 246 | 246 |
| 247 | 247 |
| 248 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 248 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 249 UNIMPLEMENTED(); | 249 UNIMPLEMENTED(); |
| 250 } | 250 } |
| 251 | 251 |
| 252 | 252 |
| 253 LocationSummary* LoadUntaggedInstr::MakeLocationSummary() const { |
| 254 UNIMPLEMENTED(); |
| 255 return NULL; |
| 256 } |
| 257 |
| 258 |
| 259 void LoadUntaggedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 260 UNIMPLEMENTED(); |
| 261 } |
| 262 |
| 263 |
| 253 CompileType LoadIndexedInstr::ComputeType() const { | 264 CompileType LoadIndexedInstr::ComputeType() const { |
| 254 UNIMPLEMENTED(); | 265 UNIMPLEMENTED(); |
| 255 return CompileType::Dynamic(); | 266 return CompileType::Dynamic(); |
| 256 } | 267 } |
| 257 | 268 |
| 258 | 269 |
| 259 Representation LoadIndexedInstr::representation() const { | 270 Representation LoadIndexedInstr::representation() const { |
| 260 UNIMPLEMENTED(); | 271 UNIMPLEMENTED(); |
| 261 return kTagged; | 272 return kTagged; |
| 262 } | 273 } |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 | 874 |
| 864 | 875 |
| 865 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 876 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 866 UNIMPLEMENTED(); | 877 UNIMPLEMENTED(); |
| 867 } | 878 } |
| 868 | 879 |
| 869 } // namespace dart | 880 } // namespace dart |
| 870 | 881 |
| 871 #endif // defined TARGET_ARCH_ARM | 882 #endif // defined TARGET_ARCH_ARM |
| 872 | 883 |
| OLD | NEW |