| 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_X64. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_X64. |
| 6 #if defined(TARGET_ARCH_X64) | 6 #if defined(TARGET_ARCH_X64) |
| 7 | 7 |
| 8 #include "vm/flow_graph_compiler.h" | 8 #include "vm/flow_graph_compiler.h" |
| 9 | 9 |
| 10 #include "lib/error.h" | 10 #include "lib/error.h" |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 __ Drop(1); | 1321 __ Drop(1); |
| 1322 __ jmp(skip_call); | 1322 __ jmp(skip_call); |
| 1323 __ Bind(&is_false); | 1323 __ Bind(&is_false); |
| 1324 __ LoadObject(result, Bool::False()); | 1324 __ LoadObject(result, Bool::False()); |
| 1325 __ Drop(1); | 1325 __ Drop(1); |
| 1326 __ jmp(skip_call); | 1326 __ jmp(skip_call); |
| 1327 __ Bind(&fall_through); | 1327 __ Bind(&fall_through); |
| 1328 } | 1328 } |
| 1329 | 1329 |
| 1330 | 1330 |
| 1331 // This function must be in sync with FlowGraphCompiler::RecordSafepoint. |
| 1331 void FlowGraphCompiler::SaveLiveRegisters(LocationSummary* locs) { | 1332 void FlowGraphCompiler::SaveLiveRegisters(LocationSummary* locs) { |
| 1332 // TODO(vegorov): consider saving only caller save (volatile) registers. | 1333 // TODO(vegorov): consider saving only caller save (volatile) registers. |
| 1333 const intptr_t xmm_regs_count = locs->live_registers()->fpu_regs_count(); | 1334 const intptr_t xmm_regs_count = locs->live_registers()->fpu_regs_count(); |
| 1334 if (xmm_regs_count > 0) { | 1335 if (xmm_regs_count > 0) { |
| 1335 __ subq(RSP, Immediate(xmm_regs_count * kFpuRegisterSize)); | 1336 __ subq(RSP, Immediate(xmm_regs_count * kFpuRegisterSize)); |
| 1336 // Store XMM registers with the lowest register number at the lowest | 1337 // Store XMM registers with the lowest register number at the lowest |
| 1337 // address. | 1338 // address. |
| 1338 intptr_t offset = 0; | 1339 intptr_t offset = 0; |
| 1339 for (intptr_t reg_idx = 0; reg_idx < kNumberOfXmmRegisters; ++reg_idx) { | 1340 for (intptr_t reg_idx = 0; reg_idx < kNumberOfXmmRegisters; ++reg_idx) { |
| 1340 XmmRegister xmm_reg = static_cast<XmmRegister>(reg_idx); | 1341 XmmRegister xmm_reg = static_cast<XmmRegister>(reg_idx); |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1688 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { | 1689 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { |
| 1689 __ Exchange(mem1, mem2); | 1690 __ Exchange(mem1, mem2); |
| 1690 } | 1691 } |
| 1691 | 1692 |
| 1692 | 1693 |
| 1693 #undef __ | 1694 #undef __ |
| 1694 | 1695 |
| 1695 } // namespace dart | 1696 } // namespace dart |
| 1696 | 1697 |
| 1697 #endif // defined TARGET_ARCH_X64 | 1698 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |