| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 | 297 |
| 298 bool FlowGraphCompiler::EvaluateCondition(Condition condition, | 298 bool FlowGraphCompiler::EvaluateCondition(Condition condition, |
| 299 intptr_t left, | 299 intptr_t left, |
| 300 intptr_t right) { | 300 intptr_t right) { |
| 301 UNIMPLEMENTED(); | 301 UNIMPLEMENTED(); |
| 302 return false; | 302 return false; |
| 303 } | 303 } |
| 304 | 304 |
| 305 | 305 |
| 306 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, | 306 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, |
| 307 intptr_t index_scale, |
| 307 Register array, | 308 Register array, |
| 308 intptr_t index) { | 309 intptr_t index) { |
| 309 UNIMPLEMENTED(); | 310 UNIMPLEMENTED(); |
| 310 return FieldAddress(array, index); | 311 return FieldAddress(array, index); |
| 311 } | 312 } |
| 312 | 313 |
| 313 | 314 |
| 314 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, | 315 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, |
| 316 intptr_t index_scale, |
| 315 Register array, | 317 Register array, |
| 316 Register index) { | 318 Register index) { |
| 317 UNIMPLEMENTED(); | 319 UNIMPLEMENTED(); |
| 318 return FieldAddress(array, index); | 320 return FieldAddress(array, index); |
| 319 } | 321 } |
| 320 | 322 |
| 321 | 323 |
| 322 Address FlowGraphCompiler::ExternalElementAddressForIntIndex(intptr_t cid, | 324 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( |
| 323 Register array, | 325 intptr_t cid, |
| 324 intptr_t index) { | 326 intptr_t index_scale, |
| 327 Register array, |
| 328 intptr_t index) { |
| 325 UNIMPLEMENTED(); | 329 UNIMPLEMENTED(); |
| 326 return FieldAddress(array, index); | 330 return FieldAddress(array, index); |
| 327 } | 331 } |
| 328 | 332 |
| 329 | 333 |
| 330 Address FlowGraphCompiler::ExternalElementAddressForRegIndex(intptr_t cid, | 334 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( |
| 331 Register array, | 335 intptr_t cid, |
| 332 Register index) { | 336 intptr_t index_scale, |
| 337 Register array, |
| 338 Register index) { |
| 333 UNIMPLEMENTED(); | 339 UNIMPLEMENTED(); |
| 334 return FieldAddress(array, index); | 340 return FieldAddress(array, index); |
| 335 } | 341 } |
| 336 | 342 |
| 337 | 343 |
| 338 void ParallelMoveResolver::EmitMove(int index) { | 344 void ParallelMoveResolver::EmitMove(int index) { |
| 339 UNIMPLEMENTED(); | 345 UNIMPLEMENTED(); |
| 340 } | 346 } |
| 341 | 347 |
| 342 | 348 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 362 | 368 |
| 363 | 369 |
| 364 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 370 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
| 365 UNIMPLEMENTED(); | 371 UNIMPLEMENTED(); |
| 366 } | 372 } |
| 367 | 373 |
| 368 | 374 |
| 369 } // namespace dart | 375 } // namespace dart |
| 370 | 376 |
| 371 #endif // defined TARGET_ARCH_ARM | 377 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |