| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 UNIMPLEMENTED(); | 280 UNIMPLEMENTED(); |
| 281 return NULL; | 281 return NULL; |
| 282 } | 282 } |
| 283 | 283 |
| 284 | 284 |
| 285 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 285 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 286 UNIMPLEMENTED(); | 286 UNIMPLEMENTED(); |
| 287 } | 287 } |
| 288 | 288 |
| 289 | 289 |
| 290 LocationSummary* GuardFieldInstr::MakeLocationSummary() const { |
| 291 UNIMPLEMENTED(); |
| 292 return NULL; |
| 293 } |
| 294 |
| 295 |
| 296 void GuardFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 297 UNIMPLEMENTED(); |
| 298 } |
| 299 |
| 300 |
| 290 LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const { | 301 LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const { |
| 291 UNIMPLEMENTED(); | 302 UNIMPLEMENTED(); |
| 292 return NULL; | 303 return NULL; |
| 293 } | 304 } |
| 294 | 305 |
| 295 | 306 |
| 296 void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 307 void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 297 UNIMPLEMENTED(); | 308 UNIMPLEMENTED(); |
| 298 } | 309 } |
| 299 | 310 |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 | 870 |
| 860 | 871 |
| 861 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 872 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 862 UNIMPLEMENTED(); | 873 UNIMPLEMENTED(); |
| 863 } | 874 } |
| 864 | 875 |
| 865 } // namespace dart | 876 } // namespace dart |
| 866 | 877 |
| 867 #endif // defined TARGET_ARCH_ARM | 878 #endif // defined TARGET_ARCH_ARM |
| 868 | 879 |
| OLD | NEW |