blob: 01052315131a4c62745924724b988d29c04421b2 [file] [log] [blame]
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "code_generator_x86_64.h"
18
19#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010020#include "gc/accounting/card_table.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070021#include "mirror/array-inl.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010022#include "mirror/art_method.h"
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +010023#include "mirror/class.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010024#include "mirror/object_reference.h"
25#include "thread.h"
26#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010027#include "utils/stack_checks.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010028#include "utils/x86_64/assembler_x86_64.h"
29#include "utils/x86_64/managed_register_x86_64.h"
30
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010031namespace art {
32
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010033namespace x86_64 {
34
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010035static constexpr bool kExplicitStackOverflowCheck = false;
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010036
37// Some x86_64 instructions require a register to be available as temp.
38static constexpr Register TMP = R11;
39
40static constexpr int kNumberOfPushedRegistersAtEntry = 1;
41static constexpr int kCurrentMethodStackOffset = 0;
42
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010043static constexpr Register kRuntimeParameterCoreRegisters[] = { RDI, RSI, RDX };
44static constexpr size_t kRuntimeParameterCoreRegistersLength =
45 arraysize(kRuntimeParameterCoreRegisters);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +010046static constexpr FloatRegister kRuntimeParameterFpuRegisters[] = { };
47static constexpr size_t kRuntimeParameterFpuRegistersLength = 0;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010048
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +010049class InvokeRuntimeCallingConvention : public CallingConvention<Register, FloatRegister> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010050 public:
51 InvokeRuntimeCallingConvention()
52 : CallingConvention(kRuntimeParameterCoreRegisters,
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +010053 kRuntimeParameterCoreRegistersLength,
54 kRuntimeParameterFpuRegisters,
55 kRuntimeParameterFpuRegistersLength) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010056
57 private:
58 DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention);
59};
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010060
Nicolas Geoffraye5038322014-07-04 09:41:32 +010061#define __ reinterpret_cast<X86_64Assembler*>(codegen->GetAssembler())->
62
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010063class SlowPathCodeX86_64 : public SlowPathCode {
64 public:
65 SlowPathCodeX86_64() : entry_label_(), exit_label_() {}
66
67 Label* GetEntryLabel() { return &entry_label_; }
68 Label* GetExitLabel() { return &exit_label_; }
69
70 private:
71 Label entry_label_;
72 Label exit_label_;
73
74 DISALLOW_COPY_AND_ASSIGN(SlowPathCodeX86_64);
75};
76
77class NullCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010078 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010079 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010080
81 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
82 __ Bind(GetEntryLabel());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010083 __ gs()->call(
84 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowNullPointer), true));
Nicolas Geoffray39468442014-09-02 15:17:15 +010085 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
Nicolas Geoffraye5038322014-07-04 09:41:32 +010086 }
87
88 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010089 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010090 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86_64);
91};
92
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010093class StackOverflowCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010094 public:
95 StackOverflowCheckSlowPathX86_64() {}
96
97 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
98 __ Bind(GetEntryLabel());
99 __ addq(CpuRegister(RSP),
100 Immediate(codegen->GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
101 __ gs()->jmp(
102 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowStackOverflow), true));
103 }
104
105 private:
106 DISALLOW_COPY_AND_ASSIGN(StackOverflowCheckSlowPathX86_64);
107};
108
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100109class SuspendCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000110 public:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100111 explicit SuspendCheckSlowPathX86_64(HSuspendCheck* instruction, HBasicBlock* successor)
112 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000113
114 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100115 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000116 __ Bind(GetEntryLabel());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100117 codegen->SaveLiveRegisters(instruction_->GetLocations());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000118 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pTestSuspend), true));
119 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100120 codegen->RestoreLiveRegisters(instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100121 if (successor_ == nullptr) {
122 __ jmp(GetReturnLabel());
123 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100124 __ jmp(x64_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100125 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000126 }
127
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100128 Label* GetReturnLabel() {
129 DCHECK(successor_ == nullptr);
130 return &return_label_;
131 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000132
133 private:
134 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100135 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000136 Label return_label_;
137
138 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86_64);
139};
140
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100141class BoundsCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100142 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100143 BoundsCheckSlowPathX86_64(HBoundsCheck* instruction,
144 Location index_location,
145 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100146 : instruction_(instruction),
147 index_location_(index_location),
148 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100149
150 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100151 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100152 __ Bind(GetEntryLabel());
153 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100154 x64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), index_location_);
155 x64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(1)), length_location_);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100156 __ gs()->call(Address::Absolute(
157 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowArrayBounds), true));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100158 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100159 }
160
161 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100162 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100163 const Location index_location_;
164 const Location length_location_;
165
166 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86_64);
167};
168
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100169#undef __
170#define __ reinterpret_cast<X86_64Assembler*>(GetAssembler())->
171
Dave Allison20dfc792014-06-16 20:44:29 -0700172inline Condition X86_64Condition(IfCondition cond) {
173 switch (cond) {
174 case kCondEQ: return kEqual;
175 case kCondNE: return kNotEqual;
176 case kCondLT: return kLess;
177 case kCondLE: return kLessEqual;
178 case kCondGT: return kGreater;
179 case kCondGE: return kGreaterEqual;
180 default:
181 LOG(FATAL) << "Unknown if condition";
182 }
183 return kEqual;
184}
185
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100186void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const {
187 stream << X86_64ManagedRegister::FromCpuRegister(Register(reg));
188}
189
190void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
191 stream << X86_64ManagedRegister::FromXmmRegister(FloatRegister(reg));
192}
193
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100194void CodeGeneratorX86_64::SaveCoreRegister(Location stack_location, uint32_t reg_id) {
195 __ movq(Address(CpuRegister(RSP), stack_location.GetStackIndex()), CpuRegister(reg_id));
196}
197
198void CodeGeneratorX86_64::RestoreCoreRegister(Location stack_location, uint32_t reg_id) {
199 __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_location.GetStackIndex()));
200}
201
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100202CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph)
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100203 : CodeGenerator(graph, kNumberOfCpuRegisters, kNumberOfFloatRegisters, 0),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100204 block_labels_(graph->GetArena(), 0),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100205 location_builder_(graph, this),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000206 instruction_visitor_(graph, this),
207 move_resolver_(graph->GetArena(), this) {}
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100208
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100209size_t CodeGeneratorX86_64::FrameEntrySpillSize() const {
210 return kNumberOfPushedRegistersAtEntry * kX86_64WordSize;
211}
212
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100213InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph,
214 CodeGeneratorX86_64* codegen)
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100215 : HGraphVisitor(graph),
216 assembler_(codegen->GetAssembler()),
217 codegen_(codegen) {}
218
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100219Location CodeGeneratorX86_64::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100220 switch (type) {
221 case Primitive::kPrimLong:
222 case Primitive::kPrimByte:
223 case Primitive::kPrimBoolean:
224 case Primitive::kPrimChar:
225 case Primitive::kPrimShort:
226 case Primitive::kPrimInt:
227 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100228 size_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100229 return Location::RegisterLocation(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100230 }
231
232 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100233 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100234 size_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfFloatRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100235 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100236 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100237
238 case Primitive::kPrimVoid:
239 LOG(FATAL) << "Unreachable type " << type;
240 }
241
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100242 return Location();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100243}
244
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100245void CodeGeneratorX86_64::SetupBlockedRegisters() const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100246 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100247 blocked_core_registers_[RSP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100248
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000249 // Block the register used as TMP.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100250 blocked_core_registers_[TMP] = true;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000251
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100252 // TODO: We currently don't use Quick's callee saved registers.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100253 blocked_core_registers_[RBX] = true;
254 blocked_core_registers_[RBP] = true;
255 blocked_core_registers_[R12] = true;
256 blocked_core_registers_[R13] = true;
257 blocked_core_registers_[R14] = true;
258 blocked_core_registers_[R15] = true;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100259
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100260 blocked_fpu_registers_[XMM12] = true;
261 blocked_fpu_registers_[XMM13] = true;
262 blocked_fpu_registers_[XMM14] = true;
263 blocked_fpu_registers_[XMM15] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100264}
265
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100266void CodeGeneratorX86_64::GenerateFrameEntry() {
267 // Create a fake register to mimic Quick.
268 static const int kFakeReturnRegister = 16;
269 core_spill_mask_ |= (1 << kFakeReturnRegister);
270
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100271 bool skip_overflow_check = IsLeafMethod()
Dave Allison648d7112014-07-25 16:15:27 -0700272 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100273
274 if (!skip_overflow_check && !kExplicitStackOverflowCheck) {
275 __ testq(CpuRegister(RAX), Address(
276 CpuRegister(RSP), -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86_64))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100277 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100278 }
279
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100280 // The return PC has already been pushed on the stack.
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100281 __ subq(CpuRegister(RSP),
282 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
283
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100284 if (!skip_overflow_check && kExplicitStackOverflowCheck) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100285 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86_64();
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100286 AddSlowPath(slow_path);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100287
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100288 __ gs()->cmpq(CpuRegister(RSP),
289 Address::Absolute(Thread::StackEndOffset<kX86_64WordSize>(), true));
290 __ j(kLess, slow_path->GetEntryLabel());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100291 }
292
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100293 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI));
294}
295
296void CodeGeneratorX86_64::GenerateFrameExit() {
297 __ addq(CpuRegister(RSP),
298 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
299}
300
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100301void CodeGeneratorX86_64::Bind(HBasicBlock* block) {
302 __ Bind(GetLabelOf(block));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100303}
304
305void InstructionCodeGeneratorX86_64::LoadCurrentMethod(CpuRegister reg) {
306 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
307}
308
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100309Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
310 switch (load->GetType()) {
311 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100312 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100313 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
314 break;
315
316 case Primitive::kPrimInt:
317 case Primitive::kPrimNot:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100318 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100319 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100320
321 case Primitive::kPrimBoolean:
322 case Primitive::kPrimByte:
323 case Primitive::kPrimChar:
324 case Primitive::kPrimShort:
325 case Primitive::kPrimVoid:
326 LOG(FATAL) << "Unexpected type " << load->GetType();
327 }
328
329 LOG(FATAL) << "Unreachable";
330 return Location();
331}
332
333void CodeGeneratorX86_64::Move(Location destination, Location source) {
334 if (source.Equals(destination)) {
335 return;
336 }
337 if (destination.IsRegister()) {
338 if (source.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100339 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100340 } else if (source.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100341 __ movd(destination.As<CpuRegister>(), source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100342 } else if (source.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100343 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100344 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100345 } else {
346 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100347 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100348 Address(CpuRegister(RSP), source.GetStackIndex()));
349 }
350 } else if (destination.IsFpuRegister()) {
351 if (source.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100352 __ movd(destination.As<XmmRegister>(), source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100353 } else if (source.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100354 __ movaps(destination.As<XmmRegister>(), source.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100355 } else if (source.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100356 __ movss(destination.As<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100357 Address(CpuRegister(RSP), source.GetStackIndex()));
358 } else {
359 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100360 __ movsd(destination.As<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100361 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100362 }
363 } else if (destination.IsStackSlot()) {
364 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100365 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100366 source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100367 } else if (source.IsFpuRegister()) {
368 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100369 source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100370 } else {
371 DCHECK(source.IsStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000372 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
373 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100374 }
375 } else {
376 DCHECK(destination.IsDoubleStackSlot());
377 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100378 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100379 source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100380 } else if (source.IsFpuRegister()) {
381 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100382 source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100383 } else {
384 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000385 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
386 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100387 }
388 }
389}
390
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100391void CodeGeneratorX86_64::Move(HInstruction* instruction,
392 Location location,
393 HInstruction* move_for) {
Roland Levillain476df552014-10-09 17:51:36 +0100394 if (instruction->IsIntConstant()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100395 Immediate imm(instruction->AsIntConstant()->GetValue());
396 if (location.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100397 __ movl(location.As<CpuRegister>(), imm);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100398 } else {
399 __ movl(Address(CpuRegister(RSP), location.GetStackIndex()), imm);
400 }
Roland Levillain476df552014-10-09 17:51:36 +0100401 } else if (instruction->IsLongConstant()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100402 int64_t value = instruction->AsLongConstant()->GetValue();
403 if (location.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100404 __ movq(location.As<CpuRegister>(), Immediate(value));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100405 } else {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000406 __ movq(CpuRegister(TMP), Immediate(value));
407 __ movq(Address(CpuRegister(RSP), location.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100408 }
Roland Levillain476df552014-10-09 17:51:36 +0100409 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100410 switch (instruction->GetType()) {
411 case Primitive::kPrimBoolean:
412 case Primitive::kPrimByte:
413 case Primitive::kPrimChar:
414 case Primitive::kPrimShort:
415 case Primitive::kPrimInt:
416 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100417 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100418 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
419 break;
420
421 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100422 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100423 Move(location, Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
424 break;
425
426 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100427 LOG(FATAL) << "Unexpected local type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100428 }
429 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100430 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100431 switch (instruction->GetType()) {
432 case Primitive::kPrimBoolean:
433 case Primitive::kPrimByte:
434 case Primitive::kPrimChar:
435 case Primitive::kPrimShort:
436 case Primitive::kPrimInt:
437 case Primitive::kPrimNot:
438 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100439 case Primitive::kPrimFloat:
440 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100441 Move(location, instruction->GetLocations()->Out());
442 break;
443
444 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100445 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100446 }
447 }
448}
449
450void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
451 got->SetLocations(nullptr);
452}
453
454void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
455 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100456 DCHECK(!successor->IsExitBlock());
457
458 HBasicBlock* block = got->GetBlock();
459 HInstruction* previous = got->GetPrevious();
460
461 HLoopInformation* info = block->GetLoopInformation();
462 if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) {
463 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
464 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
465 return;
466 }
467
468 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
469 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
470 }
471 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100472 __ jmp(codegen_->GetLabelOf(successor));
473 }
474}
475
476void LocationsBuilderX86_64::VisitExit(HExit* exit) {
477 exit->SetLocations(nullptr);
478}
479
480void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit) {
481 if (kIsDebugBuild) {
482 __ Comment("Unreachable");
483 __ int3();
484 }
485}
486
487void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100488 LocationSummary* locations =
489 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100490 HInstruction* cond = if_instr->InputAt(0);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100491 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +0100492 locations->SetInAt(0, Location::Any(), Location::kDiesAtEntry);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100493 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100494}
495
496void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
Dave Allison20dfc792014-06-16 20:44:29 -0700497 HInstruction* cond = if_instr->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100498 if (cond->IsIntConstant()) {
499 // Constant condition, statically compared against 1.
500 int32_t cond_value = cond->AsIntConstant()->GetValue();
501 if (cond_value == 1) {
502 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
503 if_instr->IfTrueSuccessor())) {
504 __ jmp(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100505 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100506 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100507 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100508 DCHECK_EQ(cond_value, 0);
509 }
510 } else {
511 bool materialized =
512 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
513 // Moves do not affect the eflags register, so if the condition is
514 // evaluated just before the if, we don't need to evaluate it
515 // again.
516 bool eflags_set = cond->IsCondition()
517 && cond->AsCondition()->IsBeforeWhenDisregardMoves(if_instr);
518 if (materialized) {
519 if (!eflags_set) {
520 // Materialized condition, compare against 0.
521 Location lhs = if_instr->GetLocations()->InAt(0);
522 if (lhs.IsRegister()) {
523 __ cmpl(lhs.As<CpuRegister>(), Immediate(0));
524 } else {
525 __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()),
526 Immediate(0));
527 }
528 __ j(kNotEqual, codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
529 } else {
530 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
531 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
532 }
533 } else {
534 Location lhs = cond->GetLocations()->InAt(0);
535 Location rhs = cond->GetLocations()->InAt(1);
536 if (rhs.IsRegister()) {
537 __ cmpl(lhs.As<CpuRegister>(), rhs.As<CpuRegister>());
538 } else if (rhs.IsConstant()) {
539 __ cmpl(lhs.As<CpuRegister>(),
540 Immediate(rhs.GetConstant()->AsIntConstant()->GetValue()));
541 } else {
542 __ cmpl(lhs.As<CpuRegister>(),
543 Address(CpuRegister(RSP), rhs.GetStackIndex()));
544 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100545 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
546 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Dave Allison20dfc792014-06-16 20:44:29 -0700547 }
Dave Allison20dfc792014-06-16 20:44:29 -0700548 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100549 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
550 if_instr->IfFalseSuccessor())) {
Dave Allison20dfc792014-06-16 20:44:29 -0700551 __ jmp(codegen_->GetLabelOf(if_instr->IfFalseSuccessor()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100552 }
553}
554
555void LocationsBuilderX86_64::VisitLocal(HLocal* local) {
556 local->SetLocations(nullptr);
557}
558
559void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) {
560 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
561}
562
563void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
564 local->SetLocations(nullptr);
565}
566
567void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load) {
568 // Nothing to do, this is driven by the code generator.
569}
570
571void LocationsBuilderX86_64::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100572 LocationSummary* locations =
573 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100574 switch (store->InputAt(1)->GetType()) {
575 case Primitive::kPrimBoolean:
576 case Primitive::kPrimByte:
577 case Primitive::kPrimChar:
578 case Primitive::kPrimShort:
579 case Primitive::kPrimInt:
580 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100581 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100582 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
583 break;
584
585 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100586 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100587 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
588 break;
589
590 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100591 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100592 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100593}
594
595void InstructionCodeGeneratorX86_64::VisitStoreLocal(HStoreLocal* store) {
596}
597
Dave Allison20dfc792014-06-16 20:44:29 -0700598void LocationsBuilderX86_64::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100599 LocationSummary* locations =
600 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +0100601 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
602 locations->SetInAt(1, Location::Any(), Location::kDiesAtEntry);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100603 if (comp->NeedsMaterialization()) {
604 locations->SetOut(Location::RequiresRegister());
605 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100606}
607
Dave Allison20dfc792014-06-16 20:44:29 -0700608void InstructionCodeGeneratorX86_64::VisitCondition(HCondition* comp) {
609 if (comp->NeedsMaterialization()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100610 LocationSummary* locations = comp->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100611 CpuRegister reg = locations->Out().As<CpuRegister>();
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100612 // Clear register: setcc only sets the low byte.
613 __ xorq(reg, reg);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100614 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100615 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100616 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100617 } else if (locations->InAt(1).IsConstant()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100618 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100619 Immediate(locations->InAt(1).GetConstant()->AsIntConstant()->GetValue()));
620 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100621 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100622 Address(CpuRegister(RSP), locations->InAt(1).GetStackIndex()));
623 }
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100624 __ setcc(X86_64Condition(comp->GetCondition()), reg);
Dave Allison20dfc792014-06-16 20:44:29 -0700625 }
626}
627
628void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
629 VisitCondition(comp);
630}
631
632void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) {
633 VisitCondition(comp);
634}
635
636void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) {
637 VisitCondition(comp);
638}
639
640void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) {
641 VisitCondition(comp);
642}
643
644void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) {
645 VisitCondition(comp);
646}
647
648void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) {
649 VisitCondition(comp);
650}
651
652void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
653 VisitCondition(comp);
654}
655
656void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
657 VisitCondition(comp);
658}
659
660void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) {
661 VisitCondition(comp);
662}
663
664void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) {
665 VisitCondition(comp);
666}
667
668void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
669 VisitCondition(comp);
670}
671
672void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
673 VisitCondition(comp);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100674}
675
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100676void LocationsBuilderX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100677 LocationSummary* locations =
678 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +0100679 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
680 locations->SetInAt(1, Location::RequiresRegister(), Location::kDiesAtEntry);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100681 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100682}
683
684void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) {
685 Label greater, done;
686 LocationSummary* locations = compare->GetLocations();
687 switch (compare->InputAt(0)->GetType()) {
688 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100689 __ cmpq(locations->InAt(0).As<CpuRegister>(),
690 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100691 break;
692 default:
693 LOG(FATAL) << "Unimplemented compare type " << compare->InputAt(0)->GetType();
694 }
695
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100696 CpuRegister output = locations->Out().As<CpuRegister>();
697 __ movl(output, Immediate(0));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100698 __ j(kEqual, &done);
699 __ j(kGreater, &greater);
700
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100701 __ movl(output, Immediate(-1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100702 __ jmp(&done);
703
704 __ Bind(&greater);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100705 __ movl(output, Immediate(1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100706
707 __ Bind(&done);
708}
709
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100710void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100711 LocationSummary* locations =
712 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100713 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100714}
715
716void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100717 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100718}
719
720void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100721 LocationSummary* locations =
722 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100723 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100724}
725
726void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100727 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100728}
729
730void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) {
731 ret->SetLocations(nullptr);
732}
733
734void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret) {
735 codegen_->GenerateFrameExit();
736 __ ret();
737}
738
739void LocationsBuilderX86_64::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100740 LocationSummary* locations =
741 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100742 switch (ret->InputAt(0)->GetType()) {
743 case Primitive::kPrimBoolean:
744 case Primitive::kPrimByte:
745 case Primitive::kPrimChar:
746 case Primitive::kPrimShort:
747 case Primitive::kPrimInt:
748 case Primitive::kPrimNot:
749 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100750 locations->SetInAt(0, Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100751 break;
752
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100753 case Primitive::kPrimFloat:
754 case Primitive::kPrimDouble:
755 locations->SetInAt(0,
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100756 Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100757 break;
758
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100759 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100760 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100761 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100762}
763
764void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) {
765 if (kIsDebugBuild) {
766 switch (ret->InputAt(0)->GetType()) {
767 case Primitive::kPrimBoolean:
768 case Primitive::kPrimByte:
769 case Primitive::kPrimChar:
770 case Primitive::kPrimShort:
771 case Primitive::kPrimInt:
772 case Primitive::kPrimNot:
773 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100774 DCHECK_EQ(ret->GetLocations()->InAt(0).As<CpuRegister>().AsRegister(), RAX);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100775 break;
776
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100777 case Primitive::kPrimFloat:
778 case Primitive::kPrimDouble:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100779 DCHECK_EQ(ret->GetLocations()->InAt(0).As<XmmRegister>().AsFloatRegister(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100780 XMM0);
781 break;
782
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100783 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100784 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100785 }
786 }
787 codegen_->GenerateFrameExit();
788 __ ret();
789}
790
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100791Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
792 switch (type) {
793 case Primitive::kPrimBoolean:
794 case Primitive::kPrimByte:
795 case Primitive::kPrimChar:
796 case Primitive::kPrimShort:
797 case Primitive::kPrimInt:
798 case Primitive::kPrimNot: {
799 uint32_t index = gp_index_++;
800 stack_index_++;
801 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100802 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100803 } else {
804 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
805 }
806 }
807
808 case Primitive::kPrimLong: {
809 uint32_t index = gp_index_;
810 stack_index_ += 2;
811 if (index < calling_convention.GetNumberOfRegisters()) {
812 gp_index_ += 1;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100813 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100814 } else {
815 gp_index_ += 2;
816 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
817 }
818 }
819
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100820 case Primitive::kPrimFloat: {
821 uint32_t index = fp_index_++;
822 stack_index_++;
823 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100824 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100825 } else {
826 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
827 }
828 }
829
830 case Primitive::kPrimDouble: {
831 uint32_t index = fp_index_++;
832 stack_index_ += 2;
833 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100834 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100835 } else {
836 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
837 }
838 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100839
840 case Primitive::kPrimVoid:
841 LOG(FATAL) << "Unexpected parameter type " << type;
842 break;
843 }
844 return Location();
845}
846
847void LocationsBuilderX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100848 HandleInvoke(invoke);
849}
850
851void InstructionCodeGeneratorX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100852 CpuRegister temp = invoke->GetLocations()->GetTemp(0).As<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100853 uint32_t heap_reference_size = sizeof(mirror::HeapReference<mirror::Object>);
854 size_t index_in_cache = mirror::Array::DataOffset(heap_reference_size).SizeValue() +
855 invoke->GetIndexInDexCache() * heap_reference_size;
856
857 // TODO: Implement all kinds of calls:
858 // 1) boot -> boot
859 // 2) app -> boot
860 // 3) app -> app
861 //
862 // Currently we implement the app -> app logic, which looks up in the resolve cache.
863
864 // temp = method;
865 LoadCurrentMethod(temp);
866 // temp = temp->dex_cache_resolved_methods_;
867 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().SizeValue()));
868 // temp = temp[index_in_cache]
869 __ movl(temp, Address(temp, index_in_cache));
870 // (temp + offset_of_quick_compiled_code)()
871 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().SizeValue()));
872
873 DCHECK(!codegen_->IsLeafMethod());
874 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
875}
876
877void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
878 HandleInvoke(invoke);
879}
880
881void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100882 LocationSummary* locations =
883 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100884 locations->AddTemp(Location::RegisterLocation(RDI));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100885
886 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100887 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100888 HInstruction* input = invoke->InputAt(i);
889 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
890 }
891
892 switch (invoke->GetType()) {
893 case Primitive::kPrimBoolean:
894 case Primitive::kPrimByte:
895 case Primitive::kPrimChar:
896 case Primitive::kPrimShort:
897 case Primitive::kPrimInt:
898 case Primitive::kPrimNot:
899 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100900 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100901 break;
902
903 case Primitive::kPrimVoid:
904 break;
905
906 case Primitive::kPrimDouble:
907 case Primitive::kPrimFloat:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100908 locations->SetOut(Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100909 break;
910 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100911}
912
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100913void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100914 CpuRegister temp = invoke->GetLocations()->GetTemp(0).As<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100915 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
916 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
917 LocationSummary* locations = invoke->GetLocations();
918 Location receiver = locations->InAt(0);
919 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
920 // temp = object->GetClass();
921 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100922 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
923 __ movl(temp, Address(temp, class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100924 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100925 __ movl(temp, Address(receiver.As<CpuRegister>(), class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100926 }
927 // temp = temp->GetMethodAt(method_offset);
928 __ movl(temp, Address(temp, method_offset));
929 // call temp->GetEntryPoint();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100930 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().SizeValue()));
931
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100932 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +0100933 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100934}
935
Roland Levillain88cb1752014-10-20 16:36:47 +0100936void LocationsBuilderX86_64::VisitNeg(HNeg* neg) {
937 LocationSummary* locations =
938 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
939 switch (neg->GetResultType()) {
940 case Primitive::kPrimInt:
941 locations->SetInAt(0, Location::RequiresRegister());
942 locations->SetOut(Location::SameAsFirstInput());
943 break;
944
945 case Primitive::kPrimLong:
946 case Primitive::kPrimFloat:
947 case Primitive::kPrimDouble:
948 LOG(FATAL) << "Not yet implemented neg type " << neg->GetResultType();
949 break;
950
951 default:
952 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
953 }
954}
955
956void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) {
957 LocationSummary* locations = neg->GetLocations();
958 Location out = locations->Out();
959 Location in = locations->InAt(0);
960 switch (neg->GetResultType()) {
961 case Primitive::kPrimInt:
962 DCHECK(in.IsRegister());
963 __ negl(out.As<CpuRegister>());
964 break;
965
966 case Primitive::kPrimLong:
967 case Primitive::kPrimFloat:
968 case Primitive::kPrimDouble:
969 LOG(FATAL) << "Not yet implemented neg type " << neg->GetResultType();
970 break;
971
972 default:
973 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
974 }
975}
976
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100977void LocationsBuilderX86_64::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100978 LocationSummary* locations =
979 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100980 switch (add->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100981 case Primitive::kPrimInt: {
982 locations->SetInAt(0, Location::RequiresRegister());
983 locations->SetInAt(1, Location::Any());
984 locations->SetOut(Location::SameAsFirstInput());
985 break;
986 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100987
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100988 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000989 locations->SetInAt(0, Location::RequiresRegister());
990 locations->SetInAt(1, Location::RequiresRegister());
991 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100992 break;
993 }
994
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100995 case Primitive::kPrimDouble:
996 case Primitive::kPrimFloat: {
997 locations->SetInAt(0, Location::RequiresFpuRegister());
998 locations->SetInAt(1, Location::Any());
999 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001000 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001001 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001002
1003 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001004 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001005 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001006}
1007
1008void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) {
1009 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001010 Location first = locations->InAt(0);
1011 Location second = locations->InAt(1);
1012
1013 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001014 switch (add->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001015 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001016 if (second.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001017 __ addl(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001018 } else if (second.IsConstant()) {
1019 HConstant* instruction = second.GetConstant();
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001020 Immediate imm(instruction->AsIntConstant()->GetValue());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001021 __ addl(first.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001022 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001023 __ addl(first.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001024 Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001025 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001026 break;
1027 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001028
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001029 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001030 __ addq(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001031 break;
1032 }
1033
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001034 case Primitive::kPrimFloat: {
1035 if (second.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001036 __ addss(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001037 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001038 __ addss(first.As<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001039 Address(CpuRegister(RSP), second.GetStackIndex()));
1040 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001041 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001042 }
1043
1044 case Primitive::kPrimDouble: {
1045 if (second.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001046 __ addsd(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001047 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001048 __ addsd(first.As<XmmRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001049 }
1050 break;
1051 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001052
1053 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001054 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001055 }
1056}
1057
1058void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001059 LocationSummary* locations =
1060 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001061 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001062 case Primitive::kPrimInt: {
1063 locations->SetInAt(0, Location::RequiresRegister());
1064 locations->SetInAt(1, Location::Any());
1065 locations->SetOut(Location::SameAsFirstInput());
1066 break;
1067 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001068 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001069 locations->SetInAt(0, Location::RequiresRegister());
1070 locations->SetInAt(1, Location::RequiresRegister());
1071 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001072 break;
1073 }
1074
1075 case Primitive::kPrimBoolean:
1076 case Primitive::kPrimByte:
1077 case Primitive::kPrimChar:
1078 case Primitive::kPrimShort:
1079 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
1080 break;
1081
1082 default:
1083 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
1084 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001085}
1086
1087void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
1088 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001089 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1090 locations->Out().As<CpuRegister>().AsRegister());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001091 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001092 case Primitive::kPrimInt: {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001093 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001094 __ subl(locations->InAt(0).As<CpuRegister>(),
1095 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001096 } else if (locations->InAt(1).IsConstant()) {
1097 HConstant* instruction = locations->InAt(1).GetConstant();
1098 Immediate imm(instruction->AsIntConstant()->GetValue());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001099 __ subl(locations->InAt(0).As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001100 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001101 __ subl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001102 Address(CpuRegister(RSP), locations->InAt(1).GetStackIndex()));
1103 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001104 break;
1105 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001106 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001107 __ subq(locations->InAt(0).As<CpuRegister>(),
1108 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001109 break;
1110 }
1111
1112 case Primitive::kPrimBoolean:
1113 case Primitive::kPrimByte:
1114 case Primitive::kPrimChar:
1115 case Primitive::kPrimShort:
1116 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
1117 break;
1118
1119 default:
1120 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
1121 }
1122}
1123
Calin Juravle34bacdf2014-10-07 20:23:36 +01001124void LocationsBuilderX86_64::VisitMul(HMul* mul) {
1125 LocationSummary* locations =
1126 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
1127 switch (mul->GetResultType()) {
1128 case Primitive::kPrimInt: {
1129 locations->SetInAt(0, Location::RequiresRegister());
1130 locations->SetInAt(1, Location::Any());
1131 locations->SetOut(Location::SameAsFirstInput());
1132 break;
1133 }
1134 case Primitive::kPrimLong: {
1135 locations->SetInAt(0, Location::RequiresRegister());
1136 locations->SetInAt(1, Location::RequiresRegister());
1137 locations->SetOut(Location::SameAsFirstInput());
1138 break;
1139 }
1140
1141 case Primitive::kPrimBoolean:
1142 case Primitive::kPrimByte:
1143 case Primitive::kPrimChar:
1144 case Primitive::kPrimShort:
1145 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
1146 break;
1147
1148 default:
1149 LOG(FATAL) << "Unimplemented mul type " << mul->GetResultType();
1150 }
1151}
1152
1153void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
1154 LocationSummary* locations = mul->GetLocations();
1155 Location first = locations->InAt(0);
1156 Location second = locations->InAt(1);
1157 DCHECK(first.Equals(locations->Out()));
1158 switch (mul->GetResultType()) {
1159 case Primitive::kPrimInt: {
1160 if (second.IsRegister()) {
1161 __ imull(first.As<CpuRegister>(), second.As<CpuRegister>());
1162 } else if (second.IsConstant()) {
1163 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
1164 __ imull(first.As<CpuRegister>(), imm);
1165 } else {
1166 DCHECK(second.IsStackSlot());
1167 __ imull(first.As<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
1168 }
1169 break;
1170 }
1171 case Primitive::kPrimLong: {
1172 __ imulq(first.As<CpuRegister>(), second.As<CpuRegister>());
1173 break;
1174 }
1175
1176 case Primitive::kPrimBoolean:
1177 case Primitive::kPrimByte:
1178 case Primitive::kPrimChar:
1179 case Primitive::kPrimShort:
1180 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
1181 break;
1182
1183 default:
1184 LOG(FATAL) << "Unimplemented mul type " << mul->GetResultType();
1185 }
1186}
1187
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001188void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001189 LocationSummary* locations =
1190 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001191 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001192 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1193 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1194 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001195}
1196
1197void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
1198 InvokeRuntimeCallingConvention calling_convention;
1199 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1200 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1201
1202 __ gs()->call(Address::Absolute(
1203 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocObjectWithAccessCheck), true));
1204
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001205 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001206 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001207}
1208
1209void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001210 LocationSummary* locations =
1211 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001212 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
1213 if (location.IsStackSlot()) {
1214 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1215 } else if (location.IsDoubleStackSlot()) {
1216 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1217 }
1218 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001219}
1220
1221void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
1222 // Nothing to do, the parameter is already at its location.
1223}
1224
1225void LocationsBuilderX86_64::VisitNot(HNot* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001226 LocationSummary* locations =
1227 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001228 locations->SetInAt(0, Location::RequiresRegister());
1229 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001230}
1231
1232void InstructionCodeGeneratorX86_64::VisitNot(HNot* instruction) {
1233 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001234 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1235 locations->Out().As<CpuRegister>().AsRegister());
1236 __ xorq(locations->Out().As<CpuRegister>(), Immediate(1));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001237}
1238
1239void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001240 LocationSummary* locations =
1241 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001242 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
1243 locations->SetInAt(i, Location::Any());
1244 }
1245 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001246}
1247
1248void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
1249 LOG(FATAL) << "Unimplemented";
1250}
1251
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001252void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001253 LocationSummary* locations =
1254 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001255 Primitive::Type field_type = instruction->GetFieldType();
1256 bool is_object_type = field_type == Primitive::kPrimNot;
1257 bool dies_at_entry = !is_object_type;
1258 locations->SetInAt(0, Location::RequiresRegister(), dies_at_entry);
1259 locations->SetInAt(1, Location::RequiresRegister(), dies_at_entry);
1260 if (is_object_type) {
1261 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01001262 locations->AddTemp(Location::RequiresRegister());
1263 locations->AddTemp(Location::RequiresRegister());
1264 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001265}
1266
1267void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
1268 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001269 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1270 CpuRegister value = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001271 size_t offset = instruction->GetFieldOffset().SizeValue();
Nicolas Geoffray39468442014-09-02 15:17:15 +01001272 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001273
1274 switch (field_type) {
1275 case Primitive::kPrimBoolean:
1276 case Primitive::kPrimByte: {
1277 __ movb(Address(obj, offset), value);
1278 break;
1279 }
1280
1281 case Primitive::kPrimShort:
1282 case Primitive::kPrimChar: {
1283 __ movw(Address(obj, offset), value);
1284 break;
1285 }
1286
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001287 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001288 case Primitive::kPrimNot: {
1289 __ movl(Address(obj, offset), value);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001290 if (field_type == Primitive::kPrimNot) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001291 CpuRegister temp = locations->GetTemp(0).As<CpuRegister>();
1292 CpuRegister card = locations->GetTemp(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001293 codegen_->MarkGCCard(temp, card, obj, value);
1294 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001295 break;
1296 }
1297
1298 case Primitive::kPrimLong: {
1299 __ movq(Address(obj, offset), value);
1300 break;
1301 }
1302
1303 case Primitive::kPrimFloat:
1304 case Primitive::kPrimDouble:
1305 LOG(FATAL) << "Unimplemented register type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001306 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001307 case Primitive::kPrimVoid:
1308 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001309 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001310 }
1311}
1312
1313void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001314 LocationSummary* locations =
1315 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001316 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001317 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001318}
1319
1320void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
1321 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001322 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1323 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001324 size_t offset = instruction->GetFieldOffset().SizeValue();
1325
1326 switch (instruction->GetType()) {
1327 case Primitive::kPrimBoolean: {
1328 __ movzxb(out, Address(obj, offset));
1329 break;
1330 }
1331
1332 case Primitive::kPrimByte: {
1333 __ movsxb(out, Address(obj, offset));
1334 break;
1335 }
1336
1337 case Primitive::kPrimShort: {
1338 __ movsxw(out, Address(obj, offset));
1339 break;
1340 }
1341
1342 case Primitive::kPrimChar: {
1343 __ movzxw(out, Address(obj, offset));
1344 break;
1345 }
1346
1347 case Primitive::kPrimInt:
1348 case Primitive::kPrimNot: {
1349 __ movl(out, Address(obj, offset));
1350 break;
1351 }
1352
1353 case Primitive::kPrimLong: {
1354 __ movq(out, Address(obj, offset));
1355 break;
1356 }
1357
1358 case Primitive::kPrimFloat:
1359 case Primitive::kPrimDouble:
1360 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001361 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001362 case Primitive::kPrimVoid:
1363 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001364 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001365 }
1366}
1367
1368void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001369 LocationSummary* locations =
1370 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001371 locations->SetInAt(0, Location::Any());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001372 if (instruction->HasUses()) {
1373 locations->SetOut(Location::SameAsFirstInput());
1374 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001375}
1376
1377void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001378 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001379 codegen_->AddSlowPath(slow_path);
1380
1381 LocationSummary* locations = instruction->GetLocations();
1382 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001383
1384 if (obj.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001385 __ cmpl(obj.As<CpuRegister>(), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001386 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001387 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001388 } else {
1389 DCHECK(obj.IsConstant()) << obj;
1390 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
1391 __ jmp(slow_path->GetEntryLabel());
1392 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001393 }
1394 __ j(kEqual, slow_path->GetEntryLabel());
1395}
1396
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001397void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001398 LocationSummary* locations =
1399 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001400 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
1401 locations->SetInAt(
1402 1, Location::RegisterOrConstant(instruction->InputAt(1)), Location::kDiesAtEntry);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001403 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001404}
1405
1406void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
1407 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001408 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001409 Location index = locations->InAt(1);
1410
1411 switch (instruction->GetType()) {
1412 case Primitive::kPrimBoolean: {
1413 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001414 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001415 if (index.IsConstant()) {
1416 __ movzxb(out, Address(obj,
1417 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1418 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001419 __ movzxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001420 }
1421 break;
1422 }
1423
1424 case Primitive::kPrimByte: {
1425 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001426 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001427 if (index.IsConstant()) {
1428 __ movsxb(out, Address(obj,
1429 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1430 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001431 __ movsxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001432 }
1433 break;
1434 }
1435
1436 case Primitive::kPrimShort: {
1437 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001438 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001439 if (index.IsConstant()) {
1440 __ movsxw(out, Address(obj,
1441 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1442 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001443 __ movsxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001444 }
1445 break;
1446 }
1447
1448 case Primitive::kPrimChar: {
1449 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001450 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001451 if (index.IsConstant()) {
1452 __ movzxw(out, Address(obj,
1453 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1454 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001455 __ movzxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001456 }
1457 break;
1458 }
1459
1460 case Primitive::kPrimInt:
1461 case Primitive::kPrimNot: {
1462 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
1463 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001464 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001465 if (index.IsConstant()) {
1466 __ movl(out, Address(obj,
1467 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1468 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001469 __ movl(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001470 }
1471 break;
1472 }
1473
1474 case Primitive::kPrimLong: {
1475 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001476 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001477 if (index.IsConstant()) {
1478 __ movq(out, Address(obj,
1479 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1480 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001481 __ movq(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001482 }
1483 break;
1484 }
1485
1486 case Primitive::kPrimFloat:
1487 case Primitive::kPrimDouble:
1488 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001489 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001490 case Primitive::kPrimVoid:
1491 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001492 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001493 }
1494}
1495
1496void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001497 Primitive::Type value_type = instruction->GetComponentType();
1498 bool is_object = value_type == Primitive::kPrimNot;
1499 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1500 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1501 if (is_object) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001502 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001503 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1504 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1505 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001506 } else {
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001507 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
1508 locations->SetInAt(
1509 1, Location::RegisterOrConstant(instruction->InputAt(1)), Location::kDiesAtEntry);
1510 locations->SetInAt(2, Location::RequiresRegister(), Location::kDiesAtEntry);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001511 if (value_type == Primitive::kPrimLong) {
1512 locations->SetInAt(2, Location::RequiresRegister(), Location::kDiesAtEntry);
1513 } else {
1514 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)), Location::kDiesAtEntry);
1515 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001516 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001517}
1518
1519void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
1520 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001521 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001522 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001523 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01001524 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001525
1526 switch (value_type) {
1527 case Primitive::kPrimBoolean:
1528 case Primitive::kPrimByte: {
1529 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001530 if (index.IsConstant()) {
1531 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001532 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001533 __ movb(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001534 } else {
1535 __ movb(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1536 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001537 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001538 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001539 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
1540 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001541 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001542 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001543 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1544 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001545 }
1546 break;
1547 }
1548
1549 case Primitive::kPrimShort:
1550 case Primitive::kPrimChar: {
1551 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001552 if (index.IsConstant()) {
1553 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001554 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001555 __ movw(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001556 } else {
1557 __ movw(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1558 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001559 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001560 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001561 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
1562 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001563 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001564 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001565 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1566 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001567 }
1568 break;
1569 }
1570
1571 case Primitive::kPrimInt: {
1572 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001573 if (index.IsConstant()) {
1574 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001575 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001576 __ movl(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001577 } else {
1578 __ movl(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1579 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001580 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001581 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001582 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1583 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001584 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001585 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001586 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1587 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001588 }
1589 break;
1590 }
1591
1592 case Primitive::kPrimNot: {
1593 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject), true));
1594 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001595 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001596 break;
1597 }
1598
1599 case Primitive::kPrimLong: {
1600 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001601 if (index.IsConstant()) {
1602 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001603 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001604 __ movq(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001605 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001606 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001607 __ movq(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1608 value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001609 }
1610 break;
1611 }
1612
1613 case Primitive::kPrimFloat:
1614 case Primitive::kPrimDouble:
1615 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001616 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001617 case Primitive::kPrimVoid:
1618 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001619 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001620 }
1621}
1622
1623void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001624 LocationSummary* locations =
1625 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001626 locations->SetInAt(0, Location::RequiresRegister(), Location::kDiesAtEntry);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001627 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001628}
1629
1630void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
1631 LocationSummary* locations = instruction->GetLocations();
1632 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001633 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1634 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001635 __ movl(out, Address(obj, offset));
1636}
1637
1638void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001639 LocationSummary* locations =
1640 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001641 locations->SetInAt(0, Location::RequiresRegister());
1642 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001643 if (instruction->HasUses()) {
1644 locations->SetOut(Location::SameAsFirstInput());
1645 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001646}
1647
1648void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
1649 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001650 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(
Nicolas Geoffray39468442014-09-02 15:17:15 +01001651 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001652 codegen_->AddSlowPath(slow_path);
1653
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001654 CpuRegister index = locations->InAt(0).As<CpuRegister>();
1655 CpuRegister length = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001656
1657 __ cmpl(index, length);
1658 __ j(kAboveEqual, slow_path->GetEntryLabel());
1659}
1660
1661void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
1662 CpuRegister card,
1663 CpuRegister object,
1664 CpuRegister value) {
1665 Label is_null;
1666 __ testl(value, value);
1667 __ j(kEqual, &is_null);
1668 __ gs()->movq(card, Address::Absolute(
1669 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
1670 __ movq(temp, object);
1671 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
1672 __ movb(Address(temp, card, TIMES_1, 0), card);
1673 __ Bind(&is_null);
1674}
1675
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001676void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
1677 temp->SetLocations(nullptr);
1678}
1679
1680void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
1681 // Nothing to do, this is driven by the code generator.
1682}
1683
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001684void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
1685 LOG(FATAL) << "Unimplemented";
1686}
1687
1688void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001689 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
1690}
1691
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001692void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
1693 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
1694}
1695
1696void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001697 HBasicBlock* block = instruction->GetBlock();
1698 if (block->GetLoopInformation() != nullptr) {
1699 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
1700 // The back edge will generate the suspend check.
1701 return;
1702 }
1703 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
1704 // The goto will generate the suspend check.
1705 return;
1706 }
1707 GenerateSuspendCheck(instruction, nullptr);
1708}
1709
1710void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
1711 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001712 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001713 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001714 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001715 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001716 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001717 if (successor == nullptr) {
1718 __ j(kNotEqual, slow_path->GetEntryLabel());
1719 __ Bind(slow_path->GetReturnLabel());
1720 } else {
1721 __ j(kEqual, codegen_->GetLabelOf(successor));
1722 __ jmp(slow_path->GetEntryLabel());
1723 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001724}
1725
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001726X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
1727 return codegen_->GetAssembler();
1728}
1729
1730void ParallelMoveResolverX86_64::EmitMove(size_t index) {
1731 MoveOperands* move = moves_.Get(index);
1732 Location source = move->GetSource();
1733 Location destination = move->GetDestination();
1734
1735 if (source.IsRegister()) {
1736 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001737 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001738 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001739 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001740 source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001741 } else {
1742 DCHECK(destination.IsDoubleStackSlot());
1743 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001744 source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001745 }
1746 } else if (source.IsStackSlot()) {
1747 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001748 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001749 Address(CpuRegister(RSP), source.GetStackIndex()));
1750 } else {
1751 DCHECK(destination.IsStackSlot());
1752 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1753 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1754 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001755 } else if (source.IsDoubleStackSlot()) {
1756 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001757 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001758 Address(CpuRegister(RSP), source.GetStackIndex()));
1759 } else {
1760 DCHECK(destination.IsDoubleStackSlot());
1761 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1762 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1763 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001764 } else if (source.IsConstant()) {
1765 HConstant* constant = source.GetConstant();
1766 if (constant->IsIntConstant()) {
1767 Immediate imm(constant->AsIntConstant()->GetValue());
1768 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001769 __ movl(destination.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001770 } else {
1771 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1772 }
1773 } else if (constant->IsLongConstant()) {
1774 int64_t value = constant->AsLongConstant()->GetValue();
1775 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001776 __ movq(destination.As<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001777 } else {
1778 __ movq(CpuRegister(TMP), Immediate(value));
1779 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1780 }
1781 } else {
1782 LOG(FATAL) << "Unimplemented constant type";
1783 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001784 } else {
1785 LOG(FATAL) << "Unimplemented";
1786 }
1787}
1788
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001789void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001790 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001791 __ movl(Address(CpuRegister(RSP), mem), reg);
1792 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001793}
1794
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001795void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001796 ScratchRegisterScope ensure_scratch(
1797 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1798
1799 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1800 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1801 __ movl(CpuRegister(ensure_scratch.GetRegister()),
1802 Address(CpuRegister(RSP), mem2 + stack_offset));
1803 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1804 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
1805 CpuRegister(ensure_scratch.GetRegister()));
1806}
1807
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001808void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
1809 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1810 __ movq(Address(CpuRegister(RSP), mem), reg);
1811 __ movq(reg, CpuRegister(TMP));
1812}
1813
1814void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
1815 ScratchRegisterScope ensure_scratch(
1816 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1817
1818 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1819 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1820 __ movq(CpuRegister(ensure_scratch.GetRegister()),
1821 Address(CpuRegister(RSP), mem2 + stack_offset));
1822 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1823 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
1824 CpuRegister(ensure_scratch.GetRegister()));
1825}
1826
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001827void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
1828 MoveOperands* move = moves_.Get(index);
1829 Location source = move->GetSource();
1830 Location destination = move->GetDestination();
1831
1832 if (source.IsRegister() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001833 __ xchgq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001834 } else if (source.IsRegister() && destination.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001835 Exchange32(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001836 } else if (source.IsStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001837 Exchange32(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001838 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001839 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
1840 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001841 Exchange64(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001842 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001843 Exchange64(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001844 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
1845 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001846 } else {
1847 LOG(FATAL) << "Unimplemented";
1848 }
1849}
1850
1851
1852void ParallelMoveResolverX86_64::SpillScratch(int reg) {
1853 __ pushq(CpuRegister(reg));
1854}
1855
1856
1857void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
1858 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001859}
1860
1861} // namespace x86_64
1862} // namespace art