blob: 39a97661c998665330435be71e9e647a582a791e [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
Calin Juravled0d48522014-11-04 16:40:20 +000093class DivZeroCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
94 public:
95 explicit DivZeroCheckSlowPathX86_64(HDivZeroCheck* instruction) : instruction_(instruction) {}
96
97 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
98 __ Bind(GetEntryLabel());
99 __ gs()->call(
100 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowDivZero), true));
101 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
102 }
103
104 private:
105 HDivZeroCheck* const instruction_;
106 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86_64);
107};
108
Calin Juravlebacfec32014-11-14 15:54:36 +0000109class DivRemMinusOneSlowPathX86_64 : public SlowPathCodeX86_64 {
Calin Juravled0d48522014-11-04 16:40:20 +0000110 public:
Calin Juravlebacfec32014-11-14 15:54:36 +0000111 explicit DivRemMinusOneSlowPathX86_64(Register reg, Primitive::Type type, bool is_div)
112 : cpu_reg_(CpuRegister(reg)), type_(type), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +0000113
114 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
115 __ Bind(GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000116 if (type_ == Primitive::kPrimInt) {
Calin Juravlebacfec32014-11-14 15:54:36 +0000117 if (is_div_) {
118 __ negl(cpu_reg_);
119 } else {
120 __ movl(cpu_reg_, Immediate(0));
121 }
122
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000123 } else {
124 DCHECK_EQ(Primitive::kPrimLong, type_);
Calin Juravlebacfec32014-11-14 15:54:36 +0000125 if (is_div_) {
126 __ negq(cpu_reg_);
127 } else {
128 __ movq(cpu_reg_, Immediate(0));
129 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000130 }
Calin Juravled0d48522014-11-04 16:40:20 +0000131 __ jmp(GetExitLabel());
132 }
133
134 private:
Calin Juravlebacfec32014-11-14 15:54:36 +0000135 const CpuRegister cpu_reg_;
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000136 const Primitive::Type type_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000137 const bool is_div_;
138 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86_64);
Calin Juravled0d48522014-11-04 16:40:20 +0000139};
140
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100141class StackOverflowCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100142 public:
143 StackOverflowCheckSlowPathX86_64() {}
144
145 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
146 __ Bind(GetEntryLabel());
147 __ addq(CpuRegister(RSP),
148 Immediate(codegen->GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
149 __ gs()->jmp(
150 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowStackOverflow), true));
151 }
152
153 private:
154 DISALLOW_COPY_AND_ASSIGN(StackOverflowCheckSlowPathX86_64);
155};
156
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100157class SuspendCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000158 public:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100159 explicit SuspendCheckSlowPathX86_64(HSuspendCheck* instruction, HBasicBlock* successor)
160 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000161
162 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100163 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000164 __ Bind(GetEntryLabel());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100165 codegen->SaveLiveRegisters(instruction_->GetLocations());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000166 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pTestSuspend), true));
167 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100168 codegen->RestoreLiveRegisters(instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100169 if (successor_ == nullptr) {
170 __ jmp(GetReturnLabel());
171 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100172 __ jmp(x64_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100173 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000174 }
175
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100176 Label* GetReturnLabel() {
177 DCHECK(successor_ == nullptr);
178 return &return_label_;
179 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000180
181 private:
182 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100183 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000184 Label return_label_;
185
186 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86_64);
187};
188
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100189class BoundsCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100190 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100191 BoundsCheckSlowPathX86_64(HBoundsCheck* instruction,
192 Location index_location,
193 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100194 : instruction_(instruction),
195 index_location_(index_location),
196 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100197
198 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100199 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000200 // We're moving two locations to locations that could overlap, so we need a parallel
201 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100202 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000203 codegen->EmitParallelMoves(
204 index_location_,
205 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
206 length_location_,
207 Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100208 __ gs()->call(Address::Absolute(
209 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowArrayBounds), true));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100210 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100211 }
212
213 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100214 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100215 const Location index_location_;
216 const Location length_location_;
217
218 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86_64);
219};
220
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000221class LoadClassSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100222 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000223 LoadClassSlowPathX86_64(HLoadClass* cls,
224 HInstruction* at,
225 uint32_t dex_pc,
226 bool do_clinit)
227 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
228 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
229 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100230
231 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000232 LocationSummary* locations = at_->GetLocations();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100233 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
234 __ Bind(GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100235
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000236 codegen->SaveLiveRegisters(locations);
237
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100238 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000239 __ movl(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(cls_->GetTypeIndex()));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100240 x64_codegen->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000241 __ gs()->call(Address::Absolute((do_clinit_
242 ? QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInitializeStaticStorage)
243 : QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInitializeType)) , true));
244 codegen->RecordPcInfo(at_, dex_pc_);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100245
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000246 Location out = locations->Out();
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000247 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000248 if (out.IsValid()) {
249 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
250 x64_codegen->Move(out, Location::RegisterLocation(RAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000251 }
252
253 codegen->RestoreLiveRegisters(locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100254 __ jmp(GetExitLabel());
255 }
256
257 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000258 // The class this slow path will load.
259 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100260
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000261 // The instruction where this slow path is happening.
262 // (Might be the load class or an initialization check).
263 HInstruction* const at_;
264
265 // The dex PC of `at_`.
266 const uint32_t dex_pc_;
267
268 // Whether to initialize the class.
269 const bool do_clinit_;
270
271 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86_64);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100272};
273
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000274class LoadStringSlowPathX86_64 : public SlowPathCodeX86_64 {
275 public:
276 explicit LoadStringSlowPathX86_64(HLoadString* instruction) : instruction_(instruction) {}
277
278 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
279 LocationSummary* locations = instruction_->GetLocations();
280 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
281
282 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
283 __ Bind(GetEntryLabel());
284 codegen->SaveLiveRegisters(locations);
285
286 InvokeRuntimeCallingConvention calling_convention;
287 x64_codegen->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(0)));
288 __ movl(CpuRegister(calling_convention.GetRegisterAt(1)),
289 Immediate(instruction_->GetStringIndex()));
290 __ gs()->call(Address::Absolute(
291 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pResolveString), true));
292 codegen->RecordPcInfo(instruction_, instruction_->GetDexPc());
293 x64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
294 codegen->RestoreLiveRegisters(locations);
295 __ jmp(GetExitLabel());
296 }
297
298 private:
299 HLoadString* const instruction_;
300
301 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86_64);
302};
303
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000304class TypeCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
305 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000306 TypeCheckSlowPathX86_64(HInstruction* instruction,
307 Location class_to_check,
308 Location object_class,
309 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000310 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000311 class_to_check_(class_to_check),
312 object_class_(object_class),
313 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000314
315 virtual void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
316 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000317 DCHECK(instruction_->IsCheckCast()
318 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000319
320 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
321 __ Bind(GetEntryLabel());
322 codegen->SaveLiveRegisters(locations);
323
324 // We're moving two locations to locations that could overlap, so we need a parallel
325 // move resolver.
326 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000327 codegen->EmitParallelMoves(
328 class_to_check_,
329 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
330 object_class_,
331 Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000332
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000333 if (instruction_->IsInstanceOf()) {
334 __ gs()->call(
335 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInstanceofNonTrivial), true));
336 } else {
337 DCHECK(instruction_->IsCheckCast());
338 __ gs()->call(
339 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pCheckCast), true));
340 }
341 codegen->RecordPcInfo(instruction_, dex_pc_);
342
343 if (instruction_->IsInstanceOf()) {
344 x64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
345 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000346
347 codegen->RestoreLiveRegisters(locations);
348 __ jmp(GetExitLabel());
349 }
350
351 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000352 HInstruction* const instruction_;
353 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000354 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000355 const uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000356
357 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86_64);
358};
359
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100360#undef __
361#define __ reinterpret_cast<X86_64Assembler*>(GetAssembler())->
362
Dave Allison20dfc792014-06-16 20:44:29 -0700363inline Condition X86_64Condition(IfCondition cond) {
364 switch (cond) {
365 case kCondEQ: return kEqual;
366 case kCondNE: return kNotEqual;
367 case kCondLT: return kLess;
368 case kCondLE: return kLessEqual;
369 case kCondGT: return kGreater;
370 case kCondGE: return kGreaterEqual;
371 default:
372 LOG(FATAL) << "Unknown if condition";
373 }
374 return kEqual;
375}
376
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100377void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const {
378 stream << X86_64ManagedRegister::FromCpuRegister(Register(reg));
379}
380
381void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
382 stream << X86_64ManagedRegister::FromXmmRegister(FloatRegister(reg));
383}
384
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100385size_t CodeGeneratorX86_64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
386 __ movq(Address(CpuRegister(RSP), stack_index), CpuRegister(reg_id));
387 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100388}
389
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100390size_t CodeGeneratorX86_64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
391 __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_index));
392 return kX86_64WordSize;
393}
394
395size_t CodeGeneratorX86_64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
396 __ movsd(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id));
397 return kX86_64WordSize;
398}
399
400size_t CodeGeneratorX86_64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
401 __ movsd(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index));
402 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100403}
404
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100405CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph)
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100406 : CodeGenerator(graph, kNumberOfCpuRegisters, kNumberOfFloatRegisters, 0),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100407 block_labels_(graph->GetArena(), 0),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100408 location_builder_(graph, this),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000409 instruction_visitor_(graph, this),
410 move_resolver_(graph->GetArena(), this) {}
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100411
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100412size_t CodeGeneratorX86_64::FrameEntrySpillSize() const {
413 return kNumberOfPushedRegistersAtEntry * kX86_64WordSize;
414}
415
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100416InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph,
417 CodeGeneratorX86_64* codegen)
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100418 : HGraphVisitor(graph),
419 assembler_(codegen->GetAssembler()),
420 codegen_(codegen) {}
421
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100422Location CodeGeneratorX86_64::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100423 switch (type) {
424 case Primitive::kPrimLong:
425 case Primitive::kPrimByte:
426 case Primitive::kPrimBoolean:
427 case Primitive::kPrimChar:
428 case Primitive::kPrimShort:
429 case Primitive::kPrimInt:
430 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100431 size_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100432 return Location::RegisterLocation(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100433 }
434
435 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100436 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100437 size_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfFloatRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100438 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100439 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100440
441 case Primitive::kPrimVoid:
442 LOG(FATAL) << "Unreachable type " << type;
443 }
444
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100445 return Location();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100446}
447
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100448void CodeGeneratorX86_64::SetupBlockedRegisters() const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100449 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100450 blocked_core_registers_[RSP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100451
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000452 // Block the register used as TMP.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100453 blocked_core_registers_[TMP] = true;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000454
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100455 // TODO: We currently don't use Quick's callee saved registers.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100456 blocked_core_registers_[RBX] = true;
457 blocked_core_registers_[RBP] = true;
458 blocked_core_registers_[R12] = true;
459 blocked_core_registers_[R13] = true;
460 blocked_core_registers_[R14] = true;
461 blocked_core_registers_[R15] = true;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100462
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100463 blocked_fpu_registers_[XMM12] = true;
464 blocked_fpu_registers_[XMM13] = true;
465 blocked_fpu_registers_[XMM14] = true;
466 blocked_fpu_registers_[XMM15] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100467}
468
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100469void CodeGeneratorX86_64::GenerateFrameEntry() {
470 // Create a fake register to mimic Quick.
471 static const int kFakeReturnRegister = 16;
472 core_spill_mask_ |= (1 << kFakeReturnRegister);
473
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100474 bool skip_overflow_check = IsLeafMethod()
Dave Allison648d7112014-07-25 16:15:27 -0700475 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100476
477 if (!skip_overflow_check && !kExplicitStackOverflowCheck) {
478 __ testq(CpuRegister(RAX), Address(
479 CpuRegister(RSP), -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86_64))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100480 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100481 }
482
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100483 // The return PC has already been pushed on the stack.
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100484 __ subq(CpuRegister(RSP),
485 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
486
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100487 if (!skip_overflow_check && kExplicitStackOverflowCheck) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100488 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86_64();
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100489 AddSlowPath(slow_path);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100490
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100491 __ gs()->cmpq(CpuRegister(RSP),
492 Address::Absolute(Thread::StackEndOffset<kX86_64WordSize>(), true));
493 __ j(kLess, slow_path->GetEntryLabel());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100494 }
495
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100496 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI));
497}
498
499void CodeGeneratorX86_64::GenerateFrameExit() {
500 __ addq(CpuRegister(RSP),
501 Immediate(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kX86_64WordSize));
502}
503
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100504void CodeGeneratorX86_64::Bind(HBasicBlock* block) {
505 __ Bind(GetLabelOf(block));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100506}
507
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100508void CodeGeneratorX86_64::LoadCurrentMethod(CpuRegister reg) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100509 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
510}
511
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100512Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
513 switch (load->GetType()) {
514 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100515 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100516 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
517 break;
518
519 case Primitive::kPrimInt:
520 case Primitive::kPrimNot:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100521 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100522 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100523
524 case Primitive::kPrimBoolean:
525 case Primitive::kPrimByte:
526 case Primitive::kPrimChar:
527 case Primitive::kPrimShort:
528 case Primitive::kPrimVoid:
529 LOG(FATAL) << "Unexpected type " << load->GetType();
530 }
531
532 LOG(FATAL) << "Unreachable";
533 return Location();
534}
535
536void CodeGeneratorX86_64::Move(Location destination, Location source) {
537 if (source.Equals(destination)) {
538 return;
539 }
540 if (destination.IsRegister()) {
541 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000542 __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100543 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000544 __ movd(destination.AsRegister<CpuRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100545 } else if (source.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000546 __ movl(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100547 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100548 } else {
549 DCHECK(source.IsDoubleStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000550 __ movq(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100551 Address(CpuRegister(RSP), source.GetStackIndex()));
552 }
553 } else if (destination.IsFpuRegister()) {
554 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000555 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100556 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000557 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100558 } else if (source.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000559 __ movss(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100560 Address(CpuRegister(RSP), source.GetStackIndex()));
561 } else {
562 DCHECK(source.IsDoubleStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000563 __ movsd(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100564 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100565 }
566 } else if (destination.IsStackSlot()) {
567 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100568 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000569 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100570 } else if (source.IsFpuRegister()) {
571 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000572 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100573 } else {
574 DCHECK(source.IsStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000575 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
576 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100577 }
578 } else {
579 DCHECK(destination.IsDoubleStackSlot());
580 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100581 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000582 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100583 } else if (source.IsFpuRegister()) {
584 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000585 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100586 } else {
587 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000588 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
589 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100590 }
591 }
592}
593
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100594void CodeGeneratorX86_64::Move(HInstruction* instruction,
595 Location location,
596 HInstruction* move_for) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000597 LocationSummary* locations = instruction->GetLocations();
598 if (locations != nullptr && locations->Out().Equals(location)) {
599 return;
600 }
601
602 if (locations != nullptr && locations->Out().IsConstant()) {
603 HConstant* const_to_move = locations->Out().GetConstant();
604 if (const_to_move->IsIntConstant()) {
605 Immediate imm(const_to_move->AsIntConstant()->GetValue());
606 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000607 __ movl(location.AsRegister<CpuRegister>(), imm);
Calin Juravlea21f5982014-11-13 15:53:04 +0000608 } else if (location.IsStackSlot()) {
609 __ movl(Address(CpuRegister(RSP), location.GetStackIndex()), imm);
610 } else {
611 DCHECK(location.IsConstant());
612 DCHECK_EQ(location.GetConstant(), const_to_move);
613 }
614 } else if (const_to_move->IsLongConstant()) {
615 int64_t value = const_to_move->AsLongConstant()->GetValue();
616 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000617 __ movq(location.AsRegister<CpuRegister>(), Immediate(value));
Calin Juravlea21f5982014-11-13 15:53:04 +0000618 } else if (location.IsDoubleStackSlot()) {
619 __ movq(CpuRegister(TMP), Immediate(value));
620 __ movq(Address(CpuRegister(RSP), location.GetStackIndex()), CpuRegister(TMP));
621 } else {
622 DCHECK(location.IsConstant());
623 DCHECK_EQ(location.GetConstant(), const_to_move);
624 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100625 }
Roland Levillain476df552014-10-09 17:51:36 +0100626 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100627 switch (instruction->GetType()) {
628 case Primitive::kPrimBoolean:
629 case Primitive::kPrimByte:
630 case Primitive::kPrimChar:
631 case Primitive::kPrimShort:
632 case Primitive::kPrimInt:
633 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100634 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100635 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
636 break;
637
638 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100639 case Primitive::kPrimDouble:
Roland Levillain199f3362014-11-27 17:15:16 +0000640 Move(location,
641 Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100642 break;
643
644 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100645 LOG(FATAL) << "Unexpected local type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100646 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000647 } else if (instruction->IsTemporary()) {
648 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
649 Move(location, temp_location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100650 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100651 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100652 switch (instruction->GetType()) {
653 case Primitive::kPrimBoolean:
654 case Primitive::kPrimByte:
655 case Primitive::kPrimChar:
656 case Primitive::kPrimShort:
657 case Primitive::kPrimInt:
658 case Primitive::kPrimNot:
659 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100660 case Primitive::kPrimFloat:
661 case Primitive::kPrimDouble:
Calin Juravlea21f5982014-11-13 15:53:04 +0000662 Move(location, locations->Out());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100663 break;
664
665 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100666 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100667 }
668 }
669}
670
671void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
672 got->SetLocations(nullptr);
673}
674
675void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
676 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100677 DCHECK(!successor->IsExitBlock());
678
679 HBasicBlock* block = got->GetBlock();
680 HInstruction* previous = got->GetPrevious();
681
682 HLoopInformation* info = block->GetLoopInformation();
683 if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) {
684 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
685 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
686 return;
687 }
688
689 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
690 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
691 }
692 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100693 __ jmp(codegen_->GetLabelOf(successor));
694 }
695}
696
697void LocationsBuilderX86_64::VisitExit(HExit* exit) {
698 exit->SetLocations(nullptr);
699}
700
701void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700702 UNUSED(exit);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100703 if (kIsDebugBuild) {
704 __ Comment("Unreachable");
705 __ int3();
706 }
707}
708
709void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100710 LocationSummary* locations =
711 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100712 HInstruction* cond = if_instr->InputAt(0);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100713 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100714 locations->SetInAt(0, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100715 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100716}
717
718void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
Dave Allison20dfc792014-06-16 20:44:29 -0700719 HInstruction* cond = if_instr->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100720 if (cond->IsIntConstant()) {
721 // Constant condition, statically compared against 1.
722 int32_t cond_value = cond->AsIntConstant()->GetValue();
723 if (cond_value == 1) {
724 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
725 if_instr->IfTrueSuccessor())) {
726 __ jmp(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100727 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100728 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100729 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100730 DCHECK_EQ(cond_value, 0);
731 }
732 } else {
733 bool materialized =
734 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
735 // Moves do not affect the eflags register, so if the condition is
736 // evaluated just before the if, we don't need to evaluate it
737 // again.
738 bool eflags_set = cond->IsCondition()
739 && cond->AsCondition()->IsBeforeWhenDisregardMoves(if_instr);
740 if (materialized) {
741 if (!eflags_set) {
742 // Materialized condition, compare against 0.
743 Location lhs = if_instr->GetLocations()->InAt(0);
744 if (lhs.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000745 __ cmpl(lhs.AsRegister<CpuRegister>(), Immediate(0));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100746 } else {
747 __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()),
748 Immediate(0));
749 }
750 __ j(kNotEqual, codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
751 } else {
752 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
753 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
754 }
755 } else {
756 Location lhs = cond->GetLocations()->InAt(0);
757 Location rhs = cond->GetLocations()->InAt(1);
758 if (rhs.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000759 __ cmpl(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100760 } else if (rhs.IsConstant()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000761 __ cmpl(lhs.AsRegister<CpuRegister>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100762 Immediate(rhs.GetConstant()->AsIntConstant()->GetValue()));
763 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000764 __ cmpl(lhs.AsRegister<CpuRegister>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100765 Address(CpuRegister(RSP), rhs.GetStackIndex()));
766 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100767 __ j(X86_64Condition(cond->AsCondition()->GetCondition()),
768 codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Dave Allison20dfc792014-06-16 20:44:29 -0700769 }
Dave Allison20dfc792014-06-16 20:44:29 -0700770 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100771 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
772 if_instr->IfFalseSuccessor())) {
Dave Allison20dfc792014-06-16 20:44:29 -0700773 __ jmp(codegen_->GetLabelOf(if_instr->IfFalseSuccessor()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100774 }
775}
776
777void LocationsBuilderX86_64::VisitLocal(HLocal* local) {
778 local->SetLocations(nullptr);
779}
780
781void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) {
782 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
783}
784
785void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
786 local->SetLocations(nullptr);
787}
788
789void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load) {
790 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700791 UNUSED(load);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100792}
793
794void LocationsBuilderX86_64::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100795 LocationSummary* locations =
796 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100797 switch (store->InputAt(1)->GetType()) {
798 case Primitive::kPrimBoolean:
799 case Primitive::kPrimByte:
800 case Primitive::kPrimChar:
801 case Primitive::kPrimShort:
802 case Primitive::kPrimInt:
803 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100804 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100805 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
806 break;
807
808 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100809 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100810 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
811 break;
812
813 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100814 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100815 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100816}
817
818void InstructionCodeGeneratorX86_64::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700819 UNUSED(store);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100820}
821
Dave Allison20dfc792014-06-16 20:44:29 -0700822void LocationsBuilderX86_64::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100823 LocationSummary* locations =
824 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100825 locations->SetInAt(0, Location::RequiresRegister());
826 locations->SetInAt(1, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100827 if (comp->NeedsMaterialization()) {
828 locations->SetOut(Location::RequiresRegister());
829 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100830}
831
Dave Allison20dfc792014-06-16 20:44:29 -0700832void InstructionCodeGeneratorX86_64::VisitCondition(HCondition* comp) {
833 if (comp->NeedsMaterialization()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100834 LocationSummary* locations = comp->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +0000835 CpuRegister reg = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100836 // Clear register: setcc only sets the low byte.
837 __ xorq(reg, reg);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100838 if (locations->InAt(1).IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000839 __ cmpl(locations->InAt(0).AsRegister<CpuRegister>(),
840 locations->InAt(1).AsRegister<CpuRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100841 } else if (locations->InAt(1).IsConstant()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000842 __ cmpl(locations->InAt(0).AsRegister<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100843 Immediate(locations->InAt(1).GetConstant()->AsIntConstant()->GetValue()));
844 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000845 __ cmpl(locations->InAt(0).AsRegister<CpuRegister>(),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100846 Address(CpuRegister(RSP), locations->InAt(1).GetStackIndex()));
847 }
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100848 __ setcc(X86_64Condition(comp->GetCondition()), reg);
Dave Allison20dfc792014-06-16 20:44:29 -0700849 }
850}
851
852void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
853 VisitCondition(comp);
854}
855
856void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) {
857 VisitCondition(comp);
858}
859
860void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) {
861 VisitCondition(comp);
862}
863
864void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) {
865 VisitCondition(comp);
866}
867
868void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) {
869 VisitCondition(comp);
870}
871
872void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) {
873 VisitCondition(comp);
874}
875
876void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
877 VisitCondition(comp);
878}
879
880void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
881 VisitCondition(comp);
882}
883
884void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) {
885 VisitCondition(comp);
886}
887
888void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) {
889 VisitCondition(comp);
890}
891
892void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
893 VisitCondition(comp);
894}
895
896void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
897 VisitCondition(comp);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100898}
899
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100900void LocationsBuilderX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100901 LocationSummary* locations =
902 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +0000903 switch (compare->InputAt(0)->GetType()) {
904 case Primitive::kPrimLong: {
905 locations->SetInAt(0, Location::RequiresRegister());
906 locations->SetInAt(1, Location::RequiresRegister());
907 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
908 break;
909 }
910 case Primitive::kPrimFloat:
911 case Primitive::kPrimDouble: {
912 locations->SetInAt(0, Location::RequiresFpuRegister());
913 locations->SetInAt(1, Location::RequiresFpuRegister());
914 locations->SetOut(Location::RequiresRegister());
915 break;
916 }
917 default:
918 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
919 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100920}
921
922void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100923 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +0000924 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Calin Juravleddb7df22014-11-25 20:56:51 +0000925 Location left = locations->InAt(0);
926 Location right = locations->InAt(1);
927
928 Label less, greater, done;
929 Primitive::Type type = compare->InputAt(0)->GetType();
930 switch (type) {
931 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000932 __ cmpq(left.AsRegister<CpuRegister>(), right.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100933 break;
Calin Juravleddb7df22014-11-25 20:56:51 +0000934 }
935 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000936 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +0000937 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
938 break;
939 }
940 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000941 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +0000942 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
943 break;
944 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100945 default:
Calin Juravleddb7df22014-11-25 20:56:51 +0000946 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100947 }
Calin Juravleddb7df22014-11-25 20:56:51 +0000948 __ movl(out, Immediate(0));
Calin Juravle91debbc2014-11-26 19:01:09 +0000949 __ j(kEqual, &done);
Calin Juravleddb7df22014-11-25 20:56:51 +0000950 __ j(type == Primitive::kPrimLong ? kLess : kBelow, &less); // ucomis{s,d} sets CF (kBelow)
Calin Juravlefd861242014-11-25 20:56:51 +0000951
Calin Juravle91debbc2014-11-26 19:01:09 +0000952 __ Bind(&greater);
Calin Juravleddb7df22014-11-25 20:56:51 +0000953 __ movl(out, Immediate(1));
954 __ jmp(&done);
955
956 __ Bind(&less);
957 __ movl(out, Immediate(-1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100958
959 __ Bind(&done);
960}
961
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100962void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100963 LocationSummary* locations =
964 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100965 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100966}
967
968void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100969 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700970 UNUSED(constant);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100971}
972
973void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100974 LocationSummary* locations =
975 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100976 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100977}
978
979void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100980 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700981 UNUSED(constant);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100982}
983
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100984void LocationsBuilderX86_64::VisitFloatConstant(HFloatConstant* constant) {
985 LocationSummary* locations =
986 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
987 locations->SetOut(Location::ConstantLocation(constant));
988}
989
990void InstructionCodeGeneratorX86_64::VisitFloatConstant(HFloatConstant* constant) {
991 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700992 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100993}
994
995void LocationsBuilderX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
996 LocationSummary* locations =
997 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
998 locations->SetOut(Location::ConstantLocation(constant));
999}
1000
1001void InstructionCodeGeneratorX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
1002 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001003 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001004}
1005
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001006void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) {
1007 ret->SetLocations(nullptr);
1008}
1009
1010void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001011 UNUSED(ret);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001012 codegen_->GenerateFrameExit();
1013 __ ret();
1014}
1015
1016void LocationsBuilderX86_64::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001017 LocationSummary* locations =
1018 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001019 switch (ret->InputAt(0)->GetType()) {
1020 case Primitive::kPrimBoolean:
1021 case Primitive::kPrimByte:
1022 case Primitive::kPrimChar:
1023 case Primitive::kPrimShort:
1024 case Primitive::kPrimInt:
1025 case Primitive::kPrimNot:
1026 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001027 locations->SetInAt(0, Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001028 break;
1029
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001030 case Primitive::kPrimFloat:
1031 case Primitive::kPrimDouble:
1032 locations->SetInAt(0,
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001033 Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001034 break;
1035
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001036 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001037 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001038 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001039}
1040
1041void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) {
1042 if (kIsDebugBuild) {
1043 switch (ret->InputAt(0)->GetType()) {
1044 case Primitive::kPrimBoolean:
1045 case Primitive::kPrimByte:
1046 case Primitive::kPrimChar:
1047 case Primitive::kPrimShort:
1048 case Primitive::kPrimInt:
1049 case Primitive::kPrimNot:
1050 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001051 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<CpuRegister>().AsRegister(), RAX);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001052 break;
1053
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001054 case Primitive::kPrimFloat:
1055 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001056 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>().AsFloatRegister(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001057 XMM0);
1058 break;
1059
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001060 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001061 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001062 }
1063 }
1064 codegen_->GenerateFrameExit();
1065 __ ret();
1066}
1067
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001068Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
1069 switch (type) {
1070 case Primitive::kPrimBoolean:
1071 case Primitive::kPrimByte:
1072 case Primitive::kPrimChar:
1073 case Primitive::kPrimShort:
1074 case Primitive::kPrimInt:
1075 case Primitive::kPrimNot: {
1076 uint32_t index = gp_index_++;
1077 stack_index_++;
1078 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001079 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001080 } else {
1081 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1082 }
1083 }
1084
1085 case Primitive::kPrimLong: {
1086 uint32_t index = gp_index_;
1087 stack_index_ += 2;
1088 if (index < calling_convention.GetNumberOfRegisters()) {
1089 gp_index_ += 1;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001090 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001091 } else {
1092 gp_index_ += 2;
1093 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1094 }
1095 }
1096
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001097 case Primitive::kPrimFloat: {
1098 uint32_t index = fp_index_++;
1099 stack_index_++;
1100 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001101 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001102 } else {
1103 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1104 }
1105 }
1106
1107 case Primitive::kPrimDouble: {
1108 uint32_t index = fp_index_++;
1109 stack_index_ += 2;
1110 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001111 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001112 } else {
1113 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1114 }
1115 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001116
1117 case Primitive::kPrimVoid:
1118 LOG(FATAL) << "Unexpected parameter type " << type;
1119 break;
1120 }
1121 return Location();
1122}
1123
1124void LocationsBuilderX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001125 HandleInvoke(invoke);
1126}
1127
1128void InstructionCodeGeneratorX86_64::VisitInvokeStatic(HInvokeStatic* invoke) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001129 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001130 // TODO: Implement all kinds of calls:
1131 // 1) boot -> boot
1132 // 2) app -> boot
1133 // 3) app -> app
1134 //
1135 // Currently we implement the app -> app logic, which looks up in the resolve cache.
1136
1137 // temp = method;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001138 codegen_->LoadCurrentMethod(temp);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001139 // temp = temp->dex_cache_resolved_methods_;
1140 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().SizeValue()));
1141 // temp = temp[index_in_cache]
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001142 __ movl(temp, Address(temp, CodeGenerator::GetCacheOffset(invoke->GetIndexInDexCache())));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001143 // (temp + offset_of_quick_compiled_code)()
Mathieu Chartier2d721012014-11-10 11:08:06 -08001144 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001145 kX86_64WordSize).SizeValue()));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001146
1147 DCHECK(!codegen_->IsLeafMethod());
1148 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1149}
1150
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001151void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001152 LocationSummary* locations =
1153 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001154 locations->AddTemp(Location::RegisterLocation(RDI));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001155
1156 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001157 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001158 HInstruction* input = invoke->InputAt(i);
1159 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1160 }
1161
1162 switch (invoke->GetType()) {
1163 case Primitive::kPrimBoolean:
1164 case Primitive::kPrimByte:
1165 case Primitive::kPrimChar:
1166 case Primitive::kPrimShort:
1167 case Primitive::kPrimInt:
1168 case Primitive::kPrimNot:
1169 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001170 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001171 break;
1172
1173 case Primitive::kPrimVoid:
1174 break;
1175
1176 case Primitive::kPrimDouble:
1177 case Primitive::kPrimFloat:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001178 locations->SetOut(Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001179 break;
1180 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001181}
1182
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001183void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
1184 HandleInvoke(invoke);
1185}
1186
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001187void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001188 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001189 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
1190 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1191 LocationSummary* locations = invoke->GetLocations();
1192 Location receiver = locations->InAt(0);
1193 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
1194 // temp = object->GetClass();
1195 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001196 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
1197 __ movl(temp, Address(temp, class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001198 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001199 __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001200 }
1201 // temp = temp->GetMethodAt(method_offset);
1202 __ movl(temp, Address(temp, method_offset));
1203 // call temp->GetEntryPoint();
Mathieu Chartier2d721012014-11-10 11:08:06 -08001204 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001205 kX86_64WordSize).SizeValue()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001206
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001207 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001208 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001209}
1210
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001211void LocationsBuilderX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
1212 HandleInvoke(invoke);
1213 // Add the hidden argument.
1214 invoke->GetLocations()->AddTemp(Location::RegisterLocation(RAX));
1215}
1216
1217void InstructionCodeGeneratorX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
1218 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001219 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001220 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1221 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1222 LocationSummary* locations = invoke->GetLocations();
1223 Location receiver = locations->InAt(0);
1224 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
1225
1226 // Set the hidden argument.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001227 __ movq(invoke->GetLocations()->GetTemp(1).AsRegister<CpuRegister>(),
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001228 Immediate(invoke->GetDexMethodIndex()));
1229
1230 // temp = object->GetClass();
1231 if (receiver.IsStackSlot()) {
1232 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
1233 __ movl(temp, Address(temp, class_offset));
1234 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001235 __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001236 }
1237 // temp = temp->GetImtEntryAt(method_offset);
1238 __ movl(temp, Address(temp, method_offset));
1239 // call temp->GetEntryPoint();
Mathieu Chartier2d721012014-11-10 11:08:06 -08001240 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001241 kX86_64WordSize).SizeValue()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001242
1243 DCHECK(!codegen_->IsLeafMethod());
1244 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1245}
1246
Roland Levillain88cb1752014-10-20 16:36:47 +01001247void LocationsBuilderX86_64::VisitNeg(HNeg* neg) {
1248 LocationSummary* locations =
1249 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1250 switch (neg->GetResultType()) {
1251 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001252 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01001253 locations->SetInAt(0, Location::RequiresRegister());
1254 locations->SetOut(Location::SameAsFirstInput());
1255 break;
1256
Roland Levillain88cb1752014-10-20 16:36:47 +01001257 case Primitive::kPrimFloat:
1258 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001259 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00001260 locations->SetOut(Location::SameAsFirstInput());
1261 locations->AddTemp(Location::RequiresRegister());
1262 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01001263 break;
1264
1265 default:
1266 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1267 }
1268}
1269
1270void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) {
1271 LocationSummary* locations = neg->GetLocations();
1272 Location out = locations->Out();
1273 Location in = locations->InAt(0);
1274 switch (neg->GetResultType()) {
1275 case Primitive::kPrimInt:
1276 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001277 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001278 __ negl(out.AsRegister<CpuRegister>());
Roland Levillain88cb1752014-10-20 16:36:47 +01001279 break;
1280
1281 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001282 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001283 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001284 __ negq(out.AsRegister<CpuRegister>());
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001285 break;
1286
Roland Levillain5368c212014-11-27 15:03:41 +00001287 case Primitive::kPrimFloat: {
1288 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001289 CpuRegister constant = locations->GetTemp(0).AsRegister<CpuRegister>();
1290 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001291 // Implement float negation with an exclusive or with value
1292 // 0x80000000 (mask for bit 31, representing the sign of a
1293 // single-precision floating-point number).
1294 __ movq(constant, Immediate(INT64_C(0x80000000)));
1295 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001296 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00001297 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001298 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00001299
Roland Levillain5368c212014-11-27 15:03:41 +00001300 case Primitive::kPrimDouble: {
1301 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001302 CpuRegister constant = locations->GetTemp(0).AsRegister<CpuRegister>();
1303 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001304 // Implement double negation with an exclusive or with value
Roland Levillain3dbcb382014-10-28 17:30:07 +00001305 // 0x8000000000000000 (mask for bit 63, representing the sign of
Roland Levillain5368c212014-11-27 15:03:41 +00001306 // a double-precision floating-point number).
1307 __ movq(constant, Immediate(INT64_C(0x8000000000000000)));
1308 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001309 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01001310 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001311 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001312
1313 default:
1314 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1315 }
1316}
1317
Roland Levillaindff1f282014-11-05 14:15:05 +00001318void LocationsBuilderX86_64::VisitTypeConversion(HTypeConversion* conversion) {
1319 LocationSummary* locations =
1320 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
1321 Primitive::Type result_type = conversion->GetResultType();
1322 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001323 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001324 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001325 case Primitive::kPrimByte:
1326 switch (input_type) {
1327 case Primitive::kPrimShort:
1328 case Primitive::kPrimInt:
1329 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001330 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001331 locations->SetInAt(0, Location::Any());
1332 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1333 break;
1334
1335 default:
1336 LOG(FATAL) << "Unexpected type conversion from " << input_type
1337 << " to " << result_type;
1338 }
1339 break;
1340
Roland Levillain01a8d712014-11-14 16:27:39 +00001341 case Primitive::kPrimShort:
1342 switch (input_type) {
1343 case Primitive::kPrimByte:
1344 case Primitive::kPrimInt:
1345 case Primitive::kPrimChar:
1346 // Processing a Dex `int-to-short' instruction.
1347 locations->SetInAt(0, Location::Any());
1348 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1349 break;
1350
1351 default:
1352 LOG(FATAL) << "Unexpected type conversion from " << input_type
1353 << " to " << result_type;
1354 }
1355 break;
1356
Roland Levillain946e1432014-11-11 17:35:19 +00001357 case Primitive::kPrimInt:
1358 switch (input_type) {
1359 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001360 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001361 locations->SetInAt(0, Location::Any());
1362 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1363 break;
1364
1365 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001366 // Processing a Dex `float-to-int' instruction.
1367 locations->SetInAt(0, Location::RequiresFpuRegister());
1368 locations->SetOut(Location::RequiresRegister());
1369 locations->AddTemp(Location::RequiresFpuRegister());
1370 break;
1371
Roland Levillain946e1432014-11-11 17:35:19 +00001372 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001373 // Processing a Dex `double-to-int' instruction.
1374 locations->SetInAt(0, Location::RequiresFpuRegister());
1375 locations->SetOut(Location::RequiresRegister());
1376 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001377 break;
1378
1379 default:
1380 LOG(FATAL) << "Unexpected type conversion from " << input_type
1381 << " to " << result_type;
1382 }
1383 break;
1384
Roland Levillaindff1f282014-11-05 14:15:05 +00001385 case Primitive::kPrimLong:
1386 switch (input_type) {
1387 case Primitive::kPrimByte:
1388 case Primitive::kPrimShort:
1389 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001390 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001391 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001392 // TODO: We would benefit from a (to-be-implemented)
1393 // Location::RegisterOrStackSlot requirement for this input.
1394 locations->SetInAt(0, Location::RequiresRegister());
1395 locations->SetOut(Location::RequiresRegister());
1396 break;
1397
1398 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001399 // Processing a Dex `float-to-long' instruction.
1400 locations->SetInAt(0, Location::RequiresFpuRegister());
1401 locations->SetOut(Location::RequiresRegister());
1402 locations->AddTemp(Location::RequiresFpuRegister());
1403 break;
1404
Roland Levillaindff1f282014-11-05 14:15:05 +00001405 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001406 // Processing a Dex `double-to-long' instruction.
1407 locations->SetInAt(0, Location::RequiresFpuRegister());
1408 locations->SetOut(Location::RequiresRegister());
1409 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillaindff1f282014-11-05 14:15:05 +00001410 break;
1411
1412 default:
1413 LOG(FATAL) << "Unexpected type conversion from " << input_type
1414 << " to " << result_type;
1415 }
1416 break;
1417
Roland Levillain981e4542014-11-14 11:47:14 +00001418 case Primitive::kPrimChar:
1419 switch (input_type) {
1420 case Primitive::kPrimByte:
1421 case Primitive::kPrimShort:
1422 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001423 // Processing a Dex `int-to-char' instruction.
1424 locations->SetInAt(0, Location::Any());
1425 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1426 break;
1427
1428 default:
1429 LOG(FATAL) << "Unexpected type conversion from " << input_type
1430 << " to " << result_type;
1431 }
1432 break;
1433
Roland Levillaindff1f282014-11-05 14:15:05 +00001434 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001435 switch (input_type) {
1436 case Primitive::kPrimByte:
1437 case Primitive::kPrimShort:
1438 case Primitive::kPrimInt:
1439 case Primitive::kPrimChar:
1440 // Processing a Dex `int-to-float' instruction.
1441 locations->SetInAt(0, Location::RequiresRegister());
1442 locations->SetOut(Location::RequiresFpuRegister());
1443 break;
1444
1445 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001446 // Processing a Dex `long-to-float' instruction.
1447 locations->SetInAt(0, Location::RequiresRegister());
1448 locations->SetOut(Location::RequiresFpuRegister());
1449 break;
1450
Roland Levillaincff13742014-11-17 14:32:17 +00001451 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001452 // Processing a Dex `double-to-float' instruction.
1453 locations->SetInAt(0, Location::RequiresFpuRegister());
1454 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001455 break;
1456
1457 default:
1458 LOG(FATAL) << "Unexpected type conversion from " << input_type
1459 << " to " << result_type;
1460 };
1461 break;
1462
Roland Levillaindff1f282014-11-05 14:15:05 +00001463 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001464 switch (input_type) {
1465 case Primitive::kPrimByte:
1466 case Primitive::kPrimShort:
1467 case Primitive::kPrimInt:
1468 case Primitive::kPrimChar:
1469 // Processing a Dex `int-to-double' instruction.
1470 locations->SetInAt(0, Location::RequiresRegister());
1471 locations->SetOut(Location::RequiresFpuRegister());
1472 break;
1473
1474 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001475 // Processing a Dex `long-to-double' instruction.
1476 locations->SetInAt(0, Location::RequiresRegister());
1477 locations->SetOut(Location::RequiresFpuRegister());
1478 break;
1479
Roland Levillaincff13742014-11-17 14:32:17 +00001480 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001481 // Processing a Dex `float-to-double' instruction.
1482 locations->SetInAt(0, Location::RequiresFpuRegister());
1483 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001484 break;
1485
1486 default:
1487 LOG(FATAL) << "Unexpected type conversion from " << input_type
1488 << " to " << result_type;
1489 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001490 break;
1491
1492 default:
1493 LOG(FATAL) << "Unexpected type conversion from " << input_type
1494 << " to " << result_type;
1495 }
1496}
1497
1498void InstructionCodeGeneratorX86_64::VisitTypeConversion(HTypeConversion* conversion) {
1499 LocationSummary* locations = conversion->GetLocations();
1500 Location out = locations->Out();
1501 Location in = locations->InAt(0);
1502 Primitive::Type result_type = conversion->GetResultType();
1503 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001504 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001505 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001506 case Primitive::kPrimByte:
1507 switch (input_type) {
1508 case Primitive::kPrimShort:
1509 case Primitive::kPrimInt:
1510 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001511 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001512 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001513 __ movsxb(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain51d3fc42014-11-13 14:11:42 +00001514 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001515 __ movsxb(out.AsRegister<CpuRegister>(),
Roland Levillain51d3fc42014-11-13 14:11:42 +00001516 Address(CpuRegister(RSP), in.GetStackIndex()));
1517 } else {
1518 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001519 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain51d3fc42014-11-13 14:11:42 +00001520 Immediate(static_cast<int8_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1521 }
1522 break;
1523
1524 default:
1525 LOG(FATAL) << "Unexpected type conversion from " << input_type
1526 << " to " << result_type;
1527 }
1528 break;
1529
Roland Levillain01a8d712014-11-14 16:27:39 +00001530 case Primitive::kPrimShort:
1531 switch (input_type) {
1532 case Primitive::kPrimByte:
1533 case Primitive::kPrimInt:
1534 case Primitive::kPrimChar:
1535 // Processing a Dex `int-to-short' instruction.
1536 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001537 __ movsxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain01a8d712014-11-14 16:27:39 +00001538 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001539 __ movsxw(out.AsRegister<CpuRegister>(),
Roland Levillain01a8d712014-11-14 16:27:39 +00001540 Address(CpuRegister(RSP), in.GetStackIndex()));
1541 } else {
1542 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001543 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain01a8d712014-11-14 16:27:39 +00001544 Immediate(static_cast<int16_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1545 }
1546 break;
1547
1548 default:
1549 LOG(FATAL) << "Unexpected type conversion from " << input_type
1550 << " to " << result_type;
1551 }
1552 break;
1553
Roland Levillain946e1432014-11-11 17:35:19 +00001554 case Primitive::kPrimInt:
1555 switch (input_type) {
1556 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001557 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001558 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001559 __ movl(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain946e1432014-11-11 17:35:19 +00001560 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001561 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain946e1432014-11-11 17:35:19 +00001562 Address(CpuRegister(RSP), in.GetStackIndex()));
1563 } else {
1564 DCHECK(in.IsConstant());
1565 DCHECK(in.GetConstant()->IsLongConstant());
1566 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001567 __ movl(out.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00001568 }
1569 break;
1570
Roland Levillain3f8f9362014-12-02 17:45:01 +00001571 case Primitive::kPrimFloat: {
1572 // Processing a Dex `float-to-int' instruction.
1573 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1574 CpuRegister output = out.AsRegister<CpuRegister>();
1575 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1576 Label done, nan;
1577
1578 __ movl(output, Immediate(kPrimIntMax));
1579 // temp = int-to-float(output)
Roland Levillain624279f2014-12-04 11:54:28 +00001580 __ cvtsi2ss(temp, output, false);
Roland Levillain3f8f9362014-12-02 17:45:01 +00001581 // if input >= temp goto done
1582 __ comiss(input, temp);
1583 __ j(kAboveEqual, &done);
1584 // if input == NaN goto nan
1585 __ j(kUnordered, &nan);
1586 // output = float-to-int-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00001587 __ cvttss2si(output, input, false);
Roland Levillain3f8f9362014-12-02 17:45:01 +00001588 __ jmp(&done);
1589 __ Bind(&nan);
1590 // output = 0
1591 __ xorl(output, output);
1592 __ Bind(&done);
1593 break;
1594 }
1595
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001596 case Primitive::kPrimDouble: {
1597 // Processing a Dex `double-to-int' instruction.
1598 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1599 CpuRegister output = out.AsRegister<CpuRegister>();
1600 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1601 Label done, nan;
1602
1603 __ movl(output, Immediate(kPrimIntMax));
1604 // temp = int-to-double(output)
1605 __ cvtsi2sd(temp, output);
1606 // if input >= temp goto done
1607 __ comisd(input, temp);
1608 __ j(kAboveEqual, &done);
1609 // if input == NaN goto nan
1610 __ j(kUnordered, &nan);
1611 // output = double-to-int-truncate(input)
1612 __ cvttsd2si(output, input);
1613 __ jmp(&done);
1614 __ Bind(&nan);
1615 // output = 0
1616 __ xorl(output, output);
1617 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00001618 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001619 }
Roland Levillain946e1432014-11-11 17:35:19 +00001620
1621 default:
1622 LOG(FATAL) << "Unexpected type conversion from " << input_type
1623 << " to " << result_type;
1624 }
1625 break;
1626
Roland Levillaindff1f282014-11-05 14:15:05 +00001627 case Primitive::kPrimLong:
1628 switch (input_type) {
1629 DCHECK(out.IsRegister());
1630 case Primitive::kPrimByte:
1631 case Primitive::kPrimShort:
1632 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001633 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001634 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001635 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001636 __ movsxd(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillaindff1f282014-11-05 14:15:05 +00001637 break;
1638
Roland Levillain624279f2014-12-04 11:54:28 +00001639 case Primitive::kPrimFloat: {
1640 // Processing a Dex `float-to-long' instruction.
1641 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1642 CpuRegister output = out.AsRegister<CpuRegister>();
1643 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1644 Label done, nan;
1645
1646 __ movq(output, Immediate(kPrimLongMax));
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001647 // temp = long-to-float(output)
Roland Levillain624279f2014-12-04 11:54:28 +00001648 __ cvtsi2ss(temp, output, true);
1649 // if input >= temp goto done
1650 __ comiss(input, temp);
1651 __ j(kAboveEqual, &done);
1652 // if input == NaN goto nan
1653 __ j(kUnordered, &nan);
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001654 // output = float-to-long-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00001655 __ cvttss2si(output, input, true);
1656 __ jmp(&done);
1657 __ Bind(&nan);
1658 // output = 0
1659 __ xorq(output, output);
1660 __ Bind(&done);
1661 break;
1662 }
1663
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001664 case Primitive::kPrimDouble: {
1665 // Processing a Dex `double-to-long' instruction.
1666 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1667 CpuRegister output = out.AsRegister<CpuRegister>();
1668 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1669 Label done, nan;
1670
1671 __ movq(output, Immediate(kPrimLongMax));
1672 // temp = long-to-double(output)
1673 __ cvtsi2sd(temp, output, true);
1674 // if input >= temp goto done
1675 __ comisd(input, temp);
1676 __ j(kAboveEqual, &done);
1677 // if input == NaN goto nan
1678 __ j(kUnordered, &nan);
1679 // output = double-to-long-truncate(input)
1680 __ cvttsd2si(output, input, true);
1681 __ jmp(&done);
1682 __ Bind(&nan);
1683 // output = 0
1684 __ xorq(output, output);
1685 __ Bind(&done);
Roland Levillaindff1f282014-11-05 14:15:05 +00001686 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001687 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001688
1689 default:
1690 LOG(FATAL) << "Unexpected type conversion from " << input_type
1691 << " to " << result_type;
1692 }
1693 break;
1694
Roland Levillain981e4542014-11-14 11:47:14 +00001695 case Primitive::kPrimChar:
1696 switch (input_type) {
1697 case Primitive::kPrimByte:
1698 case Primitive::kPrimShort:
1699 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001700 // Processing a Dex `int-to-char' instruction.
1701 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001702 __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain981e4542014-11-14 11:47:14 +00001703 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001704 __ movzxw(out.AsRegister<CpuRegister>(),
Roland Levillain981e4542014-11-14 11:47:14 +00001705 Address(CpuRegister(RSP), in.GetStackIndex()));
1706 } else {
1707 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001708 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain981e4542014-11-14 11:47:14 +00001709 Immediate(static_cast<uint16_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1710 }
1711 break;
1712
1713 default:
1714 LOG(FATAL) << "Unexpected type conversion from " << input_type
1715 << " to " << result_type;
1716 }
1717 break;
1718
Roland Levillaindff1f282014-11-05 14:15:05 +00001719 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001720 switch (input_type) {
Roland Levillaincff13742014-11-17 14:32:17 +00001721 case Primitive::kPrimByte:
1722 case Primitive::kPrimShort:
1723 case Primitive::kPrimInt:
1724 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001725 // Processing a Dex `int-to-float' instruction.
1726 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
Roland Levillaincff13742014-11-17 14:32:17 +00001727 break;
1728
1729 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001730 // Processing a Dex `long-to-float' instruction.
1731 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
1732 break;
1733
Roland Levillaincff13742014-11-17 14:32:17 +00001734 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001735 // Processing a Dex `double-to-float' instruction.
1736 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001737 break;
1738
1739 default:
1740 LOG(FATAL) << "Unexpected type conversion from " << input_type
1741 << " to " << result_type;
1742 };
1743 break;
1744
Roland Levillaindff1f282014-11-05 14:15:05 +00001745 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001746 switch (input_type) {
Roland Levillaincff13742014-11-17 14:32:17 +00001747 case Primitive::kPrimByte:
1748 case Primitive::kPrimShort:
1749 case Primitive::kPrimInt:
1750 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001751 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001752 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
Roland Levillaincff13742014-11-17 14:32:17 +00001753 break;
1754
1755 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001756 // Processing a Dex `long-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001757 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
Roland Levillain647b9ed2014-11-27 12:06:00 +00001758 break;
1759
Roland Levillaincff13742014-11-17 14:32:17 +00001760 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001761 // Processing a Dex `float-to-double' instruction.
1762 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001763 break;
1764
1765 default:
1766 LOG(FATAL) << "Unexpected type conversion from " << input_type
1767 << " to " << result_type;
1768 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001769 break;
1770
1771 default:
1772 LOG(FATAL) << "Unexpected type conversion from " << input_type
1773 << " to " << result_type;
1774 }
1775}
1776
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001777void LocationsBuilderX86_64::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001778 LocationSummary* locations =
1779 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001780 switch (add->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001781 case Primitive::kPrimInt: {
1782 locations->SetInAt(0, Location::RequiresRegister());
1783 locations->SetInAt(1, Location::Any());
1784 locations->SetOut(Location::SameAsFirstInput());
1785 break;
1786 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001787
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001788 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001789 locations->SetInAt(0, Location::RequiresRegister());
1790 locations->SetInAt(1, Location::RequiresRegister());
1791 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001792 break;
1793 }
1794
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001795 case Primitive::kPrimDouble:
1796 case Primitive::kPrimFloat: {
1797 locations->SetInAt(0, Location::RequiresFpuRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001798 locations->SetInAt(1, Location::RequiresFpuRegister());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001799 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001800 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001801 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001802
1803 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001804 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001805 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001806}
1807
1808void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) {
1809 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001810 Location first = locations->InAt(0);
1811 Location second = locations->InAt(1);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001812 DCHECK(first.Equals(locations->Out()));
Calin Juravle11351682014-10-23 15:38:15 +01001813
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001814 switch (add->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001815 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001816 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001817 __ addl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001818 } else if (second.IsConstant()) {
Calin Juravle11351682014-10-23 15:38:15 +01001819 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001820 __ addl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001821 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001822 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001823 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001824 break;
1825 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001826
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001827 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001828 __ addq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001829 break;
1830 }
1831
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001832 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001833 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001834 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001835 }
1836
1837 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001838 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001839 break;
1840 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001841
1842 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001843 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001844 }
1845}
1846
1847void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001848 LocationSummary* locations =
1849 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001850 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001851 case Primitive::kPrimInt: {
1852 locations->SetInAt(0, Location::RequiresRegister());
1853 locations->SetInAt(1, Location::Any());
1854 locations->SetOut(Location::SameAsFirstInput());
1855 break;
1856 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001857 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001858 locations->SetInAt(0, Location::RequiresRegister());
1859 locations->SetInAt(1, Location::RequiresRegister());
1860 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001861 break;
1862 }
Calin Juravle11351682014-10-23 15:38:15 +01001863 case Primitive::kPrimFloat:
1864 case Primitive::kPrimDouble: {
1865 locations->SetInAt(0, Location::RequiresFpuRegister());
1866 locations->SetInAt(1, Location::RequiresFpuRegister());
1867 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001868 break;
Calin Juravle11351682014-10-23 15:38:15 +01001869 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001870 default:
Calin Juravle11351682014-10-23 15:38:15 +01001871 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001872 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001873}
1874
1875void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
1876 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01001877 Location first = locations->InAt(0);
1878 Location second = locations->InAt(1);
1879 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001880 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001881 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01001882 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001883 __ subl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01001884 } else if (second.IsConstant()) {
1885 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001886 __ subl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001887 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001888 __ subl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001889 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001890 break;
1891 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001892 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001893 __ subq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001894 break;
1895 }
1896
Calin Juravle11351682014-10-23 15:38:15 +01001897 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001898 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001899 break;
Calin Juravle11351682014-10-23 15:38:15 +01001900 }
1901
1902 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001903 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01001904 break;
1905 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001906
1907 default:
Calin Juravle11351682014-10-23 15:38:15 +01001908 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001909 }
1910}
1911
Calin Juravle34bacdf2014-10-07 20:23:36 +01001912void LocationsBuilderX86_64::VisitMul(HMul* mul) {
1913 LocationSummary* locations =
1914 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
1915 switch (mul->GetResultType()) {
1916 case Primitive::kPrimInt: {
1917 locations->SetInAt(0, Location::RequiresRegister());
1918 locations->SetInAt(1, Location::Any());
1919 locations->SetOut(Location::SameAsFirstInput());
1920 break;
1921 }
1922 case Primitive::kPrimLong: {
1923 locations->SetInAt(0, Location::RequiresRegister());
1924 locations->SetInAt(1, Location::RequiresRegister());
1925 locations->SetOut(Location::SameAsFirstInput());
1926 break;
1927 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01001928 case Primitive::kPrimFloat:
1929 case Primitive::kPrimDouble: {
1930 locations->SetInAt(0, Location::RequiresFpuRegister());
1931 locations->SetInAt(1, Location::RequiresFpuRegister());
1932 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001933 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001934 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001935
1936 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001937 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001938 }
1939}
1940
1941void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
1942 LocationSummary* locations = mul->GetLocations();
1943 Location first = locations->InAt(0);
1944 Location second = locations->InAt(1);
1945 DCHECK(first.Equals(locations->Out()));
1946 switch (mul->GetResultType()) {
1947 case Primitive::kPrimInt: {
1948 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001949 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001950 } else if (second.IsConstant()) {
1951 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001952 __ imull(first.AsRegister<CpuRegister>(), imm);
Calin Juravle34bacdf2014-10-07 20:23:36 +01001953 } else {
1954 DCHECK(second.IsStackSlot());
Roland Levillain199f3362014-11-27 17:15:16 +00001955 __ imull(first.AsRegister<CpuRegister>(),
1956 Address(CpuRegister(RSP), second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01001957 }
1958 break;
1959 }
1960 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001961 __ imulq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001962 break;
1963 }
1964
Calin Juravleb5bfa962014-10-21 18:02:24 +01001965 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001966 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001967 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001968 }
1969
1970 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001971 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravleb5bfa962014-10-21 18:02:24 +01001972 break;
1973 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001974
1975 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001976 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001977 }
1978}
1979
Calin Juravlebacfec32014-11-14 15:54:36 +00001980void InstructionCodeGeneratorX86_64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
1981 DCHECK(instruction->IsDiv() || instruction->IsRem());
1982 Primitive::Type type = instruction->GetResultType();
1983 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
1984
1985 bool is_div = instruction->IsDiv();
1986 LocationSummary* locations = instruction->GetLocations();
1987
Roland Levillain271ab9c2014-11-27 15:23:57 +00001988 CpuRegister out_reg = locations->Out().AsRegister<CpuRegister>();
1989 CpuRegister second_reg = locations->InAt(1).AsRegister<CpuRegister>();
Calin Juravlebacfec32014-11-14 15:54:36 +00001990
Roland Levillain271ab9c2014-11-27 15:23:57 +00001991 DCHECK_EQ(RAX, locations->InAt(0).AsRegister<CpuRegister>().AsRegister());
Calin Juravlebacfec32014-11-14 15:54:36 +00001992 DCHECK_EQ(is_div ? RAX : RDX, out_reg.AsRegister());
1993
1994 SlowPathCodeX86_64* slow_path =
1995 new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86_64(
1996 out_reg.AsRegister(), type, is_div);
1997 codegen_->AddSlowPath(slow_path);
1998
1999 // 0x80000000(00000000)/-1 triggers an arithmetic exception!
2000 // Dividing by -1 is actually negation and -0x800000000(00000000) = 0x80000000(00000000)
2001 // so it's safe to just use negl instead of more complex comparisons.
2002
2003 __ cmpl(second_reg, Immediate(-1));
2004 __ j(kEqual, slow_path->GetEntryLabel());
2005
2006 if (type == Primitive::kPrimInt) {
2007 // edx:eax <- sign-extended of eax
2008 __ cdq();
2009 // eax = quotient, edx = remainder
2010 __ idivl(second_reg);
2011 } else {
2012 // rdx:rax <- sign-extended of rax
2013 __ cqo();
2014 // rax = quotient, rdx = remainder
2015 __ idivq(second_reg);
2016 }
2017
2018 __ Bind(slow_path->GetExitLabel());
2019}
2020
Calin Juravle7c4954d2014-10-28 16:57:40 +00002021void LocationsBuilderX86_64::VisitDiv(HDiv* div) {
2022 LocationSummary* locations =
2023 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
2024 switch (div->GetResultType()) {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002025 case Primitive::kPrimInt:
2026 case Primitive::kPrimLong: {
Calin Juravled0d48522014-11-04 16:40:20 +00002027 locations->SetInAt(0, Location::RegisterLocation(RAX));
2028 locations->SetInAt(1, Location::RequiresRegister());
2029 locations->SetOut(Location::SameAsFirstInput());
2030 // Intel uses edx:eax as the dividend.
2031 locations->AddTemp(Location::RegisterLocation(RDX));
2032 break;
2033 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002034
Calin Juravle7c4954d2014-10-28 16:57:40 +00002035 case Primitive::kPrimFloat:
2036 case Primitive::kPrimDouble: {
2037 locations->SetInAt(0, Location::RequiresFpuRegister());
2038 locations->SetInAt(1, Location::RequiresFpuRegister());
2039 locations->SetOut(Location::SameAsFirstInput());
2040 break;
2041 }
2042
2043 default:
2044 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2045 }
2046}
2047
2048void InstructionCodeGeneratorX86_64::VisitDiv(HDiv* div) {
2049 LocationSummary* locations = div->GetLocations();
2050 Location first = locations->InAt(0);
2051 Location second = locations->InAt(1);
2052 DCHECK(first.Equals(locations->Out()));
2053
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002054 Primitive::Type type = div->GetResultType();
2055 switch (type) {
2056 case Primitive::kPrimInt:
2057 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00002058 GenerateDivRemIntegral(div);
Calin Juravled0d48522014-11-04 16:40:20 +00002059 break;
2060 }
2061
Calin Juravle7c4954d2014-10-28 16:57:40 +00002062 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002063 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002064 break;
2065 }
2066
2067 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002068 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002069 break;
2070 }
2071
2072 default:
2073 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2074 }
2075}
2076
Calin Juravlebacfec32014-11-14 15:54:36 +00002077void LocationsBuilderX86_64::VisitRem(HRem* rem) {
2078 LocationSummary* locations =
2079 new (GetGraph()->GetArena()) LocationSummary(rem, LocationSummary::kNoCall);
2080 switch (rem->GetResultType()) {
2081 case Primitive::kPrimInt:
2082 case Primitive::kPrimLong: {
2083 locations->SetInAt(0, Location::RegisterLocation(RAX));
2084 locations->SetInAt(1, Location::RequiresRegister());
2085 // Intel uses rdx:rax as the dividend and puts the remainder in rdx
2086 locations->SetOut(Location::RegisterLocation(RDX));
2087 break;
2088 }
2089
2090 case Primitive::kPrimFloat:
2091 case Primitive::kPrimDouble: {
2092 LOG(FATAL) << "Unimplemented rem type " << rem->GetResultType();
2093 break;
2094 }
2095
2096 default:
2097 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
2098 }
2099}
2100
2101void InstructionCodeGeneratorX86_64::VisitRem(HRem* rem) {
2102 Primitive::Type type = rem->GetResultType();
2103 switch (type) {
2104 case Primitive::kPrimInt:
2105 case Primitive::kPrimLong: {
2106 GenerateDivRemIntegral(rem);
2107 break;
2108 }
2109
2110 case Primitive::kPrimFloat:
2111 case Primitive::kPrimDouble: {
2112 LOG(FATAL) << "Unimplemented rem type " << rem->GetResultType();
2113 break;
2114 }
2115
2116 default:
2117 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
2118 }
2119}
2120
Calin Juravled0d48522014-11-04 16:40:20 +00002121void LocationsBuilderX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2122 LocationSummary* locations =
2123 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2124 locations->SetInAt(0, Location::Any());
2125 if (instruction->HasUses()) {
2126 locations->SetOut(Location::SameAsFirstInput());
2127 }
2128}
2129
2130void InstructionCodeGeneratorX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2131 SlowPathCodeX86_64* slow_path =
2132 new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86_64(instruction);
2133 codegen_->AddSlowPath(slow_path);
2134
2135 LocationSummary* locations = instruction->GetLocations();
2136 Location value = locations->InAt(0);
2137
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002138 switch (instruction->GetType()) {
2139 case Primitive::kPrimInt: {
2140 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002141 __ testl(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002142 __ j(kEqual, slow_path->GetEntryLabel());
2143 } else if (value.IsStackSlot()) {
2144 __ cmpl(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
2145 __ j(kEqual, slow_path->GetEntryLabel());
2146 } else {
2147 DCHECK(value.IsConstant()) << value;
2148 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2149 __ jmp(slow_path->GetEntryLabel());
2150 }
2151 }
2152 break;
Calin Juravled0d48522014-11-04 16:40:20 +00002153 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002154 case Primitive::kPrimLong: {
2155 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002156 __ testq(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002157 __ j(kEqual, slow_path->GetEntryLabel());
2158 } else if (value.IsDoubleStackSlot()) {
2159 __ cmpq(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
2160 __ j(kEqual, slow_path->GetEntryLabel());
2161 } else {
2162 DCHECK(value.IsConstant()) << value;
2163 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2164 __ jmp(slow_path->GetEntryLabel());
2165 }
2166 }
2167 break;
2168 }
2169 default:
2170 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00002171 }
Calin Juravled0d48522014-11-04 16:40:20 +00002172}
2173
Calin Juravle9aec02f2014-11-18 23:06:35 +00002174void LocationsBuilderX86_64::HandleShift(HBinaryOperation* op) {
2175 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2176
2177 LocationSummary* locations =
2178 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
2179
2180 switch (op->GetResultType()) {
2181 case Primitive::kPrimInt:
2182 case Primitive::kPrimLong: {
2183 locations->SetInAt(0, Location::RequiresRegister());
2184 // The shift count needs to be in CL.
2185 locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, op->InputAt(1)));
2186 locations->SetOut(Location::SameAsFirstInput());
2187 break;
2188 }
2189 default:
2190 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2191 }
2192}
2193
2194void InstructionCodeGeneratorX86_64::HandleShift(HBinaryOperation* op) {
2195 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2196
2197 LocationSummary* locations = op->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002198 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002199 Location second = locations->InAt(1);
2200
2201 switch (op->GetResultType()) {
2202 case Primitive::kPrimInt: {
2203 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002204 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002205 if (op->IsShl()) {
2206 __ shll(first_reg, second_reg);
2207 } else if (op->IsShr()) {
2208 __ sarl(first_reg, second_reg);
2209 } else {
2210 __ shrl(first_reg, second_reg);
2211 }
2212 } else {
2213 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
2214 if (op->IsShl()) {
2215 __ shll(first_reg, imm);
2216 } else if (op->IsShr()) {
2217 __ sarl(first_reg, imm);
2218 } else {
2219 __ shrl(first_reg, imm);
2220 }
2221 }
2222 break;
2223 }
2224 case Primitive::kPrimLong: {
2225 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002226 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002227 if (op->IsShl()) {
2228 __ shlq(first_reg, second_reg);
2229 } else if (op->IsShr()) {
2230 __ sarq(first_reg, second_reg);
2231 } else {
2232 __ shrq(first_reg, second_reg);
2233 }
2234 } else {
2235 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
2236 if (op->IsShl()) {
2237 __ shlq(first_reg, imm);
2238 } else if (op->IsShr()) {
2239 __ sarq(first_reg, imm);
2240 } else {
2241 __ shrq(first_reg, imm);
2242 }
2243 }
2244 break;
2245 }
2246 default:
2247 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2248 }
2249}
2250
2251void LocationsBuilderX86_64::VisitShl(HShl* shl) {
2252 HandleShift(shl);
2253}
2254
2255void InstructionCodeGeneratorX86_64::VisitShl(HShl* shl) {
2256 HandleShift(shl);
2257}
2258
2259void LocationsBuilderX86_64::VisitShr(HShr* shr) {
2260 HandleShift(shr);
2261}
2262
2263void InstructionCodeGeneratorX86_64::VisitShr(HShr* shr) {
2264 HandleShift(shr);
2265}
2266
2267void LocationsBuilderX86_64::VisitUShr(HUShr* ushr) {
2268 HandleShift(ushr);
2269}
2270
2271void InstructionCodeGeneratorX86_64::VisitUShr(HUShr* ushr) {
2272 HandleShift(ushr);
2273}
2274
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002275void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002276 LocationSummary* locations =
2277 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002278 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002279 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2280 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2281 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002282}
2283
2284void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
2285 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002286 codegen_->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002287 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
2288
2289 __ gs()->call(Address::Absolute(
2290 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocObjectWithAccessCheck), true));
2291
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002292 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002293 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002294}
2295
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002296void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
2297 LocationSummary* locations =
2298 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2299 InvokeRuntimeCallingConvention calling_convention;
2300 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2301 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2302 locations->SetOut(Location::RegisterLocation(RAX));
2303 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
2304}
2305
2306void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
2307 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002308 codegen_->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002309 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
2310
2311 __ gs()->call(Address::Absolute(
2312 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAllocArrayWithAccessCheck), true));
2313
2314 DCHECK(!codegen_->IsLeafMethod());
2315 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2316}
2317
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002318void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002319 LocationSummary* locations =
2320 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002321 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2322 if (location.IsStackSlot()) {
2323 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2324 } else if (location.IsDoubleStackSlot()) {
2325 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2326 }
2327 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002328}
2329
2330void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
2331 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002332 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002333}
2334
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002335void LocationsBuilderX86_64::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002336 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002337 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002338 locations->SetInAt(0, Location::RequiresRegister());
2339 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002340}
2341
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002342void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) {
2343 LocationSummary* locations = not_->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002344 DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(),
2345 locations->Out().AsRegister<CpuRegister>().AsRegister());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002346 Location out = locations->Out();
2347 switch (not_->InputAt(0)->GetType()) {
2348 case Primitive::kPrimBoolean:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002349 __ xorq(out.AsRegister<CpuRegister>(), Immediate(1));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002350 break;
2351
2352 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002353 __ notl(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002354 break;
2355
2356 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002357 __ notq(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002358 break;
2359
2360 default:
2361 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2362 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002363}
2364
2365void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002366 LocationSummary* locations =
2367 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002368 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2369 locations->SetInAt(i, Location::Any());
2370 }
2371 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002372}
2373
2374void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002375 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002376 LOG(FATAL) << "Unimplemented";
2377}
2378
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002379void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002380 LocationSummary* locations =
2381 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002382 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002383 bool needs_write_barrier =
2384 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue());
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002385 locations->SetInAt(0, Location::RequiresRegister());
2386 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002387 if (needs_write_barrier) {
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002388 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002389 locations->AddTemp(Location::RequiresRegister());
2390 locations->AddTemp(Location::RequiresRegister());
2391 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002392}
2393
2394void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
2395 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002396 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002397 size_t offset = instruction->GetFieldOffset().SizeValue();
Nicolas Geoffray39468442014-09-02 15:17:15 +01002398 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002399
2400 switch (field_type) {
2401 case Primitive::kPrimBoolean:
2402 case Primitive::kPrimByte: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002403 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002404 __ movb(Address(obj, offset), value);
2405 break;
2406 }
2407
2408 case Primitive::kPrimShort:
2409 case Primitive::kPrimChar: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002410 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002411 __ movw(Address(obj, offset), value);
2412 break;
2413 }
2414
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002415 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002416 case Primitive::kPrimNot: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002417 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002418 __ movl(Address(obj, offset), value);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002419 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue())) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002420 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
2421 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002422 codegen_->MarkGCCard(temp, card, obj, value);
2423 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002424 break;
2425 }
2426
2427 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002428 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002429 __ movq(Address(obj, offset), value);
2430 break;
2431 }
2432
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002433 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002434 XmmRegister value = locations->InAt(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002435 __ movss(Address(obj, offset), value);
2436 break;
2437 }
2438
2439 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002440 XmmRegister value = locations->InAt(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002441 __ movsd(Address(obj, offset), value);
2442 break;
2443 }
2444
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002445 case Primitive::kPrimVoid:
2446 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002447 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002448 }
2449}
2450
2451void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002452 LocationSummary* locations =
2453 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002454 locations->SetInAt(0, Location::RequiresRegister());
2455 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002456}
2457
2458void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
2459 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002460 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002461 size_t offset = instruction->GetFieldOffset().SizeValue();
2462
2463 switch (instruction->GetType()) {
2464 case Primitive::kPrimBoolean: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002465 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002466 __ movzxb(out, Address(obj, offset));
2467 break;
2468 }
2469
2470 case Primitive::kPrimByte: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002471 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002472 __ movsxb(out, Address(obj, offset));
2473 break;
2474 }
2475
2476 case Primitive::kPrimShort: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002477 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002478 __ movsxw(out, Address(obj, offset));
2479 break;
2480 }
2481
2482 case Primitive::kPrimChar: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002483 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002484 __ movzxw(out, Address(obj, offset));
2485 break;
2486 }
2487
2488 case Primitive::kPrimInt:
2489 case Primitive::kPrimNot: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002490 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002491 __ movl(out, Address(obj, offset));
2492 break;
2493 }
2494
2495 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002496 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002497 __ movq(out, Address(obj, offset));
2498 break;
2499 }
2500
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002501 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002502 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002503 __ movss(out, Address(obj, offset));
2504 break;
2505 }
2506
2507 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002508 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002509 __ movsd(out, Address(obj, offset));
2510 break;
2511 }
2512
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002513 case Primitive::kPrimVoid:
2514 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002515 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002516 }
2517}
2518
2519void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002520 LocationSummary* locations =
2521 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002522 locations->SetInAt(0, Location::Any());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002523 if (instruction->HasUses()) {
2524 locations->SetOut(Location::SameAsFirstInput());
2525 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002526}
2527
2528void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01002529 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002530 codegen_->AddSlowPath(slow_path);
2531
2532 LocationSummary* locations = instruction->GetLocations();
2533 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002534
2535 if (obj.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002536 __ cmpl(obj.AsRegister<CpuRegister>(), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002537 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002538 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002539 } else {
2540 DCHECK(obj.IsConstant()) << obj;
2541 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
2542 __ jmp(slow_path->GetEntryLabel());
2543 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002544 }
2545 __ j(kEqual, slow_path->GetEntryLabel());
2546}
2547
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002548void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002549 LocationSummary* locations =
2550 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002551 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002552 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002553 1, Location::RegisterOrConstant(instruction->InputAt(1)));
2554 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002555}
2556
2557void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
2558 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002559 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002560 Location index = locations->InAt(1);
2561
2562 switch (instruction->GetType()) {
2563 case Primitive::kPrimBoolean: {
2564 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002565 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002566 if (index.IsConstant()) {
2567 __ movzxb(out, Address(obj,
2568 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
2569 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002570 __ movzxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002571 }
2572 break;
2573 }
2574
2575 case Primitive::kPrimByte: {
2576 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002577 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002578 if (index.IsConstant()) {
2579 __ movsxb(out, Address(obj,
2580 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
2581 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002582 __ movsxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002583 }
2584 break;
2585 }
2586
2587 case Primitive::kPrimShort: {
2588 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002589 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002590 if (index.IsConstant()) {
2591 __ movsxw(out, Address(obj,
2592 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
2593 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002594 __ movsxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002595 }
2596 break;
2597 }
2598
2599 case Primitive::kPrimChar: {
2600 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002601 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002602 if (index.IsConstant()) {
2603 __ movzxw(out, Address(obj,
2604 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
2605 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002606 __ movzxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002607 }
2608 break;
2609 }
2610
2611 case Primitive::kPrimInt:
2612 case Primitive::kPrimNot: {
2613 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
2614 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002615 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002616 if (index.IsConstant()) {
2617 __ movl(out, Address(obj,
2618 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
2619 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002620 __ movl(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002621 }
2622 break;
2623 }
2624
2625 case Primitive::kPrimLong: {
2626 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002627 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002628 if (index.IsConstant()) {
2629 __ movq(out, Address(obj,
2630 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
2631 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002632 __ movq(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002633 }
2634 break;
2635 }
2636
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002637 case Primitive::kPrimFloat: {
2638 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002639 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002640 if (index.IsConstant()) {
2641 __ movss(out, Address(obj,
2642 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
2643 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002644 __ movss(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002645 }
2646 break;
2647 }
2648
2649 case Primitive::kPrimDouble: {
2650 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002651 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002652 if (index.IsConstant()) {
2653 __ movsd(out, Address(obj,
2654 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
2655 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002656 __ movsd(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002657 }
2658 break;
2659 }
2660
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002661 case Primitive::kPrimVoid:
2662 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002663 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002664 }
2665}
2666
2667void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002668 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002669
2670 bool needs_write_barrier =
2671 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
2672 bool needs_runtime_call = instruction->NeedsTypeCheck();
2673
Nicolas Geoffray39468442014-09-02 15:17:15 +01002674 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002675 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
2676 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002677 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002678 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2679 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2680 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002681 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002682 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002683 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002684 1, Location::RegisterOrConstant(instruction->InputAt(1)));
2685 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002686 if (value_type == Primitive::kPrimLong) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002687 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002688 } else if (value_type == Primitive::kPrimFloat || value_type == Primitive::kPrimDouble) {
2689 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002690 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002691 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002692 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002693
2694 if (needs_write_barrier) {
2695 // Temporary registers for the write barrier.
2696 locations->AddTemp(Location::RequiresRegister());
2697 locations->AddTemp(Location::RequiresRegister());
2698 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002699 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002700}
2701
2702void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
2703 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002704 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002705 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002706 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01002707 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002708 bool needs_runtime_call = locations->WillCall();
2709 bool needs_write_barrier =
2710 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002711
2712 switch (value_type) {
2713 case Primitive::kPrimBoolean:
2714 case Primitive::kPrimByte: {
2715 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002716 if (index.IsConstant()) {
2717 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002718 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002719 __ movb(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002720 } else {
Roland Levillain199f3362014-11-27 17:15:16 +00002721 __ movb(Address(obj, offset),
2722 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002723 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002724 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002725 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002726 __ movb(Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset),
2727 value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002728 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002729 __ movb(Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002730 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
2731 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002732 }
2733 break;
2734 }
2735
2736 case Primitive::kPrimShort:
2737 case Primitive::kPrimChar: {
2738 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002739 if (index.IsConstant()) {
2740 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002741 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002742 __ movw(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002743 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002744 DCHECK(value.IsConstant()) << value;
Roland Levillain199f3362014-11-27 17:15:16 +00002745 __ movw(Address(obj, offset),
2746 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002747 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002748 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002749 DCHECK(index.IsRegister()) << index;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002750 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002751 __ movw(Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset),
2752 value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002753 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002754 DCHECK(value.IsConstant()) << value;
Roland Levillain271ab9c2014-11-27 15:23:57 +00002755 __ movw(Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002756 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
2757 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002758 }
2759 break;
2760 }
2761
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002762 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002763 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002764 if (!needs_runtime_call) {
2765 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
2766 if (index.IsConstant()) {
2767 size_t offset =
2768 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2769 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002770 __ movl(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002771 } else {
2772 DCHECK(value.IsConstant()) << value;
2773 __ movl(Address(obj, offset),
2774 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
2775 }
2776 } else {
2777 DCHECK(index.IsRegister()) << index;
2778 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002779 __ movl(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
2780 value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002781 } else {
2782 DCHECK(value.IsConstant()) << value;
Roland Levillain271ab9c2014-11-27 15:23:57 +00002783 __ movl(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002784 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
2785 }
2786 }
2787
2788 if (needs_write_barrier) {
2789 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002790 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
2791 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
2792 codegen_->MarkGCCard(temp, card, obj, value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002793 }
2794 } else {
2795 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00002796 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject),
2797 true));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002798 DCHECK(!codegen_->IsLeafMethod());
2799 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2800 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002801 break;
2802 }
2803
2804 case Primitive::kPrimLong: {
2805 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002806 if (index.IsConstant()) {
2807 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002808 DCHECK(value.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002809 __ movq(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002810 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002811 DCHECK(value.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002812 __ movq(Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset),
2813 value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002814 }
2815 break;
2816 }
2817
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002818 case Primitive::kPrimFloat: {
2819 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
2820 if (index.IsConstant()) {
2821 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2822 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002823 __ movss(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002824 } else {
2825 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002826 __ movss(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
2827 value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002828 }
2829 break;
2830 }
2831
2832 case Primitive::kPrimDouble: {
2833 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
2834 if (index.IsConstant()) {
2835 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
2836 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002837 __ movsd(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002838 } else {
2839 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002840 __ movsd(Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset),
2841 value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002842 }
2843 break;
2844 }
2845
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002846 case Primitive::kPrimVoid:
2847 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002848 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002849 }
2850}
2851
2852void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002853 LocationSummary* locations =
2854 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002855 locations->SetInAt(0, Location::RequiresRegister());
2856 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002857}
2858
2859void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
2860 LocationSummary* locations = instruction->GetLocations();
2861 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002862 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
2863 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002864 __ movl(out, Address(obj, offset));
2865}
2866
2867void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002868 LocationSummary* locations =
2869 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002870 locations->SetInAt(0, Location::RequiresRegister());
2871 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002872 if (instruction->HasUses()) {
2873 locations->SetOut(Location::SameAsFirstInput());
2874 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002875}
2876
2877void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
2878 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01002879 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(
Nicolas Geoffray39468442014-09-02 15:17:15 +01002880 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002881 codegen_->AddSlowPath(slow_path);
2882
Roland Levillain271ab9c2014-11-27 15:23:57 +00002883 CpuRegister index = locations->InAt(0).AsRegister<CpuRegister>();
2884 CpuRegister length = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002885
2886 __ cmpl(index, length);
2887 __ j(kAboveEqual, slow_path->GetEntryLabel());
2888}
2889
2890void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
2891 CpuRegister card,
2892 CpuRegister object,
2893 CpuRegister value) {
2894 Label is_null;
2895 __ testl(value, value);
2896 __ j(kEqual, &is_null);
2897 __ gs()->movq(card, Address::Absolute(
2898 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
2899 __ movq(temp, object);
2900 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
2901 __ movb(Address(temp, card, TIMES_1, 0), card);
2902 __ Bind(&is_null);
2903}
2904
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002905void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
2906 temp->SetLocations(nullptr);
2907}
2908
2909void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
2910 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002911 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002912}
2913
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002914void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002915 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002916 LOG(FATAL) << "Unimplemented";
2917}
2918
2919void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002920 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
2921}
2922
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002923void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
2924 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
2925}
2926
2927void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002928 HBasicBlock* block = instruction->GetBlock();
2929 if (block->GetLoopInformation() != nullptr) {
2930 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
2931 // The back edge will generate the suspend check.
2932 return;
2933 }
2934 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
2935 // The goto will generate the suspend check.
2936 return;
2937 }
2938 GenerateSuspendCheck(instruction, nullptr);
2939}
2940
2941void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
2942 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002943 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002944 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002945 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002946 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002947 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002948 if (successor == nullptr) {
2949 __ j(kNotEqual, slow_path->GetEntryLabel());
2950 __ Bind(slow_path->GetReturnLabel());
2951 } else {
2952 __ j(kEqual, codegen_->GetLabelOf(successor));
2953 __ jmp(slow_path->GetEntryLabel());
2954 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002955}
2956
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002957X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
2958 return codegen_->GetAssembler();
2959}
2960
2961void ParallelMoveResolverX86_64::EmitMove(size_t index) {
2962 MoveOperands* move = moves_.Get(index);
2963 Location source = move->GetSource();
2964 Location destination = move->GetDestination();
2965
2966 if (source.IsRegister()) {
2967 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002968 __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002969 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002970 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00002971 source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002972 } else {
2973 DCHECK(destination.IsDoubleStackSlot());
2974 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00002975 source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002976 }
2977 } else if (source.IsStackSlot()) {
2978 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002979 __ movl(destination.AsRegister<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002980 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002981 } else if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002982 __ movss(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002983 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002984 } else {
2985 DCHECK(destination.IsStackSlot());
2986 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
2987 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
2988 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002989 } else if (source.IsDoubleStackSlot()) {
2990 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002991 __ movq(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002992 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002993 } else if (destination.IsFpuRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002994 __ movsd(destination.AsFpuRegister<XmmRegister>(),
2995 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002996 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01002997 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002998 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
2999 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3000 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003001 } else if (source.IsConstant()) {
3002 HConstant* constant = source.GetConstant();
3003 if (constant->IsIntConstant()) {
3004 Immediate imm(constant->AsIntConstant()->GetValue());
3005 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003006 __ movl(destination.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003007 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003008 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003009 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
3010 }
3011 } else if (constant->IsLongConstant()) {
3012 int64_t value = constant->AsLongConstant()->GetValue();
3013 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003014 __ movq(destination.AsRegister<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003015 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003016 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003017 __ movq(CpuRegister(TMP), Immediate(value));
3018 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3019 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003020 } else if (constant->IsFloatConstant()) {
3021 Immediate imm(bit_cast<float, int32_t>(constant->AsFloatConstant()->GetValue()));
3022 if (destination.IsFpuRegister()) {
3023 __ movl(CpuRegister(TMP), imm);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003024 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003025 } else {
3026 DCHECK(destination.IsStackSlot()) << destination;
3027 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
3028 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003029 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003030 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
3031 Immediate imm(bit_cast<double, int64_t>(constant->AsDoubleConstant()->GetValue()));
3032 if (destination.IsFpuRegister()) {
3033 __ movq(CpuRegister(TMP), imm);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003034 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003035 } else {
3036 DCHECK(destination.IsDoubleStackSlot()) << destination;
3037 __ movq(CpuRegister(TMP), imm);
3038 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3039 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003040 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003041 } else if (source.IsFpuRegister()) {
3042 if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003043 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003044 } else if (destination.IsStackSlot()) {
3045 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003046 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003047 } else {
Nicolas Geoffray31596742014-11-24 15:28:45 +00003048 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003049 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003050 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003051 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003052 }
3053}
3054
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003055void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003056 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003057 __ movl(Address(CpuRegister(RSP), mem), reg);
3058 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003059}
3060
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003061void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003062 ScratchRegisterScope ensure_scratch(
3063 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
3064
3065 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
3066 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
3067 __ movl(CpuRegister(ensure_scratch.GetRegister()),
3068 Address(CpuRegister(RSP), mem2 + stack_offset));
3069 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
3070 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
3071 CpuRegister(ensure_scratch.GetRegister()));
3072}
3073
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003074void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
3075 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3076 __ movq(Address(CpuRegister(RSP), mem), reg);
3077 __ movq(reg, CpuRegister(TMP));
3078}
3079
3080void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
3081 ScratchRegisterScope ensure_scratch(
3082 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
3083
3084 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
3085 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
3086 __ movq(CpuRegister(ensure_scratch.GetRegister()),
3087 Address(CpuRegister(RSP), mem2 + stack_offset));
3088 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
3089 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
3090 CpuRegister(ensure_scratch.GetRegister()));
3091}
3092
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003093void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
3094 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3095 __ movss(Address(CpuRegister(RSP), mem), reg);
3096 __ movd(reg, CpuRegister(TMP));
3097}
3098
3099void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
3100 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3101 __ movsd(Address(CpuRegister(RSP), mem), reg);
3102 __ movd(reg, CpuRegister(TMP));
3103}
3104
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003105void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
3106 MoveOperands* move = moves_.Get(index);
3107 Location source = move->GetSource();
3108 Location destination = move->GetDestination();
3109
3110 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003111 __ xchgq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003112 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003113 Exchange32(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003114 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003115 Exchange32(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003116 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003117 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
3118 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003119 Exchange64(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003120 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003121 Exchange64(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003122 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
3123 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003124 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003125 __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>());
3126 __ movaps(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
3127 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003128 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003129 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003130 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003131 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003132 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003133 Exchange64(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003134 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003135 Exchange64(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003136 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003137 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003138 }
3139}
3140
3141
3142void ParallelMoveResolverX86_64::SpillScratch(int reg) {
3143 __ pushq(CpuRegister(reg));
3144}
3145
3146
3147void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
3148 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003149}
3150
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003151void InstructionCodeGeneratorX86_64::GenerateClassInitializationCheck(
3152 SlowPathCodeX86_64* slow_path, CpuRegister class_reg) {
3153 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
3154 Immediate(mirror::Class::kStatusInitialized));
3155 __ j(kLess, slow_path->GetEntryLabel());
3156 __ Bind(slow_path->GetExitLabel());
3157 // No need for memory fence, thanks to the X86_64 memory model.
3158}
3159
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003160void LocationsBuilderX86_64::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003161 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3162 ? LocationSummary::kCallOnSlowPath
3163 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003164 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003165 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003166 locations->SetOut(Location::RequiresRegister());
3167}
3168
3169void InstructionCodeGeneratorX86_64::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003170 CpuRegister out = cls->GetLocations()->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003171 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003172 DCHECK(!cls->CanCallRuntime());
3173 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003174 codegen_->LoadCurrentMethod(out);
3175 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
3176 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003177 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003178 codegen_->LoadCurrentMethod(out);
3179 __ movl(out, Address(out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value()));
3180 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003181 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
3182 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3183 codegen_->AddSlowPath(slow_path);
3184 __ testl(out, out);
3185 __ j(kEqual, slow_path->GetEntryLabel());
3186 if (cls->MustGenerateClinitCheck()) {
3187 GenerateClassInitializationCheck(slow_path, out);
3188 } else {
3189 __ Bind(slow_path->GetExitLabel());
3190 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003191 }
3192}
3193
3194void LocationsBuilderX86_64::VisitClinitCheck(HClinitCheck* check) {
3195 LocationSummary* locations =
3196 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3197 locations->SetInAt(0, Location::RequiresRegister());
3198 if (check->HasUses()) {
3199 locations->SetOut(Location::SameAsFirstInput());
3200 }
3201}
3202
3203void InstructionCodeGeneratorX86_64::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003204 // We assume the class to not be null.
3205 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
3206 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003207 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003208 GenerateClassInitializationCheck(slow_path,
3209 check->GetLocations()->InAt(0).AsRegister<CpuRegister>());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003210}
3211
3212void LocationsBuilderX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3213 LocationSummary* locations =
3214 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3215 locations->SetInAt(0, Location::RequiresRegister());
3216 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3217}
3218
3219void InstructionCodeGeneratorX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3220 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003221 CpuRegister cls = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003222 size_t offset = instruction->GetFieldOffset().SizeValue();
3223
3224 switch (instruction->GetType()) {
3225 case Primitive::kPrimBoolean: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003226 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003227 __ movzxb(out, Address(cls, offset));
3228 break;
3229 }
3230
3231 case Primitive::kPrimByte: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003232 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003233 __ movsxb(out, Address(cls, offset));
3234 break;
3235 }
3236
3237 case Primitive::kPrimShort: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003238 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003239 __ movsxw(out, Address(cls, offset));
3240 break;
3241 }
3242
3243 case Primitive::kPrimChar: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003244 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003245 __ movzxw(out, Address(cls, offset));
3246 break;
3247 }
3248
3249 case Primitive::kPrimInt:
3250 case Primitive::kPrimNot: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003251 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003252 __ movl(out, Address(cls, offset));
3253 break;
3254 }
3255
3256 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003257 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003258 __ movq(out, Address(cls, offset));
3259 break;
3260 }
3261
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003262 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003263 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003264 __ movss(out, Address(cls, offset));
3265 break;
3266 }
3267
3268 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003269 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003270 __ movsd(out, Address(cls, offset));
3271 break;
3272 }
3273
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003274 case Primitive::kPrimVoid:
3275 LOG(FATAL) << "Unreachable type " << instruction->GetType();
3276 UNREACHABLE();
3277 }
3278}
3279
3280void LocationsBuilderX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3281 LocationSummary* locations =
3282 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3283 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003284 bool needs_write_barrier =
3285 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003286 locations->SetInAt(0, Location::RequiresRegister());
3287 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003288 if (needs_write_barrier) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003289 // Temporary registers for the write barrier.
3290 locations->AddTemp(Location::RequiresRegister());
3291 locations->AddTemp(Location::RequiresRegister());
3292 }
3293}
3294
3295void InstructionCodeGeneratorX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3296 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003297 CpuRegister cls = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003298 size_t offset = instruction->GetFieldOffset().SizeValue();
3299 Primitive::Type field_type = instruction->GetFieldType();
3300
3301 switch (field_type) {
3302 case Primitive::kPrimBoolean:
3303 case Primitive::kPrimByte: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003304 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003305 __ movb(Address(cls, offset), value);
3306 break;
3307 }
3308
3309 case Primitive::kPrimShort:
3310 case Primitive::kPrimChar: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003311 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003312 __ movw(Address(cls, offset), value);
3313 break;
3314 }
3315
3316 case Primitive::kPrimInt:
3317 case Primitive::kPrimNot: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003318 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003319 __ movl(Address(cls, offset), value);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003320 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue())) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003321 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
3322 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003323 codegen_->MarkGCCard(temp, card, cls, value);
3324 }
3325 break;
3326 }
3327
3328 case Primitive::kPrimLong: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003329 CpuRegister value = locations->InAt(1).AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003330 __ movq(Address(cls, offset), value);
3331 break;
3332 }
3333
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003334 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003335 XmmRegister value = locations->InAt(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003336 __ movss(Address(cls, offset), value);
3337 break;
3338 }
3339
3340 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003341 XmmRegister value = locations->InAt(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003342 __ movsd(Address(cls, offset), value);
3343 break;
3344 }
3345
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003346 case Primitive::kPrimVoid:
3347 LOG(FATAL) << "Unreachable type " << field_type;
3348 UNREACHABLE();
3349 }
3350}
3351
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003352void LocationsBuilderX86_64::VisitLoadString(HLoadString* load) {
3353 LocationSummary* locations =
3354 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3355 locations->SetOut(Location::RequiresRegister());
3356}
3357
3358void InstructionCodeGeneratorX86_64::VisitLoadString(HLoadString* load) {
3359 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86_64(load);
3360 codegen_->AddSlowPath(slow_path);
3361
Roland Levillain271ab9c2014-11-27 15:23:57 +00003362 CpuRegister out = load->GetLocations()->Out().AsRegister<CpuRegister>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003363 codegen_->LoadCurrentMethod(CpuRegister(out));
Mathieu Chartiereace4582014-11-24 18:29:54 -08003364 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
3365 __ movl(out, Address(out, mirror::Class::DexCacheStringsOffset().Int32Value()));
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003366 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
3367 __ testl(out, out);
3368 __ j(kEqual, slow_path->GetEntryLabel());
3369 __ Bind(slow_path->GetExitLabel());
3370}
3371
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003372void LocationsBuilderX86_64::VisitLoadException(HLoadException* load) {
3373 LocationSummary* locations =
3374 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3375 locations->SetOut(Location::RequiresRegister());
3376}
3377
3378void InstructionCodeGeneratorX86_64::VisitLoadException(HLoadException* load) {
3379 Address address = Address::Absolute(
3380 Thread::ExceptionOffset<kX86_64WordSize>().Int32Value(), true);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003381 __ gs()->movl(load->GetLocations()->Out().AsRegister<CpuRegister>(), address);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003382 __ gs()->movl(address, Immediate(0));
3383}
3384
3385void LocationsBuilderX86_64::VisitThrow(HThrow* instruction) {
3386 LocationSummary* locations =
3387 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3388 InvokeRuntimeCallingConvention calling_convention;
3389 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3390}
3391
3392void InstructionCodeGeneratorX86_64::VisitThrow(HThrow* instruction) {
3393 __ gs()->call(
3394 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pDeliverException), true));
3395 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3396}
3397
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003398void LocationsBuilderX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003399 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3400 ? LocationSummary::kNoCall
3401 : LocationSummary::kCallOnSlowPath;
3402 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3403 locations->SetInAt(0, Location::RequiresRegister());
3404 locations->SetInAt(1, Location::Any());
3405 locations->SetOut(Location::RequiresRegister());
3406}
3407
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003408void InstructionCodeGeneratorX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003409 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003410 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003411 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003412 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003413 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3414 Label done, zero;
3415 SlowPathCodeX86_64* slow_path = nullptr;
3416
3417 // Return 0 if `obj` is null.
3418 // TODO: avoid this check if we know obj is not null.
3419 __ testl(obj, obj);
3420 __ j(kEqual, &zero);
3421 // Compare the class of `obj` with `cls`.
3422 __ movl(out, Address(obj, class_offset));
3423 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003424 __ cmpl(out, cls.AsRegister<CpuRegister>());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003425 } else {
3426 DCHECK(cls.IsStackSlot()) << cls;
3427 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
3428 }
3429 if (instruction->IsClassFinal()) {
3430 // Classes must be equal for the instanceof to succeed.
3431 __ j(kNotEqual, &zero);
3432 __ movl(out, Immediate(1));
3433 __ jmp(&done);
3434 } else {
3435 // If the classes are not equal, we go into a slow path.
3436 DCHECK(locations->OnlyCallsOnSlowPath());
3437 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003438 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003439 codegen_->AddSlowPath(slow_path);
3440 __ j(kNotEqual, slow_path->GetEntryLabel());
3441 __ movl(out, Immediate(1));
3442 __ jmp(&done);
3443 }
3444 __ Bind(&zero);
3445 __ movl(out, Immediate(0));
3446 if (slow_path != nullptr) {
3447 __ Bind(slow_path->GetExitLabel());
3448 }
3449 __ Bind(&done);
3450}
3451
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003452void LocationsBuilderX86_64::VisitCheckCast(HCheckCast* instruction) {
3453 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3454 instruction, LocationSummary::kCallOnSlowPath);
3455 locations->SetInAt(0, Location::RequiresRegister());
3456 locations->SetInAt(1, Location::Any());
3457 locations->AddTemp(Location::RequiresRegister());
3458}
3459
3460void InstructionCodeGeneratorX86_64::VisitCheckCast(HCheckCast* instruction) {
3461 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003462 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003463 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003464 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003465 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3466 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(
3467 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3468 codegen_->AddSlowPath(slow_path);
3469
3470 // TODO: avoid this check if we know obj is not null.
3471 __ testl(obj, obj);
3472 __ j(kEqual, slow_path->GetExitLabel());
3473 // Compare the class of `obj` with `cls`.
3474 __ movl(temp, Address(obj, class_offset));
3475 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003476 __ cmpl(temp, cls.AsRegister<CpuRegister>());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003477 } else {
3478 DCHECK(cls.IsStackSlot()) << cls;
3479 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
3480 }
3481 // Classes must be equal for the checkcast to succeed.
3482 __ j(kNotEqual, slow_path->GetEntryLabel());
3483 __ Bind(slow_path->GetExitLabel());
3484}
3485
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003486void LocationsBuilderX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
3487 LocationSummary* locations =
3488 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3489 InvokeRuntimeCallingConvention calling_convention;
3490 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3491}
3492
3493void InstructionCodeGeneratorX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
3494 __ gs()->call(Address::Absolute(instruction->IsEnter()
3495 ? QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pLockObject)
3496 : QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pUnlockObject),
3497 true));
3498 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3499}
3500
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003501void LocationsBuilderX86_64::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
3502void LocationsBuilderX86_64::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
3503void LocationsBuilderX86_64::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
3504
3505void LocationsBuilderX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
3506 LocationSummary* locations =
3507 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3508 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
3509 || instruction->GetResultType() == Primitive::kPrimLong);
3510 locations->SetInAt(0, Location::RequiresRegister());
3511 if (instruction->GetType() == Primitive::kPrimInt) {
3512 locations->SetInAt(1, Location::Any());
3513 } else {
3514 // Request a register to avoid loading a 64bits constant.
3515 locations->SetInAt(1, Location::RequiresRegister());
3516 }
3517 locations->SetOut(Location::SameAsFirstInput());
3518}
3519
3520void InstructionCodeGeneratorX86_64::VisitAnd(HAnd* instruction) {
3521 HandleBitwiseOperation(instruction);
3522}
3523
3524void InstructionCodeGeneratorX86_64::VisitOr(HOr* instruction) {
3525 HandleBitwiseOperation(instruction);
3526}
3527
3528void InstructionCodeGeneratorX86_64::VisitXor(HXor* instruction) {
3529 HandleBitwiseOperation(instruction);
3530}
3531
3532void InstructionCodeGeneratorX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
3533 LocationSummary* locations = instruction->GetLocations();
3534 Location first = locations->InAt(0);
3535 Location second = locations->InAt(1);
3536 DCHECK(first.Equals(locations->Out()));
3537
3538 if (instruction->GetResultType() == Primitive::kPrimInt) {
3539 if (second.IsRegister()) {
3540 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003541 __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003542 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003543 __ orl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003544 } else {
3545 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003546 __ xorl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003547 }
3548 } else if (second.IsConstant()) {
3549 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
3550 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003551 __ andl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003552 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003553 __ orl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003554 } else {
3555 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003556 __ xorl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003557 }
3558 } else {
3559 Address address(CpuRegister(RSP), second.GetStackIndex());
3560 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003561 __ andl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003562 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003563 __ orl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003564 } else {
3565 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003566 __ xorl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003567 }
3568 }
3569 } else {
3570 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
3571 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003572 __ andq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003573 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003574 __ orq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003575 } else {
3576 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003577 __ xorq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003578 }
3579 }
3580}
3581
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003582} // namespace x86_64
3583} // namespace art