| 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 11 matching lines...) Expand all Loading... |
| 22 void StrictCompareComp::EmitNativeCode(FlowGraphCompiler* compiler) { | 22 void StrictCompareComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 23 UNIMPLEMENTED(); | 23 UNIMPLEMENTED(); |
| 24 } | 24 } |
| 25 | 25 |
| 26 | 26 |
| 27 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 27 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 28 UNIMPLEMENTED(); | 28 UNIMPLEMENTED(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 | 31 |
| 32 LocationSummary* ClosureCallComp::MakeLocationSummary() { |
| 33 UNIMPLEMENTED(); |
| 34 return NULL; |
| 35 } |
| 36 |
| 37 |
| 38 void ClosureCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 39 UNIMPLEMENTED(); |
| 40 } |
| 41 |
| 42 |
| 43 LocationSummary* InstanceCallComp::MakeLocationSummary() { |
| 44 UNIMPLEMENTED(); |
| 45 return NULL; |
| 46 } |
| 47 |
| 48 |
| 49 void InstanceCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 50 UNIMPLEMENTED(); |
| 51 } |
| 52 |
| 53 |
| 54 LocationSummary* StaticCallComp::MakeLocationSummary() { |
| 55 UNIMPLEMENTED(); |
| 56 return NULL; |
| 57 } |
| 58 |
| 59 |
| 60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 61 UNIMPLEMENTED(); |
| 62 } |
| 63 |
| 64 |
| 32 } // namespace dart | 65 } // namespace dart |
| 33 | 66 |
| 34 #undef __ | 67 #undef __ |
| 35 | 68 |
| 36 #endif // defined TARGET_ARCH_X64 | 69 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |