blob: 5b681fa62bdc7c05fa2f0f906a1bc0c483f57149 [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
Guillaume Sanchez0f88e872015-03-30 17:55:45 +010019#include "code_generator_utils.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010020#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010021#include "gc/accounting/card_table.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080022#include "intrinsics.h"
23#include "intrinsics_x86_64.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070024#include "mirror/array-inl.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010025#include "mirror/art_method.h"
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +010026#include "mirror/class.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010027#include "mirror/object_reference.h"
28#include "thread.h"
29#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010030#include "utils/stack_checks.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010031#include "utils/x86_64/assembler_x86_64.h"
32#include "utils/x86_64/managed_register_x86_64.h"
33
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010034namespace art {
35
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010036namespace x86_64 {
37
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010038// Some x86_64 instructions require a register to be available as temp.
39static constexpr Register TMP = R11;
40
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010041static constexpr int kCurrentMethodStackOffset = 0;
42
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +000043static constexpr Register kCoreCalleeSaves[] = { RBX, RBP, R12, R13, R14, R15 };
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000044static constexpr FloatRegister kFpuCalleeSaves[] = { XMM12, XMM13, XMM14, XMM15 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010045
Mark Mendell24f2dfa2015-01-14 19:51:45 -050046static constexpr int kC2ConditionMask = 0x400;
47
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010048
Nicolas Geoffraye5038322014-07-04 09:41:32 +010049#define __ reinterpret_cast<X86_64Assembler*>(codegen->GetAssembler())->
50
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010051class NullCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010052 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010053 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010054
Alexandre Rames2ed20af2015-03-06 13:55:35 +000055 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010056 __ Bind(GetEntryLabel());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010057 __ gs()->call(
58 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowNullPointer), true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +000059 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffraye5038322014-07-04 09:41:32 +010060 }
61
62 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010063 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010064 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86_64);
65};
66
Calin Juravled0d48522014-11-04 16:40:20 +000067class DivZeroCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
68 public:
69 explicit DivZeroCheckSlowPathX86_64(HDivZeroCheck* instruction) : instruction_(instruction) {}
70
Alexandre Rames2ed20af2015-03-06 13:55:35 +000071 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000072 __ Bind(GetEntryLabel());
73 __ gs()->call(
74 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowDivZero), true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +000075 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Calin Juravled0d48522014-11-04 16:40:20 +000076 }
77
78 private:
79 HDivZeroCheck* const instruction_;
80 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86_64);
81};
82
Calin Juravlebacfec32014-11-14 15:54:36 +000083class DivRemMinusOneSlowPathX86_64 : public SlowPathCodeX86_64 {
Calin Juravled0d48522014-11-04 16:40:20 +000084 public:
Calin Juravlebacfec32014-11-14 15:54:36 +000085 explicit DivRemMinusOneSlowPathX86_64(Register reg, Primitive::Type type, bool is_div)
86 : cpu_reg_(CpuRegister(reg)), type_(type), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +000087
Alexandre Rames2ed20af2015-03-06 13:55:35 +000088 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000089 __ Bind(GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +000090 if (type_ == Primitive::kPrimInt) {
Calin Juravlebacfec32014-11-14 15:54:36 +000091 if (is_div_) {
92 __ negl(cpu_reg_);
93 } else {
94 __ movl(cpu_reg_, Immediate(0));
95 }
96
Calin Juravled6fb6cf2014-11-11 19:07:44 +000097 } else {
98 DCHECK_EQ(Primitive::kPrimLong, type_);
Calin Juravlebacfec32014-11-14 15:54:36 +000099 if (is_div_) {
100 __ negq(cpu_reg_);
101 } else {
102 __ movq(cpu_reg_, Immediate(0));
103 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000104 }
Calin Juravled0d48522014-11-04 16:40:20 +0000105 __ jmp(GetExitLabel());
106 }
107
108 private:
Calin Juravlebacfec32014-11-14 15:54:36 +0000109 const CpuRegister cpu_reg_;
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000110 const Primitive::Type type_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000111 const bool is_div_;
112 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86_64);
Calin Juravled0d48522014-11-04 16:40:20 +0000113};
114
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100115class SuspendCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000116 public:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100117 explicit SuspendCheckSlowPathX86_64(HSuspendCheck* instruction, HBasicBlock* successor)
118 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000119
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000120 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100121 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000122 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000123 SaveLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000124 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pTestSuspend), true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000125 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
126 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100127 if (successor_ == nullptr) {
128 __ jmp(GetReturnLabel());
129 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100130 __ jmp(x64_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100131 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000132 }
133
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100134 Label* GetReturnLabel() {
135 DCHECK(successor_ == nullptr);
136 return &return_label_;
137 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000138
139 private:
140 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100141 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000142 Label return_label_;
143
144 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86_64);
145};
146
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100147class BoundsCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100148 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100149 BoundsCheckSlowPathX86_64(HBoundsCheck* instruction,
150 Location index_location,
151 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100152 : instruction_(instruction),
153 index_location_(index_location),
154 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100155
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000156 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100157 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000158 // We're moving two locations to locations that could overlap, so we need a parallel
159 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100160 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000161 codegen->EmitParallelMoves(
162 index_location_,
163 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100164 Primitive::kPrimInt,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000165 length_location_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100166 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
167 Primitive::kPrimInt);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100168 __ gs()->call(Address::Absolute(
169 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pThrowArrayBounds), true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000170 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100171 }
172
173 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100174 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100175 const Location index_location_;
176 const Location length_location_;
177
178 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86_64);
179};
180
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000181class LoadClassSlowPathX86_64 : public SlowPathCodeX86_64 {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100182 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000183 LoadClassSlowPathX86_64(HLoadClass* cls,
184 HInstruction* at,
185 uint32_t dex_pc,
186 bool do_clinit)
187 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
188 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
189 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100190
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000191 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000192 LocationSummary* locations = at_->GetLocations();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100193 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
194 __ Bind(GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100195
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000196 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000197
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100198 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000199 __ movl(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(cls_->GetTypeIndex()));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100200 x64_codegen->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000201 __ gs()->call(Address::Absolute((do_clinit_
202 ? QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInitializeStaticStorage)
203 : QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInitializeType)) , true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000204 RecordPcInfo(codegen, at_, dex_pc_);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100205
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000206 Location out = locations->Out();
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000207 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000208 if (out.IsValid()) {
209 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
210 x64_codegen->Move(out, Location::RegisterLocation(RAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000211 }
212
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000213 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100214 __ jmp(GetExitLabel());
215 }
216
217 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000218 // The class this slow path will load.
219 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100220
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000221 // The instruction where this slow path is happening.
222 // (Might be the load class or an initialization check).
223 HInstruction* const at_;
224
225 // The dex PC of `at_`.
226 const uint32_t dex_pc_;
227
228 // Whether to initialize the class.
229 const bool do_clinit_;
230
231 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86_64);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100232};
233
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000234class LoadStringSlowPathX86_64 : public SlowPathCodeX86_64 {
235 public:
236 explicit LoadStringSlowPathX86_64(HLoadString* instruction) : instruction_(instruction) {}
237
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000238 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000239 LocationSummary* locations = instruction_->GetLocations();
240 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
241
242 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
243 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000244 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000245
246 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800247 x64_codegen->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
248 __ movl(CpuRegister(calling_convention.GetRegisterAt(0)),
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000249 Immediate(instruction_->GetStringIndex()));
250 __ gs()->call(Address::Absolute(
251 QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pResolveString), true));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000252 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000253 x64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000254 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000255 __ jmp(GetExitLabel());
256 }
257
258 private:
259 HLoadString* const instruction_;
260
261 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86_64);
262};
263
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000264class TypeCheckSlowPathX86_64 : public SlowPathCodeX86_64 {
265 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000266 TypeCheckSlowPathX86_64(HInstruction* instruction,
267 Location class_to_check,
268 Location object_class,
269 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000270 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000271 class_to_check_(class_to_check),
272 object_class_(object_class),
273 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000274
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000275 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000276 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000277 DCHECK(instruction_->IsCheckCast()
278 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000279
280 CodeGeneratorX86_64* x64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
281 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000282 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000283
284 // We're moving two locations to locations that could overlap, so we need a parallel
285 // move resolver.
286 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000287 codegen->EmitParallelMoves(
288 class_to_check_,
289 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100290 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000291 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100292 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
293 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000294
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000295 if (instruction_->IsInstanceOf()) {
296 __ gs()->call(
297 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pInstanceofNonTrivial), true));
298 } else {
299 DCHECK(instruction_->IsCheckCast());
300 __ gs()->call(
301 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pCheckCast), true));
302 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000303 RecordPcInfo(codegen, instruction_, dex_pc_);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000304
305 if (instruction_->IsInstanceOf()) {
306 x64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
307 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000308
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000309 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000310 __ jmp(GetExitLabel());
311 }
312
313 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000314 HInstruction* const instruction_;
315 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000316 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000317 const uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000318
319 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86_64);
320};
321
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700322class DeoptimizationSlowPathX86_64 : public SlowPathCodeX86_64 {
323 public:
324 explicit DeoptimizationSlowPathX86_64(HInstruction* instruction)
325 : instruction_(instruction) {}
326
327 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
328 __ Bind(GetEntryLabel());
329 SaveLiveRegisters(codegen, instruction_->GetLocations());
330 __ gs()->call(
331 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pDeoptimize), true));
332 DCHECK(instruction_->IsDeoptimize());
333 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
334 uint32_t dex_pc = deoptimize->GetDexPc();
335 codegen->RecordPcInfo(instruction_, dex_pc, this);
336 }
337
338 private:
339 HInstruction* const instruction_;
340 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86_64);
341};
342
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100343#undef __
344#define __ reinterpret_cast<X86_64Assembler*>(GetAssembler())->
345
Dave Allison20dfc792014-06-16 20:44:29 -0700346inline Condition X86_64Condition(IfCondition cond) {
347 switch (cond) {
348 case kCondEQ: return kEqual;
349 case kCondNE: return kNotEqual;
350 case kCondLT: return kLess;
351 case kCondLE: return kLessEqual;
352 case kCondGT: return kGreater;
353 case kCondGE: return kGreaterEqual;
354 default:
355 LOG(FATAL) << "Unknown if condition";
356 }
357 return kEqual;
358}
359
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800360void CodeGeneratorX86_64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke,
361 CpuRegister temp) {
362 // All registers are assumed to be correctly set up.
363
364 // TODO: Implement all kinds of calls:
365 // 1) boot -> boot
366 // 2) app -> boot
367 // 3) app -> app
368 //
369 // Currently we implement the app -> app logic, which looks up in the resolve cache.
370
371 // temp = method;
372 LoadCurrentMethod(temp);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000373 if (!invoke->IsRecursive()) {
374 // temp = temp->dex_cache_resolved_methods_;
375 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().SizeValue()));
376 // temp = temp[index_in_cache]
377 __ movl(temp, Address(temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex())));
378 // (temp + offset_of_quick_compiled_code)()
379 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
380 kX86_64WordSize).SizeValue()));
381 } else {
382 __ call(&frame_entry_label_);
383 }
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800384
385 DCHECK(!IsLeafMethod());
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800386}
387
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100388void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const {
389 stream << X86_64ManagedRegister::FromCpuRegister(Register(reg));
390}
391
392void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
393 stream << X86_64ManagedRegister::FromXmmRegister(FloatRegister(reg));
394}
395
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100396size_t CodeGeneratorX86_64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
397 __ movq(Address(CpuRegister(RSP), stack_index), CpuRegister(reg_id));
398 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100399}
400
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100401size_t CodeGeneratorX86_64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
402 __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_index));
403 return kX86_64WordSize;
404}
405
406size_t CodeGeneratorX86_64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
407 __ movsd(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id));
408 return kX86_64WordSize;
409}
410
411size_t CodeGeneratorX86_64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
412 __ movsd(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index));
413 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100414}
415
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000416static constexpr int kNumberOfCpuRegisterPairs = 0;
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +0000417// Use a fake return address register to mimic Quick.
418static constexpr Register kFakeReturnRegister = Register(kLastCpuRegister + 1);
Mark Mendellfb8d2792015-03-31 22:16:59 -0400419CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph,
420 const X86_64InstructionSetFeatures& isa_features,
421 const CompilerOptions& compiler_options)
Nicolas Geoffray98893962015-01-21 12:32:32 +0000422 : CodeGenerator(graph,
423 kNumberOfCpuRegisters,
424 kNumberOfFloatRegisters,
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000425 kNumberOfCpuRegisterPairs,
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000426 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
427 arraysize(kCoreCalleeSaves))
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +0000428 | (1 << kFakeReturnRegister),
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000429 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
430 arraysize(kFpuCalleeSaves)),
Nicolas Geoffray98893962015-01-21 12:32:32 +0000431 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100432 block_labels_(graph->GetArena(), 0),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100433 location_builder_(graph, this),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000434 instruction_visitor_(graph, this),
Mark Mendellfb8d2792015-03-31 22:16:59 -0400435 move_resolver_(graph->GetArena(), this),
Mark Mendellf55c3e02015-03-26 21:07:46 -0400436 isa_features_(isa_features),
437 constant_area_start_(0) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000438 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
439}
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100440
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100441InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph,
442 CodeGeneratorX86_64* codegen)
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100443 : HGraphVisitor(graph),
444 assembler_(codegen->GetAssembler()),
445 codegen_(codegen) {}
446
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100447Location CodeGeneratorX86_64::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100448 switch (type) {
449 case Primitive::kPrimLong:
450 case Primitive::kPrimByte:
451 case Primitive::kPrimBoolean:
452 case Primitive::kPrimChar:
453 case Primitive::kPrimShort:
454 case Primitive::kPrimInt:
455 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100456 size_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100457 return Location::RegisterLocation(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100458 }
459
460 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100461 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100462 size_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfFloatRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100463 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100464 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100465
466 case Primitive::kPrimVoid:
467 LOG(FATAL) << "Unreachable type " << type;
468 }
469
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100470 return Location();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100471}
472
Nicolas Geoffray98893962015-01-21 12:32:32 +0000473void CodeGeneratorX86_64::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100474 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100475 blocked_core_registers_[RSP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100476
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000477 // Block the register used as TMP.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100478 blocked_core_registers_[TMP] = true;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000479
Nicolas Geoffray98893962015-01-21 12:32:32 +0000480 if (is_baseline) {
481 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
482 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
483 }
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000484 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
485 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
486 }
Nicolas Geoffray98893962015-01-21 12:32:32 +0000487 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100488}
489
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100490static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100491 return dwarf::Reg::X86_64Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100492}
David Srbecky9d8606d2015-04-12 09:35:32 +0100493
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100494static dwarf::Reg DWARFReg(FloatRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100495 return dwarf::Reg::X86_64Fp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100496}
497
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100498void CodeGeneratorX86_64::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100499 __ cfi().SetCurrentCFAOffset(kX86_64WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000500 __ Bind(&frame_entry_label_);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100501 bool skip_overflow_check = IsLeafMethod()
Dave Allison648d7112014-07-25 16:15:27 -0700502 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000503 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100504
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000505 if (!skip_overflow_check) {
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100506 __ testq(CpuRegister(RAX), Address(
507 CpuRegister(RSP), -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86_64))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100508 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100509 }
Nicolas Geoffraya26369a2015-01-22 08:46:05 +0000510
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000511 if (HasEmptyFrame()) {
512 return;
513 }
514
Nicolas Geoffray98893962015-01-21 12:32:32 +0000515 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000516 Register reg = kCoreCalleeSaves[i];
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +0000517 if (allocated_registers_.ContainsCoreRegister(reg)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000518 __ pushq(CpuRegister(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100519 __ cfi().AdjustCFAOffset(kX86_64WordSize);
520 __ cfi().RelOffset(DWARFReg(reg), 0);
Nicolas Geoffray98893962015-01-21 12:32:32 +0000521 }
522 }
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +0100523
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100524 int adjust = GetFrameSize() - GetCoreSpillSize();
525 __ subq(CpuRegister(RSP), Immediate(adjust));
526 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000527 uint32_t xmm_spill_location = GetFpuSpillStart();
528 size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize();
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100529
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000530 for (int i = arraysize(kFpuCalleeSaves) - 1; i >= 0; --i) {
531 if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100532 int offset = xmm_spill_location + (xmm_spill_slot_size * i);
533 __ movsd(Address(CpuRegister(RSP), offset), XmmRegister(kFpuCalleeSaves[i]));
534 __ cfi().RelOffset(DWARFReg(kFpuCalleeSaves[i]), offset);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000535 }
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100536 }
537
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100538 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI));
539}
540
541void CodeGeneratorX86_64::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +0100542 __ cfi().RememberState();
543 if (!HasEmptyFrame()) {
544 uint32_t xmm_spill_location = GetFpuSpillStart();
545 size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize();
546 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
547 if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) {
548 int offset = xmm_spill_location + (xmm_spill_slot_size * i);
549 __ movsd(XmmRegister(kFpuCalleeSaves[i]), Address(CpuRegister(RSP), offset));
550 __ cfi().Restore(DWARFReg(kFpuCalleeSaves[i]));
551 }
552 }
553
554 int adjust = GetFrameSize() - GetCoreSpillSize();
555 __ addq(CpuRegister(RSP), Immediate(adjust));
556 __ cfi().AdjustCFAOffset(-adjust);
557
558 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
559 Register reg = kCoreCalleeSaves[i];
560 if (allocated_registers_.ContainsCoreRegister(reg)) {
561 __ popq(CpuRegister(reg));
562 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86_64WordSize));
563 __ cfi().Restore(DWARFReg(reg));
564 }
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000565 }
566 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100567 __ ret();
568 __ cfi().RestoreState();
569 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100570}
571
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100572void CodeGeneratorX86_64::Bind(HBasicBlock* block) {
573 __ Bind(GetLabelOf(block));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100574}
575
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100576void CodeGeneratorX86_64::LoadCurrentMethod(CpuRegister reg) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000577 DCHECK(RequiresCurrentMethod());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100578 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
579}
580
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100581Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
582 switch (load->GetType()) {
583 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100584 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100585 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100586
587 case Primitive::kPrimInt:
588 case Primitive::kPrimNot:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100589 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100590 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100591
592 case Primitive::kPrimBoolean:
593 case Primitive::kPrimByte:
594 case Primitive::kPrimChar:
595 case Primitive::kPrimShort:
596 case Primitive::kPrimVoid:
597 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700598 UNREACHABLE();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100599 }
600
601 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700602 UNREACHABLE();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100603}
604
605void CodeGeneratorX86_64::Move(Location destination, Location source) {
606 if (source.Equals(destination)) {
607 return;
608 }
609 if (destination.IsRegister()) {
610 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000611 __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100612 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000613 __ movd(destination.AsRegister<CpuRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100614 } else if (source.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000615 __ movl(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100616 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100617 } else {
618 DCHECK(source.IsDoubleStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000619 __ movq(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100620 Address(CpuRegister(RSP), source.GetStackIndex()));
621 }
622 } else if (destination.IsFpuRegister()) {
623 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000624 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100625 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000626 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100627 } else if (source.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000628 __ movss(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100629 Address(CpuRegister(RSP), source.GetStackIndex()));
630 } else {
631 DCHECK(source.IsDoubleStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000632 __ movsd(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100633 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100634 }
635 } else if (destination.IsStackSlot()) {
636 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100637 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000638 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100639 } else if (source.IsFpuRegister()) {
640 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000641 source.AsFpuRegister<XmmRegister>());
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500642 } else if (source.IsConstant()) {
643 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000644 int32_t value = GetInt32ValueOf(constant);
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500645 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100646 } else {
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500647 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000648 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
649 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100650 }
651 } else {
652 DCHECK(destination.IsDoubleStackSlot());
653 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100654 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000655 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100656 } else if (source.IsFpuRegister()) {
657 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +0000658 source.AsFpuRegister<XmmRegister>());
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500659 } else if (source.IsConstant()) {
660 HConstant* constant = source.GetConstant();
Zheng Xu12bca972015-03-30 19:35:50 +0800661 int64_t value;
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500662 if (constant->IsDoubleConstant()) {
Roland Levillainda4d79b2015-03-24 14:36:11 +0000663 value = bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue());
Mark Mendell24f2dfa2015-01-14 19:51:45 -0500664 } else {
665 DCHECK(constant->IsLongConstant());
666 value = constant->AsLongConstant()->GetValue();
667 }
668 __ movq(CpuRegister(TMP), Immediate(value));
669 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100670 } else {
671 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000672 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
673 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100674 }
675 }
676}
677
Nicolas Geoffray412f10c2014-06-19 10:00:34 +0100678void CodeGeneratorX86_64::Move(HInstruction* instruction,
679 Location location,
680 HInstruction* move_for) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000681 LocationSummary* locations = instruction->GetLocations();
682 if (locations != nullptr && locations->Out().Equals(location)) {
683 return;
684 }
685
686 if (locations != nullptr && locations->Out().IsConstant()) {
687 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000688 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
689 Immediate imm(GetInt32ValueOf(const_to_move));
Calin Juravlea21f5982014-11-13 15:53:04 +0000690 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000691 __ movl(location.AsRegister<CpuRegister>(), imm);
Calin Juravlea21f5982014-11-13 15:53:04 +0000692 } else if (location.IsStackSlot()) {
693 __ movl(Address(CpuRegister(RSP), location.GetStackIndex()), imm);
694 } else {
695 DCHECK(location.IsConstant());
696 DCHECK_EQ(location.GetConstant(), const_to_move);
697 }
698 } else if (const_to_move->IsLongConstant()) {
699 int64_t value = const_to_move->AsLongConstant()->GetValue();
700 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000701 __ movq(location.AsRegister<CpuRegister>(), Immediate(value));
Calin Juravlea21f5982014-11-13 15:53:04 +0000702 } else if (location.IsDoubleStackSlot()) {
703 __ movq(CpuRegister(TMP), Immediate(value));
704 __ movq(Address(CpuRegister(RSP), location.GetStackIndex()), CpuRegister(TMP));
705 } else {
706 DCHECK(location.IsConstant());
707 DCHECK_EQ(location.GetConstant(), const_to_move);
708 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100709 }
Roland Levillain476df552014-10-09 17:51:36 +0100710 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100711 switch (instruction->GetType()) {
712 case Primitive::kPrimBoolean:
713 case Primitive::kPrimByte:
714 case Primitive::kPrimChar:
715 case Primitive::kPrimShort:
716 case Primitive::kPrimInt:
717 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100718 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100719 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
720 break;
721
722 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100723 case Primitive::kPrimDouble:
Roland Levillain199f3362014-11-27 17:15:16 +0000724 Move(location,
725 Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100726 break;
727
728 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100729 LOG(FATAL) << "Unexpected local type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100730 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000731 } else if (instruction->IsTemporary()) {
732 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
733 Move(location, temp_location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100734 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100735 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100736 switch (instruction->GetType()) {
737 case Primitive::kPrimBoolean:
738 case Primitive::kPrimByte:
739 case Primitive::kPrimChar:
740 case Primitive::kPrimShort:
741 case Primitive::kPrimInt:
742 case Primitive::kPrimNot:
743 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100744 case Primitive::kPrimFloat:
745 case Primitive::kPrimDouble:
Calin Juravlea21f5982014-11-13 15:53:04 +0000746 Move(location, locations->Out());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100747 break;
748
749 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100750 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100751 }
752 }
753}
754
755void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
756 got->SetLocations(nullptr);
757}
758
759void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
760 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100761 DCHECK(!successor->IsExitBlock());
762
763 HBasicBlock* block = got->GetBlock();
764 HInstruction* previous = got->GetPrevious();
765
766 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000767 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100768 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
769 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
770 return;
771 }
772
773 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
774 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
775 }
776 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100777 __ jmp(codegen_->GetLabelOf(successor));
778 }
779}
780
781void LocationsBuilderX86_64::VisitExit(HExit* exit) {
782 exit->SetLocations(nullptr);
783}
784
785void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700786 UNUSED(exit);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100787}
788
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700789void InstructionCodeGeneratorX86_64::GenerateTestAndBranch(HInstruction* instruction,
790 Label* true_target,
791 Label* false_target,
792 Label* always_true_target) {
793 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100794 if (cond->IsIntConstant()) {
795 // Constant condition, statically compared against 1.
796 int32_t cond_value = cond->AsIntConstant()->GetValue();
797 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700798 if (always_true_target != nullptr) {
799 __ jmp(always_true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100800 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100801 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100802 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100803 DCHECK_EQ(cond_value, 0);
804 }
805 } else {
806 bool materialized =
807 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
808 // Moves do not affect the eflags register, so if the condition is
809 // evaluated just before the if, we don't need to evaluate it
810 // again.
811 bool eflags_set = cond->IsCondition()
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700812 && cond->AsCondition()->IsBeforeWhenDisregardMoves(instruction);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100813 if (materialized) {
814 if (!eflags_set) {
815 // Materialized condition, compare against 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700816 Location lhs = instruction->GetLocations()->InAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100817 if (lhs.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +0000818 __ testl(lhs.AsRegister<CpuRegister>(), lhs.AsRegister<CpuRegister>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100819 } else {
820 __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()),
821 Immediate(0));
822 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700823 __ j(kNotEqual, true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100824 } else {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700825 __ j(X86_64Condition(cond->AsCondition()->GetCondition()), true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100826 }
827 } else {
828 Location lhs = cond->GetLocations()->InAt(0);
829 Location rhs = cond->GetLocations()->InAt(1);
830 if (rhs.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000831 __ cmpl(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100832 } else if (rhs.IsConstant()) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000833 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Nicolas Geoffray748f1402015-01-27 08:17:54 +0000834 if (constant == 0) {
835 __ testl(lhs.AsRegister<CpuRegister>(), lhs.AsRegister<CpuRegister>());
836 } else {
837 __ cmpl(lhs.AsRegister<CpuRegister>(), Immediate(constant));
838 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100839 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000840 __ cmpl(lhs.AsRegister<CpuRegister>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100841 Address(CpuRegister(RSP), rhs.GetStackIndex()));
842 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700843 __ j(X86_64Condition(cond->AsCondition()->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -0700844 }
Dave Allison20dfc792014-06-16 20:44:29 -0700845 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700846 if (false_target != nullptr) {
847 __ jmp(false_target);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100848 }
849}
850
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700851void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
852 LocationSummary* locations =
853 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
854 HInstruction* cond = if_instr->InputAt(0);
855 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
856 locations->SetInAt(0, Location::Any());
857 }
858}
859
860void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
861 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
862 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
863 Label* always_true_target = true_target;
864 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
865 if_instr->IfTrueSuccessor())) {
866 always_true_target = nullptr;
867 }
868 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
869 if_instr->IfFalseSuccessor())) {
870 false_target = nullptr;
871 }
872 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
873}
874
875void LocationsBuilderX86_64::VisitDeoptimize(HDeoptimize* deoptimize) {
876 LocationSummary* locations = new (GetGraph()->GetArena())
877 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
878 HInstruction* cond = deoptimize->InputAt(0);
879 DCHECK(cond->IsCondition());
880 if (cond->AsCondition()->NeedsMaterialization()) {
881 locations->SetInAt(0, Location::Any());
882 }
883}
884
885void InstructionCodeGeneratorX86_64::VisitDeoptimize(HDeoptimize* deoptimize) {
886 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena())
887 DeoptimizationSlowPathX86_64(deoptimize);
888 codegen_->AddSlowPath(slow_path);
889 Label* slow_path_entry = slow_path->GetEntryLabel();
890 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
891}
892
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100893void LocationsBuilderX86_64::VisitLocal(HLocal* local) {
894 local->SetLocations(nullptr);
895}
896
897void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) {
898 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
899}
900
901void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
902 local->SetLocations(nullptr);
903}
904
905void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load) {
906 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700907 UNUSED(load);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100908}
909
910void LocationsBuilderX86_64::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100911 LocationSummary* locations =
912 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100913 switch (store->InputAt(1)->GetType()) {
914 case Primitive::kPrimBoolean:
915 case Primitive::kPrimByte:
916 case Primitive::kPrimChar:
917 case Primitive::kPrimShort:
918 case Primitive::kPrimInt:
919 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100920 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100921 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
922 break;
923
924 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100925 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100926 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
927 break;
928
929 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100930 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100931 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100932}
933
934void InstructionCodeGeneratorX86_64::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700935 UNUSED(store);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100936}
937
Dave Allison20dfc792014-06-16 20:44:29 -0700938void LocationsBuilderX86_64::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100939 LocationSummary* locations =
940 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100941 locations->SetInAt(0, Location::RequiresRegister());
942 locations->SetInAt(1, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100943 if (comp->NeedsMaterialization()) {
944 locations->SetOut(Location::RequiresRegister());
945 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100946}
947
Dave Allison20dfc792014-06-16 20:44:29 -0700948void InstructionCodeGeneratorX86_64::VisitCondition(HCondition* comp) {
949 if (comp->NeedsMaterialization()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100950 LocationSummary* locations = comp->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +0000951 CpuRegister reg = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100952 // Clear register: setcc only sets the low byte.
953 __ xorq(reg, reg);
Nicolas Geoffray748f1402015-01-27 08:17:54 +0000954 Location lhs = locations->InAt(0);
955 Location rhs = locations->InAt(1);
956 if (rhs.IsRegister()) {
957 __ cmpl(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
958 } else if (rhs.IsConstant()) {
Mingyao Yangdc5ac732015-02-25 11:28:05 -0800959 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Nicolas Geoffray748f1402015-01-27 08:17:54 +0000960 if (constant == 0) {
961 __ testl(lhs.AsRegister<CpuRegister>(), lhs.AsRegister<CpuRegister>());
962 } else {
963 __ cmpl(lhs.AsRegister<CpuRegister>(), Immediate(constant));
964 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100965 } else {
Nicolas Geoffray748f1402015-01-27 08:17:54 +0000966 __ cmpl(lhs.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), rhs.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100967 }
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100968 __ setcc(X86_64Condition(comp->GetCondition()), reg);
Dave Allison20dfc792014-06-16 20:44:29 -0700969 }
970}
971
972void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
973 VisitCondition(comp);
974}
975
976void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) {
977 VisitCondition(comp);
978}
979
980void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) {
981 VisitCondition(comp);
982}
983
984void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) {
985 VisitCondition(comp);
986}
987
988void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) {
989 VisitCondition(comp);
990}
991
992void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) {
993 VisitCondition(comp);
994}
995
996void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
997 VisitCondition(comp);
998}
999
1000void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1001 VisitCondition(comp);
1002}
1003
1004void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) {
1005 VisitCondition(comp);
1006}
1007
1008void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) {
1009 VisitCondition(comp);
1010}
1011
1012void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1013 VisitCondition(comp);
1014}
1015
1016void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1017 VisitCondition(comp);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001018}
1019
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001020void LocationsBuilderX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001021 LocationSummary* locations =
1022 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00001023 switch (compare->InputAt(0)->GetType()) {
1024 case Primitive::kPrimLong: {
1025 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04001026 locations->SetInAt(1, Location::RegisterOrInt32LongConstant(compare->InputAt(1)));
Calin Juravleddb7df22014-11-25 20:56:51 +00001027 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1028 break;
1029 }
1030 case Primitive::kPrimFloat:
1031 case Primitive::kPrimDouble: {
1032 locations->SetInAt(0, Location::RequiresFpuRegister());
1033 locations->SetInAt(1, Location::RequiresFpuRegister());
1034 locations->SetOut(Location::RequiresRegister());
1035 break;
1036 }
1037 default:
1038 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
1039 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001040}
1041
1042void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001043 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001044 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Calin Juravleddb7df22014-11-25 20:56:51 +00001045 Location left = locations->InAt(0);
1046 Location right = locations->InAt(1);
1047
1048 Label less, greater, done;
1049 Primitive::Type type = compare->InputAt(0)->GetType();
1050 switch (type) {
1051 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04001052 CpuRegister left_reg = left.AsRegister<CpuRegister>();
1053 if (right.IsConstant()) {
1054 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
1055 DCHECK(IsInt<32>(value));
1056 if (value == 0) {
1057 __ testq(left_reg, left_reg);
1058 } else {
1059 __ cmpq(left_reg, Immediate(static_cast<int32_t>(value)));
1060 }
1061 } else {
1062 __ cmpq(left_reg, right.AsRegister<CpuRegister>());
1063 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001064 break;
Calin Juravleddb7df22014-11-25 20:56:51 +00001065 }
1066 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001067 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00001068 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
1069 break;
1070 }
1071 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001072 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00001073 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
1074 break;
1075 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001076 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00001077 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001078 }
Calin Juravleddb7df22014-11-25 20:56:51 +00001079 __ movl(out, Immediate(0));
Calin Juravle91debbc2014-11-26 19:01:09 +00001080 __ j(kEqual, &done);
Calin Juravleddb7df22014-11-25 20:56:51 +00001081 __ j(type == Primitive::kPrimLong ? kLess : kBelow, &less); // ucomis{s,d} sets CF (kBelow)
Calin Juravlefd861242014-11-25 20:56:51 +00001082
Calin Juravle91debbc2014-11-26 19:01:09 +00001083 __ Bind(&greater);
Calin Juravleddb7df22014-11-25 20:56:51 +00001084 __ movl(out, Immediate(1));
1085 __ jmp(&done);
1086
1087 __ Bind(&less);
1088 __ movl(out, Immediate(-1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001089
1090 __ Bind(&done);
1091}
1092
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001093void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001094 LocationSummary* locations =
1095 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001096 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001097}
1098
1099void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001100 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001101 UNUSED(constant);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001102}
1103
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001104void LocationsBuilderX86_64::VisitNullConstant(HNullConstant* constant) {
1105 LocationSummary* locations =
1106 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1107 locations->SetOut(Location::ConstantLocation(constant));
1108}
1109
1110void InstructionCodeGeneratorX86_64::VisitNullConstant(HNullConstant* constant) {
1111 // Will be generated at use site.
1112 UNUSED(constant);
1113}
1114
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001115void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001116 LocationSummary* locations =
1117 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001118 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001119}
1120
1121void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001122 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001123 UNUSED(constant);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001124}
1125
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001126void LocationsBuilderX86_64::VisitFloatConstant(HFloatConstant* constant) {
1127 LocationSummary* locations =
1128 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1129 locations->SetOut(Location::ConstantLocation(constant));
1130}
1131
1132void InstructionCodeGeneratorX86_64::VisitFloatConstant(HFloatConstant* constant) {
1133 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001134 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001135}
1136
1137void LocationsBuilderX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
1138 LocationSummary* locations =
1139 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1140 locations->SetOut(Location::ConstantLocation(constant));
1141}
1142
1143void InstructionCodeGeneratorX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
1144 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001145 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001146}
1147
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001148void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) {
1149 ret->SetLocations(nullptr);
1150}
1151
1152void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001153 UNUSED(ret);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001154 codegen_->GenerateFrameExit();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001155}
1156
1157void LocationsBuilderX86_64::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001158 LocationSummary* locations =
1159 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001160 switch (ret->InputAt(0)->GetType()) {
1161 case Primitive::kPrimBoolean:
1162 case Primitive::kPrimByte:
1163 case Primitive::kPrimChar:
1164 case Primitive::kPrimShort:
1165 case Primitive::kPrimInt:
1166 case Primitive::kPrimNot:
1167 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001168 locations->SetInAt(0, Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001169 break;
1170
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001171 case Primitive::kPrimFloat:
1172 case Primitive::kPrimDouble:
1173 locations->SetInAt(0,
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001174 Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001175 break;
1176
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001177 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001178 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001179 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001180}
1181
1182void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) {
1183 if (kIsDebugBuild) {
1184 switch (ret->InputAt(0)->GetType()) {
1185 case Primitive::kPrimBoolean:
1186 case Primitive::kPrimByte:
1187 case Primitive::kPrimChar:
1188 case Primitive::kPrimShort:
1189 case Primitive::kPrimInt:
1190 case Primitive::kPrimNot:
1191 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001192 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<CpuRegister>().AsRegister(), RAX);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001193 break;
1194
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001195 case Primitive::kPrimFloat:
1196 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001197 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>().AsFloatRegister(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001198 XMM0);
1199 break;
1200
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001201 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001202 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001203 }
1204 }
1205 codegen_->GenerateFrameExit();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001206}
1207
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001208Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
1209 switch (type) {
1210 case Primitive::kPrimBoolean:
1211 case Primitive::kPrimByte:
1212 case Primitive::kPrimChar:
1213 case Primitive::kPrimShort:
1214 case Primitive::kPrimInt:
1215 case Primitive::kPrimNot: {
1216 uint32_t index = gp_index_++;
1217 stack_index_++;
1218 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001219 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001220 } else {
1221 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1222 }
1223 }
1224
1225 case Primitive::kPrimLong: {
1226 uint32_t index = gp_index_;
1227 stack_index_ += 2;
1228 if (index < calling_convention.GetNumberOfRegisters()) {
1229 gp_index_ += 1;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001230 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001231 } else {
1232 gp_index_ += 2;
1233 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1234 }
1235 }
1236
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001237 case Primitive::kPrimFloat: {
1238 uint32_t index = fp_index_++;
1239 stack_index_++;
1240 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001241 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001242 } else {
1243 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1244 }
1245 }
1246
1247 case Primitive::kPrimDouble: {
1248 uint32_t index = fp_index_++;
1249 stack_index_ += 2;
1250 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001251 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001252 } else {
1253 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1254 }
1255 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001256
1257 case Primitive::kPrimVoid:
1258 LOG(FATAL) << "Unexpected parameter type " << type;
1259 break;
1260 }
1261 return Location();
1262}
1263
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001264void LocationsBuilderX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Mark Mendellfb8d2792015-03-31 22:16:59 -04001265 IntrinsicLocationsBuilderX86_64 intrinsic(codegen_);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001266 if (intrinsic.TryDispatch(invoke)) {
1267 return;
1268 }
1269
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001270 HandleInvoke(invoke);
1271}
1272
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001273static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86_64* codegen) {
1274 if (invoke->GetLocations()->Intrinsified()) {
1275 IntrinsicCodeGeneratorX86_64 intrinsic(codegen);
1276 intrinsic.Dispatch(invoke);
1277 return true;
1278 }
1279 return false;
1280}
1281
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001282void InstructionCodeGeneratorX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001283 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1284 return;
1285 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001286
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001287 codegen_->GenerateStaticOrDirectCall(
1288 invoke,
1289 invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001290 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001291}
1292
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001293void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001294 LocationSummary* locations =
1295 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001296 locations->AddTemp(Location::RegisterLocation(RDI));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001297
1298 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001299 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001300 HInstruction* input = invoke->InputAt(i);
1301 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1302 }
1303
1304 switch (invoke->GetType()) {
1305 case Primitive::kPrimBoolean:
1306 case Primitive::kPrimByte:
1307 case Primitive::kPrimChar:
1308 case Primitive::kPrimShort:
1309 case Primitive::kPrimInt:
1310 case Primitive::kPrimNot:
1311 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001312 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001313 break;
1314
1315 case Primitive::kPrimVoid:
1316 break;
1317
1318 case Primitive::kPrimDouble:
1319 case Primitive::kPrimFloat:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001320 locations->SetOut(Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001321 break;
1322 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001323}
1324
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001325void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Mark Mendellfb8d2792015-03-31 22:16:59 -04001326 IntrinsicLocationsBuilderX86_64 intrinsic(codegen_);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001327 if (intrinsic.TryDispatch(invoke)) {
1328 return;
1329 }
1330
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001331 HandleInvoke(invoke);
1332}
1333
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001334void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe71fb52f2014-12-29 17:43:08 -08001335 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1336 return;
1337 }
1338
Roland Levillain271ab9c2014-11-27 15:23:57 +00001339 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001340 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
1341 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1342 LocationSummary* locations = invoke->GetLocations();
1343 Location receiver = locations->InAt(0);
1344 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
1345 // temp = object->GetClass();
1346 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001347 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
1348 __ movl(temp, Address(temp, class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001349 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001350 __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001351 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001352 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001353 // temp = temp->GetMethodAt(method_offset);
1354 __ movl(temp, Address(temp, method_offset));
1355 // call temp->GetEntryPoint();
Mathieu Chartier2d721012014-11-10 11:08:06 -08001356 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001357 kX86_64WordSize).SizeValue()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001358
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001359 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001360 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001361}
1362
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001363void LocationsBuilderX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
1364 HandleInvoke(invoke);
1365 // Add the hidden argument.
1366 invoke->GetLocations()->AddTemp(Location::RegisterLocation(RAX));
1367}
1368
1369void InstructionCodeGeneratorX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
1370 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001371 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001372 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1373 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1374 LocationSummary* locations = invoke->GetLocations();
1375 Location receiver = locations->InAt(0);
1376 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
1377
1378 // Set the hidden argument.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001379 __ movq(invoke->GetLocations()->GetTemp(1).AsRegister<CpuRegister>(),
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001380 Immediate(invoke->GetDexMethodIndex()));
1381
1382 // temp = object->GetClass();
1383 if (receiver.IsStackSlot()) {
1384 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
1385 __ movl(temp, Address(temp, class_offset));
1386 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001387 __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001388 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001389 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001390 // temp = temp->GetImtEntryAt(method_offset);
1391 __ movl(temp, Address(temp, method_offset));
1392 // call temp->GetEntryPoint();
Mathieu Chartier2d721012014-11-10 11:08:06 -08001393 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001394 kX86_64WordSize).SizeValue()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001395
1396 DCHECK(!codegen_->IsLeafMethod());
1397 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1398}
1399
Roland Levillain88cb1752014-10-20 16:36:47 +01001400void LocationsBuilderX86_64::VisitNeg(HNeg* neg) {
1401 LocationSummary* locations =
1402 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1403 switch (neg->GetResultType()) {
1404 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001405 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01001406 locations->SetInAt(0, Location::RequiresRegister());
1407 locations->SetOut(Location::SameAsFirstInput());
1408 break;
1409
Roland Levillain88cb1752014-10-20 16:36:47 +01001410 case Primitive::kPrimFloat:
1411 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001412 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00001413 locations->SetOut(Location::SameAsFirstInput());
1414 locations->AddTemp(Location::RequiresRegister());
1415 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01001416 break;
1417
1418 default:
1419 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1420 }
1421}
1422
1423void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) {
1424 LocationSummary* locations = neg->GetLocations();
1425 Location out = locations->Out();
1426 Location in = locations->InAt(0);
1427 switch (neg->GetResultType()) {
1428 case Primitive::kPrimInt:
1429 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001430 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001431 __ negl(out.AsRegister<CpuRegister>());
Roland Levillain88cb1752014-10-20 16:36:47 +01001432 break;
1433
1434 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001435 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001436 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001437 __ negq(out.AsRegister<CpuRegister>());
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001438 break;
1439
Roland Levillain5368c212014-11-27 15:03:41 +00001440 case Primitive::kPrimFloat: {
1441 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001442 CpuRegister constant = locations->GetTemp(0).AsRegister<CpuRegister>();
1443 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001444 // Implement float negation with an exclusive or with value
1445 // 0x80000000 (mask for bit 31, representing the sign of a
1446 // single-precision floating-point number).
1447 __ movq(constant, Immediate(INT64_C(0x80000000)));
1448 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001449 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00001450 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001451 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00001452
Roland Levillain5368c212014-11-27 15:03:41 +00001453 case Primitive::kPrimDouble: {
1454 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001455 CpuRegister constant = locations->GetTemp(0).AsRegister<CpuRegister>();
1456 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001457 // Implement double negation with an exclusive or with value
Roland Levillain3dbcb382014-10-28 17:30:07 +00001458 // 0x8000000000000000 (mask for bit 63, representing the sign of
Roland Levillain5368c212014-11-27 15:03:41 +00001459 // a double-precision floating-point number).
1460 __ movq(constant, Immediate(INT64_C(0x8000000000000000)));
1461 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001462 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01001463 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001464 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001465
1466 default:
1467 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1468 }
1469}
1470
Roland Levillaindff1f282014-11-05 14:15:05 +00001471void LocationsBuilderX86_64::VisitTypeConversion(HTypeConversion* conversion) {
1472 LocationSummary* locations =
1473 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
1474 Primitive::Type result_type = conversion->GetResultType();
1475 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001476 DCHECK_NE(result_type, input_type);
David Brazdil46e2a392015-03-16 17:31:52 +00001477
David Brazdilb2bd1c52015-03-25 11:17:37 +00001478 // The Java language does not allow treating boolean as an integral type but
1479 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001480
Roland Levillaindff1f282014-11-05 14:15:05 +00001481 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001482 case Primitive::kPrimByte:
1483 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001484 case Primitive::kPrimBoolean:
1485 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001486 case Primitive::kPrimShort:
1487 case Primitive::kPrimInt:
1488 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001489 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001490 locations->SetInAt(0, Location::Any());
1491 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1492 break;
1493
1494 default:
1495 LOG(FATAL) << "Unexpected type conversion from " << input_type
1496 << " to " << result_type;
1497 }
1498 break;
1499
Roland Levillain01a8d712014-11-14 16:27:39 +00001500 case Primitive::kPrimShort:
1501 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001502 case Primitive::kPrimBoolean:
1503 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001504 case Primitive::kPrimByte:
1505 case Primitive::kPrimInt:
1506 case Primitive::kPrimChar:
1507 // Processing a Dex `int-to-short' instruction.
1508 locations->SetInAt(0, Location::Any());
1509 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1510 break;
1511
1512 default:
1513 LOG(FATAL) << "Unexpected type conversion from " << input_type
1514 << " to " << result_type;
1515 }
1516 break;
1517
Roland Levillain946e1432014-11-11 17:35:19 +00001518 case Primitive::kPrimInt:
1519 switch (input_type) {
1520 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001521 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001522 locations->SetInAt(0, Location::Any());
1523 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1524 break;
1525
1526 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001527 // Processing a Dex `float-to-int' instruction.
1528 locations->SetInAt(0, Location::RequiresFpuRegister());
1529 locations->SetOut(Location::RequiresRegister());
1530 locations->AddTemp(Location::RequiresFpuRegister());
1531 break;
1532
Roland Levillain946e1432014-11-11 17:35:19 +00001533 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001534 // Processing a Dex `double-to-int' instruction.
1535 locations->SetInAt(0, Location::RequiresFpuRegister());
1536 locations->SetOut(Location::RequiresRegister());
1537 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001538 break;
1539
1540 default:
1541 LOG(FATAL) << "Unexpected type conversion from " << input_type
1542 << " to " << result_type;
1543 }
1544 break;
1545
Roland Levillaindff1f282014-11-05 14:15:05 +00001546 case Primitive::kPrimLong:
1547 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001548 case Primitive::kPrimBoolean:
1549 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001550 case Primitive::kPrimByte:
1551 case Primitive::kPrimShort:
1552 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001553 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001554 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001555 // TODO: We would benefit from a (to-be-implemented)
1556 // Location::RegisterOrStackSlot requirement for this input.
1557 locations->SetInAt(0, Location::RequiresRegister());
1558 locations->SetOut(Location::RequiresRegister());
1559 break;
1560
1561 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001562 // Processing a Dex `float-to-long' instruction.
1563 locations->SetInAt(0, Location::RequiresFpuRegister());
1564 locations->SetOut(Location::RequiresRegister());
1565 locations->AddTemp(Location::RequiresFpuRegister());
1566 break;
1567
Roland Levillaindff1f282014-11-05 14:15:05 +00001568 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001569 // Processing a Dex `double-to-long' instruction.
1570 locations->SetInAt(0, Location::RequiresFpuRegister());
1571 locations->SetOut(Location::RequiresRegister());
1572 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillaindff1f282014-11-05 14:15:05 +00001573 break;
1574
1575 default:
1576 LOG(FATAL) << "Unexpected type conversion from " << input_type
1577 << " to " << result_type;
1578 }
1579 break;
1580
Roland Levillain981e4542014-11-14 11:47:14 +00001581 case Primitive::kPrimChar:
1582 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001583 case Primitive::kPrimBoolean:
1584 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001585 case Primitive::kPrimByte:
1586 case Primitive::kPrimShort:
1587 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001588 // Processing a Dex `int-to-char' instruction.
1589 locations->SetInAt(0, Location::Any());
1590 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1591 break;
1592
1593 default:
1594 LOG(FATAL) << "Unexpected type conversion from " << input_type
1595 << " to " << result_type;
1596 }
1597 break;
1598
Roland Levillaindff1f282014-11-05 14:15:05 +00001599 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001600 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001601 case Primitive::kPrimBoolean:
1602 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001603 case Primitive::kPrimByte:
1604 case Primitive::kPrimShort:
1605 case Primitive::kPrimInt:
1606 case Primitive::kPrimChar:
1607 // Processing a Dex `int-to-float' instruction.
1608 locations->SetInAt(0, Location::RequiresRegister());
1609 locations->SetOut(Location::RequiresFpuRegister());
1610 break;
1611
1612 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001613 // Processing a Dex `long-to-float' instruction.
1614 locations->SetInAt(0, Location::RequiresRegister());
1615 locations->SetOut(Location::RequiresFpuRegister());
1616 break;
1617
Roland Levillaincff13742014-11-17 14:32:17 +00001618 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001619 // Processing a Dex `double-to-float' instruction.
1620 locations->SetInAt(0, Location::RequiresFpuRegister());
1621 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001622 break;
1623
1624 default:
1625 LOG(FATAL) << "Unexpected type conversion from " << input_type
1626 << " to " << result_type;
1627 };
1628 break;
1629
Roland Levillaindff1f282014-11-05 14:15:05 +00001630 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001631 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001632 case Primitive::kPrimBoolean:
1633 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001634 case Primitive::kPrimByte:
1635 case Primitive::kPrimShort:
1636 case Primitive::kPrimInt:
1637 case Primitive::kPrimChar:
1638 // Processing a Dex `int-to-double' instruction.
1639 locations->SetInAt(0, Location::RequiresRegister());
1640 locations->SetOut(Location::RequiresFpuRegister());
1641 break;
1642
1643 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001644 // Processing a Dex `long-to-double' instruction.
1645 locations->SetInAt(0, Location::RequiresRegister());
1646 locations->SetOut(Location::RequiresFpuRegister());
1647 break;
1648
Roland Levillaincff13742014-11-17 14:32:17 +00001649 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001650 // Processing a Dex `float-to-double' instruction.
1651 locations->SetInAt(0, Location::RequiresFpuRegister());
1652 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001653 break;
1654
1655 default:
1656 LOG(FATAL) << "Unexpected type conversion from " << input_type
1657 << " to " << result_type;
1658 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001659 break;
1660
1661 default:
1662 LOG(FATAL) << "Unexpected type conversion from " << input_type
1663 << " to " << result_type;
1664 }
1665}
1666
1667void InstructionCodeGeneratorX86_64::VisitTypeConversion(HTypeConversion* conversion) {
1668 LocationSummary* locations = conversion->GetLocations();
1669 Location out = locations->Out();
1670 Location in = locations->InAt(0);
1671 Primitive::Type result_type = conversion->GetResultType();
1672 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001673 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001674 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001675 case Primitive::kPrimByte:
1676 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001677 case Primitive::kPrimBoolean:
1678 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001679 case Primitive::kPrimShort:
1680 case Primitive::kPrimInt:
1681 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001682 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001683 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001684 __ movsxb(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain51d3fc42014-11-13 14:11:42 +00001685 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001686 __ movsxb(out.AsRegister<CpuRegister>(),
Roland Levillain51d3fc42014-11-13 14:11:42 +00001687 Address(CpuRegister(RSP), in.GetStackIndex()));
1688 } else {
1689 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001690 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain51d3fc42014-11-13 14:11:42 +00001691 Immediate(static_cast<int8_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1692 }
1693 break;
1694
1695 default:
1696 LOG(FATAL) << "Unexpected type conversion from " << input_type
1697 << " to " << result_type;
1698 }
1699 break;
1700
Roland Levillain01a8d712014-11-14 16:27:39 +00001701 case Primitive::kPrimShort:
1702 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001703 case Primitive::kPrimBoolean:
1704 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001705 case Primitive::kPrimByte:
1706 case Primitive::kPrimInt:
1707 case Primitive::kPrimChar:
1708 // Processing a Dex `int-to-short' instruction.
1709 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001710 __ movsxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain01a8d712014-11-14 16:27:39 +00001711 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001712 __ movsxw(out.AsRegister<CpuRegister>(),
Roland Levillain01a8d712014-11-14 16:27:39 +00001713 Address(CpuRegister(RSP), in.GetStackIndex()));
1714 } else {
1715 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001716 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain01a8d712014-11-14 16:27:39 +00001717 Immediate(static_cast<int16_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1718 }
1719 break;
1720
1721 default:
1722 LOG(FATAL) << "Unexpected type conversion from " << input_type
1723 << " to " << result_type;
1724 }
1725 break;
1726
Roland Levillain946e1432014-11-11 17:35:19 +00001727 case Primitive::kPrimInt:
1728 switch (input_type) {
1729 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001730 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001731 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001732 __ movl(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain946e1432014-11-11 17:35:19 +00001733 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001734 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain946e1432014-11-11 17:35:19 +00001735 Address(CpuRegister(RSP), in.GetStackIndex()));
1736 } else {
1737 DCHECK(in.IsConstant());
1738 DCHECK(in.GetConstant()->IsLongConstant());
1739 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001740 __ movl(out.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00001741 }
1742 break;
1743
Roland Levillain3f8f9362014-12-02 17:45:01 +00001744 case Primitive::kPrimFloat: {
1745 // Processing a Dex `float-to-int' instruction.
1746 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1747 CpuRegister output = out.AsRegister<CpuRegister>();
1748 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1749 Label done, nan;
1750
1751 __ movl(output, Immediate(kPrimIntMax));
1752 // temp = int-to-float(output)
Roland Levillain624279f2014-12-04 11:54:28 +00001753 __ cvtsi2ss(temp, output, false);
Roland Levillain3f8f9362014-12-02 17:45:01 +00001754 // if input >= temp goto done
1755 __ comiss(input, temp);
1756 __ j(kAboveEqual, &done);
1757 // if input == NaN goto nan
1758 __ j(kUnordered, &nan);
1759 // output = float-to-int-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00001760 __ cvttss2si(output, input, false);
Roland Levillain3f8f9362014-12-02 17:45:01 +00001761 __ jmp(&done);
1762 __ Bind(&nan);
1763 // output = 0
1764 __ xorl(output, output);
1765 __ Bind(&done);
1766 break;
1767 }
1768
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001769 case Primitive::kPrimDouble: {
1770 // Processing a Dex `double-to-int' instruction.
1771 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1772 CpuRegister output = out.AsRegister<CpuRegister>();
1773 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1774 Label done, nan;
1775
1776 __ movl(output, Immediate(kPrimIntMax));
1777 // temp = int-to-double(output)
1778 __ cvtsi2sd(temp, output);
1779 // if input >= temp goto done
1780 __ comisd(input, temp);
1781 __ j(kAboveEqual, &done);
1782 // if input == NaN goto nan
1783 __ j(kUnordered, &nan);
1784 // output = double-to-int-truncate(input)
1785 __ cvttsd2si(output, input);
1786 __ jmp(&done);
1787 __ Bind(&nan);
1788 // output = 0
1789 __ xorl(output, output);
1790 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00001791 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001792 }
Roland Levillain946e1432014-11-11 17:35:19 +00001793
1794 default:
1795 LOG(FATAL) << "Unexpected type conversion from " << input_type
1796 << " to " << result_type;
1797 }
1798 break;
1799
Roland Levillaindff1f282014-11-05 14:15:05 +00001800 case Primitive::kPrimLong:
1801 switch (input_type) {
1802 DCHECK(out.IsRegister());
David Brazdil46e2a392015-03-16 17:31:52 +00001803 case Primitive::kPrimBoolean:
1804 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001805 case Primitive::kPrimByte:
1806 case Primitive::kPrimShort:
1807 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001808 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001809 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001810 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001811 __ movsxd(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillaindff1f282014-11-05 14:15:05 +00001812 break;
1813
Roland Levillain624279f2014-12-04 11:54:28 +00001814 case Primitive::kPrimFloat: {
1815 // Processing a Dex `float-to-long' instruction.
1816 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1817 CpuRegister output = out.AsRegister<CpuRegister>();
1818 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1819 Label done, nan;
1820
1821 __ movq(output, Immediate(kPrimLongMax));
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001822 // temp = long-to-float(output)
Roland Levillain624279f2014-12-04 11:54:28 +00001823 __ cvtsi2ss(temp, output, true);
1824 // if input >= temp goto done
1825 __ comiss(input, temp);
1826 __ j(kAboveEqual, &done);
1827 // if input == NaN goto nan
1828 __ j(kUnordered, &nan);
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001829 // output = float-to-long-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00001830 __ cvttss2si(output, input, true);
1831 __ jmp(&done);
1832 __ Bind(&nan);
1833 // output = 0
1834 __ xorq(output, output);
1835 __ Bind(&done);
1836 break;
1837 }
1838
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001839 case Primitive::kPrimDouble: {
1840 // Processing a Dex `double-to-long' instruction.
1841 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1842 CpuRegister output = out.AsRegister<CpuRegister>();
1843 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1844 Label done, nan;
1845
1846 __ movq(output, Immediate(kPrimLongMax));
1847 // temp = long-to-double(output)
1848 __ cvtsi2sd(temp, output, true);
1849 // if input >= temp goto done
1850 __ comisd(input, temp);
1851 __ j(kAboveEqual, &done);
1852 // if input == NaN goto nan
1853 __ j(kUnordered, &nan);
1854 // output = double-to-long-truncate(input)
1855 __ cvttsd2si(output, input, true);
1856 __ jmp(&done);
1857 __ Bind(&nan);
1858 // output = 0
1859 __ xorq(output, output);
1860 __ Bind(&done);
Roland Levillaindff1f282014-11-05 14:15:05 +00001861 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001862 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001863
1864 default:
1865 LOG(FATAL) << "Unexpected type conversion from " << input_type
1866 << " to " << result_type;
1867 }
1868 break;
1869
Roland Levillain981e4542014-11-14 11:47:14 +00001870 case Primitive::kPrimChar:
1871 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001872 case Primitive::kPrimBoolean:
1873 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001874 case Primitive::kPrimByte:
1875 case Primitive::kPrimShort:
1876 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001877 // Processing a Dex `int-to-char' instruction.
1878 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001879 __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain981e4542014-11-14 11:47:14 +00001880 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001881 __ movzxw(out.AsRegister<CpuRegister>(),
Roland Levillain981e4542014-11-14 11:47:14 +00001882 Address(CpuRegister(RSP), in.GetStackIndex()));
1883 } else {
1884 DCHECK(in.GetConstant()->IsIntConstant());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001885 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain981e4542014-11-14 11:47:14 +00001886 Immediate(static_cast<uint16_t>(in.GetConstant()->AsIntConstant()->GetValue())));
1887 }
1888 break;
1889
1890 default:
1891 LOG(FATAL) << "Unexpected type conversion from " << input_type
1892 << " to " << result_type;
1893 }
1894 break;
1895
Roland Levillaindff1f282014-11-05 14:15:05 +00001896 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001897 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001898 case Primitive::kPrimBoolean:
1899 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001900 case Primitive::kPrimByte:
1901 case Primitive::kPrimShort:
1902 case Primitive::kPrimInt:
1903 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001904 // Processing a Dex `int-to-float' instruction.
1905 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
Roland Levillaincff13742014-11-17 14:32:17 +00001906 break;
1907
1908 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001909 // Processing a Dex `long-to-float' instruction.
1910 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
1911 break;
1912
Roland Levillaincff13742014-11-17 14:32:17 +00001913 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001914 // Processing a Dex `double-to-float' instruction.
1915 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001916 break;
1917
1918 default:
1919 LOG(FATAL) << "Unexpected type conversion from " << input_type
1920 << " to " << result_type;
1921 };
1922 break;
1923
Roland Levillaindff1f282014-11-05 14:15:05 +00001924 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001925 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001926 case Primitive::kPrimBoolean:
1927 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001928 case Primitive::kPrimByte:
1929 case Primitive::kPrimShort:
1930 case Primitive::kPrimInt:
1931 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001932 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001933 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
Roland Levillaincff13742014-11-17 14:32:17 +00001934 break;
1935
1936 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001937 // Processing a Dex `long-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001938 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
Roland Levillain647b9ed2014-11-27 12:06:00 +00001939 break;
1940
Roland Levillaincff13742014-11-17 14:32:17 +00001941 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001942 // Processing a Dex `float-to-double' instruction.
1943 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001944 break;
1945
1946 default:
1947 LOG(FATAL) << "Unexpected type conversion from " << input_type
1948 << " to " << result_type;
1949 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001950 break;
1951
1952 default:
1953 LOG(FATAL) << "Unexpected type conversion from " << input_type
1954 << " to " << result_type;
1955 }
1956}
1957
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001958void LocationsBuilderX86_64::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001959 LocationSummary* locations =
1960 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001961 switch (add->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001962 case Primitive::kPrimInt: {
1963 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray748f1402015-01-27 08:17:54 +00001964 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
1965 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001966 break;
1967 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001968
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001969 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001970 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell09b84632015-02-13 17:48:38 -05001971 // We can use a leaq or addq if the constant can fit in an immediate.
Mark Mendell3f6c7f62015-03-13 13:47:53 -04001972 locations->SetInAt(1, Location::RegisterOrInt32LongConstant(add->InputAt(1)));
Mark Mendell09b84632015-02-13 17:48:38 -05001973 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001974 break;
1975 }
1976
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001977 case Primitive::kPrimDouble:
1978 case Primitive::kPrimFloat: {
1979 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04001980 locations->SetInAt(1, Location::Any());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001981 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001982 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001983 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001984
1985 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001986 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001987 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001988}
1989
1990void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) {
1991 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001992 Location first = locations->InAt(0);
1993 Location second = locations->InAt(1);
Nicolas Geoffray748f1402015-01-27 08:17:54 +00001994 Location out = locations->Out();
Calin Juravle11351682014-10-23 15:38:15 +01001995
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001996 switch (add->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001997 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001998 if (second.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00001999 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2000 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2001 } else {
2002 __ leal(out.AsRegister<CpuRegister>(), Address(
2003 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2004 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002005 } else if (second.IsConstant()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002006 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2007 __ addl(out.AsRegister<CpuRegister>(),
2008 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
2009 } else {
2010 __ leal(out.AsRegister<CpuRegister>(), Address(
2011 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue()));
2012 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002013 } else {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002014 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002015 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002016 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002017 break;
2018 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002019
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002020 case Primitive::kPrimLong: {
Mark Mendell09b84632015-02-13 17:48:38 -05002021 if (second.IsRegister()) {
2022 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2023 __ addq(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2024 } else {
2025 __ leaq(out.AsRegister<CpuRegister>(), Address(
2026 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2027 }
2028 } else {
2029 DCHECK(second.IsConstant());
2030 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2031 int32_t int32_value = Low32Bits(value);
2032 DCHECK_EQ(int32_value, value);
2033 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2034 __ addq(out.AsRegister<CpuRegister>(), Immediate(int32_value));
2035 } else {
2036 __ leaq(out.AsRegister<CpuRegister>(), Address(
2037 first.AsRegister<CpuRegister>(), int32_value));
2038 }
2039 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002040 break;
2041 }
2042
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002043 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002044 if (second.IsFpuRegister()) {
2045 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2046 } else if (second.IsConstant()) {
2047 __ addss(first.AsFpuRegister<XmmRegister>(),
2048 codegen_->LiteralFloatAddress(second.GetConstant()->AsFloatConstant()->GetValue()));
2049 } else {
2050 DCHECK(second.IsStackSlot());
2051 __ addss(first.AsFpuRegister<XmmRegister>(),
2052 Address(CpuRegister(RSP), second.GetStackIndex()));
2053 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002054 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002055 }
2056
2057 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002058 if (second.IsFpuRegister()) {
2059 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2060 } else if (second.IsConstant()) {
2061 __ addsd(first.AsFpuRegister<XmmRegister>(),
2062 codegen_->LiteralDoubleAddress(second.GetConstant()->AsDoubleConstant()->GetValue()));
2063 } else {
2064 DCHECK(second.IsDoubleStackSlot());
2065 __ addsd(first.AsFpuRegister<XmmRegister>(),
2066 Address(CpuRegister(RSP), second.GetStackIndex()));
2067 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002068 break;
2069 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002070
2071 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002072 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002073 }
2074}
2075
2076void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002077 LocationSummary* locations =
2078 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002079 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002080 case Primitive::kPrimInt: {
2081 locations->SetInAt(0, Location::RequiresRegister());
2082 locations->SetInAt(1, Location::Any());
2083 locations->SetOut(Location::SameAsFirstInput());
2084 break;
2085 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002086 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002087 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002088 locations->SetInAt(1, Location::RegisterOrInt32LongConstant(sub->InputAt(1)));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002089 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002090 break;
2091 }
Calin Juravle11351682014-10-23 15:38:15 +01002092 case Primitive::kPrimFloat:
2093 case Primitive::kPrimDouble: {
2094 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04002095 locations->SetInAt(1, Location::Any());
Calin Juravle11351682014-10-23 15:38:15 +01002096 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002097 break;
Calin Juravle11351682014-10-23 15:38:15 +01002098 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002099 default:
Calin Juravle11351682014-10-23 15:38:15 +01002100 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002101 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002102}
2103
2104void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
2105 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002106 Location first = locations->InAt(0);
2107 Location second = locations->InAt(1);
2108 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002109 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002110 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01002111 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002112 __ subl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01002113 } else if (second.IsConstant()) {
2114 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002115 __ subl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002116 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002117 __ subl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002118 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002119 break;
2120 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002121 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002122 if (second.IsConstant()) {
2123 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2124 DCHECK(IsInt<32>(value));
2125 __ subq(first.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value)));
2126 } else {
2127 __ subq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2128 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002129 break;
2130 }
2131
Calin Juravle11351682014-10-23 15:38:15 +01002132 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002133 if (second.IsFpuRegister()) {
2134 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2135 } else if (second.IsConstant()) {
2136 __ subss(first.AsFpuRegister<XmmRegister>(),
2137 codegen_->LiteralFloatAddress(second.GetConstant()->AsFloatConstant()->GetValue()));
2138 } else {
2139 DCHECK(second.IsStackSlot());
2140 __ subss(first.AsFpuRegister<XmmRegister>(),
2141 Address(CpuRegister(RSP), second.GetStackIndex()));
2142 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002143 break;
Calin Juravle11351682014-10-23 15:38:15 +01002144 }
2145
2146 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002147 if (second.IsFpuRegister()) {
2148 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2149 } else if (second.IsConstant()) {
2150 __ subsd(first.AsFpuRegister<XmmRegister>(),
2151 codegen_->LiteralDoubleAddress(second.GetConstant()->AsDoubleConstant()->GetValue()));
2152 } else {
2153 DCHECK(second.IsDoubleStackSlot());
2154 __ subsd(first.AsFpuRegister<XmmRegister>(),
2155 Address(CpuRegister(RSP), second.GetStackIndex()));
2156 }
Calin Juravle11351682014-10-23 15:38:15 +01002157 break;
2158 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002159
2160 default:
Calin Juravle11351682014-10-23 15:38:15 +01002161 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002162 }
2163}
2164
Calin Juravle34bacdf2014-10-07 20:23:36 +01002165void LocationsBuilderX86_64::VisitMul(HMul* mul) {
2166 LocationSummary* locations =
2167 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2168 switch (mul->GetResultType()) {
2169 case Primitive::kPrimInt: {
2170 locations->SetInAt(0, Location::RequiresRegister());
2171 locations->SetInAt(1, Location::Any());
2172 locations->SetOut(Location::SameAsFirstInput());
2173 break;
2174 }
2175 case Primitive::kPrimLong: {
2176 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002177 locations->SetInAt(1, Location::RegisterOrInt32LongConstant(mul->InputAt(1)));
2178 if (locations->InAt(1).IsConstant()) {
2179 // Can use 3 operand multiply.
2180 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2181 } else {
2182 locations->SetOut(Location::SameAsFirstInput());
2183 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002184 break;
2185 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002186 case Primitive::kPrimFloat:
2187 case Primitive::kPrimDouble: {
2188 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04002189 locations->SetInAt(1, Location::Any());
Calin Juravleb5bfa962014-10-21 18:02:24 +01002190 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002191 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002192 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002193
2194 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002195 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002196 }
2197}
2198
2199void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
2200 LocationSummary* locations = mul->GetLocations();
2201 Location first = locations->InAt(0);
2202 Location second = locations->InAt(1);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002203 switch (mul->GetResultType()) {
2204 case Primitive::kPrimInt: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002205 DCHECK(first.Equals(locations->Out()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01002206 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002207 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002208 } else if (second.IsConstant()) {
2209 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002210 __ imull(first.AsRegister<CpuRegister>(), imm);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002211 } else {
2212 DCHECK(second.IsStackSlot());
Roland Levillain199f3362014-11-27 17:15:16 +00002213 __ imull(first.AsRegister<CpuRegister>(),
2214 Address(CpuRegister(RSP), second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01002215 }
2216 break;
2217 }
2218 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002219 if (second.IsConstant()) {
2220 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2221 DCHECK(IsInt<32>(value));
2222 __ imulq(locations->Out().AsRegister<CpuRegister>(),
2223 first.AsRegister<CpuRegister>(),
2224 Immediate(static_cast<int32_t>(value)));
2225 } else {
2226 DCHECK(first.Equals(locations->Out()));
2227 __ imulq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2228 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002229 break;
2230 }
2231
Calin Juravleb5bfa962014-10-21 18:02:24 +01002232 case Primitive::kPrimFloat: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002233 DCHECK(first.Equals(locations->Out()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04002234 if (second.IsFpuRegister()) {
2235 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2236 } else if (second.IsConstant()) {
2237 __ mulss(first.AsFpuRegister<XmmRegister>(),
2238 codegen_->LiteralFloatAddress(second.GetConstant()->AsFloatConstant()->GetValue()));
2239 } else {
2240 DCHECK(second.IsStackSlot());
2241 __ mulss(first.AsFpuRegister<XmmRegister>(),
2242 Address(CpuRegister(RSP), second.GetStackIndex()));
2243 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002244 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002245 }
2246
2247 case Primitive::kPrimDouble: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002248 DCHECK(first.Equals(locations->Out()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04002249 if (second.IsFpuRegister()) {
2250 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2251 } else if (second.IsConstant()) {
2252 __ mulsd(first.AsFpuRegister<XmmRegister>(),
2253 codegen_->LiteralDoubleAddress(second.GetConstant()->AsDoubleConstant()->GetValue()));
2254 } else {
2255 DCHECK(second.IsDoubleStackSlot());
2256 __ mulsd(first.AsFpuRegister<XmmRegister>(),
2257 Address(CpuRegister(RSP), second.GetStackIndex()));
2258 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002259 break;
2260 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002261
2262 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002263 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002264 }
2265}
2266
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002267void InstructionCodeGeneratorX86_64::PushOntoFPStack(Location source, uint32_t temp_offset,
2268 uint32_t stack_adjustment, bool is_float) {
2269 if (source.IsStackSlot()) {
2270 DCHECK(is_float);
2271 __ flds(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment));
2272 } else if (source.IsDoubleStackSlot()) {
2273 DCHECK(!is_float);
2274 __ fldl(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment));
2275 } else {
2276 // Write the value to the temporary location on the stack and load to FP stack.
2277 if (is_float) {
2278 Location stack_temp = Location::StackSlot(temp_offset);
2279 codegen_->Move(stack_temp, source);
2280 __ flds(Address(CpuRegister(RSP), temp_offset));
2281 } else {
2282 Location stack_temp = Location::DoubleStackSlot(temp_offset);
2283 codegen_->Move(stack_temp, source);
2284 __ fldl(Address(CpuRegister(RSP), temp_offset));
2285 }
2286 }
2287}
2288
2289void InstructionCodeGeneratorX86_64::GenerateRemFP(HRem *rem) {
2290 Primitive::Type type = rem->GetResultType();
2291 bool is_float = type == Primitive::kPrimFloat;
2292 size_t elem_size = Primitive::ComponentSize(type);
2293 LocationSummary* locations = rem->GetLocations();
2294 Location first = locations->InAt(0);
2295 Location second = locations->InAt(1);
2296 Location out = locations->Out();
2297
2298 // Create stack space for 2 elements.
2299 // TODO: enhance register allocator to ask for stack temporaries.
2300 __ subq(CpuRegister(RSP), Immediate(2 * elem_size));
2301
2302 // Load the values to the FP stack in reverse order, using temporaries if needed.
2303 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float);
2304 PushOntoFPStack(first, 0, 2 * elem_size, is_float);
2305
2306 // Loop doing FPREM until we stabilize.
2307 Label retry;
2308 __ Bind(&retry);
2309 __ fprem();
2310
2311 // Move FP status to AX.
2312 __ fstsw();
2313
2314 // And see if the argument reduction is complete. This is signaled by the
2315 // C2 FPU flag bit set to 0.
2316 __ andl(CpuRegister(RAX), Immediate(kC2ConditionMask));
2317 __ j(kNotEqual, &retry);
2318
2319 // We have settled on the final value. Retrieve it into an XMM register.
2320 // Store FP top of stack to real stack.
2321 if (is_float) {
2322 __ fsts(Address(CpuRegister(RSP), 0));
2323 } else {
2324 __ fstl(Address(CpuRegister(RSP), 0));
2325 }
2326
2327 // Pop the 2 items from the FP stack.
2328 __ fucompp();
2329
2330 // Load the value from the stack into an XMM register.
2331 DCHECK(out.IsFpuRegister()) << out;
2332 if (is_float) {
2333 __ movss(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0));
2334 } else {
2335 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0));
2336 }
2337
2338 // And remove the temporary stack space we allocated.
2339 __ addq(CpuRegister(RSP), Immediate(2 * elem_size));
2340}
2341
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002342void InstructionCodeGeneratorX86_64::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2343 DCHECK(instruction->IsDiv() || instruction->IsRem());
2344
2345 LocationSummary* locations = instruction->GetLocations();
2346 Location second = locations->InAt(1);
2347 DCHECK(second.IsConstant());
2348
2349 CpuRegister output_register = locations->Out().AsRegister<CpuRegister>();
2350 CpuRegister input_register = locations->InAt(0).AsRegister<CpuRegister>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002351 int64_t imm = Int64FromConstant(second.GetConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002352
2353 DCHECK(imm == 1 || imm == -1);
2354
2355 switch (instruction->GetResultType()) {
2356 case Primitive::kPrimInt: {
2357 if (instruction->IsRem()) {
2358 __ xorl(output_register, output_register);
2359 } else {
2360 __ movl(output_register, input_register);
2361 if (imm == -1) {
2362 __ negl(output_register);
2363 }
2364 }
2365 break;
2366 }
2367
2368 case Primitive::kPrimLong: {
2369 if (instruction->IsRem()) {
2370 __ xorq(output_register, output_register);
2371 } else {
2372 __ movq(output_register, input_register);
2373 if (imm == -1) {
2374 __ negq(output_register);
2375 }
2376 }
2377 break;
2378 }
2379
2380 default:
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002381 LOG(FATAL) << "Unexpected type for div by (-)1 " << instruction->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002382 }
2383}
2384
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002385void InstructionCodeGeneratorX86_64::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002386 LocationSummary* locations = instruction->GetLocations();
2387 Location second = locations->InAt(1);
2388
2389 CpuRegister output_register = locations->Out().AsRegister<CpuRegister>();
2390 CpuRegister numerator = locations->InAt(0).AsRegister<CpuRegister>();
2391
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002392 int64_t imm = Int64FromConstant(second.GetConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002393
2394 DCHECK(IsPowerOfTwo(std::abs(imm)));
2395
2396 CpuRegister tmp = locations->GetTemp(0).AsRegister<CpuRegister>();
2397
2398 if (instruction->GetResultType() == Primitive::kPrimInt) {
2399 __ leal(tmp, Address(numerator, std::abs(imm) - 1));
2400 __ testl(numerator, numerator);
2401 __ cmov(kGreaterEqual, tmp, numerator);
2402 int shift = CTZ(imm);
2403 __ sarl(tmp, Immediate(shift));
2404
2405 if (imm < 0) {
2406 __ negl(tmp);
2407 }
2408
2409 __ movl(output_register, tmp);
2410 } else {
2411 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
2412 CpuRegister rdx = locations->GetTemp(0).AsRegister<CpuRegister>();
2413
2414 __ movq(rdx, Immediate(std::abs(imm) - 1));
2415 __ addq(rdx, numerator);
2416 __ testq(numerator, numerator);
2417 __ cmov(kGreaterEqual, rdx, numerator);
2418 int shift = CTZ(imm);
2419 __ sarq(rdx, Immediate(shift));
2420
2421 if (imm < 0) {
2422 __ negq(rdx);
2423 }
2424
2425 __ movq(output_register, rdx);
2426 }
2427}
2428
2429void InstructionCodeGeneratorX86_64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2430 DCHECK(instruction->IsDiv() || instruction->IsRem());
2431
2432 LocationSummary* locations = instruction->GetLocations();
2433 Location second = locations->InAt(1);
2434
2435 CpuRegister numerator = instruction->IsDiv() ? locations->GetTemp(1).AsRegister<CpuRegister>()
2436 : locations->GetTemp(0).AsRegister<CpuRegister>();
2437 CpuRegister eax = locations->InAt(0).AsRegister<CpuRegister>();
2438 CpuRegister edx = instruction->IsDiv() ? locations->GetTemp(0).AsRegister<CpuRegister>()
2439 : locations->Out().AsRegister<CpuRegister>();
2440 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
2441
2442 DCHECK_EQ(RAX, eax.AsRegister());
2443 DCHECK_EQ(RDX, edx.AsRegister());
2444 if (instruction->IsDiv()) {
2445 DCHECK_EQ(RAX, out.AsRegister());
2446 } else {
2447 DCHECK_EQ(RDX, out.AsRegister());
2448 }
2449
2450 int64_t magic;
2451 int shift;
2452
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002453 // TODO: can these branches be written as one?
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002454 if (instruction->GetResultType() == Primitive::kPrimInt) {
2455 int imm = second.GetConstant()->AsIntConstant()->GetValue();
2456
2457 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
2458
2459 __ movl(numerator, eax);
2460
2461 Label no_div;
2462 Label end;
2463 __ testl(eax, eax);
2464 __ j(kNotEqual, &no_div);
2465
2466 __ xorl(out, out);
2467 __ jmp(&end);
2468
2469 __ Bind(&no_div);
2470
2471 __ movl(eax, Immediate(magic));
2472 __ imull(numerator);
2473
2474 if (imm > 0 && magic < 0) {
2475 __ addl(edx, numerator);
2476 } else if (imm < 0 && magic > 0) {
2477 __ subl(edx, numerator);
2478 }
2479
2480 if (shift != 0) {
2481 __ sarl(edx, Immediate(shift));
2482 }
2483
2484 __ movl(eax, edx);
2485 __ shrl(edx, Immediate(31));
2486 __ addl(edx, eax);
2487
2488 if (instruction->IsRem()) {
2489 __ movl(eax, numerator);
2490 __ imull(edx, Immediate(imm));
2491 __ subl(eax, edx);
2492 __ movl(edx, eax);
2493 } else {
2494 __ movl(eax, edx);
2495 }
2496 __ Bind(&end);
2497 } else {
2498 int64_t imm = second.GetConstant()->AsLongConstant()->GetValue();
2499
2500 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
2501
2502 CpuRegister rax = eax;
2503 CpuRegister rdx = edx;
2504
2505 CalculateMagicAndShiftForDivRem(imm, true /* is_long */, &magic, &shift);
2506
2507 // Save the numerator.
2508 __ movq(numerator, rax);
2509
2510 // RAX = magic
2511 __ movq(rax, Immediate(magic));
2512
2513 // RDX:RAX = magic * numerator
2514 __ imulq(numerator);
2515
2516 if (imm > 0 && magic < 0) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002517 // RDX += numerator
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002518 __ addq(rdx, numerator);
2519 } else if (imm < 0 && magic > 0) {
2520 // RDX -= numerator
2521 __ subq(rdx, numerator);
2522 }
2523
2524 // Shift if needed.
2525 if (shift != 0) {
2526 __ sarq(rdx, Immediate(shift));
2527 }
2528
2529 // RDX += 1 if RDX < 0
2530 __ movq(rax, rdx);
2531 __ shrq(rdx, Immediate(63));
2532 __ addq(rdx, rax);
2533
2534 if (instruction->IsRem()) {
2535 __ movq(rax, numerator);
2536
2537 if (IsInt<32>(imm)) {
2538 __ imulq(rdx, Immediate(static_cast<int32_t>(imm)));
2539 } else {
2540 __ movq(numerator, Immediate(imm));
2541 __ imulq(rdx, numerator);
2542 }
2543
2544 __ subq(rax, rdx);
2545 __ movq(rdx, rax);
2546 } else {
2547 __ movq(rax, rdx);
2548 }
2549 }
2550}
2551
Calin Juravlebacfec32014-11-14 15:54:36 +00002552void InstructionCodeGeneratorX86_64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2553 DCHECK(instruction->IsDiv() || instruction->IsRem());
2554 Primitive::Type type = instruction->GetResultType();
2555 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
2556
2557 bool is_div = instruction->IsDiv();
2558 LocationSummary* locations = instruction->GetLocations();
2559
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002560 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
2561 Location second = locations->InAt(1);
Calin Juravlebacfec32014-11-14 15:54:36 +00002562
Roland Levillain271ab9c2014-11-27 15:23:57 +00002563 DCHECK_EQ(RAX, locations->InAt(0).AsRegister<CpuRegister>().AsRegister());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002564 DCHECK_EQ(is_div ? RAX : RDX, out.AsRegister());
Calin Juravlebacfec32014-11-14 15:54:36 +00002565
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002566 if (second.IsConstant()) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002567 int64_t imm = Int64FromConstant(second.GetConstant());
Calin Juravlebacfec32014-11-14 15:54:36 +00002568
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002569 if (imm == 0) {
2570 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
2571 } else if (imm == 1 || imm == -1) {
2572 DivRemOneOrMinusOne(instruction);
2573 } else if (instruction->IsDiv() && IsPowerOfTwo(std::abs(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002574 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002575 } else {
2576 DCHECK(imm <= -2 || imm >= 2);
2577 GenerateDivRemWithAnyConstant(instruction);
2578 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002579 } else {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002580 SlowPathCodeX86_64* slow_path =
2581 new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86_64(
2582 out.AsRegister(), type, is_div);
2583 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00002584
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002585 CpuRegister second_reg = second.AsRegister<CpuRegister>();
2586 // 0x80000000(00000000)/-1 triggers an arithmetic exception!
2587 // Dividing by -1 is actually negation and -0x800000000(00000000) = 0x80000000(00000000)
2588 // so it's safe to just use negl instead of more complex comparisons.
2589 if (type == Primitive::kPrimInt) {
2590 __ cmpl(second_reg, Immediate(-1));
2591 __ j(kEqual, slow_path->GetEntryLabel());
2592 // edx:eax <- sign-extended of eax
2593 __ cdq();
2594 // eax = quotient, edx = remainder
2595 __ idivl(second_reg);
2596 } else {
2597 __ cmpq(second_reg, Immediate(-1));
2598 __ j(kEqual, slow_path->GetEntryLabel());
2599 // rdx:rax <- sign-extended of rax
2600 __ cqo();
2601 // rax = quotient, rdx = remainder
2602 __ idivq(second_reg);
2603 }
2604 __ Bind(slow_path->GetExitLabel());
2605 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002606}
2607
Calin Juravle7c4954d2014-10-28 16:57:40 +00002608void LocationsBuilderX86_64::VisitDiv(HDiv* div) {
2609 LocationSummary* locations =
2610 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
2611 switch (div->GetResultType()) {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002612 case Primitive::kPrimInt:
2613 case Primitive::kPrimLong: {
Calin Juravled0d48522014-11-04 16:40:20 +00002614 locations->SetInAt(0, Location::RegisterLocation(RAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002615 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00002616 locations->SetOut(Location::SameAsFirstInput());
2617 // Intel uses edx:eax as the dividend.
2618 locations->AddTemp(Location::RegisterLocation(RDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002619 // We need to save the numerator while we tweak rax and rdx. As we are using imul in a way
2620 // which enforces results to be in RAX and RDX, things are simpler if we use RDX also as
2621 // output and request another temp.
2622 if (div->InputAt(1)->IsConstant()) {
2623 locations->AddTemp(Location::RequiresRegister());
2624 }
Calin Juravled0d48522014-11-04 16:40:20 +00002625 break;
2626 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002627
Calin Juravle7c4954d2014-10-28 16:57:40 +00002628 case Primitive::kPrimFloat:
2629 case Primitive::kPrimDouble: {
2630 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04002631 locations->SetInAt(1, Location::Any());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002632 locations->SetOut(Location::SameAsFirstInput());
2633 break;
2634 }
2635
2636 default:
2637 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2638 }
2639}
2640
2641void InstructionCodeGeneratorX86_64::VisitDiv(HDiv* div) {
2642 LocationSummary* locations = div->GetLocations();
2643 Location first = locations->InAt(0);
2644 Location second = locations->InAt(1);
2645 DCHECK(first.Equals(locations->Out()));
2646
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002647 Primitive::Type type = div->GetResultType();
2648 switch (type) {
2649 case Primitive::kPrimInt:
2650 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00002651 GenerateDivRemIntegral(div);
Calin Juravled0d48522014-11-04 16:40:20 +00002652 break;
2653 }
2654
Calin Juravle7c4954d2014-10-28 16:57:40 +00002655 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002656 if (second.IsFpuRegister()) {
2657 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2658 } else if (second.IsConstant()) {
2659 __ divss(first.AsFpuRegister<XmmRegister>(),
2660 codegen_->LiteralFloatAddress(second.GetConstant()->AsFloatConstant()->GetValue()));
2661 } else {
2662 DCHECK(second.IsStackSlot());
2663 __ divss(first.AsFpuRegister<XmmRegister>(),
2664 Address(CpuRegister(RSP), second.GetStackIndex()));
2665 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002666 break;
2667 }
2668
2669 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002670 if (second.IsFpuRegister()) {
2671 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2672 } else if (second.IsConstant()) {
2673 __ divsd(first.AsFpuRegister<XmmRegister>(),
2674 codegen_->LiteralDoubleAddress(second.GetConstant()->AsDoubleConstant()->GetValue()));
2675 } else {
2676 DCHECK(second.IsDoubleStackSlot());
2677 __ divsd(first.AsFpuRegister<XmmRegister>(),
2678 Address(CpuRegister(RSP), second.GetStackIndex()));
2679 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002680 break;
2681 }
2682
2683 default:
2684 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2685 }
2686}
2687
Calin Juravlebacfec32014-11-14 15:54:36 +00002688void LocationsBuilderX86_64::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002689 Primitive::Type type = rem->GetResultType();
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002690 LocationSummary* locations =
2691 new (GetGraph()->GetArena()) LocationSummary(rem, LocationSummary::kNoCall);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002692
2693 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002694 case Primitive::kPrimInt:
2695 case Primitive::kPrimLong: {
2696 locations->SetInAt(0, Location::RegisterLocation(RAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002697 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00002698 // Intel uses rdx:rax as the dividend and puts the remainder in rdx
2699 locations->SetOut(Location::RegisterLocation(RDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002700 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2701 // which enforces results to be in RAX and RDX, things are simpler if we use EAX also as
2702 // output and request another temp.
2703 if (rem->InputAt(1)->IsConstant()) {
2704 locations->AddTemp(Location::RequiresRegister());
2705 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002706 break;
2707 }
2708
2709 case Primitive::kPrimFloat:
2710 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002711 locations->SetInAt(0, Location::Any());
2712 locations->SetInAt(1, Location::Any());
2713 locations->SetOut(Location::RequiresFpuRegister());
2714 locations->AddTemp(Location::RegisterLocation(RAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00002715 break;
2716 }
2717
2718 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002719 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002720 }
2721}
2722
2723void InstructionCodeGeneratorX86_64::VisitRem(HRem* rem) {
2724 Primitive::Type type = rem->GetResultType();
2725 switch (type) {
2726 case Primitive::kPrimInt:
2727 case Primitive::kPrimLong: {
2728 GenerateDivRemIntegral(rem);
2729 break;
2730 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002731 case Primitive::kPrimFloat:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002732 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002733 GenerateRemFP(rem);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002734 break;
2735 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002736 default:
2737 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
2738 }
2739}
2740
Calin Juravled0d48522014-11-04 16:40:20 +00002741void LocationsBuilderX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2742 LocationSummary* locations =
2743 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2744 locations->SetInAt(0, Location::Any());
2745 if (instruction->HasUses()) {
2746 locations->SetOut(Location::SameAsFirstInput());
2747 }
2748}
2749
2750void InstructionCodeGeneratorX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2751 SlowPathCodeX86_64* slow_path =
2752 new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86_64(instruction);
2753 codegen_->AddSlowPath(slow_path);
2754
2755 LocationSummary* locations = instruction->GetLocations();
2756 Location value = locations->InAt(0);
2757
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002758 switch (instruction->GetType()) {
2759 case Primitive::kPrimInt: {
2760 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002761 __ testl(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002762 __ j(kEqual, slow_path->GetEntryLabel());
2763 } else if (value.IsStackSlot()) {
2764 __ cmpl(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
2765 __ j(kEqual, slow_path->GetEntryLabel());
2766 } else {
2767 DCHECK(value.IsConstant()) << value;
2768 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2769 __ jmp(slow_path->GetEntryLabel());
2770 }
2771 }
2772 break;
Calin Juravled0d48522014-11-04 16:40:20 +00002773 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002774 case Primitive::kPrimLong: {
2775 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002776 __ testq(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002777 __ j(kEqual, slow_path->GetEntryLabel());
2778 } else if (value.IsDoubleStackSlot()) {
2779 __ cmpq(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
2780 __ j(kEqual, slow_path->GetEntryLabel());
2781 } else {
2782 DCHECK(value.IsConstant()) << value;
2783 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2784 __ jmp(slow_path->GetEntryLabel());
2785 }
2786 }
2787 break;
2788 }
2789 default:
2790 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00002791 }
Calin Juravled0d48522014-11-04 16:40:20 +00002792}
2793
Calin Juravle9aec02f2014-11-18 23:06:35 +00002794void LocationsBuilderX86_64::HandleShift(HBinaryOperation* op) {
2795 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2796
2797 LocationSummary* locations =
2798 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
2799
2800 switch (op->GetResultType()) {
2801 case Primitive::kPrimInt:
2802 case Primitive::kPrimLong: {
2803 locations->SetInAt(0, Location::RequiresRegister());
2804 // The shift count needs to be in CL.
2805 locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, op->InputAt(1)));
2806 locations->SetOut(Location::SameAsFirstInput());
2807 break;
2808 }
2809 default:
2810 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2811 }
2812}
2813
2814void InstructionCodeGeneratorX86_64::HandleShift(HBinaryOperation* op) {
2815 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2816
2817 LocationSummary* locations = op->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002818 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002819 Location second = locations->InAt(1);
2820
2821 switch (op->GetResultType()) {
2822 case Primitive::kPrimInt: {
2823 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002824 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002825 if (op->IsShl()) {
2826 __ shll(first_reg, second_reg);
2827 } else if (op->IsShr()) {
2828 __ sarl(first_reg, second_reg);
2829 } else {
2830 __ shrl(first_reg, second_reg);
2831 }
2832 } else {
Nicolas Geoffray486cc192014-12-08 18:00:55 +00002833 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002834 if (op->IsShl()) {
2835 __ shll(first_reg, imm);
2836 } else if (op->IsShr()) {
2837 __ sarl(first_reg, imm);
2838 } else {
2839 __ shrl(first_reg, imm);
2840 }
2841 }
2842 break;
2843 }
2844 case Primitive::kPrimLong: {
2845 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002846 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002847 if (op->IsShl()) {
2848 __ shlq(first_reg, second_reg);
2849 } else if (op->IsShr()) {
2850 __ sarq(first_reg, second_reg);
2851 } else {
2852 __ shrq(first_reg, second_reg);
2853 }
2854 } else {
Nicolas Geoffray486cc192014-12-08 18:00:55 +00002855 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftValue);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002856 if (op->IsShl()) {
2857 __ shlq(first_reg, imm);
2858 } else if (op->IsShr()) {
2859 __ sarq(first_reg, imm);
2860 } else {
2861 __ shrq(first_reg, imm);
2862 }
2863 }
2864 break;
2865 }
2866 default:
2867 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2868 }
2869}
2870
2871void LocationsBuilderX86_64::VisitShl(HShl* shl) {
2872 HandleShift(shl);
2873}
2874
2875void InstructionCodeGeneratorX86_64::VisitShl(HShl* shl) {
2876 HandleShift(shl);
2877}
2878
2879void LocationsBuilderX86_64::VisitShr(HShr* shr) {
2880 HandleShift(shr);
2881}
2882
2883void InstructionCodeGeneratorX86_64::VisitShr(HShr* shr) {
2884 HandleShift(shr);
2885}
2886
2887void LocationsBuilderX86_64::VisitUShr(HUShr* ushr) {
2888 HandleShift(ushr);
2889}
2890
2891void InstructionCodeGeneratorX86_64::VisitUShr(HUShr* ushr) {
2892 HandleShift(ushr);
2893}
2894
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002895void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002896 LocationSummary* locations =
2897 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01002898 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002899 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2900 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2901 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002902}
2903
2904void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
2905 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002906 codegen_->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002907 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
2908
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002909 __ gs()->call(
2910 Address::Absolute(GetThreadOffset<kX86_64WordSize>(instruction->GetEntrypoint()), true));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002911
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002912 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002913 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002914}
2915
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002916void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
2917 LocationSummary* locations =
2918 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2919 InvokeRuntimeCallingConvention calling_convention;
2920 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002921 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002922 locations->SetOut(Location::RegisterLocation(RAX));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002923 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002924}
2925
2926void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
2927 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002928 codegen_->LoadCurrentMethod(CpuRegister(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002929 __ movq(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(instruction->GetTypeIndex()));
2930
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002931 __ gs()->call(
2932 Address::Absolute(GetThreadOffset<kX86_64WordSize>(instruction->GetEntrypoint()), true));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002933
2934 DCHECK(!codegen_->IsLeafMethod());
2935 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2936}
2937
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002938void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002939 LocationSummary* locations =
2940 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002941 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2942 if (location.IsStackSlot()) {
2943 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2944 } else if (location.IsDoubleStackSlot()) {
2945 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2946 }
2947 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002948}
2949
2950void InstructionCodeGeneratorX86_64::VisitParameterValue(HParameterValue* instruction) {
2951 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002952 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002953}
2954
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002955void LocationsBuilderX86_64::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002956 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002957 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002958 locations->SetInAt(0, Location::RequiresRegister());
2959 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002960}
2961
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002962void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) {
2963 LocationSummary* locations = not_->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002964 DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(),
2965 locations->Out().AsRegister<CpuRegister>().AsRegister());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002966 Location out = locations->Out();
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002967 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002968 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002969 __ notl(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002970 break;
2971
2972 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002973 __ notq(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002974 break;
2975
2976 default:
2977 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2978 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002979}
2980
David Brazdil66d126e2015-04-03 16:02:44 +01002981void LocationsBuilderX86_64::VisitBooleanNot(HBooleanNot* bool_not) {
2982 LocationSummary* locations =
2983 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
2984 locations->SetInAt(0, Location::RequiresRegister());
2985 locations->SetOut(Location::SameAsFirstInput());
2986}
2987
2988void InstructionCodeGeneratorX86_64::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01002989 LocationSummary* locations = bool_not->GetLocations();
2990 DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(),
2991 locations->Out().AsRegister<CpuRegister>().AsRegister());
2992 Location out = locations->Out();
2993 __ xorl(out.AsRegister<CpuRegister>(), Immediate(1));
2994}
2995
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002996void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002997 LocationSummary* locations =
2998 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002999 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3000 locations->SetInAt(i, Location::Any());
3001 }
3002 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003003}
3004
3005void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003006 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003007 LOG(FATAL) << "Unimplemented";
3008}
3009
Calin Juravle52c48962014-12-16 17:02:57 +00003010void InstructionCodeGeneratorX86_64::GenerateMemoryBarrier(MemBarrierKind kind) {
3011 /*
3012 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
3013 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model.
3014 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
3015 */
3016 switch (kind) {
3017 case MemBarrierKind::kAnyAny: {
3018 __ mfence();
3019 break;
3020 }
3021 case MemBarrierKind::kAnyStore:
3022 case MemBarrierKind::kLoadAny:
3023 case MemBarrierKind::kStoreStore: {
3024 // nop
3025 break;
3026 }
3027 default:
3028 LOG(FATAL) << "Unexpected memory barier " << kind;
3029 }
3030}
3031
3032void LocationsBuilderX86_64::HandleFieldGet(HInstruction* instruction) {
3033 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
3034
Nicolas Geoffray39468442014-09-02 15:17:15 +01003035 LocationSummary* locations =
3036 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle52c48962014-12-16 17:02:57 +00003037 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003038 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3039 locations->SetOut(Location::RequiresFpuRegister());
3040 } else {
3041 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3042 }
Calin Juravle52c48962014-12-16 17:02:57 +00003043}
3044
3045void InstructionCodeGeneratorX86_64::HandleFieldGet(HInstruction* instruction,
3046 const FieldInfo& field_info) {
3047 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
3048
3049 LocationSummary* locations = instruction->GetLocations();
3050 CpuRegister base = locations->InAt(0).AsRegister<CpuRegister>();
3051 Location out = locations->Out();
3052 bool is_volatile = field_info.IsVolatile();
3053 Primitive::Type field_type = field_info.GetFieldType();
3054 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3055
3056 switch (field_type) {
3057 case Primitive::kPrimBoolean: {
3058 __ movzxb(out.AsRegister<CpuRegister>(), Address(base, offset));
3059 break;
3060 }
3061
3062 case Primitive::kPrimByte: {
3063 __ movsxb(out.AsRegister<CpuRegister>(), Address(base, offset));
3064 break;
3065 }
3066
3067 case Primitive::kPrimShort: {
3068 __ movsxw(out.AsRegister<CpuRegister>(), Address(base, offset));
3069 break;
3070 }
3071
3072 case Primitive::kPrimChar: {
3073 __ movzxw(out.AsRegister<CpuRegister>(), Address(base, offset));
3074 break;
3075 }
3076
3077 case Primitive::kPrimInt:
3078 case Primitive::kPrimNot: {
3079 __ movl(out.AsRegister<CpuRegister>(), Address(base, offset));
3080 break;
3081 }
3082
3083 case Primitive::kPrimLong: {
3084 __ movq(out.AsRegister<CpuRegister>(), Address(base, offset));
3085 break;
3086 }
3087
3088 case Primitive::kPrimFloat: {
3089 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
3090 break;
3091 }
3092
3093 case Primitive::kPrimDouble: {
3094 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
3095 break;
3096 }
3097
3098 case Primitive::kPrimVoid:
3099 LOG(FATAL) << "Unreachable type " << field_type;
3100 UNREACHABLE();
3101 }
3102
Calin Juravle77520bc2015-01-12 18:45:46 +00003103 codegen_->MaybeRecordImplicitNullCheck(instruction);
3104
Calin Juravle52c48962014-12-16 17:02:57 +00003105 if (is_volatile) {
3106 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3107 }
3108}
3109
3110void LocationsBuilderX86_64::HandleFieldSet(HInstruction* instruction,
3111 const FieldInfo& field_info) {
3112 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3113
3114 LocationSummary* locations =
3115 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003116 bool needs_write_barrier =
Calin Juravle52c48962014-12-16 17:02:57 +00003117 CodeGenerator::StoreNeedsWriteBarrier(field_info.GetFieldType(), instruction->InputAt(1));
3118
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003119 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003120 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) {
3121 locations->SetInAt(1, Location::RequiresFpuRegister());
3122 } else {
3123 locations->SetInAt(1, Location::RequiresRegister());
3124 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003125 if (needs_write_barrier) {
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01003126 // Temporary registers for the write barrier.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003127 locations->AddTemp(Location::RequiresRegister());
3128 locations->AddTemp(Location::RequiresRegister());
3129 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003130}
3131
Calin Juravle52c48962014-12-16 17:02:57 +00003132void InstructionCodeGeneratorX86_64::HandleFieldSet(HInstruction* instruction,
3133 const FieldInfo& field_info) {
3134 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3135
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003136 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00003137 CpuRegister base = locations->InAt(0).AsRegister<CpuRegister>();
3138 Location value = locations->InAt(1);
3139 bool is_volatile = field_info.IsVolatile();
3140 Primitive::Type field_type = field_info.GetFieldType();
3141 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3142
3143 if (is_volatile) {
3144 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
3145 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003146
3147 switch (field_type) {
3148 case Primitive::kPrimBoolean:
3149 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003150 __ movb(Address(base, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003151 break;
3152 }
3153
3154 case Primitive::kPrimShort:
3155 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003156 __ movw(Address(base, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003157 break;
3158 }
3159
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003160 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003161 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003162 __ movl(Address(base, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003163 break;
3164 }
3165
3166 case Primitive::kPrimLong: {
Calin Juravle52c48962014-12-16 17:02:57 +00003167 __ movq(Address(base, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003168 break;
3169 }
3170
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003171 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003172 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003173 break;
3174 }
3175
3176 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003177 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003178 break;
3179 }
3180
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003181 case Primitive::kPrimVoid:
3182 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003183 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003184 }
Calin Juravle52c48962014-12-16 17:02:57 +00003185
Calin Juravle77520bc2015-01-12 18:45:46 +00003186 codegen_->MaybeRecordImplicitNullCheck(instruction);
3187
3188 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
3189 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
3190 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
3191 codegen_->MarkGCCard(temp, card, base, value.AsRegister<CpuRegister>());
3192 }
3193
Calin Juravle52c48962014-12-16 17:02:57 +00003194 if (is_volatile) {
3195 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
3196 }
3197}
3198
3199void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3200 HandleFieldSet(instruction, instruction->GetFieldInfo());
3201}
3202
3203void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3204 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003205}
3206
3207void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00003208 HandleFieldGet(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003209}
3210
3211void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00003212 HandleFieldGet(instruction, instruction->GetFieldInfo());
3213}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003214
Calin Juravle52c48962014-12-16 17:02:57 +00003215void LocationsBuilderX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3216 HandleFieldGet(instruction);
3217}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003218
Calin Juravle52c48962014-12-16 17:02:57 +00003219void InstructionCodeGeneratorX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3220 HandleFieldGet(instruction, instruction->GetFieldInfo());
3221}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003222
Calin Juravle52c48962014-12-16 17:02:57 +00003223void LocationsBuilderX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3224 HandleFieldSet(instruction, instruction->GetFieldInfo());
3225}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003226
Calin Juravle52c48962014-12-16 17:02:57 +00003227void InstructionCodeGeneratorX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3228 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003229}
3230
3231void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003232 LocationSummary* locations =
3233 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003234 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks()
3235 ? Location::RequiresRegister()
3236 : Location::Any();
3237 locations->SetInAt(0, loc);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003238 if (instruction->HasUses()) {
3239 locations->SetOut(Location::SameAsFirstInput());
3240 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003241}
3242
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003243void InstructionCodeGeneratorX86_64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003244 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3245 return;
3246 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003247 LocationSummary* locations = instruction->GetLocations();
3248 Location obj = locations->InAt(0);
3249
3250 __ testl(CpuRegister(RAX), Address(obj.AsRegister<CpuRegister>(), 0));
3251 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3252}
3253
3254void InstructionCodeGeneratorX86_64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003255 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003256 codegen_->AddSlowPath(slow_path);
3257
3258 LocationSummary* locations = instruction->GetLocations();
3259 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003260
3261 if (obj.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00003262 __ testl(obj.AsRegister<CpuRegister>(), obj.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003263 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003264 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003265 } else {
3266 DCHECK(obj.IsConstant()) << obj;
3267 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
3268 __ jmp(slow_path->GetEntryLabel());
3269 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003270 }
3271 __ j(kEqual, slow_path->GetEntryLabel());
3272}
3273
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003274void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
3275 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3276 GenerateImplicitNullCheck(instruction);
3277 } else {
3278 GenerateExplicitNullCheck(instruction);
3279 }
3280}
3281
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003282void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003283 LocationSummary* locations =
3284 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003285 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01003286 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003287 1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003288 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3289 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3290 } else {
3291 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3292 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003293}
3294
3295void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
3296 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003297 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003298 Location index = locations->InAt(1);
3299
3300 switch (instruction->GetType()) {
3301 case Primitive::kPrimBoolean: {
3302 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003303 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003304 if (index.IsConstant()) {
3305 __ movzxb(out, Address(obj,
3306 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3307 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003308 __ movzxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003309 }
3310 break;
3311 }
3312
3313 case Primitive::kPrimByte: {
3314 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003315 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003316 if (index.IsConstant()) {
3317 __ movsxb(out, Address(obj,
3318 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3319 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003320 __ movsxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003321 }
3322 break;
3323 }
3324
3325 case Primitive::kPrimShort: {
3326 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003327 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003328 if (index.IsConstant()) {
3329 __ movsxw(out, Address(obj,
3330 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3331 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003332 __ movsxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003333 }
3334 break;
3335 }
3336
3337 case Primitive::kPrimChar: {
3338 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003339 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003340 if (index.IsConstant()) {
3341 __ movzxw(out, Address(obj,
3342 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3343 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003344 __ movzxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003345 }
3346 break;
3347 }
3348
3349 case Primitive::kPrimInt:
3350 case Primitive::kPrimNot: {
3351 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
3352 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003353 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003354 if (index.IsConstant()) {
3355 __ movl(out, Address(obj,
3356 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3357 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003358 __ movl(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003359 }
3360 break;
3361 }
3362
3363 case Primitive::kPrimLong: {
3364 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003365 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003366 if (index.IsConstant()) {
3367 __ movq(out, Address(obj,
3368 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
3369 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003370 __ movq(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003371 }
3372 break;
3373 }
3374
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003375 case Primitive::kPrimFloat: {
3376 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003377 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003378 if (index.IsConstant()) {
3379 __ movss(out, Address(obj,
3380 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3381 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003382 __ movss(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003383 }
3384 break;
3385 }
3386
3387 case Primitive::kPrimDouble: {
3388 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003389 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003390 if (index.IsConstant()) {
3391 __ movsd(out, Address(obj,
3392 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
3393 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003394 __ movsd(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003395 }
3396 break;
3397 }
3398
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003399 case Primitive::kPrimVoid:
3400 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003401 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003402 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003403 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003404}
3405
3406void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003407 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003408
3409 bool needs_write_barrier =
3410 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3411 bool needs_runtime_call = instruction->NeedsTypeCheck();
3412
Nicolas Geoffray39468442014-09-02 15:17:15 +01003413 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003414 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
3415 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003416 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003417 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3418 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3419 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003420 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003421 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01003422 locations->SetInAt(
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003423 1, Location::RegisterOrConstant(instruction->InputAt(1)));
3424 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003425 if (value_type == Primitive::kPrimLong) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003426 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003427 } else if (value_type == Primitive::kPrimFloat || value_type == Primitive::kPrimDouble) {
3428 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003429 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003430 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003431 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003432
3433 if (needs_write_barrier) {
3434 // Temporary registers for the write barrier.
3435 locations->AddTemp(Location::RequiresRegister());
3436 locations->AddTemp(Location::RequiresRegister());
3437 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003438 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003439}
3440
3441void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
3442 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003443 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003444 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003445 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003446 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003447 bool needs_runtime_call = locations->WillCall();
3448 bool needs_write_barrier =
3449 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003450
3451 switch (value_type) {
3452 case Primitive::kPrimBoolean:
3453 case Primitive::kPrimByte: {
3454 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003455 if (index.IsConstant()) {
3456 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003457 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003458 __ movb(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003459 } else {
Roland Levillain199f3362014-11-27 17:15:16 +00003460 __ movb(Address(obj, offset),
3461 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003462 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003463 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003464 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003465 __ movb(Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset),
3466 value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003467 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003468 __ movb(Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003469 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3470 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003471 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003472 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003473 break;
3474 }
3475
3476 case Primitive::kPrimShort:
3477 case Primitive::kPrimChar: {
3478 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003479 if (index.IsConstant()) {
3480 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003481 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003482 __ movw(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003483 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003484 DCHECK(value.IsConstant()) << value;
Roland Levillain199f3362014-11-27 17:15:16 +00003485 __ movw(Address(obj, offset),
3486 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003487 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003488 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003489 DCHECK(index.IsRegister()) << index;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003490 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003491 __ movw(Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset),
3492 value.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003493 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003494 DCHECK(value.IsConstant()) << value;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003495 __ movw(Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003496 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3497 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003498 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003499 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003500 break;
3501 }
3502
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003503 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003504 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003505 if (!needs_runtime_call) {
3506 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
3507 if (index.IsConstant()) {
3508 size_t offset =
3509 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3510 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003511 __ movl(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003512 } else {
3513 DCHECK(value.IsConstant()) << value;
3514 __ movl(Address(obj, offset),
3515 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3516 }
3517 } else {
3518 DCHECK(index.IsRegister()) << index;
3519 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003520 __ movl(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
3521 value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003522 } else {
3523 DCHECK(value.IsConstant()) << value;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003524 __ movl(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003525 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3526 }
3527 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003528 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003529 if (needs_write_barrier) {
3530 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003531 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
3532 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
3533 codegen_->MarkGCCard(temp, card, obj, value.AsRegister<CpuRegister>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003534 }
3535 } else {
3536 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00003537 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pAputObject),
3538 true));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003539 DCHECK(!codegen_->IsLeafMethod());
3540 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3541 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003542 break;
3543 }
3544
3545 case Primitive::kPrimLong: {
3546 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003547 if (index.IsConstant()) {
3548 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003549 DCHECK(value.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003550 __ movq(Address(obj, offset), value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003551 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003552 DCHECK(value.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003553 __ movq(Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset),
3554 value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003555 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003556 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003557 break;
3558 }
3559
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003560 case Primitive::kPrimFloat: {
3561 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3562 if (index.IsConstant()) {
3563 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3564 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003565 __ movss(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003566 } else {
3567 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003568 __ movss(Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset),
3569 value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003570 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003571 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003572 break;
3573 }
3574
3575 case Primitive::kPrimDouble: {
3576 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3577 if (index.IsConstant()) {
3578 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3579 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003580 __ movsd(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003581 } else {
3582 DCHECK(value.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003583 __ movsd(Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset),
3584 value.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003585 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003586 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003587 break;
3588 }
3589
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003590 case Primitive::kPrimVoid:
3591 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003592 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003593 }
3594}
3595
3596void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003597 LocationSummary* locations =
3598 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003599 locations->SetInAt(0, Location::RequiresRegister());
3600 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003601}
3602
3603void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
3604 LocationSummary* locations = instruction->GetLocations();
3605 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003606 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
3607 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003608 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003609 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003610}
3611
3612void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003613 LocationSummary* locations =
3614 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Mark Mendellf60c90b2015-03-04 15:12:59 -05003615 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003616 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003617 if (instruction->HasUses()) {
3618 locations->SetOut(Location::SameAsFirstInput());
3619 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003620}
3621
3622void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
3623 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05003624 Location index_loc = locations->InAt(0);
3625 Location length_loc = locations->InAt(1);
3626 SlowPathCodeX86_64* slow_path =
3627 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(instruction, index_loc, length_loc);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003628 codegen_->AddSlowPath(slow_path);
3629
Mark Mendellf60c90b2015-03-04 15:12:59 -05003630 CpuRegister length = length_loc.AsRegister<CpuRegister>();
3631 if (index_loc.IsConstant()) {
3632 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
3633 __ cmpl(length, Immediate(value));
3634 } else {
3635 __ cmpl(length, index_loc.AsRegister<CpuRegister>());
3636 }
3637 __ j(kBelowEqual, slow_path->GetEntryLabel());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003638}
3639
3640void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
3641 CpuRegister card,
3642 CpuRegister object,
3643 CpuRegister value) {
3644 Label is_null;
3645 __ testl(value, value);
3646 __ j(kEqual, &is_null);
3647 __ gs()->movq(card, Address::Absolute(
3648 Thread::CardTableOffset<kX86_64WordSize>().Int32Value(), true));
3649 __ movq(temp, object);
3650 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
3651 __ movb(Address(temp, card, TIMES_1, 0), card);
3652 __ Bind(&is_null);
3653}
3654
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003655void LocationsBuilderX86_64::VisitTemporary(HTemporary* temp) {
3656 temp->SetLocations(nullptr);
3657}
3658
3659void InstructionCodeGeneratorX86_64::VisitTemporary(HTemporary* temp) {
3660 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003661 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003662}
3663
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003664void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003665 UNUSED(instruction);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003666 LOG(FATAL) << "Unimplemented";
3667}
3668
3669void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003670 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3671}
3672
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003673void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
3674 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3675}
3676
3677void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003678 HBasicBlock* block = instruction->GetBlock();
3679 if (block->GetLoopInformation() != nullptr) {
3680 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3681 // The back edge will generate the suspend check.
3682 return;
3683 }
3684 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3685 // The goto will generate the suspend check.
3686 return;
3687 }
3688 GenerateSuspendCheck(instruction, nullptr);
3689}
3690
3691void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
3692 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003693 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003694 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003695 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003696 __ gs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003697 Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(), true), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003698 if (successor == nullptr) {
3699 __ j(kNotEqual, slow_path->GetEntryLabel());
3700 __ Bind(slow_path->GetReturnLabel());
3701 } else {
3702 __ j(kEqual, codegen_->GetLabelOf(successor));
3703 __ jmp(slow_path->GetEntryLabel());
3704 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003705}
3706
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003707X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
3708 return codegen_->GetAssembler();
3709}
3710
3711void ParallelMoveResolverX86_64::EmitMove(size_t index) {
3712 MoveOperands* move = moves_.Get(index);
3713 Location source = move->GetSource();
3714 Location destination = move->GetDestination();
3715
3716 if (source.IsRegister()) {
3717 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003718 __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003719 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003720 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003721 source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003722 } else {
3723 DCHECK(destination.IsDoubleStackSlot());
3724 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003725 source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003726 }
3727 } else if (source.IsStackSlot()) {
3728 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003729 __ movl(destination.AsRegister<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003730 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003731 } else if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003732 __ movss(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003733 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003734 } else {
3735 DCHECK(destination.IsStackSlot());
3736 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
3737 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3738 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003739 } else if (source.IsDoubleStackSlot()) {
3740 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003741 __ movq(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003742 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003743 } else if (destination.IsFpuRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003744 __ movsd(destination.AsFpuRegister<XmmRegister>(),
3745 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003746 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01003747 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003748 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
3749 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3750 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003751 } else if (source.IsConstant()) {
3752 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003753 if (constant->IsIntConstant() || constant->IsNullConstant()) {
3754 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003755 if (destination.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00003756 if (value == 0) {
3757 __ xorl(destination.AsRegister<CpuRegister>(), destination.AsRegister<CpuRegister>());
3758 } else {
3759 __ movl(destination.AsRegister<CpuRegister>(), Immediate(value));
3760 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003761 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003762 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray748f1402015-01-27 08:17:54 +00003763 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003764 }
3765 } else if (constant->IsLongConstant()) {
3766 int64_t value = constant->AsLongConstant()->GetValue();
3767 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003768 __ movq(destination.AsRegister<CpuRegister>(), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003769 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003770 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003771 __ movq(CpuRegister(TMP), Immediate(value));
3772 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3773 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003774 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003775 float fp_value = constant->AsFloatConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00003776 int32_t value = bit_cast<int32_t, float>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003777 Immediate imm(value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003778 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003779 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
3780 if (value == 0) {
3781 // easy FP 0.0.
3782 __ xorps(dest, dest);
3783 } else {
3784 __ movl(CpuRegister(TMP), imm);
3785 __ movd(dest, CpuRegister(TMP));
3786 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003787 } else {
3788 DCHECK(destination.IsStackSlot()) << destination;
3789 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
3790 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003791 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003792 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003793 double fp_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00003794 int64_t value = bit_cast<int64_t, double>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003795 Immediate imm(value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003796 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003797 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
3798 if (value == 0) {
3799 __ xorpd(dest, dest);
3800 } else {
3801 __ movq(CpuRegister(TMP), imm);
3802 __ movd(dest, CpuRegister(TMP));
3803 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003804 } else {
3805 DCHECK(destination.IsDoubleStackSlot()) << destination;
3806 __ movq(CpuRegister(TMP), imm);
3807 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
3808 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003809 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003810 } else if (source.IsFpuRegister()) {
3811 if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003812 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003813 } else if (destination.IsStackSlot()) {
3814 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003815 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003816 } else {
Nicolas Geoffray31596742014-11-24 15:28:45 +00003817 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003818 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003819 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003820 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003821 }
3822}
3823
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003824void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003825 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003826 __ movl(Address(CpuRegister(RSP), mem), reg);
3827 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003828}
3829
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003830void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003831 ScratchRegisterScope ensure_scratch(
3832 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
3833
3834 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
3835 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
3836 __ movl(CpuRegister(ensure_scratch.GetRegister()),
3837 Address(CpuRegister(RSP), mem2 + stack_offset));
3838 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
3839 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
3840 CpuRegister(ensure_scratch.GetRegister()));
3841}
3842
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003843void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
3844 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3845 __ movq(Address(CpuRegister(RSP), mem), reg);
3846 __ movq(reg, CpuRegister(TMP));
3847}
3848
3849void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
3850 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003851 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003852
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003853 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
3854 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
3855 __ movq(CpuRegister(ensure_scratch.GetRegister()),
3856 Address(CpuRegister(RSP), mem2 + stack_offset));
3857 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
3858 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
3859 CpuRegister(ensure_scratch.GetRegister()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003860}
3861
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003862void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
3863 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3864 __ movss(Address(CpuRegister(RSP), mem), reg);
3865 __ movd(reg, CpuRegister(TMP));
3866}
3867
3868void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
3869 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
3870 __ movsd(Address(CpuRegister(RSP), mem), reg);
3871 __ movd(reg, CpuRegister(TMP));
3872}
3873
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003874void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
3875 MoveOperands* move = moves_.Get(index);
3876 Location source = move->GetSource();
3877 Location destination = move->GetDestination();
3878
3879 if (source.IsRegister() && destination.IsRegister()) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003880 __ xchgq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003881 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003882 Exchange32(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003883 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003884 Exchange32(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003885 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003886 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
3887 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003888 Exchange64(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003889 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003890 Exchange64(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003891 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
3892 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003893 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003894 __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>());
3895 __ movaps(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
3896 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003897 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003898 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003899 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003900 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003901 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003902 Exchange64(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003903 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003904 Exchange64(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003905 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01003906 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003907 }
3908}
3909
3910
3911void ParallelMoveResolverX86_64::SpillScratch(int reg) {
3912 __ pushq(CpuRegister(reg));
3913}
3914
3915
3916void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
3917 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003918}
3919
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003920void InstructionCodeGeneratorX86_64::GenerateClassInitializationCheck(
3921 SlowPathCodeX86_64* slow_path, CpuRegister class_reg) {
3922 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
3923 Immediate(mirror::Class::kStatusInitialized));
3924 __ j(kLess, slow_path->GetEntryLabel());
3925 __ Bind(slow_path->GetExitLabel());
3926 // No need for memory fence, thanks to the X86_64 memory model.
3927}
3928
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003929void LocationsBuilderX86_64::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003930 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3931 ? LocationSummary::kCallOnSlowPath
3932 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003933 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003934 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003935 locations->SetOut(Location::RequiresRegister());
3936}
3937
3938void InstructionCodeGeneratorX86_64::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003939 CpuRegister out = cls->GetLocations()->Out().AsRegister<CpuRegister>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003940 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003941 DCHECK(!cls->CanCallRuntime());
3942 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003943 codegen_->LoadCurrentMethod(out);
3944 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
3945 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003946 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003947 codegen_->LoadCurrentMethod(out);
3948 __ movl(out, Address(out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value()));
3949 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003950 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
3951 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3952 codegen_->AddSlowPath(slow_path);
3953 __ testl(out, out);
3954 __ j(kEqual, slow_path->GetEntryLabel());
3955 if (cls->MustGenerateClinitCheck()) {
3956 GenerateClassInitializationCheck(slow_path, out);
3957 } else {
3958 __ Bind(slow_path->GetExitLabel());
3959 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003960 }
3961}
3962
3963void LocationsBuilderX86_64::VisitClinitCheck(HClinitCheck* check) {
3964 LocationSummary* locations =
3965 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3966 locations->SetInAt(0, Location::RequiresRegister());
3967 if (check->HasUses()) {
3968 locations->SetOut(Location::SameAsFirstInput());
3969 }
3970}
3971
3972void InstructionCodeGeneratorX86_64::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003973 // We assume the class to not be null.
3974 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
3975 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003976 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003977 GenerateClassInitializationCheck(slow_path,
3978 check->GetLocations()->InAt(0).AsRegister<CpuRegister>());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003979}
3980
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003981void LocationsBuilderX86_64::VisitLoadString(HLoadString* load) {
3982 LocationSummary* locations =
3983 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3984 locations->SetOut(Location::RequiresRegister());
3985}
3986
3987void InstructionCodeGeneratorX86_64::VisitLoadString(HLoadString* load) {
3988 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86_64(load);
3989 codegen_->AddSlowPath(slow_path);
3990
Roland Levillain271ab9c2014-11-27 15:23:57 +00003991 CpuRegister out = load->GetLocations()->Out().AsRegister<CpuRegister>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003992 codegen_->LoadCurrentMethod(CpuRegister(out));
Mathieu Chartiereace4582014-11-24 18:29:54 -08003993 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
3994 __ movl(out, Address(out, mirror::Class::DexCacheStringsOffset().Int32Value()));
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003995 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
3996 __ testl(out, out);
3997 __ j(kEqual, slow_path->GetEntryLabel());
3998 __ Bind(slow_path->GetExitLabel());
3999}
4000
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004001void LocationsBuilderX86_64::VisitLoadException(HLoadException* load) {
4002 LocationSummary* locations =
4003 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
4004 locations->SetOut(Location::RequiresRegister());
4005}
4006
4007void InstructionCodeGeneratorX86_64::VisitLoadException(HLoadException* load) {
4008 Address address = Address::Absolute(
4009 Thread::ExceptionOffset<kX86_64WordSize>().Int32Value(), true);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004010 __ gs()->movl(load->GetLocations()->Out().AsRegister<CpuRegister>(), address);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004011 __ gs()->movl(address, Immediate(0));
4012}
4013
4014void LocationsBuilderX86_64::VisitThrow(HThrow* instruction) {
4015 LocationSummary* locations =
4016 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4017 InvokeRuntimeCallingConvention calling_convention;
4018 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4019}
4020
4021void InstructionCodeGeneratorX86_64::VisitThrow(HThrow* instruction) {
4022 __ gs()->call(
4023 Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pDeliverException), true));
4024 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4025}
4026
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004027void LocationsBuilderX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004028 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
4029 ? LocationSummary::kNoCall
4030 : LocationSummary::kCallOnSlowPath;
4031 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
4032 locations->SetInAt(0, Location::RequiresRegister());
4033 locations->SetInAt(1, Location::Any());
4034 locations->SetOut(Location::RequiresRegister());
4035}
4036
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004037void InstructionCodeGeneratorX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004038 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004039 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004040 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004041 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004042 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4043 Label done, zero;
4044 SlowPathCodeX86_64* slow_path = nullptr;
4045
4046 // Return 0 if `obj` is null.
4047 // TODO: avoid this check if we know obj is not null.
4048 __ testl(obj, obj);
4049 __ j(kEqual, &zero);
4050 // Compare the class of `obj` with `cls`.
4051 __ movl(out, Address(obj, class_offset));
4052 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004053 __ cmpl(out, cls.AsRegister<CpuRegister>());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004054 } else {
4055 DCHECK(cls.IsStackSlot()) << cls;
4056 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
4057 }
4058 if (instruction->IsClassFinal()) {
4059 // Classes must be equal for the instanceof to succeed.
4060 __ j(kNotEqual, &zero);
4061 __ movl(out, Immediate(1));
4062 __ jmp(&done);
4063 } else {
4064 // If the classes are not equal, we go into a slow path.
4065 DCHECK(locations->OnlyCallsOnSlowPath());
4066 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004067 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004068 codegen_->AddSlowPath(slow_path);
4069 __ j(kNotEqual, slow_path->GetEntryLabel());
4070 __ movl(out, Immediate(1));
4071 __ jmp(&done);
4072 }
4073 __ Bind(&zero);
4074 __ movl(out, Immediate(0));
4075 if (slow_path != nullptr) {
4076 __ Bind(slow_path->GetExitLabel());
4077 }
4078 __ Bind(&done);
4079}
4080
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004081void LocationsBuilderX86_64::VisitCheckCast(HCheckCast* instruction) {
4082 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
4083 instruction, LocationSummary::kCallOnSlowPath);
4084 locations->SetInAt(0, Location::RequiresRegister());
4085 locations->SetInAt(1, Location::Any());
4086 locations->AddTemp(Location::RequiresRegister());
4087}
4088
4089void InstructionCodeGeneratorX86_64::VisitCheckCast(HCheckCast* instruction) {
4090 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004091 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004092 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004093 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004094 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4095 SlowPathCodeX86_64* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(
4096 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
4097 codegen_->AddSlowPath(slow_path);
4098
4099 // TODO: avoid this check if we know obj is not null.
4100 __ testl(obj, obj);
4101 __ j(kEqual, slow_path->GetExitLabel());
4102 // Compare the class of `obj` with `cls`.
4103 __ movl(temp, Address(obj, class_offset));
4104 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004105 __ cmpl(temp, cls.AsRegister<CpuRegister>());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004106 } else {
4107 DCHECK(cls.IsStackSlot()) << cls;
4108 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
4109 }
4110 // Classes must be equal for the checkcast to succeed.
4111 __ j(kNotEqual, slow_path->GetEntryLabel());
4112 __ Bind(slow_path->GetExitLabel());
4113}
4114
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00004115void LocationsBuilderX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
4116 LocationSummary* locations =
4117 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4118 InvokeRuntimeCallingConvention calling_convention;
4119 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4120}
4121
4122void InstructionCodeGeneratorX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
4123 __ gs()->call(Address::Absolute(instruction->IsEnter()
4124 ? QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pLockObject)
4125 : QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, pUnlockObject),
4126 true));
4127 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4128}
4129
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004130void LocationsBuilderX86_64::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
4131void LocationsBuilderX86_64::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
4132void LocationsBuilderX86_64::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
4133
4134void LocationsBuilderX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
4135 LocationSummary* locations =
4136 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4137 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
4138 || instruction->GetResultType() == Primitive::kPrimLong);
4139 locations->SetInAt(0, Location::RequiresRegister());
4140 if (instruction->GetType() == Primitive::kPrimInt) {
4141 locations->SetInAt(1, Location::Any());
4142 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004143 // We can handle 32 bit constants.
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004144 locations->SetInAt(1, Location::RequiresRegister());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004145 locations->SetInAt(1, Location::RegisterOrInt32LongConstant(instruction->InputAt(1)));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004146 }
4147 locations->SetOut(Location::SameAsFirstInput());
4148}
4149
4150void InstructionCodeGeneratorX86_64::VisitAnd(HAnd* instruction) {
4151 HandleBitwiseOperation(instruction);
4152}
4153
4154void InstructionCodeGeneratorX86_64::VisitOr(HOr* instruction) {
4155 HandleBitwiseOperation(instruction);
4156}
4157
4158void InstructionCodeGeneratorX86_64::VisitXor(HXor* instruction) {
4159 HandleBitwiseOperation(instruction);
4160}
4161
4162void InstructionCodeGeneratorX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
4163 LocationSummary* locations = instruction->GetLocations();
4164 Location first = locations->InAt(0);
4165 Location second = locations->InAt(1);
4166 DCHECK(first.Equals(locations->Out()));
4167
4168 if (instruction->GetResultType() == Primitive::kPrimInt) {
4169 if (second.IsRegister()) {
4170 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004171 __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004172 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004173 __ orl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004174 } else {
4175 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004176 __ xorl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004177 }
4178 } else if (second.IsConstant()) {
4179 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
4180 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004181 __ andl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004182 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004183 __ orl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004184 } else {
4185 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004186 __ xorl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004187 }
4188 } else {
4189 Address address(CpuRegister(RSP), second.GetStackIndex());
4190 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004191 __ andl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004192 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004193 __ orl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004194 } else {
4195 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004196 __ xorl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004197 }
4198 }
4199 } else {
4200 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004201 CpuRegister first_reg = first.AsRegister<CpuRegister>();
4202 bool second_is_constant = false;
4203 int64_t value = 0;
4204 if (second.IsConstant()) {
4205 second_is_constant = true;
4206 value = second.GetConstant()->AsLongConstant()->GetValue();
4207 DCHECK(IsInt<32>(value));
4208 }
4209
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004210 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004211 if (second_is_constant) {
4212 __ andq(first_reg, Immediate(static_cast<int32_t>(value)));
4213 } else {
4214 __ andq(first_reg, second.AsRegister<CpuRegister>());
4215 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004216 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004217 if (second_is_constant) {
4218 __ orq(first_reg, Immediate(static_cast<int32_t>(value)));
4219 } else {
4220 __ orq(first_reg, second.AsRegister<CpuRegister>());
4221 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004222 } else {
4223 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004224 if (second_is_constant) {
4225 __ xorq(first_reg, Immediate(static_cast<int32_t>(value)));
4226 } else {
4227 __ xorq(first_reg, second.AsRegister<CpuRegister>());
4228 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004229 }
4230 }
4231}
4232
Calin Juravleb1498f62015-02-16 13:13:29 +00004233void LocationsBuilderX86_64::VisitBoundType(HBoundType* instruction) {
4234 // Nothing to do, this should be removed during prepare for register allocator.
4235 UNUSED(instruction);
4236 LOG(FATAL) << "Unreachable";
4237}
4238
4239void InstructionCodeGeneratorX86_64::VisitBoundType(HBoundType* instruction) {
4240 // Nothing to do, this should be removed during prepare for register allocator.
4241 UNUSED(instruction);
4242 LOG(FATAL) << "Unreachable";
4243}
4244
Mark Mendellf55c3e02015-03-26 21:07:46 -04004245void CodeGeneratorX86_64::Finalize(CodeAllocator* allocator) {
4246 // Generate the constant area if needed.
Mark Mendell39dcf552015-04-09 20:42:42 -04004247 X86_64Assembler* assembler = GetAssembler();
4248 if (!assembler->IsConstantAreaEmpty()) {
Mark Mendellf55c3e02015-03-26 21:07:46 -04004249 // Align to 4 byte boundary to reduce cache misses, as the data is 4 and 8
4250 // byte values. If used for vectors at a later time, this will need to be
4251 // updated to 16 bytes with the appropriate offset.
Mark Mendell39dcf552015-04-09 20:42:42 -04004252 assembler->Align(4, 0);
4253 constant_area_start_ = assembler->CodeSize();
4254 assembler->AddConstantArea();
Mark Mendellf55c3e02015-03-26 21:07:46 -04004255 }
4256
4257 // And finish up.
4258 CodeGenerator::Finalize(allocator);
4259}
4260
4261/**
4262 * Class to handle late fixup of offsets into constant area.
4263 */
4264class RIPFixup : public AssemblerFixup, public ArenaObject<kArenaAllocMisc> {
4265 public:
Mark Mendell39dcf552015-04-09 20:42:42 -04004266 RIPFixup(const CodeGeneratorX86_64& codegen, int offset)
Mark Mendellf55c3e02015-03-26 21:07:46 -04004267 : codegen_(codegen), offset_into_constant_area_(offset) {}
4268
4269 private:
4270 void Process(const MemoryRegion& region, int pos) OVERRIDE {
4271 // Patch the correct offset for the instruction. We use the address of the
4272 // 'next' instruction, which is 'pos' (patch the 4 bytes before).
4273 int constant_offset = codegen_.ConstantAreaStart() + offset_into_constant_area_;
4274 int relative_position = constant_offset - pos;
4275
4276 // Patch in the right value.
4277 region.StoreUnaligned<int32_t>(pos - 4, relative_position);
4278 }
4279
Mark Mendell39dcf552015-04-09 20:42:42 -04004280 const CodeGeneratorX86_64& codegen_;
Mark Mendellf55c3e02015-03-26 21:07:46 -04004281
4282 // Location in constant area that the fixup refers to.
4283 int offset_into_constant_area_;
4284};
4285
4286Address CodeGeneratorX86_64::LiteralDoubleAddress(double v) {
4287 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddDouble(v));
4288 return Address::RIP(fixup);
4289}
4290
4291Address CodeGeneratorX86_64::LiteralFloatAddress(float v) {
4292 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddFloat(v));
4293 return Address::RIP(fixup);
4294}
4295
4296Address CodeGeneratorX86_64::LiteralInt32Address(int32_t v) {
4297 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt32(v));
4298 return Address::RIP(fixup);
4299}
4300
4301Address CodeGeneratorX86_64::LiteralInt64Address(int64_t v) {
4302 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt64(v));
4303 return Address::RIP(fixup);
4304}
4305
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004306} // namespace x86_64
4307} // namespace art