| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 LocationSummary* BinaryOpComp::MakeLocationSummary() const { | 387 LocationSummary* BinaryOpComp::MakeLocationSummary() const { |
| 388 return NULL; | 388 return NULL; |
| 389 } | 389 } |
| 390 | 390 |
| 391 | 391 |
| 392 void BinaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) { | 392 void BinaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) { |
| 393 UNIMPLEMENTED(); | 393 UNIMPLEMENTED(); |
| 394 } | 394 } |
| 395 | 395 |
| 396 | 396 |
| 397 LocationSummary* UnaryOpComp::MakeLocationSummary() const { |
| 398 return NULL; |
| 399 } |
| 400 |
| 401 |
| 402 void UnaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) { |
| 403 UNIMPLEMENTED(); |
| 404 } |
| 405 |
| 406 |
| 397 } // namespace dart | 407 } // namespace dart |
| 398 | 408 |
| 399 #undef __ | 409 #undef __ |
| 400 | 410 |
| 401 #endif // defined TARGET_ARCH_X64 | 411 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |