blob: 38a40dc7ded20a98f7a0a6be74103f6854ad6315 [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 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01001169 case Primitive::kPrimFloat:
1170 case Primitive::kPrimDouble: {
1171 locations->SetInAt(0, Location::RequiresFpuRegister());
1172 locations->SetInAt(1, Location::RequiresFpuRegister());
1173 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001174 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001175 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001176
1177 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001178 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001179 }
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
Calin Juravleb5bfa962014-10-21 18:02:24 +01001205 case Primitive::kPrimFloat: {
1206 __ mulss(first.As<XmmRegister>(), second.As<XmmRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001207 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001208 }
1209
1210 case Primitive::kPrimDouble: {
1211 __ mulsd(first.As<XmmRegister>(), second.As<XmmRegister>());
1212 break;
1213 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001214
1215 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001216 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001217 }
1218}
1219
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001220void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001221 LocationSummary* locations =
1222 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001223 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001224 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1225 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1226 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001227}
1228
1229void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
1230 InvokeRuntimeCallingConvention calling_convention;
1231 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1232 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1233
1234 __ gs()->call(Address::Absolute(
1235 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocObjectWithAccessCheck), true));
1236
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001237 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001238 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001239}
1240
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01001241void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
1242 LocationSummary* locations =
1243 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
1244 InvokeRuntimeCallingConvention calling_convention;
1245 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1246 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1247 locations->SetOut(Location::RegisterLocation(RAX));
1248 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
1249}
1250
1251void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
1252 InvokeRuntimeCallingConvention calling_convention;
1253 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1254 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1255
1256 __ gs()->call(Address::Absolute(
1257 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocArrayWithAccessCheck), true));
1258
1259 DCHECK(!codegen_->IsLeafMethod());
1260 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
1261}
1262
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001263void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001264 LocationSummary* locations =
1265 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001266 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
1267 if (location.IsStackSlot()) {
1268 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1269 } else if (location.IsDoubleStackSlot()) {
1270 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1271 }
1272 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001273}
1274
1275void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
1276 // Nothing to do, the parameter is already at its location.
1277}
1278
1279void LocationsBuilderX86_64::VisitNot(HNot* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001280 LocationSummary* locations =
1281 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001282 locations->SetInAt(0, Location::RequiresRegister());
1283 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001284}
1285
1286void InstructionCodeGeneratorX86_64::VisitNot(HNot* instruction) {
1287 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001288 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1289 locations->Out().As<CpuRegister>().AsRegister());
1290 __ xorq(locations->Out().As<CpuRegister>(), Immediate(1));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001291}
1292
1293void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001294 LocationSummary* locations =
1295 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001296 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
1297 locations->SetInAt(i, Location::Any());
1298 }
1299 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001300}
1301
1302void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
1303 LOG(FATAL) << "Unimplemented";
1304}
1305
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001306void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001307 LocationSummary* locations =
1308 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001309 Primitive::Type field_type = instruction->GetFieldType();
1310 bool is_object_type = field_type == Primitive::kPrimNot;
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001311 locations->SetInAt(0, Location::RequiresRegister());
1312 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001313 if (is_object_type) {
1314 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01001315 locations->AddTemp(Location::RequiresRegister());
1316 locations->AddTemp(Location::RequiresRegister());
1317 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001318}
1319
1320void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
1321 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001322 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1323 CpuRegister value = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001324 size_t offset = instruction->GetFieldOffset().SizeValue();
Nicolas Geoffray39468442014-09-02 15:17:15 +01001325 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001326
1327 switch (field_type) {
1328 case Primitive::kPrimBoolean:
1329 case Primitive::kPrimByte: {
1330 __ movb(Address(obj, offset), value);
1331 break;
1332 }
1333
1334 case Primitive::kPrimShort:
1335 case Primitive::kPrimChar: {
1336 __ movw(Address(obj, offset), value);
1337 break;
1338 }
1339
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001340 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001341 case Primitive::kPrimNot: {
1342 __ movl(Address(obj, offset), value);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001343 if (field_type == Primitive::kPrimNot) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001344 CpuRegister temp = locations->GetTemp(0).As<CpuRegister>();
1345 CpuRegister card = locations->GetTemp(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001346 codegen_->MarkGCCard(temp, card, obj, value);
1347 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001348 break;
1349 }
1350
1351 case Primitive::kPrimLong: {
1352 __ movq(Address(obj, offset), value);
1353 break;
1354 }
1355
1356 case Primitive::kPrimFloat:
1357 case Primitive::kPrimDouble:
1358 LOG(FATAL) << "Unimplemented register type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001359 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001360 case Primitive::kPrimVoid:
1361 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001362 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001363 }
1364}
1365
1366void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001367 LocationSummary* locations =
1368 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001369 locations->SetInAt(0, Location::RequiresRegister());
1370 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001371}
1372
1373void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
1374 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001375 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1376 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001377 size_t offset = instruction->GetFieldOffset().SizeValue();
1378
1379 switch (instruction->GetType()) {
1380 case Primitive::kPrimBoolean: {
1381 __ movzxb(out, Address(obj, offset));
1382 break;
1383 }
1384
1385 case Primitive::kPrimByte: {
1386 __ movsxb(out, Address(obj, offset));
1387 break;
1388 }
1389
1390 case Primitive::kPrimShort: {
1391 __ movsxw(out, Address(obj, offset));
1392 break;
1393 }
1394
1395 case Primitive::kPrimChar: {
1396 __ movzxw(out, Address(obj, offset));
1397 break;
1398 }
1399
1400 case Primitive::kPrimInt:
1401 case Primitive::kPrimNot: {
1402 __ movl(out, Address(obj, offset));
1403 break;
1404 }
1405
1406 case Primitive::kPrimLong: {
1407 __ movq(out, Address(obj, offset));
1408 break;
1409 }
1410
1411 case Primitive::kPrimFloat:
1412 case Primitive::kPrimDouble:
1413 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001414 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001415 case Primitive::kPrimVoid:
1416 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001417 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001418 }
1419}
1420
1421void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001422 LocationSummary* locations =
1423 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001424 locations->SetInAt(0, Location::Any());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001425 if (instruction->HasUses()) {
1426 locations->SetOut(Location::SameAsFirstInput());
1427 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001428}
1429
1430void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001431 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001432 codegen_->AddSlowPath(slow_path);
1433
1434 LocationSummary* locations = instruction->GetLocations();
1435 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001436
1437 if (obj.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001438 __ cmpl(obj.As<CpuRegister>(), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001439 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001440 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001441 } else {
1442 DCHECK(obj.IsConstant()) << obj;
1443 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
1444 __ jmp(slow_path->GetEntryLabel());
1445 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001446 }
1447 __ j(kEqual, slow_path->GetEntryLabel());
1448}
1449
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001450void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001451 LocationSummary* locations =
1452 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001453 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001454 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001455 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1456 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001457}
1458
1459void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
1460 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001461 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001462 Location index = locations->InAt(1);
1463
1464 switch (instruction->GetType()) {
1465 case Primitive::kPrimBoolean: {
1466 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001467 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001468 if (index.IsConstant()) {
1469 __ movzxb(out, Address(obj,
1470 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1471 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001472 __ movzxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001473 }
1474 break;
1475 }
1476
1477 case Primitive::kPrimByte: {
1478 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001479 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001480 if (index.IsConstant()) {
1481 __ movsxb(out, Address(obj,
1482 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1483 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001484 __ movsxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001485 }
1486 break;
1487 }
1488
1489 case Primitive::kPrimShort: {
1490 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001491 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001492 if (index.IsConstant()) {
1493 __ movsxw(out, Address(obj,
1494 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1495 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001496 __ movsxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001497 }
1498 break;
1499 }
1500
1501 case Primitive::kPrimChar: {
1502 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001503 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001504 if (index.IsConstant()) {
1505 __ movzxw(out, Address(obj,
1506 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1507 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001508 __ movzxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001509 }
1510 break;
1511 }
1512
1513 case Primitive::kPrimInt:
1514 case Primitive::kPrimNot: {
1515 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
1516 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001517 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001518 if (index.IsConstant()) {
1519 __ movl(out, Address(obj,
1520 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1521 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001522 __ movl(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001523 }
1524 break;
1525 }
1526
1527 case Primitive::kPrimLong: {
1528 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001529 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001530 if (index.IsConstant()) {
1531 __ movq(out, Address(obj,
1532 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1533 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001534 __ movq(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001535 }
1536 break;
1537 }
1538
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001539 case Primitive::kPrimFloat: {
1540 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1541 XmmRegister out = locations->Out().As<XmmRegister>();
1542 if (index.IsConstant()) {
1543 __ movss(out, Address(obj,
1544 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1545 } else {
1546 __ movss(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
1547 }
1548 break;
1549 }
1550
1551 case Primitive::kPrimDouble: {
1552 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1553 XmmRegister out = locations->Out().As<XmmRegister>();
1554 if (index.IsConstant()) {
1555 __ movsd(out, Address(obj,
1556 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1557 } else {
1558 __ movsd(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
1559 }
1560 break;
1561 }
1562
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001563 case Primitive::kPrimVoid:
1564 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001565 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001566 }
1567}
1568
1569void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001570 Primitive::Type value_type = instruction->GetComponentType();
1571 bool is_object = value_type == Primitive::kPrimNot;
1572 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1573 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1574 if (is_object) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001575 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001576 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1577 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1578 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001579 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001580 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001581 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001582 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1583 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001584 if (value_type == Primitive::kPrimLong) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001585 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001586 } else if (value_type == Primitive::kPrimFloat || value_type == Primitive::kPrimDouble) {
1587 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001588 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001589 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001590 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001591 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001592}
1593
1594void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
1595 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001596 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001597 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001598 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01001599 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001600
1601 switch (value_type) {
1602 case Primitive::kPrimBoolean:
1603 case Primitive::kPrimByte: {
1604 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001605 if (index.IsConstant()) {
1606 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001607 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001608 __ movb(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001609 } else {
1610 __ movb(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1611 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001612 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001613 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001614 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
1615 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001616 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001617 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001618 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1619 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001620 }
1621 break;
1622 }
1623
1624 case Primitive::kPrimShort:
1625 case Primitive::kPrimChar: {
1626 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001627 if (index.IsConstant()) {
1628 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001629 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001630 __ movw(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001631 } else {
1632 __ movw(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1633 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001634 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001635 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001636 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
1637 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001638 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001639 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001640 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1641 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001642 }
1643 break;
1644 }
1645
1646 case Primitive::kPrimInt: {
1647 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001648 if (index.IsConstant()) {
1649 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001650 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001651 __ movl(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001652 } else {
1653 __ movl(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1654 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001655 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001656 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001657 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1658 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001659 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001660 DCHECK(value.IsConstant()) << value;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001661 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001662 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1663 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001664 }
1665 break;
1666 }
1667
1668 case Primitive::kPrimNot: {
1669 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject), true));
1670 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001671 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001672 break;
1673 }
1674
1675 case Primitive::kPrimLong: {
1676 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001677 if (index.IsConstant()) {
1678 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001679 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001680 __ movq(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001681 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001682 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001683 __ movq(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1684 value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001685 }
1686 break;
1687 }
1688
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001689 case Primitive::kPrimFloat: {
1690 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1691 if (index.IsConstant()) {
1692 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1693 DCHECK(value.IsFpuRegister());
1694 __ movss(Address(obj, offset), value.As<XmmRegister>());
1695 } else {
1696 DCHECK(value.IsFpuRegister());
1697 __ movss(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1698 value.As<XmmRegister>());
1699 }
1700 break;
1701 }
1702
1703 case Primitive::kPrimDouble: {
1704 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1705 if (index.IsConstant()) {
1706 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1707 DCHECK(value.IsFpuRegister());
1708 __ movsd(Address(obj, offset), value.As<XmmRegister>());
1709 } else {
1710 DCHECK(value.IsFpuRegister());
1711 __ movsd(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1712 value.As<XmmRegister>());
1713 }
1714 break;
1715 }
1716
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001717 case Primitive::kPrimVoid:
1718 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001719 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001720 }
1721}
1722
1723void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001724 LocationSummary* locations =
1725 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001726 locations->SetInAt(0, Location::RequiresRegister());
1727 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001728}
1729
1730void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
1731 LocationSummary* locations = instruction->GetLocations();
1732 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001733 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1734 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001735 __ movl(out, Address(obj, offset));
1736}
1737
1738void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001739 LocationSummary* locations =
1740 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001741 locations->SetInAt(0, Location::RequiresRegister());
1742 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001743 if (instruction->HasUses()) {
1744 locations->SetOut(Location::SameAsFirstInput());
1745 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001746}
1747
1748void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
1749 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001750 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(
Nicolas Geoffray39468442014-09-02 15:17:15 +01001751 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001752 codegen_->AddSlowPath(slow_path);
1753
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001754 CpuRegister index = locations->InAt(0).As<CpuRegister>();
1755 CpuRegister length = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001756
1757 __ cmpl(index, length);
1758 __ j(kAboveEqual, slow_path->GetEntryLabel());
1759}
1760
1761void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
1762 CpuRegister card,
1763 CpuRegister object,
1764 CpuRegister value) {
1765 Label is_null;
1766 __ testl(value, value);
1767 __ j(kEqual, &is_null);
1768 __ gs()->movq(card, Address::Absolute(
1769 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
1770 __ movq(temp, object);
1771 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
1772 __ movb(Address(temp, card, TIMES_1, 0), card);
1773 __ Bind(&is_null);
1774}
1775
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001776void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
1777 temp->SetLocations(nullptr);
1778}
1779
1780void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
1781 // Nothing to do, this is driven by the code generator.
1782}
1783
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001784void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
1785 LOG(FATAL) << "Unimplemented";
1786}
1787
1788void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001789 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
1790}
1791
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001792void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
1793 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
1794}
1795
1796void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001797 HBasicBlock* block = instruction->GetBlock();
1798 if (block->GetLoopInformation() != nullptr) {
1799 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
1800 // The back edge will generate the suspend check.
1801 return;
1802 }
1803 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
1804 // The goto will generate the suspend check.
1805 return;
1806 }
1807 GenerateSuspendCheck(instruction, nullptr);
1808}
1809
1810void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
1811 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001812 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001813 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001814 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001815 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001816 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001817 if (successor == nullptr) {
1818 __ j(kNotEqual, slow_path->GetEntryLabel());
1819 __ Bind(slow_path->GetReturnLabel());
1820 } else {
1821 __ j(kEqual, codegen_->GetLabelOf(successor));
1822 __ jmp(slow_path->GetEntryLabel());
1823 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001824}
1825
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001826X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
1827 return codegen_->GetAssembler();
1828}
1829
1830void ParallelMoveResolverX86_64::EmitMove(size_t index) {
1831 MoveOperands* move = moves_.Get(index);
1832 Location source = move->GetSource();
1833 Location destination = move->GetDestination();
1834
1835 if (source.IsRegister()) {
1836 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001837 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001838 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001839 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001840 source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001841 } else {
1842 DCHECK(destination.IsDoubleStackSlot());
1843 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001844 source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001845 }
1846 } else if (source.IsStackSlot()) {
1847 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001848 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001849 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001850 } else if (destination.IsFpuRegister()) {
1851 __ movss(destination.As<XmmRegister>(),
1852 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001853 } else {
1854 DCHECK(destination.IsStackSlot());
1855 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1856 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1857 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001858 } else if (source.IsDoubleStackSlot()) {
1859 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001860 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001861 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001862 } else if (destination.IsFpuRegister()) {
1863 __ movsd(destination.As<XmmRegister>(), Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001864 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01001865 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001866 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1867 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1868 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001869 } else if (source.IsConstant()) {
1870 HConstant* constant = source.GetConstant();
1871 if (constant->IsIntConstant()) {
1872 Immediate imm(constant->AsIntConstant()->GetValue());
1873 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001874 __ movl(destination.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001875 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001876 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001877 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1878 }
1879 } else if (constant->IsLongConstant()) {
1880 int64_t value = constant->AsLongConstant()->GetValue();
1881 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001882 __ movq(destination.As<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001883 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001884 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001885 __ movq(CpuRegister(TMP), Immediate(value));
1886 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1887 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001888 } else if (constant->IsFloatConstant()) {
1889 Immediate imm(bit_cast<float, int32_t>(constant->AsFloatConstant()->GetValue()));
1890 if (destination.IsFpuRegister()) {
1891 __ movl(CpuRegister(TMP), imm);
1892 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1893 } else {
1894 DCHECK(destination.IsStackSlot()) << destination;
1895 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1896 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001897 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001898 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
1899 Immediate imm(bit_cast<double, int64_t>(constant->AsDoubleConstant()->GetValue()));
1900 if (destination.IsFpuRegister()) {
1901 __ movq(CpuRegister(TMP), imm);
1902 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1903 } else {
1904 DCHECK(destination.IsDoubleStackSlot()) << destination;
1905 __ movq(CpuRegister(TMP), imm);
1906 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1907 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001908 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001909 } else if (source.IsFpuRegister()) {
1910 if (destination.IsFpuRegister()) {
1911 __ movaps(destination.As<XmmRegister>(), source.As<XmmRegister>());
1912 } else if (destination.IsStackSlot()) {
1913 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
1914 source.As<XmmRegister>());
1915 } else {
1916 DCHECK(destination.IsDoubleStackSlot());
1917 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
1918 source.As<XmmRegister>());
1919 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001920 }
1921}
1922
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001923void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001924 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001925 __ movl(Address(CpuRegister(RSP), mem), reg);
1926 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001927}
1928
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001929void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001930 ScratchRegisterScope ensure_scratch(
1931 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1932
1933 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1934 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1935 __ movl(CpuRegister(ensure_scratch.GetRegister()),
1936 Address(CpuRegister(RSP), mem2 + stack_offset));
1937 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1938 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
1939 CpuRegister(ensure_scratch.GetRegister()));
1940}
1941
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001942void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
1943 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1944 __ movq(Address(CpuRegister(RSP), mem), reg);
1945 __ movq(reg, CpuRegister(TMP));
1946}
1947
1948void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
1949 ScratchRegisterScope ensure_scratch(
1950 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1951
1952 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1953 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1954 __ movq(CpuRegister(ensure_scratch.GetRegister()),
1955 Address(CpuRegister(RSP), mem2 + stack_offset));
1956 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1957 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
1958 CpuRegister(ensure_scratch.GetRegister()));
1959}
1960
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001961void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
1962 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1963 __ movss(Address(CpuRegister(RSP), mem), reg);
1964 __ movd(reg, CpuRegister(TMP));
1965}
1966
1967void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
1968 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1969 __ movsd(Address(CpuRegister(RSP), mem), reg);
1970 __ movd(reg, CpuRegister(TMP));
1971}
1972
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001973void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
1974 MoveOperands* move = moves_.Get(index);
1975 Location source = move->GetSource();
1976 Location destination = move->GetDestination();
1977
1978 if (source.IsRegister() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001979 __ xchgq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001980 } else if (source.IsRegister() && destination.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001981 Exchange32(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001982 } else if (source.IsStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001983 Exchange32(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001984 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001985 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
1986 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001987 Exchange64(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001988 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001989 Exchange64(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001990 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
1991 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001992 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
1993 __ movd(CpuRegister(TMP), source.As<XmmRegister>());
1994 __ movaps(source.As<XmmRegister>(), destination.As<XmmRegister>());
1995 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1996 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
1997 Exchange32(source.As<XmmRegister>(), destination.GetStackIndex());
1998 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
1999 Exchange32(destination.As<XmmRegister>(), source.GetStackIndex());
2000 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
2001 Exchange64(source.As<XmmRegister>(), destination.GetStackIndex());
2002 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
2003 Exchange64(destination.As<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002004 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002005 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002006 }
2007}
2008
2009
2010void ParallelMoveResolverX86_64::SpillScratch(int reg) {
2011 __ pushq(CpuRegister(reg));
2012}
2013
2014
2015void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
2016 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002017}
2018
2019} // namespace x86_64
2020} // namespace art