| 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/flow_graph_compiler.h" | 8 #include "vm/flow_graph_compiler.h" |
| 9 | 9 |
| 10 #include "vm/longjump.h" | 10 #include "vm/longjump.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 intptr_t token_pos, | 103 intptr_t token_pos, |
| 104 const AbstractType& type, | 104 const AbstractType& type, |
| 105 Label* is_instance_lbl, | 105 Label* is_instance_lbl, |
| 106 Label* is_not_instance_lbl) { | 106 Label* is_not_instance_lbl) { |
| 107 UNIMPLEMENTED(); | 107 UNIMPLEMENTED(); |
| 108 return NULL; | 108 return NULL; |
| 109 } | 109 } |
| 110 | 110 |
| 111 | 111 |
| 112 void FlowGraphCompiler::GenerateInstanceOf(intptr_t token_pos, | 112 void FlowGraphCompiler::GenerateInstanceOf(intptr_t token_pos, |
| 113 intptr_t deopt_id, |
| 113 const AbstractType& type, | 114 const AbstractType& type, |
| 114 bool negate_result, | 115 bool negate_result, |
| 115 LocationSummary* locs) { | 116 LocationSummary* locs) { |
| 116 UNIMPLEMENTED(); | 117 UNIMPLEMENTED(); |
| 117 } | 118 } |
| 118 | 119 |
| 119 | 120 |
| 120 void FlowGraphCompiler::GenerateAssertAssignable(intptr_t token_pos, | 121 void FlowGraphCompiler::GenerateAssertAssignable(intptr_t token_pos, |
| 122 intptr_t deopt_id, |
| 121 const AbstractType& dst_type, | 123 const AbstractType& dst_type, |
| 122 const String& dst_name, | 124 const String& dst_name, |
| 123 LocationSummary* locs) { | 125 LocationSummary* locs) { |
| 124 UNIMPLEMENTED(); | 126 UNIMPLEMENTED(); |
| 125 } | 127 } |
| 126 | 128 |
| 127 | 129 |
| 128 void FlowGraphCompiler::EmitInstructionPrologue(Instruction* instr) { | 130 void FlowGraphCompiler::EmitInstructionPrologue(Instruction* instr) { |
| 129 UNIMPLEMENTED(); | 131 UNIMPLEMENTED(); |
| 130 } | 132 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 void FlowGraphCompiler::GenerateDartCall(intptr_t deopt_id, | 173 void FlowGraphCompiler::GenerateDartCall(intptr_t deopt_id, |
| 172 intptr_t token_pos, | 174 intptr_t token_pos, |
| 173 const ExternalLabel* label, | 175 const ExternalLabel* label, |
| 174 PcDescriptors::Kind kind, | 176 PcDescriptors::Kind kind, |
| 175 LocationSummary* locs) { | 177 LocationSummary* locs) { |
| 176 UNIMPLEMENTED(); | 178 UNIMPLEMENTED(); |
| 177 } | 179 } |
| 178 | 180 |
| 179 | 181 |
| 180 void FlowGraphCompiler::GenerateCallRuntime(intptr_t token_pos, | 182 void FlowGraphCompiler::GenerateCallRuntime(intptr_t token_pos, |
| 183 intptr_t deopt_id, |
| 181 const RuntimeEntry& entry, | 184 const RuntimeEntry& entry, |
| 182 LocationSummary* locs) { | 185 LocationSummary* locs) { |
| 183 UNIMPLEMENTED(); | 186 UNIMPLEMENTED(); |
| 184 } | 187 } |
| 185 | 188 |
| 186 | 189 |
| 187 void FlowGraphCompiler::EmitOptimizedInstanceCall( | 190 void FlowGraphCompiler::EmitOptimizedInstanceCall( |
| 188 ExternalLabel* target_label, | 191 ExternalLabel* target_label, |
| 189 const ICData& ic_data, | 192 const ICData& ic_data, |
| 190 const Array& arguments_descriptor, | 193 const Array& arguments_descriptor, |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 362 |
| 360 | 363 |
| 361 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 364 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
| 362 UNIMPLEMENTED(); | 365 UNIMPLEMENTED(); |
| 363 } | 366 } |
| 364 | 367 |
| 365 | 368 |
| 366 } // namespace dart | 369 } // namespace dart |
| 367 | 370 |
| 368 #endif // defined TARGET_ARCH_ARM | 371 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |