blob: 58dda16d2d69264d51764b532807007b31c718aa [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 Geoffray102cbed2014-10-15 18:31:05 +0100194size_t CodeGeneratorX86_64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
195 __ movq(Address(CpuRegister(RSP), stack_index), CpuRegister(reg_id));
196 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100197}
198
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100199size_t CodeGeneratorX86_64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
200 __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_index));
201 return kX86_64WordSize;
202}
203
204size_t CodeGeneratorX86_64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
205 __ movsd(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id));
206 return kX86_64WordSize;
207}
208
209size_t CodeGeneratorX86_64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
210 __ movsd(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index));
211 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100212}
213
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100214CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph)
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100215 : CodeGenerator(graph, kNumberOfCpuRegisters, kNumberOfFloatRegisters, 0),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100216 block_labels_(graph->GetArena(), 0),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100217 location_builder_(graph, this),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000218 instruction_visitor_(graph, this),
219 move_resolver_(graph->GetArena(), this) {}
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100220
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100221size_t CodeGeneratorX86_64::FrameEntrySpillSize() const {
222 return kNumberOfPushedRegistersAtEntry * kX86_64WordSize;
223}
224
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100225InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph,
226 CodeGeneratorX86_64* codegen)
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100227 : HGraphVisitor(graph),
228 assembler_(codegen->GetAssembler()),
229 codegen_(codegen) {}
230
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100231Location CodeGeneratorX86_64::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100232 switch (type) {
233 case Primitive::kPrimLong:
234 case Primitive::kPrimByte:
235 case Primitive::kPrimBoolean:
236 case Primitive::kPrimChar:
237 case Primitive::kPrimShort:
238 case Primitive::kPrimInt:
239 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100240 size_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100241 return Location::RegisterLocation(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100242 }
243
244 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100245 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100246 size_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfFloatRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100247 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100248 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100249
250 case Primitive::kPrimVoid:
251 LOG(FATAL) << "Unreachable type " << type;
252 }
253
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100254 return Location();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100255}
256
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100257void CodeGeneratorX86_64::SetupBlockedRegisters() const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100258 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100259 blocked_core_registers_[RSP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100260
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000261 // Block the register used as TMP.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100262 blocked_core_registers_[TMP] = true;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000263
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100264 // TODO: We currently don't use Quick's callee saved registers.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100265 blocked_core_registers_[RBX] = true;
266 blocked_core_registers_[RBP] = true;
267 blocked_core_registers_[R12] = true;
268 blocked_core_registers_[R13] = true;
269 blocked_core_registers_[R14] = true;
270 blocked_core_registers_[R15] = true;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100271
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100272 blocked_fpu_registers_[XMM12] = true;
273 blocked_fpu_registers_[XMM13] = true;
274 blocked_fpu_registers_[XMM14] = true;
275 blocked_fpu_registers_[XMM15] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100276}
277
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100278void CodeGeneratorX86_64::GenerateFrameEntry() {
279 // Create a fake register to mimic Quick.
280 static const int kFakeReturnRegister = 16;
281 core_spill_mask_ |= (1 << kFakeReturnRegister);
282
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100283 bool skip_overflow_check = IsLeafMethod()
Dave Allison648d7112014-07-25 16:15:27 -0700284 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100285
286 if (!skip_overflow_check && !kExplicitStackOverflowCheck) {
287 __ testq(CpuRegister(RAX), Address(
288 CpuRegister(RSP), -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86_64))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100289 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100290 }
291
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100292 // The return PC has already been pushed on the stack.
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100293 __ subq(CpuRegister(RSP),
294 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
295
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100296 if (!skip_overflow_check && kExplicitStackOverflowCheck) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100297 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86_64();
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100298 AddSlowPath(slow_path);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100299
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100300 __ gs()->cmpq(CpuRegister(RSP),
301 Address::Absolute(Thread::StackEndOffset<kX86_64WordSize>(), true));
302 __ j(kLess, slow_path->GetEntryLabel());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100303 }
304
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100305 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI));
306}
307
308void CodeGeneratorX86_64::GenerateFrameExit() {
309 __ addq(CpuRegister(RSP),
310 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
311}
312
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100313void CodeGeneratorX86_64::Bind(HBasicBlock* block) {
314 __ Bind(GetLabelOf(block));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100315}
316
317void InstructionCodeGeneratorX86_64::LoadCurrentMethod(CpuRegister reg) {
318 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
319}
320
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100321Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
322 switch (load->GetType()) {
323 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100324 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100325 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
326 break;
327
328 case Primitive::kPrimInt:
329 case Primitive::kPrimNot:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100330 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100331 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100332
333 case Primitive::kPrimBoolean:
334 case Primitive::kPrimByte:
335 case Primitive::kPrimChar:
336 case Primitive::kPrimShort:
337 case Primitive::kPrimVoid:
338 LOG(FATAL) << "Unexpected type " << load->GetType();
339 }
340
341 LOG(FATAL) << "Unreachable";
342 return Location();
343}
344
345void CodeGeneratorX86_64::Move(Location destination, Location source) {
346 if (source.Equals(destination)) {
347 return;
348 }
349 if (destination.IsRegister()) {
350 if (source.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100351 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100352 } else if (source.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100353 __ movd(destination.As<CpuRegister>(), source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100354 } else if (source.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100355 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100356 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100357 } else {
358 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100359 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100360 Address(CpuRegister(RSP), source.GetStackIndex()));
361 }
362 } else if (destination.IsFpuRegister()) {
363 if (source.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100364 __ movd(destination.As<XmmRegister>(), source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100365 } else if (source.IsFpuRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100366 __ movaps(destination.As<XmmRegister>(), source.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100367 } else if (source.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100368 __ movss(destination.As<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100369 Address(CpuRegister(RSP), source.GetStackIndex()));
370 } else {
371 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100372 __ movsd(destination.As<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100373 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100374 }
375 } else if (destination.IsStackSlot()) {
376 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100377 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100378 source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100379 } else if (source.IsFpuRegister()) {
380 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100381 source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100382 } else {
383 DCHECK(source.IsStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000384 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
385 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100386 }
387 } else {
388 DCHECK(destination.IsDoubleStackSlot());
389 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100390 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100391 source.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100392 } else if (source.IsFpuRegister()) {
393 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100394 source.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100395 } else {
396 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000397 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
398 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100399 }
400 }
401}
402
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100403void CodeGeneratorX86_64::Move(HInstruction* instruction,
404 Location location,
405 HInstruction* move_for) {
Roland Levillain476df552014-10-09 17:51:36 +0100406 if (instruction->IsIntConstant()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100407 Immediate imm(instruction->AsIntConstant()->GetValue());
408 if (location.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100409 __ movl(location.As<CpuRegister>(), imm);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +0100410 } else if (location.IsStackSlot()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100411 __ movl(Address(CpuRegister(RSP), location.GetStackIndex()), imm);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +0100412 } else {
413 DCHECK(location.IsConstant());
414 DCHECK_EQ(location.GetConstant(), instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100415 }
Roland Levillain476df552014-10-09 17:51:36 +0100416 } else if (instruction->IsLongConstant()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100417 int64_t value = instruction->AsLongConstant()->GetValue();
418 if (location.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100419 __ movq(location.As<CpuRegister>(), Immediate(value));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +0100420 } else if (location.IsDoubleStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000421 __ movq(CpuRegister(TMP), Immediate(value));
422 __ movq(Address(CpuRegister(RSP), location.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +0100423 } else {
424 DCHECK(location.IsConstant());
425 DCHECK_EQ(location.GetConstant(), instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100426 }
Roland Levillain476df552014-10-09 17:51:36 +0100427 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100428 switch (instruction->GetType()) {
429 case Primitive::kPrimBoolean:
430 case Primitive::kPrimByte:
431 case Primitive::kPrimChar:
432 case Primitive::kPrimShort:
433 case Primitive::kPrimInt:
434 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100435 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100436 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
437 break;
438
439 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100440 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100441 Move(location, Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
442 break;
443
444 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100445 LOG(FATAL) << "Unexpected local type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100446 }
447 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100448 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100449 switch (instruction->GetType()) {
450 case Primitive::kPrimBoolean:
451 case Primitive::kPrimByte:
452 case Primitive::kPrimChar:
453 case Primitive::kPrimShort:
454 case Primitive::kPrimInt:
455 case Primitive::kPrimNot:
456 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100457 case Primitive::kPrimFloat:
458 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100459 Move(location, instruction->GetLocations()->Out());
460 break;
461
462 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100463 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100464 }
465 }
466}
467
468void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
469 got->SetLocations(nullptr);
470}
471
472void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
473 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100474 DCHECK(!successor->IsExitBlock());
475
476 HBasicBlock* block = got->GetBlock();
477 HInstruction* previous = got->GetPrevious();
478
479 HLoopInformation* info = block->GetLoopInformation();
480 if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) {
481 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
482 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
483 return;
484 }
485
486 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
487 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
488 }
489 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100490 __ jmp(codegen_->GetLabelOf(successor));
491 }
492}
493
494void LocationsBuilderX86_64::VisitExit(HExit* exit) {
495 exit->SetLocations(nullptr);
496}
497
498void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit) {
499 if (kIsDebugBuild) {
500 __ Comment("Unreachable");
501 __ int3();
502 }
503}
504
505void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100506 LocationSummary* locations =
507 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100508 HInstruction* cond = if_instr->InputAt(0);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100509 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100510 locations->SetInAt(0, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100511 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100512}
513
514void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
Dave Allison20dfc792014-06-16 20:44:29 -0700515 HInstruction* cond = if_instr->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100516 if (cond->IsIntConstant()) {
517 // Constant condition, statically compared against 1.
518 int32_t cond_value = cond->AsIntConstant()->GetValue();
519 if (cond_value == 1) {
520 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
521 if_instr->IfTrueSuccessor())) {
522 __ jmp(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100523 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100524 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100525 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100526 DCHECK_EQ(cond_value, 0);
527 }
528 } else {
529 bool materialized =
530 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
531 // Moves do not affect the eflags register, so if the condition is
532 // evaluated just before the if, we don't need to evaluate it
533 // again.
534 bool eflags_set = cond->IsCondition()
535 && cond->AsCondition()->IsBeforeWhenDisregardMoves(if_instr);
536 if (materialized) {
537 if (!eflags_set) {
538 // Materialized condition, compare against 0.
539 Location lhs = if_instr->GetLocations()->InAt(0);
540 if (lhs.IsRegister()) {
541 __ cmpl(lhs.As<CpuRegister>(), Immediate(0));
542 } else {
543 __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()),
544 Immediate(0));
545 }
546 __ j(kNotEqual, codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
547 } else {
548 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
549 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
550 }
551 } else {
552 Location lhs = cond->GetLocations()->InAt(0);
553 Location rhs = cond->GetLocations()->InAt(1);
554 if (rhs.IsRegister()) {
555 __ cmpl(lhs.As<CpuRegister>(), rhs.As<CpuRegister>());
556 } else if (rhs.IsConstant()) {
557 __ cmpl(lhs.As<CpuRegister>(),
558 Immediate(rhs.GetConstant()->AsIntConstant()->GetValue()));
559 } else {
560 __ cmpl(lhs.As<CpuRegister>(),
561 Address(CpuRegister(RSP), rhs.GetStackIndex()));
562 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100563 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
564 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Dave Allison20dfc792014-06-16 20:44:29 -0700565 }
Dave Allison20dfc792014-06-16 20:44:29 -0700566 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100567 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
568 if_instr->IfFalseSuccessor())) {
Dave Allison20dfc792014-06-16 20:44:29 -0700569 __ jmp(codegen_->GetLabelOf(if_instr->IfFalseSuccessor()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100570 }
571}
572
573void LocationsBuilderX86_64::VisitLocal(HLocal* local) {
574 local->SetLocations(nullptr);
575}
576
577void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) {
578 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
579}
580
581void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
582 local->SetLocations(nullptr);
583}
584
585void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load) {
586 // Nothing to do, this is driven by the code generator.
587}
588
589void LocationsBuilderX86_64::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100590 LocationSummary* locations =
591 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100592 switch (store->InputAt(1)->GetType()) {
593 case Primitive::kPrimBoolean:
594 case Primitive::kPrimByte:
595 case Primitive::kPrimChar:
596 case Primitive::kPrimShort:
597 case Primitive::kPrimInt:
598 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100599 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100600 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
601 break;
602
603 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100604 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100605 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
606 break;
607
608 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100609 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100610 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100611}
612
613void InstructionCodeGeneratorX86_64::VisitStoreLocal(HStoreLocal* store) {
614}
615
Dave Allison20dfc792014-06-16 20:44:29 -0700616void LocationsBuilderX86_64::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100617 LocationSummary* locations =
618 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100619 locations->SetInAt(0, Location::RequiresRegister());
620 locations->SetInAt(1, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100621 if (comp->NeedsMaterialization()) {
622 locations->SetOut(Location::RequiresRegister());
623 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100624}
625
Dave Allison20dfc792014-06-16 20:44:29 -0700626void InstructionCodeGeneratorX86_64::VisitCondition(HCondition* comp) {
627 if (comp->NeedsMaterialization()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100628 LocationSummary* locations = comp->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100629 CpuRegister reg = locations->Out().As<CpuRegister>();
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100630 // Clear register: setcc only sets the low byte.
631 __ xorq(reg, reg);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100632 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100633 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100634 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100635 } else if (locations->InAt(1).IsConstant()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100636 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100637 Immediate(locations->InAt(1).GetConstant()->AsIntConstant()->GetValue()));
638 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100639 __ cmpl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100640 Address(CpuRegister(RSP), locations->InAt(1).GetStackIndex()));
641 }
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100642 __ setcc(X86_64Condition(comp->GetCondition()), reg);
Dave Allison20dfc792014-06-16 20:44:29 -0700643 }
644}
645
646void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
647 VisitCondition(comp);
648}
649
650void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) {
651 VisitCondition(comp);
652}
653
654void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) {
655 VisitCondition(comp);
656}
657
658void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) {
659 VisitCondition(comp);
660}
661
662void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) {
663 VisitCondition(comp);
664}
665
666void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) {
667 VisitCondition(comp);
668}
669
670void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
671 VisitCondition(comp);
672}
673
674void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
675 VisitCondition(comp);
676}
677
678void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) {
679 VisitCondition(comp);
680}
681
682void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) {
683 VisitCondition(comp);
684}
685
686void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
687 VisitCondition(comp);
688}
689
690void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
691 VisitCondition(comp);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100692}
693
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100694void LocationsBuilderX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100695 LocationSummary* locations =
696 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100697 locations->SetInAt(0, Location::RequiresRegister());
698 locations->SetInAt(1, Location::RequiresRegister());
699 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100700}
701
702void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) {
703 Label greater, done;
704 LocationSummary* locations = compare->GetLocations();
705 switch (compare->InputAt(0)->GetType()) {
706 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100707 __ cmpq(locations->InAt(0).As<CpuRegister>(),
708 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100709 break;
710 default:
711 LOG(FATAL) << "Unimplemented compare type " << compare->InputAt(0)->GetType();
712 }
713
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100714 CpuRegister output = locations->Out().As<CpuRegister>();
715 __ movl(output, Immediate(0));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100716 __ j(kEqual, &done);
717 __ j(kGreater, &greater);
718
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100719 __ movl(output, Immediate(-1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100720 __ jmp(&done);
721
722 __ Bind(&greater);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100723 __ movl(output, Immediate(1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100724
725 __ Bind(&done);
726}
727
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100728void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100729 LocationSummary* locations =
730 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100731 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100732}
733
734void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100735 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100736}
737
738void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100739 LocationSummary* locations =
740 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100741 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100742}
743
744void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100745 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100746}
747
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100748void LocationsBuilderX86_64::VisitFloatConstant(HFloatConstant* constant) {
749 LocationSummary* locations =
750 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
751 locations->SetOut(Location::ConstantLocation(constant));
752}
753
754void InstructionCodeGeneratorX86_64::VisitFloatConstant(HFloatConstant* constant) {
755 // Will be generated at use site.
756}
757
758void LocationsBuilderX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
759 LocationSummary* locations =
760 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
761 locations->SetOut(Location::ConstantLocation(constant));
762}
763
764void InstructionCodeGeneratorX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
765 // Will be generated at use site.
766}
767
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100768void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) {
769 ret->SetLocations(nullptr);
770}
771
772void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret) {
773 codegen_->GenerateFrameExit();
774 __ ret();
775}
776
777void LocationsBuilderX86_64::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100778 LocationSummary* locations =
779 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100780 switch (ret->InputAt(0)->GetType()) {
781 case Primitive::kPrimBoolean:
782 case Primitive::kPrimByte:
783 case Primitive::kPrimChar:
784 case Primitive::kPrimShort:
785 case Primitive::kPrimInt:
786 case Primitive::kPrimNot:
787 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100788 locations->SetInAt(0, Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100789 break;
790
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100791 case Primitive::kPrimFloat:
792 case Primitive::kPrimDouble:
793 locations->SetInAt(0,
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100794 Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100795 break;
796
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100797 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100798 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100799 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100800}
801
802void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) {
803 if (kIsDebugBuild) {
804 switch (ret->InputAt(0)->GetType()) {
805 case Primitive::kPrimBoolean:
806 case Primitive::kPrimByte:
807 case Primitive::kPrimChar:
808 case Primitive::kPrimShort:
809 case Primitive::kPrimInt:
810 case Primitive::kPrimNot:
811 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100812 DCHECK_EQ(ret->GetLocations()->InAt(0).As<CpuRegister>().AsRegister(), RAX);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100813 break;
814
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100815 case Primitive::kPrimFloat:
816 case Primitive::kPrimDouble:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100817 DCHECK_EQ(ret->GetLocations()->InAt(0).As<XmmRegister>().AsFloatRegister(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100818 XMM0);
819 break;
820
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100821 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100822 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100823 }
824 }
825 codegen_->GenerateFrameExit();
826 __ ret();
827}
828
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100829Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
830 switch (type) {
831 case Primitive::kPrimBoolean:
832 case Primitive::kPrimByte:
833 case Primitive::kPrimChar:
834 case Primitive::kPrimShort:
835 case Primitive::kPrimInt:
836 case Primitive::kPrimNot: {
837 uint32_t index = gp_index_++;
838 stack_index_++;
839 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100840 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100841 } else {
842 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
843 }
844 }
845
846 case Primitive::kPrimLong: {
847 uint32_t index = gp_index_;
848 stack_index_ += 2;
849 if (index < calling_convention.GetNumberOfRegisters()) {
850 gp_index_ += 1;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100851 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100852 } else {
853 gp_index_ += 2;
854 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
855 }
856 }
857
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100858 case Primitive::kPrimFloat: {
859 uint32_t index = fp_index_++;
860 stack_index_++;
861 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100862 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100863 } else {
864 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
865 }
866 }
867
868 case Primitive::kPrimDouble: {
869 uint32_t index = fp_index_++;
870 stack_index_ += 2;
871 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100872 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100873 } else {
874 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
875 }
876 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100877
878 case Primitive::kPrimVoid:
879 LOG(FATAL) << "Unexpected parameter type " << type;
880 break;
881 }
882 return Location();
883}
884
885void LocationsBuilderX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100886 HandleInvoke(invoke);
887}
888
889void InstructionCodeGeneratorX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100890 CpuRegister temp = invoke->GetLocations()->GetTemp(0).As<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100891 uint32_t heap_reference_size = sizeof(mirror::HeapReference<mirror::Object>);
892 size_t index_in_cache = mirror::Array::DataOffset(heap_reference_size).SizeValue() +
893 invoke->GetIndexInDexCache() * heap_reference_size;
894
895 // TODO: Implement all kinds of calls:
896 // 1) boot -> boot
897 // 2) app -> boot
898 // 3) app -> app
899 //
900 // Currently we implement the app -> app logic, which looks up in the resolve cache.
901
902 // temp = method;
903 LoadCurrentMethod(temp);
904 // temp = temp->dex_cache_resolved_methods_;
905 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().SizeValue()));
906 // temp = temp[index_in_cache]
907 __ movl(temp, Address(temp, index_in_cache));
908 // (temp + offset_of_quick_compiled_code)()
909 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().SizeValue()));
910
911 DCHECK(!codegen_->IsLeafMethod());
912 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
913}
914
915void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
916 HandleInvoke(invoke);
917}
918
919void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100920 LocationSummary* locations =
921 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100922 locations->AddTemp(Location::RegisterLocation(RDI));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100923
924 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100925 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100926 HInstruction* input = invoke->InputAt(i);
927 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
928 }
929
930 switch (invoke->GetType()) {
931 case Primitive::kPrimBoolean:
932 case Primitive::kPrimByte:
933 case Primitive::kPrimChar:
934 case Primitive::kPrimShort:
935 case Primitive::kPrimInt:
936 case Primitive::kPrimNot:
937 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100938 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100939 break;
940
941 case Primitive::kPrimVoid:
942 break;
943
944 case Primitive::kPrimDouble:
945 case Primitive::kPrimFloat:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100946 locations->SetOut(Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100947 break;
948 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100949}
950
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100951void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100952 CpuRegister temp = invoke->GetLocations()->GetTemp(0).As<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100953 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
954 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
955 LocationSummary* locations = invoke->GetLocations();
956 Location receiver = locations->InAt(0);
957 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
958 // temp = object->GetClass();
959 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100960 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
961 __ movl(temp, Address(temp, class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100962 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100963 __ movl(temp, Address(receiver.As<CpuRegister>(), class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100964 }
965 // temp = temp->GetMethodAt(method_offset);
966 __ movl(temp, Address(temp, method_offset));
967 // call temp->GetEntryPoint();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100968 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().SizeValue()));
969
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100970 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +0100971 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100972}
973
Roland Levillain88cb1752014-10-20 16:36:47 +0100974void LocationsBuilderX86_64::VisitNeg(HNeg* neg) {
975 LocationSummary* locations =
976 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
977 switch (neg->GetResultType()) {
978 case Primitive::kPrimInt:
979 locations->SetInAt(0, Location::RequiresRegister());
980 locations->SetOut(Location::SameAsFirstInput());
981 break;
982
983 case Primitive::kPrimLong:
984 case Primitive::kPrimFloat:
985 case Primitive::kPrimDouble:
986 LOG(FATAL) << "Not yet implemented neg type " << neg->GetResultType();
987 break;
988
989 default:
990 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
991 }
992}
993
994void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) {
995 LocationSummary* locations = neg->GetLocations();
996 Location out = locations->Out();
997 Location in = locations->InAt(0);
998 switch (neg->GetResultType()) {
999 case Primitive::kPrimInt:
1000 DCHECK(in.IsRegister());
1001 __ negl(out.As<CpuRegister>());
1002 break;
1003
1004 case Primitive::kPrimLong:
1005 case Primitive::kPrimFloat:
1006 case Primitive::kPrimDouble:
1007 LOG(FATAL) << "Not yet implemented neg type " << neg->GetResultType();
1008 break;
1009
1010 default:
1011 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1012 }
1013}
1014
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001015void LocationsBuilderX86_64::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001016 LocationSummary* locations =
1017 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001018 switch (add->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001019 case Primitive::kPrimInt: {
1020 locations->SetInAt(0, Location::RequiresRegister());
1021 locations->SetInAt(1, Location::Any());
1022 locations->SetOut(Location::SameAsFirstInput());
1023 break;
1024 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001025
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001026 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001027 locations->SetInAt(0, Location::RequiresRegister());
1028 locations->SetInAt(1, Location::RequiresRegister());
1029 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001030 break;
1031 }
1032
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001033 case Primitive::kPrimDouble:
1034 case Primitive::kPrimFloat: {
1035 locations->SetInAt(0, Location::RequiresFpuRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001036 locations->SetInAt(1, Location::RequiresFpuRegister());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001037 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001038 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001039 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001040
1041 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001042 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001043 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001044}
1045
1046void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) {
1047 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001048 Location first = locations->InAt(0);
1049 Location second = locations->InAt(1);
1050
1051 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001052 switch (add->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001053 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001054 if (second.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001055 __ addl(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001056 } else if (second.IsConstant()) {
1057 HConstant* instruction = second.GetConstant();
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001058 Immediate imm(instruction->AsIntConstant()->GetValue());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001059 __ addl(first.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001060 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001061 __ addl(first.As<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001062 Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001063 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001064 break;
1065 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001066
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001067 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001068 __ addq(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001069 break;
1070 }
1071
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001072 case Primitive::kPrimFloat: {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001073 __ addss(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001074 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001075 }
1076
1077 case Primitive::kPrimDouble: {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001078 __ addsd(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001079 break;
1080 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001081
1082 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001083 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001084 }
1085}
1086
1087void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001088 LocationSummary* locations =
1089 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001090 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001091 case Primitive::kPrimInt: {
1092 locations->SetInAt(0, Location::RequiresRegister());
1093 locations->SetInAt(1, Location::Any());
1094 locations->SetOut(Location::SameAsFirstInput());
1095 break;
1096 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001097 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001098 locations->SetInAt(0, Location::RequiresRegister());
1099 locations->SetInAt(1, Location::RequiresRegister());
1100 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001101 break;
1102 }
1103
1104 case Primitive::kPrimBoolean:
1105 case Primitive::kPrimByte:
1106 case Primitive::kPrimChar:
1107 case Primitive::kPrimShort:
1108 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
1109 break;
1110
1111 default:
1112 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
1113 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001114}
1115
1116void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
1117 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001118 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1119 locations->Out().As<CpuRegister>().AsRegister());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001120 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001121 case Primitive::kPrimInt: {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001122 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001123 __ subl(locations->InAt(0).As<CpuRegister>(),
1124 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001125 } else if (locations->InAt(1).IsConstant()) {
1126 HConstant* instruction = locations->InAt(1).GetConstant();
1127 Immediate imm(instruction->AsIntConstant()->GetValue());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001128 __ subl(locations->InAt(0).As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001129 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001130 __ subl(locations->InAt(0).As<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001131 Address(CpuRegister(RSP), locations->InAt(1).GetStackIndex()));
1132 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001133 break;
1134 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001135 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001136 __ subq(locations->InAt(0).As<CpuRegister>(),
1137 locations->InAt(1).As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001138 break;
1139 }
1140
1141 case Primitive::kPrimBoolean:
1142 case Primitive::kPrimByte:
1143 case Primitive::kPrimChar:
1144 case Primitive::kPrimShort:
1145 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
1146 break;
1147
1148 default:
1149 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
1150 }
1151}
1152
Calin Juravle34bacdf2014-10-07 20:23:36 +01001153void LocationsBuilderX86_64::VisitMul(HMul* mul) {
1154 LocationSummary* locations =
1155 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
1156 switch (mul->GetResultType()) {
1157 case Primitive::kPrimInt: {
1158 locations->SetInAt(0, Location::RequiresRegister());
1159 locations->SetInAt(1, Location::Any());
1160 locations->SetOut(Location::SameAsFirstInput());
1161 break;
1162 }
1163 case Primitive::kPrimLong: {
1164 locations->SetInAt(0, Location::RequiresRegister());
1165 locations->SetInAt(1, Location::RequiresRegister());
1166 locations->SetOut(Location::SameAsFirstInput());
1167 break;
1168 }
1169
1170 case Primitive::kPrimBoolean:
1171 case Primitive::kPrimByte:
1172 case Primitive::kPrimChar:
1173 case Primitive::kPrimShort:
1174 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
1175 break;
1176
1177 default:
1178 LOG(FATAL) << "Unimplemented mul type " << mul->GetResultType();
1179 }
1180}
1181
1182void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
1183 LocationSummary* locations = mul->GetLocations();
1184 Location first = locations->InAt(0);
1185 Location second = locations->InAt(1);
1186 DCHECK(first.Equals(locations->Out()));
1187 switch (mul->GetResultType()) {
1188 case Primitive::kPrimInt: {
1189 if (second.IsRegister()) {
1190 __ imull(first.As<CpuRegister>(), second.As<CpuRegister>());
1191 } else if (second.IsConstant()) {
1192 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
1193 __ imull(first.As<CpuRegister>(), imm);
1194 } else {
1195 DCHECK(second.IsStackSlot());
1196 __ imull(first.As<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
1197 }
1198 break;
1199 }
1200 case Primitive::kPrimLong: {
1201 __ imulq(first.As<CpuRegister>(), second.As<CpuRegister>());
1202 break;
1203 }
1204
1205 case Primitive::kPrimBoolean:
1206 case Primitive::kPrimByte:
1207 case Primitive::kPrimChar:
1208 case Primitive::kPrimShort:
1209 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
1210 break;
1211
1212 default:
1213 LOG(FATAL) << "Unimplemented mul type " << mul->GetResultType();
1214 }
1215}
1216
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001217void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001218 LocationSummary* locations =
1219 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001220 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001221 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1222 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1223 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001224}
1225
1226void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
1227 InvokeRuntimeCallingConvention calling_convention;
1228 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1229 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1230
1231 __ gs()->call(Address::Absolute(
1232 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocObjectWithAccessCheck), true));
1233
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001234 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001235 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001236}
1237
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01001238void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
1239 LocationSummary* locations =
1240 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
1241 InvokeRuntimeCallingConvention calling_convention;
1242 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1243 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1244 locations->SetOut(Location::RegisterLocation(RAX));
1245 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
1246}
1247
1248void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
1249 InvokeRuntimeCallingConvention calling_convention;
1250 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1251 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1252
1253 __ gs()->call(Address::Absolute(
1254 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocArrayWithAccessCheck), true));
1255
1256 DCHECK(!codegen_->IsLeafMethod());
1257 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
1258}
1259
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001260void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001261 LocationSummary* locations =
1262 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001263 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
1264 if (location.IsStackSlot()) {
1265 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1266 } else if (location.IsDoubleStackSlot()) {
1267 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1268 }
1269 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001270}
1271
1272void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
1273 // Nothing to do, the parameter is already at its location.
1274}
1275
1276void LocationsBuilderX86_64::VisitNot(HNot* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001277 LocationSummary* locations =
1278 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001279 locations->SetInAt(0, Location::RequiresRegister());
1280 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001281}
1282
1283void InstructionCodeGeneratorX86_64::VisitNot(HNot* instruction) {
1284 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001285 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1286 locations->Out().As<CpuRegister>().AsRegister());
1287 __ xorq(locations->Out().As<CpuRegister>(), Immediate(1));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001288}
1289
1290void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001291 LocationSummary* locations =
1292 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001293 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
1294 locations->SetInAt(i, Location::Any());
1295 }
1296 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001297}
1298
1299void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
1300 LOG(FATAL) << "Unimplemented";
1301}
1302
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001303void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001304 LocationSummary* locations =
1305 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001306 Primitive::Type field_type = instruction->GetFieldType();
1307 bool is_object_type = field_type == Primitive::kPrimNot;
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001308 locations->SetInAt(0, Location::RequiresRegister());
1309 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001310 if (is_object_type) {
1311 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01001312 locations->AddTemp(Location::RequiresRegister());
1313 locations->AddTemp(Location::RequiresRegister());
1314 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001315}
1316
1317void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
1318 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001319 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1320 CpuRegister value = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001321 size_t offset = instruction->GetFieldOffset().SizeValue();
Nicolas Geoffray39468442014-09-02 15:17:15 +01001322 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001323
1324 switch (field_type) {
1325 case Primitive::kPrimBoolean:
1326 case Primitive::kPrimByte: {
1327 __ movb(Address(obj, offset), value);
1328 break;
1329 }
1330
1331 case Primitive::kPrimShort:
1332 case Primitive::kPrimChar: {
1333 __ movw(Address(obj, offset), value);
1334 break;
1335 }
1336
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001337 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001338 case Primitive::kPrimNot: {
1339 __ movl(Address(obj, offset), value);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001340 if (field_type == Primitive::kPrimNot) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001341 CpuRegister temp = locations->GetTemp(0).As<CpuRegister>();
1342 CpuRegister card = locations->GetTemp(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001343 codegen_->MarkGCCard(temp, card, obj, value);
1344 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001345 break;
1346 }
1347
1348 case Primitive::kPrimLong: {
1349 __ movq(Address(obj, offset), value);
1350 break;
1351 }
1352
1353 case Primitive::kPrimFloat:
1354 case Primitive::kPrimDouble:
1355 LOG(FATAL) << "Unimplemented register type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001356 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001357 case Primitive::kPrimVoid:
1358 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001359 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001360 }
1361}
1362
1363void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001364 LocationSummary* locations =
1365 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001366 locations->SetInAt(0, Location::RequiresRegister());
1367 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001368}
1369
1370void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
1371 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001372 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1373 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001374 size_t offset = instruction->GetFieldOffset().SizeValue();
1375
1376 switch (instruction->GetType()) {
1377 case Primitive::kPrimBoolean: {
1378 __ movzxb(out, Address(obj, offset));
1379 break;
1380 }
1381
1382 case Primitive::kPrimByte: {
1383 __ movsxb(out, Address(obj, offset));
1384 break;
1385 }
1386
1387 case Primitive::kPrimShort: {
1388 __ movsxw(out, Address(obj, offset));
1389 break;
1390 }
1391
1392 case Primitive::kPrimChar: {
1393 __ movzxw(out, Address(obj, offset));
1394 break;
1395 }
1396
1397 case Primitive::kPrimInt:
1398 case Primitive::kPrimNot: {
1399 __ movl(out, Address(obj, offset));
1400 break;
1401 }
1402
1403 case Primitive::kPrimLong: {
1404 __ movq(out, Address(obj, offset));
1405 break;
1406 }
1407
1408 case Primitive::kPrimFloat:
1409 case Primitive::kPrimDouble:
1410 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001411 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001412 case Primitive::kPrimVoid:
1413 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001414 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001415 }
1416}
1417
1418void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001419 LocationSummary* locations =
1420 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001421 locations->SetInAt(0, Location::Any());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001422 if (instruction->HasUses()) {
1423 locations->SetOut(Location::SameAsFirstInput());
1424 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001425}
1426
1427void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001428 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001429 codegen_->AddSlowPath(slow_path);
1430
1431 LocationSummary* locations = instruction->GetLocations();
1432 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001433
1434 if (obj.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001435 __ cmpl(obj.As<CpuRegister>(), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001436 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001437 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001438 } else {
1439 DCHECK(obj.IsConstant()) << obj;
1440 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
1441 __ jmp(slow_path->GetEntryLabel());
1442 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001443 }
1444 __ j(kEqual, slow_path->GetEntryLabel());
1445}
1446
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001447void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001448 LocationSummary* locations =
1449 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001450 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001451 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001452 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1453 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001454}
1455
1456void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
1457 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001458 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001459 Location index = locations->InAt(1);
1460
1461 switch (instruction->GetType()) {
1462 case Primitive::kPrimBoolean: {
1463 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_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 __ movzxb(out, Address(obj,
1467 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1468 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001469 __ movzxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001470 }
1471 break;
1472 }
1473
1474 case Primitive::kPrimByte: {
1475 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_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 __ movsxb(out, Address(obj,
1479 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1480 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001481 __ movsxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001482 }
1483 break;
1484 }
1485
1486 case Primitive::kPrimShort: {
1487 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001488 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001489 if (index.IsConstant()) {
1490 __ movsxw(out, Address(obj,
1491 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1492 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001493 __ movsxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001494 }
1495 break;
1496 }
1497
1498 case Primitive::kPrimChar: {
1499 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001500 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001501 if (index.IsConstant()) {
1502 __ movzxw(out, Address(obj,
1503 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1504 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001505 __ movzxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001506 }
1507 break;
1508 }
1509
1510 case Primitive::kPrimInt:
1511 case Primitive::kPrimNot: {
1512 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
1513 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001514 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001515 if (index.IsConstant()) {
1516 __ movl(out, Address(obj,
1517 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1518 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001519 __ movl(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001520 }
1521 break;
1522 }
1523
1524 case Primitive::kPrimLong: {
1525 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001526 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001527 if (index.IsConstant()) {
1528 __ movq(out, Address(obj,
1529 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1530 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001531 __ movq(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001532 }
1533 break;
1534 }
1535
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001536 case Primitive::kPrimFloat: {
1537 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1538 XmmRegister out = locations->Out().As<XmmRegister>();
1539 if (index.IsConstant()) {
1540 __ movss(out, Address(obj,
1541 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1542 } else {
1543 __ movss(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
1544 }
1545 break;
1546 }
1547
1548 case Primitive::kPrimDouble: {
1549 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1550 XmmRegister out = locations->Out().As<XmmRegister>();
1551 if (index.IsConstant()) {
1552 __ movsd(out, Address(obj,
1553 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1554 } else {
1555 __ movsd(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
1556 }
1557 break;
1558 }
1559
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001560 case Primitive::kPrimVoid:
1561 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001562 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001563 }
1564}
1565
1566void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001567 Primitive::Type value_type = instruction->GetComponentType();
1568 bool is_object = value_type == Primitive::kPrimNot;
1569 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1570 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1571 if (is_object) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001572 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001573 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1574 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1575 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001576 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001577 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001578 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001579 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1580 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001581 if (value_type == Primitive::kPrimLong) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001582 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001583 } else if (value_type == Primitive::kPrimFloat || value_type == Primitive::kPrimDouble) {
1584 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001585 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001586 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001587 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001588 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001589}
1590
1591void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
1592 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001593 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001594 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001595 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01001596 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001597
1598 switch (value_type) {
1599 case Primitive::kPrimBoolean:
1600 case Primitive::kPrimByte: {
1601 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001602 if (index.IsConstant()) {
1603 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001604 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001605 __ movb(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001606 } else {
1607 __ movb(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1608 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001609 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001610 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001611 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
1612 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001613 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001614 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001615 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1616 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001617 }
1618 break;
1619 }
1620
1621 case Primitive::kPrimShort:
1622 case Primitive::kPrimChar: {
1623 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001624 if (index.IsConstant()) {
1625 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001626 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001627 __ movw(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001628 } else {
1629 __ movw(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1630 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001631 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001632 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001633 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
1634 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001635 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001636 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001637 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1638 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001639 }
1640 break;
1641 }
1642
1643 case Primitive::kPrimInt: {
1644 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001645 if (index.IsConstant()) {
1646 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001647 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001648 __ movl(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001649 } else {
1650 __ movl(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1651 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001652 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001653 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001654 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1655 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001656 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001657 DCHECK(value.IsConstant()) << value;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001658 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001659 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1660 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001661 }
1662 break;
1663 }
1664
1665 case Primitive::kPrimNot: {
1666 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject), true));
1667 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001668 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001669 break;
1670 }
1671
1672 case Primitive::kPrimLong: {
1673 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001674 if (index.IsConstant()) {
1675 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001676 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001677 __ movq(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001678 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001679 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001680 __ movq(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1681 value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001682 }
1683 break;
1684 }
1685
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001686 case Primitive::kPrimFloat: {
1687 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1688 if (index.IsConstant()) {
1689 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1690 DCHECK(value.IsFpuRegister());
1691 __ movss(Address(obj, offset), value.As<XmmRegister>());
1692 } else {
1693 DCHECK(value.IsFpuRegister());
1694 __ movss(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1695 value.As<XmmRegister>());
1696 }
1697 break;
1698 }
1699
1700 case Primitive::kPrimDouble: {
1701 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1702 if (index.IsConstant()) {
1703 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1704 DCHECK(value.IsFpuRegister());
1705 __ movsd(Address(obj, offset), value.As<XmmRegister>());
1706 } else {
1707 DCHECK(value.IsFpuRegister());
1708 __ movsd(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1709 value.As<XmmRegister>());
1710 }
1711 break;
1712 }
1713
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001714 case Primitive::kPrimVoid:
1715 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001716 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001717 }
1718}
1719
1720void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001721 LocationSummary* locations =
1722 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001723 locations->SetInAt(0, Location::RequiresRegister());
1724 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001725}
1726
1727void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
1728 LocationSummary* locations = instruction->GetLocations();
1729 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001730 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1731 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001732 __ movl(out, Address(obj, offset));
1733}
1734
1735void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001736 LocationSummary* locations =
1737 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001738 locations->SetInAt(0, Location::RequiresRegister());
1739 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001740 if (instruction->HasUses()) {
1741 locations->SetOut(Location::SameAsFirstInput());
1742 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001743}
1744
1745void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
1746 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001747 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(
Nicolas Geoffray39468442014-09-02 15:17:15 +01001748 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001749 codegen_->AddSlowPath(slow_path);
1750
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001751 CpuRegister index = locations->InAt(0).As<CpuRegister>();
1752 CpuRegister length = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001753
1754 __ cmpl(index, length);
1755 __ j(kAboveEqual, slow_path->GetEntryLabel());
1756}
1757
1758void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
1759 CpuRegister card,
1760 CpuRegister object,
1761 CpuRegister value) {
1762 Label is_null;
1763 __ testl(value, value);
1764 __ j(kEqual, &is_null);
1765 __ gs()->movq(card, Address::Absolute(
1766 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
1767 __ movq(temp, object);
1768 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
1769 __ movb(Address(temp, card, TIMES_1, 0), card);
1770 __ Bind(&is_null);
1771}
1772
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001773void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
1774 temp->SetLocations(nullptr);
1775}
1776
1777void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
1778 // Nothing to do, this is driven by the code generator.
1779}
1780
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001781void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
1782 LOG(FATAL) << "Unimplemented";
1783}
1784
1785void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001786 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
1787}
1788
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001789void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
1790 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
1791}
1792
1793void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001794 HBasicBlock* block = instruction->GetBlock();
1795 if (block->GetLoopInformation() != nullptr) {
1796 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
1797 // The back edge will generate the suspend check.
1798 return;
1799 }
1800 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
1801 // The goto will generate the suspend check.
1802 return;
1803 }
1804 GenerateSuspendCheck(instruction, nullptr);
1805}
1806
1807void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
1808 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001809 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001810 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001811 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001812 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001813 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001814 if (successor == nullptr) {
1815 __ j(kNotEqual, slow_path->GetEntryLabel());
1816 __ Bind(slow_path->GetReturnLabel());
1817 } else {
1818 __ j(kEqual, codegen_->GetLabelOf(successor));
1819 __ jmp(slow_path->GetEntryLabel());
1820 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001821}
1822
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001823X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
1824 return codegen_->GetAssembler();
1825}
1826
1827void ParallelMoveResolverX86_64::EmitMove(size_t index) {
1828 MoveOperands* move = moves_.Get(index);
1829 Location source = move->GetSource();
1830 Location destination = move->GetDestination();
1831
1832 if (source.IsRegister()) {
1833 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001834 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001835 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001836 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001837 source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001838 } else {
1839 DCHECK(destination.IsDoubleStackSlot());
1840 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001841 source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001842 }
1843 } else if (source.IsStackSlot()) {
1844 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001845 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001846 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001847 } else if (destination.IsFpuRegister()) {
1848 __ movss(destination.As<XmmRegister>(),
1849 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001850 } else {
1851 DCHECK(destination.IsStackSlot());
1852 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1853 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1854 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001855 } else if (source.IsDoubleStackSlot()) {
1856 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001857 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001858 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001859 } else if (destination.IsFpuRegister()) {
1860 __ movsd(destination.As<XmmRegister>(), Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001861 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01001862 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001863 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1864 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1865 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001866 } else if (source.IsConstant()) {
1867 HConstant* constant = source.GetConstant();
1868 if (constant->IsIntConstant()) {
1869 Immediate imm(constant->AsIntConstant()->GetValue());
1870 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001871 __ movl(destination.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001872 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001873 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001874 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1875 }
1876 } else if (constant->IsLongConstant()) {
1877 int64_t value = constant->AsLongConstant()->GetValue();
1878 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001879 __ movq(destination.As<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001880 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001881 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001882 __ movq(CpuRegister(TMP), Immediate(value));
1883 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1884 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001885 } else if (constant->IsFloatConstant()) {
1886 Immediate imm(bit_cast<float, int32_t>(constant->AsFloatConstant()->GetValue()));
1887 if (destination.IsFpuRegister()) {
1888 __ movl(CpuRegister(TMP), imm);
1889 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1890 } else {
1891 DCHECK(destination.IsStackSlot()) << destination;
1892 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1893 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001894 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001895 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
1896 Immediate imm(bit_cast<double, int64_t>(constant->AsDoubleConstant()->GetValue()));
1897 if (destination.IsFpuRegister()) {
1898 __ movq(CpuRegister(TMP), imm);
1899 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1900 } else {
1901 DCHECK(destination.IsDoubleStackSlot()) << destination;
1902 __ movq(CpuRegister(TMP), imm);
1903 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1904 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001905 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001906 } else if (source.IsFpuRegister()) {
1907 if (destination.IsFpuRegister()) {
1908 __ movaps(destination.As<XmmRegister>(), source.As<XmmRegister>());
1909 } else if (destination.IsStackSlot()) {
1910 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
1911 source.As<XmmRegister>());
1912 } else {
1913 DCHECK(destination.IsDoubleStackSlot());
1914 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
1915 source.As<XmmRegister>());
1916 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001917 }
1918}
1919
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001920void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001921 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001922 __ movl(Address(CpuRegister(RSP), mem), reg);
1923 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001924}
1925
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001926void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001927 ScratchRegisterScope ensure_scratch(
1928 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1929
1930 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1931 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1932 __ movl(CpuRegister(ensure_scratch.GetRegister()),
1933 Address(CpuRegister(RSP), mem2 + stack_offset));
1934 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1935 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
1936 CpuRegister(ensure_scratch.GetRegister()));
1937}
1938
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001939void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
1940 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1941 __ movq(Address(CpuRegister(RSP), mem), reg);
1942 __ movq(reg, CpuRegister(TMP));
1943}
1944
1945void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
1946 ScratchRegisterScope ensure_scratch(
1947 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1948
1949 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1950 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1951 __ movq(CpuRegister(ensure_scratch.GetRegister()),
1952 Address(CpuRegister(RSP), mem2 + stack_offset));
1953 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1954 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
1955 CpuRegister(ensure_scratch.GetRegister()));
1956}
1957
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001958void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
1959 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1960 __ movss(Address(CpuRegister(RSP), mem), reg);
1961 __ movd(reg, CpuRegister(TMP));
1962}
1963
1964void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
1965 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1966 __ movsd(Address(CpuRegister(RSP), mem), reg);
1967 __ movd(reg, CpuRegister(TMP));
1968}
1969
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001970void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
1971 MoveOperands* move = moves_.Get(index);
1972 Location source = move->GetSource();
1973 Location destination = move->GetDestination();
1974
1975 if (source.IsRegister() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001976 __ xchgq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001977 } else if (source.IsRegister() && destination.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001978 Exchange32(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001979 } else if (source.IsStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001980 Exchange32(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001981 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001982 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
1983 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001984 Exchange64(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001985 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001986 Exchange64(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001987 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
1988 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001989 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
1990 __ movd(CpuRegister(TMP), source.As<XmmRegister>());
1991 __ movaps(source.As<XmmRegister>(), destination.As<XmmRegister>());
1992 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1993 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
1994 Exchange32(source.As<XmmRegister>(), destination.GetStackIndex());
1995 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
1996 Exchange32(destination.As<XmmRegister>(), source.GetStackIndex());
1997 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
1998 Exchange64(source.As<XmmRegister>(), destination.GetStackIndex());
1999 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
2000 Exchange64(destination.As<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002001 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002002 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002003 }
2004}
2005
2006
2007void ParallelMoveResolverX86_64::SpillScratch(int reg) {
2008 __ pushq(CpuRegister(reg));
2009}
2010
2011
2012void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
2013 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002014}
2015
2016} // namespace x86_64
2017} // namespace art