blob: 4a05b8989213b1172c71b96437e21ea3a26b2d58 [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);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001050 DCHECK(first.Equals(locations->Out()));
Calin Juravle11351682014-10-23 15:38:15 +01001051
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()) {
Calin Juravle11351682014-10-23 15:38:15 +01001057 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001058 __ addl(first.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001059 } else {
Calin Juravle11351682014-10-23 15:38:15 +01001060 __ addl(first.As<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001061 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001062 break;
1063 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001064
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001065 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001066 __ addq(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001067 break;
1068 }
1069
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001070 case Primitive::kPrimFloat: {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001071 __ addss(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001072 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001073 }
1074
1075 case Primitive::kPrimDouble: {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001076 __ addsd(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001077 break;
1078 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001079
1080 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001081 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001082 }
1083}
1084
1085void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001086 LocationSummary* locations =
1087 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001088 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001089 case Primitive::kPrimInt: {
1090 locations->SetInAt(0, Location::RequiresRegister());
1091 locations->SetInAt(1, Location::Any());
1092 locations->SetOut(Location::SameAsFirstInput());
1093 break;
1094 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001095 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001096 locations->SetInAt(0, Location::RequiresRegister());
1097 locations->SetInAt(1, Location::RequiresRegister());
1098 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001099 break;
1100 }
Calin Juravle11351682014-10-23 15:38:15 +01001101 case Primitive::kPrimFloat:
1102 case Primitive::kPrimDouble: {
1103 locations->SetInAt(0, Location::RequiresFpuRegister());
1104 locations->SetInAt(1, Location::RequiresFpuRegister());
1105 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001106 break;
Calin Juravle11351682014-10-23 15:38:15 +01001107 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001108 default:
Calin Juravle11351682014-10-23 15:38:15 +01001109 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001110 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001111}
1112
1113void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
1114 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01001115 Location first = locations->InAt(0);
1116 Location second = locations->InAt(1);
1117 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001118 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001119 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01001120 if (second.IsRegister()) {
1121 __ subl(first.As<CpuRegister>(), second.As<CpuRegister>());
1122 } else if (second.IsConstant()) {
1123 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
1124 __ subl(first.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001125 } else {
Calin Juravle11351682014-10-23 15:38:15 +01001126 __ subl(first.As<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001127 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001128 break;
1129 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001130 case Primitive::kPrimLong: {
Calin Juravle11351682014-10-23 15:38:15 +01001131 __ subq(first.As<CpuRegister>(), second.As<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001132 break;
1133 }
1134
Calin Juravle11351682014-10-23 15:38:15 +01001135 case Primitive::kPrimFloat: {
1136 __ subss(first.As<XmmRegister>(), second.As<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001137 break;
Calin Juravle11351682014-10-23 15:38:15 +01001138 }
1139
1140 case Primitive::kPrimDouble: {
1141 __ subsd(first.As<XmmRegister>(), second.As<XmmRegister>());
1142 break;
1143 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001144
1145 default:
Calin Juravle11351682014-10-23 15:38:15 +01001146 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001147 }
1148}
1149
Calin Juravle34bacdf2014-10-07 20:23:36 +01001150void LocationsBuilderX86_64::VisitMul(HMul* mul) {
1151 LocationSummary* locations =
1152 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
1153 switch (mul->GetResultType()) {
1154 case Primitive::kPrimInt: {
1155 locations->SetInAt(0, Location::RequiresRegister());
1156 locations->SetInAt(1, Location::Any());
1157 locations->SetOut(Location::SameAsFirstInput());
1158 break;
1159 }
1160 case Primitive::kPrimLong: {
1161 locations->SetInAt(0, Location::RequiresRegister());
1162 locations->SetInAt(1, Location::RequiresRegister());
1163 locations->SetOut(Location::SameAsFirstInput());
1164 break;
1165 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01001166 case Primitive::kPrimFloat:
1167 case Primitive::kPrimDouble: {
1168 locations->SetInAt(0, Location::RequiresFpuRegister());
1169 locations->SetInAt(1, Location::RequiresFpuRegister());
1170 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001171 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001172 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001173
1174 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001175 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001176 }
1177}
1178
1179void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
1180 LocationSummary* locations = mul->GetLocations();
1181 Location first = locations->InAt(0);
1182 Location second = locations->InAt(1);
1183 DCHECK(first.Equals(locations->Out()));
1184 switch (mul->GetResultType()) {
1185 case Primitive::kPrimInt: {
1186 if (second.IsRegister()) {
1187 __ imull(first.As<CpuRegister>(), second.As<CpuRegister>());
1188 } else if (second.IsConstant()) {
1189 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
1190 __ imull(first.As<CpuRegister>(), imm);
1191 } else {
1192 DCHECK(second.IsStackSlot());
1193 __ imull(first.As<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
1194 }
1195 break;
1196 }
1197 case Primitive::kPrimLong: {
1198 __ imulq(first.As<CpuRegister>(), second.As<CpuRegister>());
1199 break;
1200 }
1201
Calin Juravleb5bfa962014-10-21 18:02:24 +01001202 case Primitive::kPrimFloat: {
1203 __ mulss(first.As<XmmRegister>(), second.As<XmmRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001204 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001205 }
1206
1207 case Primitive::kPrimDouble: {
1208 __ mulsd(first.As<XmmRegister>(), second.As<XmmRegister>());
1209 break;
1210 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001211
1212 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001213 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001214 }
1215}
1216
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001217void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001218 LocationSummary* locations =
1219 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001220 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001221 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1222 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1223 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001224}
1225
1226void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
1227 InvokeRuntimeCallingConvention calling_convention;
1228 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1229 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1230
1231 __ gs()->call(Address::Absolute(
1232 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocObjectWithAccessCheck), true));
1233
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001234 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001235 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001236}
1237
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01001238void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
1239 LocationSummary* locations =
1240 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
1241 InvokeRuntimeCallingConvention calling_convention;
1242 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1243 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1244 locations->SetOut(Location::RegisterLocation(RAX));
1245 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
1246}
1247
1248void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
1249 InvokeRuntimeCallingConvention calling_convention;
1250 LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
1251 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
1252
1253 __ gs()->call(Address::Absolute(
1254 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocArrayWithAccessCheck), true));
1255
1256 DCHECK(!codegen_->IsLeafMethod());
1257 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
1258}
1259
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001260void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001261 LocationSummary* locations =
1262 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001263 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
1264 if (location.IsStackSlot()) {
1265 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1266 } else if (location.IsDoubleStackSlot()) {
1267 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1268 }
1269 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001270}
1271
1272void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
1273 // Nothing to do, the parameter is already at its location.
1274}
1275
Roland Levillain1cc5f2512014-10-22 18:06:21 +01001276void LocationsBuilderX86_64::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001277 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01001278 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001279 locations->SetInAt(0, Location::RequiresRegister());
1280 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001281}
1282
Roland Levillain1cc5f2512014-10-22 18:06:21 +01001283void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) {
1284 LocationSummary* locations = not_->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001285 DCHECK_EQ(locations->InAt(0).As<CpuRegister>().AsRegister(),
1286 locations->Out().As<CpuRegister>().AsRegister());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01001287 Location out = locations->Out();
1288 switch (not_->InputAt(0)->GetType()) {
1289 case Primitive::kPrimBoolean:
1290 __ xorq(out.As<CpuRegister>(), Immediate(1));
1291 break;
1292
1293 case Primitive::kPrimInt:
1294 __ notl(out.As<CpuRegister>());
1295 break;
1296
1297 case Primitive::kPrimLong:
1298 LOG(FATAL) << "Not yet implemented type for not operation " << not_->GetResultType();
1299 break;
1300
1301 default:
1302 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
1303 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001304}
1305
1306void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001307 LocationSummary* locations =
1308 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001309 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
1310 locations->SetInAt(i, Location::Any());
1311 }
1312 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001313}
1314
1315void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
1316 LOG(FATAL) << "Unimplemented";
1317}
1318
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001319void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001320 LocationSummary* locations =
1321 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001322 Primitive::Type field_type = instruction->GetFieldType();
1323 bool is_object_type = field_type == Primitive::kPrimNot;
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001324 locations->SetInAt(0, Location::RequiresRegister());
1325 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001326 if (is_object_type) {
1327 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01001328 locations->AddTemp(Location::RequiresRegister());
1329 locations->AddTemp(Location::RequiresRegister());
1330 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001331}
1332
1333void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
1334 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001335 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1336 CpuRegister value = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001337 size_t offset = instruction->GetFieldOffset().SizeValue();
Nicolas Geoffray39468442014-09-02 15:17:15 +01001338 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001339
1340 switch (field_type) {
1341 case Primitive::kPrimBoolean:
1342 case Primitive::kPrimByte: {
1343 __ movb(Address(obj, offset), value);
1344 break;
1345 }
1346
1347 case Primitive::kPrimShort:
1348 case Primitive::kPrimChar: {
1349 __ movw(Address(obj, offset), value);
1350 break;
1351 }
1352
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001353 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001354 case Primitive::kPrimNot: {
1355 __ movl(Address(obj, offset), value);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001356 if (field_type == Primitive::kPrimNot) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001357 CpuRegister temp = locations->GetTemp(0).As<CpuRegister>();
1358 CpuRegister card = locations->GetTemp(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001359 codegen_->MarkGCCard(temp, card, obj, value);
1360 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001361 break;
1362 }
1363
1364 case Primitive::kPrimLong: {
1365 __ movq(Address(obj, offset), value);
1366 break;
1367 }
1368
1369 case Primitive::kPrimFloat:
1370 case Primitive::kPrimDouble:
1371 LOG(FATAL) << "Unimplemented register type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001372 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001373 case Primitive::kPrimVoid:
1374 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001375 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001376 }
1377}
1378
1379void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001380 LocationSummary* locations =
1381 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001382 locations->SetInAt(0, Location::RequiresRegister());
1383 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001384}
1385
1386void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
1387 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001388 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1389 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001390 size_t offset = instruction->GetFieldOffset().SizeValue();
1391
1392 switch (instruction->GetType()) {
1393 case Primitive::kPrimBoolean: {
1394 __ movzxb(out, Address(obj, offset));
1395 break;
1396 }
1397
1398 case Primitive::kPrimByte: {
1399 __ movsxb(out, Address(obj, offset));
1400 break;
1401 }
1402
1403 case Primitive::kPrimShort: {
1404 __ movsxw(out, Address(obj, offset));
1405 break;
1406 }
1407
1408 case Primitive::kPrimChar: {
1409 __ movzxw(out, Address(obj, offset));
1410 break;
1411 }
1412
1413 case Primitive::kPrimInt:
1414 case Primitive::kPrimNot: {
1415 __ movl(out, Address(obj, offset));
1416 break;
1417 }
1418
1419 case Primitive::kPrimLong: {
1420 __ movq(out, Address(obj, offset));
1421 break;
1422 }
1423
1424 case Primitive::kPrimFloat:
1425 case Primitive::kPrimDouble:
1426 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001427 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001428 case Primitive::kPrimVoid:
1429 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001430 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001431 }
1432}
1433
1434void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001435 LocationSummary* locations =
1436 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001437 locations->SetInAt(0, Location::Any());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001438 if (instruction->HasUses()) {
1439 locations->SetOut(Location::SameAsFirstInput());
1440 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001441}
1442
1443void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001444 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001445 codegen_->AddSlowPath(slow_path);
1446
1447 LocationSummary* locations = instruction->GetLocations();
1448 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001449
1450 if (obj.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001451 __ cmpl(obj.As<CpuRegister>(), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001452 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001453 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001454 } else {
1455 DCHECK(obj.IsConstant()) << obj;
1456 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
1457 __ jmp(slow_path->GetEntryLabel());
1458 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001459 }
1460 __ j(kEqual, slow_path->GetEntryLabel());
1461}
1462
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001463void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001464 LocationSummary* locations =
1465 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001466 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001467 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001468 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1469 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001470}
1471
1472void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
1473 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001474 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001475 Location index = locations->InAt(1);
1476
1477 switch (instruction->GetType()) {
1478 case Primitive::kPrimBoolean: {
1479 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001480 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001481 if (index.IsConstant()) {
1482 __ movzxb(out, Address(obj,
1483 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1484 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001485 __ movzxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001486 }
1487 break;
1488 }
1489
1490 case Primitive::kPrimByte: {
1491 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001492 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001493 if (index.IsConstant()) {
1494 __ movsxb(out, Address(obj,
1495 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
1496 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001497 __ movsxb(out, Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001498 }
1499 break;
1500 }
1501
1502 case Primitive::kPrimShort: {
1503 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001504 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001505 if (index.IsConstant()) {
1506 __ movsxw(out, Address(obj,
1507 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1508 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001509 __ movsxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001510 }
1511 break;
1512 }
1513
1514 case Primitive::kPrimChar: {
1515 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001516 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001517 if (index.IsConstant()) {
1518 __ movzxw(out, Address(obj,
1519 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
1520 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001521 __ movzxw(out, Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001522 }
1523 break;
1524 }
1525
1526 case Primitive::kPrimInt:
1527 case Primitive::kPrimNot: {
1528 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
1529 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001530 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001531 if (index.IsConstant()) {
1532 __ movl(out, Address(obj,
1533 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1534 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001535 __ movl(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001536 }
1537 break;
1538 }
1539
1540 case Primitive::kPrimLong: {
1541 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001542 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001543 if (index.IsConstant()) {
1544 __ movq(out, Address(obj,
1545 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1546 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001547 __ movq(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001548 }
1549 break;
1550 }
1551
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001552 case Primitive::kPrimFloat: {
1553 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1554 XmmRegister out = locations->Out().As<XmmRegister>();
1555 if (index.IsConstant()) {
1556 __ movss(out, Address(obj,
1557 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
1558 } else {
1559 __ movss(out, Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset));
1560 }
1561 break;
1562 }
1563
1564 case Primitive::kPrimDouble: {
1565 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1566 XmmRegister out = locations->Out().As<XmmRegister>();
1567 if (index.IsConstant()) {
1568 __ movsd(out, Address(obj,
1569 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
1570 } else {
1571 __ movsd(out, Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset));
1572 }
1573 break;
1574 }
1575
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001576 case Primitive::kPrimVoid:
1577 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001578 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001579 }
1580}
1581
1582void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001583 Primitive::Type value_type = instruction->GetComponentType();
1584 bool is_object = value_type == Primitive::kPrimNot;
1585 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1586 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1587 if (is_object) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001588 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001589 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1590 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1591 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001592 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001593 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01001594 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001595 1, Location::RegisterOrConstant(instruction->InputAt(1)));
1596 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001597 if (value_type == Primitive::kPrimLong) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001598 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001599 } else if (value_type == Primitive::kPrimFloat || value_type == Primitive::kPrimDouble) {
1600 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001601 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001602 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001603 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001604 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001605}
1606
1607void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
1608 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001609 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001610 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001611 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01001612 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001613
1614 switch (value_type) {
1615 case Primitive::kPrimBoolean:
1616 case Primitive::kPrimByte: {
1617 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001618 if (index.IsConstant()) {
1619 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001620 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001621 __ movb(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001622 } else {
1623 __ movb(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1624 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001625 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001626 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001627 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
1628 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001629 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001630 __ movb(Address(obj, index.As<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001631 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1632 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001633 }
1634 break;
1635 }
1636
1637 case Primitive::kPrimShort:
1638 case Primitive::kPrimChar: {
1639 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001640 if (index.IsConstant()) {
1641 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001642 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001643 __ movw(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001644 } else {
1645 __ movw(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1646 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001647 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001648 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001649 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
1650 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001651 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001652 __ movw(Address(obj, index.As<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001653 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1654 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001655 }
1656 break;
1657 }
1658
1659 case Primitive::kPrimInt: {
1660 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001661 if (index.IsConstant()) {
1662 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001663 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001664 __ movl(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001665 } else {
1666 __ movl(Address(obj, offset), Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1667 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001668 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001669 if (value.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001670 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1671 value.As<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001672 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001673 DCHECK(value.IsConstant()) << value;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001674 __ movl(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001675 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
1676 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001677 }
1678 break;
1679 }
1680
1681 case Primitive::kPrimNot: {
1682 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject), true));
1683 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001684 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001685 break;
1686 }
1687
1688 case Primitive::kPrimLong: {
1689 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001690 if (index.IsConstant()) {
1691 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001692 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001693 __ movq(Address(obj, offset), value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001694 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001695 DCHECK(value.IsRegister());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001696 __ movq(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1697 value.As<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001698 }
1699 break;
1700 }
1701
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001702 case Primitive::kPrimFloat: {
1703 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1704 if (index.IsConstant()) {
1705 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1706 DCHECK(value.IsFpuRegister());
1707 __ movss(Address(obj, offset), value.As<XmmRegister>());
1708 } else {
1709 DCHECK(value.IsFpuRegister());
1710 __ movss(Address(obj, index.As<CpuRegister>(), TIMES_4, data_offset),
1711 value.As<XmmRegister>());
1712 }
1713 break;
1714 }
1715
1716 case Primitive::kPrimDouble: {
1717 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1718 if (index.IsConstant()) {
1719 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1720 DCHECK(value.IsFpuRegister());
1721 __ movsd(Address(obj, offset), value.As<XmmRegister>());
1722 } else {
1723 DCHECK(value.IsFpuRegister());
1724 __ movsd(Address(obj, index.As<CpuRegister>(), TIMES_8, data_offset),
1725 value.As<XmmRegister>());
1726 }
1727 break;
1728 }
1729
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001730 case Primitive::kPrimVoid:
1731 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07001732 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001733 }
1734}
1735
1736void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001737 LocationSummary* locations =
1738 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001739 locations->SetInAt(0, Location::RequiresRegister());
1740 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001741}
1742
1743void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
1744 LocationSummary* locations = instruction->GetLocations();
1745 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001746 CpuRegister obj = locations->InAt(0).As<CpuRegister>();
1747 CpuRegister out = locations->Out().As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001748 __ movl(out, Address(obj, offset));
1749}
1750
1751void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001752 LocationSummary* locations =
1753 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001754 locations->SetInAt(0, Location::RequiresRegister());
1755 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01001756 if (instruction->HasUses()) {
1757 locations->SetOut(Location::SameAsFirstInput());
1758 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001759}
1760
1761void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
1762 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001763 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(
Nicolas Geoffray39468442014-09-02 15:17:15 +01001764 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001765 codegen_->AddSlowPath(slow_path);
1766
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001767 CpuRegister index = locations->InAt(0).As<CpuRegister>();
1768 CpuRegister length = locations->InAt(1).As<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01001769
1770 __ cmpl(index, length);
1771 __ j(kAboveEqual, slow_path->GetEntryLabel());
1772}
1773
1774void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
1775 CpuRegister card,
1776 CpuRegister object,
1777 CpuRegister value) {
1778 Label is_null;
1779 __ testl(value, value);
1780 __ j(kEqual, &is_null);
1781 __ gs()->movq(card, Address::Absolute(
1782 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
1783 __ movq(temp, object);
1784 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
1785 __ movb(Address(temp, card, TIMES_1, 0), card);
1786 __ Bind(&is_null);
1787}
1788
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001789void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
1790 temp->SetLocations(nullptr);
1791}
1792
1793void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
1794 // Nothing to do, this is driven by the code generator.
1795}
1796
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001797void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
1798 LOG(FATAL) << "Unimplemented";
1799}
1800
1801void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001802 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
1803}
1804
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001805void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
1806 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
1807}
1808
1809void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001810 HBasicBlock* block = instruction->GetBlock();
1811 if (block->GetLoopInformation() != nullptr) {
1812 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
1813 // The back edge will generate the suspend check.
1814 return;
1815 }
1816 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
1817 // The goto will generate the suspend check.
1818 return;
1819 }
1820 GenerateSuspendCheck(instruction, nullptr);
1821}
1822
1823void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
1824 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001825 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001826 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001827 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001828 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001829 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001830 if (successor == nullptr) {
1831 __ j(kNotEqual, slow_path->GetEntryLabel());
1832 __ Bind(slow_path->GetReturnLabel());
1833 } else {
1834 __ j(kEqual, codegen_->GetLabelOf(successor));
1835 __ jmp(slow_path->GetEntryLabel());
1836 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00001837}
1838
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001839X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
1840 return codegen_->GetAssembler();
1841}
1842
1843void ParallelMoveResolverX86_64::EmitMove(size_t index) {
1844 MoveOperands* move = moves_.Get(index);
1845 Location source = move->GetSource();
1846 Location destination = move->GetDestination();
1847
1848 if (source.IsRegister()) {
1849 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001850 __ movq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001851 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001852 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001853 source.As<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001854 } else {
1855 DCHECK(destination.IsDoubleStackSlot());
1856 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001857 source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001858 }
1859 } else if (source.IsStackSlot()) {
1860 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001861 __ movl(destination.As<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001862 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001863 } else if (destination.IsFpuRegister()) {
1864 __ movss(destination.As<XmmRegister>(),
1865 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001866 } else {
1867 DCHECK(destination.IsStackSlot());
1868 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1869 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1870 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001871 } else if (source.IsDoubleStackSlot()) {
1872 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001873 __ movq(destination.As<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001874 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001875 } else if (destination.IsFpuRegister()) {
1876 __ movsd(destination.As<XmmRegister>(), Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001877 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01001878 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001879 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1880 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1881 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001882 } else if (source.IsConstant()) {
1883 HConstant* constant = source.GetConstant();
1884 if (constant->IsIntConstant()) {
1885 Immediate imm(constant->AsIntConstant()->GetValue());
1886 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001887 __ movl(destination.As<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001888 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001889 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001890 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1891 }
1892 } else if (constant->IsLongConstant()) {
1893 int64_t value = constant->AsLongConstant()->GetValue();
1894 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001895 __ movq(destination.As<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001896 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001897 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001898 __ movq(CpuRegister(TMP), Immediate(value));
1899 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1900 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001901 } else if (constant->IsFloatConstant()) {
1902 Immediate imm(bit_cast<float, int32_t>(constant->AsFloatConstant()->GetValue()));
1903 if (destination.IsFpuRegister()) {
1904 __ movl(CpuRegister(TMP), imm);
1905 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1906 } else {
1907 DCHECK(destination.IsStackSlot()) << destination;
1908 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
1909 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001910 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001911 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
1912 Immediate imm(bit_cast<double, int64_t>(constant->AsDoubleConstant()->GetValue()));
1913 if (destination.IsFpuRegister()) {
1914 __ movq(CpuRegister(TMP), imm);
1915 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
1916 } else {
1917 DCHECK(destination.IsDoubleStackSlot()) << destination;
1918 __ movq(CpuRegister(TMP), imm);
1919 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
1920 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001921 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001922 } else if (source.IsFpuRegister()) {
1923 if (destination.IsFpuRegister()) {
1924 __ movaps(destination.As<XmmRegister>(), source.As<XmmRegister>());
1925 } else if (destination.IsStackSlot()) {
1926 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
1927 source.As<XmmRegister>());
1928 } else {
1929 DCHECK(destination.IsDoubleStackSlot());
1930 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
1931 source.As<XmmRegister>());
1932 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001933 }
1934}
1935
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001936void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001937 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001938 __ movl(Address(CpuRegister(RSP), mem), reg);
1939 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001940}
1941
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001942void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001943 ScratchRegisterScope ensure_scratch(
1944 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1945
1946 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1947 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1948 __ movl(CpuRegister(ensure_scratch.GetRegister()),
1949 Address(CpuRegister(RSP), mem2 + stack_offset));
1950 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1951 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
1952 CpuRegister(ensure_scratch.GetRegister()));
1953}
1954
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001955void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
1956 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1957 __ movq(Address(CpuRegister(RSP), mem), reg);
1958 __ movq(reg, CpuRegister(TMP));
1959}
1960
1961void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
1962 ScratchRegisterScope ensure_scratch(
1963 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
1964
1965 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
1966 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
1967 __ movq(CpuRegister(ensure_scratch.GetRegister()),
1968 Address(CpuRegister(RSP), mem2 + stack_offset));
1969 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
1970 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
1971 CpuRegister(ensure_scratch.GetRegister()));
1972}
1973
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001974void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
1975 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1976 __ movss(Address(CpuRegister(RSP), mem), reg);
1977 __ movd(reg, CpuRegister(TMP));
1978}
1979
1980void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
1981 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
1982 __ movsd(Address(CpuRegister(RSP), mem), reg);
1983 __ movd(reg, CpuRegister(TMP));
1984}
1985
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001986void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
1987 MoveOperands* move = moves_.Get(index);
1988 Location source = move->GetSource();
1989 Location destination = move->GetDestination();
1990
1991 if (source.IsRegister() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001992 __ xchgq(destination.As<CpuRegister>(), source.As<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001993 } else if (source.IsRegister() && destination.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001994 Exchange32(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001995 } else if (source.IsStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001996 Exchange32(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001997 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001998 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
1999 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002000 Exchange64(source.As<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002001 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002002 Exchange64(destination.As<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002003 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
2004 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002005 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
2006 __ movd(CpuRegister(TMP), source.As<XmmRegister>());
2007 __ movaps(source.As<XmmRegister>(), destination.As<XmmRegister>());
2008 __ movd(destination.As<XmmRegister>(), CpuRegister(TMP));
2009 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
2010 Exchange32(source.As<XmmRegister>(), destination.GetStackIndex());
2011 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
2012 Exchange32(destination.As<XmmRegister>(), source.GetStackIndex());
2013 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
2014 Exchange64(source.As<XmmRegister>(), destination.GetStackIndex());
2015 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
2016 Exchange64(destination.As<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002017 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002018 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002019 }
2020}
2021
2022
2023void ParallelMoveResolverX86_64::SpillScratch(int reg) {
2024 __ pushq(CpuRegister(reg));
2025}
2026
2027
2028void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
2029 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002030}
2031
2032} // namespace x86_64
2033} // namespace art