| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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_IA32. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. |
| 6 #if defined(TARGET_ARCH_IA32) | 6 #if defined(TARGET_ARCH_IA32) |
| 7 | 7 |
| 8 #include "vm/flow_graph_compiler.h" | 8 #include "vm/flow_graph_compiler.h" |
| 9 #include "vm/locations.h" | 9 #include "vm/locations.h" |
| 10 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 UNIMPLEMENTED(); | 55 UNIMPLEMENTED(); |
| 56 return NULL; | 56 return NULL; |
| 57 } | 57 } |
| 58 | 58 |
| 59 | 59 |
| 60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { | 60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 61 UNIMPLEMENTED(); | 61 UNIMPLEMENTED(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 | 64 |
| 65 LocationSummary* LoadLocalComp::MakeLocationSummary() { |
| 66 UNIMPLEMENTED(); |
| 67 return NULL; |
| 68 } |
| 69 |
| 70 |
| 71 void LoadLocalComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 72 UNIMPLEMENTED(); |
| 73 } |
| 74 |
| 75 |
| 76 LocationSummary* StoreLocalComp::MakeLocationSummary() { |
| 77 UNIMPLEMENTED(); |
| 78 return NULL; |
| 79 } |
| 80 |
| 81 |
| 82 void StoreLocalComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 83 UNIMPLEMENTED(); |
| 84 } |
| 85 |
| 86 |
| 87 LocationSummary* ConstantVal::MakeLocationSummary() { |
| 88 UNIMPLEMENTED(); |
| 89 return NULL; |
| 90 } |
| 91 |
| 92 |
| 93 void ConstantVal::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 94 UNIMPLEMENTED(); |
| 95 } |
| 96 |
| 97 |
| 65 } // namespace dart | 98 } // namespace dart |
| 66 | 99 |
| 67 #undef __ | 100 #undef __ |
| 68 | 101 |
| 69 #endif // defined TARGET_ARCH_X64 | 102 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |