blob: b1674d65caab7d9aac41f8ae088a60ee5b992c55 [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
Mathieu Chartiere401d142015-04-22 13:56:20 -070019#include "art_method.h"
Guillaume Sanchez0f88e872015-03-30 17:55:45 +010020#include "code_generator_utils.h"
Vladimir Marko58155012015-08-19 12:49:41 +000021#include "compiled_method.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010022#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010023#include "gc/accounting/card_table.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080024#include "intrinsics.h"
25#include "intrinsics_x86_64.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070026#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070027#include "mirror/class-inl.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010028#include "mirror/object_reference.h"
29#include "thread.h"
30#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010031#include "utils/stack_checks.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010032#include "utils/x86_64/assembler_x86_64.h"
33#include "utils/x86_64/managed_register_x86_64.h"
34
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010035namespace art {
36
Roland Levillain0d5a2812015-11-13 10:07:31 +000037template<class MirrorType>
38class GcRoot;
39
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010040namespace x86_64 {
41
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010042static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010043static constexpr Register kMethodRegisterArgument = RDI;
Vladimir Markof3e0ee22015-12-17 15:23:13 +000044// The compare/jump sequence will generate about (1.5 * num_entries) instructions. A jump
45// table version generates 7 instructions and num_entries literals. Compare/jump sequence will
46// generates less code/data with a small num_entries.
47static constexpr uint32_t kPackedSwitchJumpTableThreshold = 5;
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010048
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +000049static constexpr Register kCoreCalleeSaves[] = { RBX, RBP, R12, R13, R14, R15 };
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000050static constexpr FloatRegister kFpuCalleeSaves[] = { XMM12, XMM13, XMM14, XMM15 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010051
Mark Mendell24f2dfa2015-01-14 19:51:45 -050052static constexpr int kC2ConditionMask = 0x400;
53
Roland Levillain62a46b22015-06-01 18:24:13 +010054#define __ down_cast<X86_64Assembler*>(codegen->GetAssembler())->
Calin Juravle175dc732015-08-25 15:42:32 +010055#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kX86_64WordSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010056
Andreas Gampe85b62f22015-09-09 13:15:38 -070057class NullCheckSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010058 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000059 explicit NullCheckSlowPathX86_64(HNullCheck* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010060
Alexandre Rames2ed20af2015-03-06 13:55:35 +000061 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Roland Levillain0d5a2812015-11-13 10:07:31 +000062 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010063 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000064 if (instruction_->CanThrowIntoCatchBlock()) {
65 // Live registers will be restored in the catch block if caught.
66 SaveLiveRegisters(codegen, instruction_->GetLocations());
67 }
Roland Levillain0d5a2812015-11-13 10:07:31 +000068 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowNullPointer),
69 instruction_,
70 instruction_->GetDexPc(),
71 this);
Roland Levillain888d0672015-11-23 18:53:50 +000072 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +010073 }
74
Alexandre Rames8158f282015-08-07 10:26:17 +010075 bool IsFatal() const OVERRIDE { return true; }
76
Alexandre Rames9931f312015-06-19 14:47:01 +010077 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathX86_64"; }
78
Nicolas Geoffraye5038322014-07-04 09:41:32 +010079 private:
Nicolas Geoffraye5038322014-07-04 09:41:32 +010080 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86_64);
81};
82
Andreas Gampe85b62f22015-09-09 13:15:38 -070083class DivZeroCheckSlowPathX86_64 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +000084 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000085 explicit DivZeroCheckSlowPathX86_64(HDivZeroCheck* instruction) : SlowPathCode(instruction) {}
Calin Juravled0d48522014-11-04 16:40:20 +000086
Alexandre Rames2ed20af2015-03-06 13:55:35 +000087 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Roland Levillain0d5a2812015-11-13 10:07:31 +000088 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Calin Juravled0d48522014-11-04 16:40:20 +000089 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000090 if (instruction_->CanThrowIntoCatchBlock()) {
91 // Live registers will be restored in the catch block if caught.
92 SaveLiveRegisters(codegen, instruction_->GetLocations());
93 }
Roland Levillain0d5a2812015-11-13 10:07:31 +000094 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowDivZero),
95 instruction_,
96 instruction_->GetDexPc(),
97 this);
Roland Levillain888d0672015-11-23 18:53:50 +000098 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Calin Juravled0d48522014-11-04 16:40:20 +000099 }
100
Alexandre Rames8158f282015-08-07 10:26:17 +0100101 bool IsFatal() const OVERRIDE { return true; }
102
Alexandre Rames9931f312015-06-19 14:47:01 +0100103 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathX86_64"; }
104
Calin Juravled0d48522014-11-04 16:40:20 +0000105 private:
Calin Juravled0d48522014-11-04 16:40:20 +0000106 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86_64);
107};
108
Andreas Gampe85b62f22015-09-09 13:15:38 -0700109class DivRemMinusOneSlowPathX86_64 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +0000110 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000111 DivRemMinusOneSlowPathX86_64(HInstruction* at, Register reg, Primitive::Type type, bool is_div)
112 : SlowPathCode(at), cpu_reg_(CpuRegister(reg)), type_(type), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +0000113
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000114 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +0000115 __ Bind(GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000116 if (type_ == Primitive::kPrimInt) {
Calin Juravlebacfec32014-11-14 15:54:36 +0000117 if (is_div_) {
118 __ negl(cpu_reg_);
119 } else {
Mark Mendellcfa410b2015-05-25 16:02:44 -0400120 __ xorl(cpu_reg_, cpu_reg_);
Calin Juravlebacfec32014-11-14 15:54:36 +0000121 }
122
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000123 } else {
124 DCHECK_EQ(Primitive::kPrimLong, type_);
Calin Juravlebacfec32014-11-14 15:54:36 +0000125 if (is_div_) {
126 __ negq(cpu_reg_);
127 } else {
Mark Mendell92e83bf2015-05-07 11:25:03 -0400128 __ xorl(cpu_reg_, cpu_reg_);
Calin Juravlebacfec32014-11-14 15:54:36 +0000129 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000130 }
Calin Juravled0d48522014-11-04 16:40:20 +0000131 __ jmp(GetExitLabel());
132 }
133
Alexandre Rames9931f312015-06-19 14:47:01 +0100134 const char* GetDescription() const OVERRIDE { return "DivRemMinusOneSlowPathX86_64"; }
135
Calin Juravled0d48522014-11-04 16:40:20 +0000136 private:
Calin Juravlebacfec32014-11-14 15:54:36 +0000137 const CpuRegister cpu_reg_;
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000138 const Primitive::Type type_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000139 const bool is_div_;
140 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86_64);
Calin Juravled0d48522014-11-04 16:40:20 +0000141};
142
Andreas Gampe85b62f22015-09-09 13:15:38 -0700143class SuspendCheckSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000144 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100145 SuspendCheckSlowPathX86_64(HSuspendCheck* instruction, HBasicBlock* successor)
David Srbecky9cd6d372016-02-09 15:24:47 +0000146 : SlowPathCode(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000147
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000148 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Roland Levillain0d5a2812015-11-13 10:07:31 +0000149 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000150 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000151 SaveLiveRegisters(codegen, instruction_->GetLocations());
Roland Levillain0d5a2812015-11-13 10:07:31 +0000152 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pTestSuspend),
153 instruction_,
154 instruction_->GetDexPc(),
155 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000156 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000157 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100158 if (successor_ == nullptr) {
159 __ jmp(GetReturnLabel());
160 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +0000161 __ jmp(x86_64_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100162 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000163 }
164
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100165 Label* GetReturnLabel() {
166 DCHECK(successor_ == nullptr);
167 return &return_label_;
168 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000169
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100170 HBasicBlock* GetSuccessor() const {
171 return successor_;
172 }
173
Alexandre Rames9931f312015-06-19 14:47:01 +0100174 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathX86_64"; }
175
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000176 private:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100177 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000178 Label return_label_;
179
180 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86_64);
181};
182
Andreas Gampe85b62f22015-09-09 13:15:38 -0700183class BoundsCheckSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100184 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100185 explicit BoundsCheckSlowPathX86_64(HBoundsCheck* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000186 : SlowPathCode(instruction) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100187
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000188 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100189 LocationSummary* locations = instruction_->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000190 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100191 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000192 if (instruction_->CanThrowIntoCatchBlock()) {
193 // Live registers will be restored in the catch block if caught.
194 SaveLiveRegisters(codegen, instruction_->GetLocations());
195 }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000196 // We're moving two locations to locations that could overlap, so we need a parallel
197 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100198 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000199 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100200 locations->InAt(0),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000201 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100202 Primitive::kPrimInt,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100203 locations->InAt(1),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100204 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
205 Primitive::kPrimInt);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000206 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowArrayBounds),
207 instruction_,
208 instruction_->GetDexPc(),
209 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000210 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100211 }
212
Alexandre Rames8158f282015-08-07 10:26:17 +0100213 bool IsFatal() const OVERRIDE { return true; }
214
Alexandre Rames9931f312015-06-19 14:47:01 +0100215 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathX86_64"; }
216
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100217 private:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100218 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86_64);
219};
220
Andreas Gampe85b62f22015-09-09 13:15:38 -0700221class LoadClassSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100222 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000223 LoadClassSlowPathX86_64(HLoadClass* cls,
224 HInstruction* at,
225 uint32_t dex_pc,
226 bool do_clinit)
David Srbecky9cd6d372016-02-09 15:24:47 +0000227 : SlowPathCode(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000228 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
229 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100230
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000231 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000232 LocationSummary* locations = at_->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000233 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100234 __ Bind(GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100235
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000236 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000237
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100238 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000239 __ movl(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(cls_->GetTypeIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +0000240 x86_64_codegen->InvokeRuntime(do_clinit_ ?
241 QUICK_ENTRY_POINT(pInitializeStaticStorage) :
242 QUICK_ENTRY_POINT(pInitializeType),
243 at_,
244 dex_pc_,
245 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000246 if (do_clinit_) {
247 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
248 } else {
249 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
250 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100251
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000252 Location out = locations->Out();
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000253 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000254 if (out.IsValid()) {
255 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Roland Levillain0d5a2812015-11-13 10:07:31 +0000256 x86_64_codegen->Move(out, Location::RegisterLocation(RAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000257 }
258
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000259 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100260 __ jmp(GetExitLabel());
261 }
262
Alexandre Rames9931f312015-06-19 14:47:01 +0100263 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathX86_64"; }
264
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100265 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000266 // The class this slow path will load.
267 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100268
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000269 // The instruction where this slow path is happening.
270 // (Might be the load class or an initialization check).
271 HInstruction* const at_;
272
273 // The dex PC of `at_`.
274 const uint32_t dex_pc_;
275
276 // Whether to initialize the class.
277 const bool do_clinit_;
278
279 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86_64);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100280};
281
Andreas Gampe85b62f22015-09-09 13:15:38 -0700282class LoadStringSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000283 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000284 explicit LoadStringSlowPathX86_64(HLoadString* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000285
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000286 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000287 LocationSummary* locations = instruction_->GetLocations();
288 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
289
Roland Levillain0d5a2812015-11-13 10:07:31 +0000290 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000291 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000292 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000293
294 InvokeRuntimeCallingConvention calling_convention;
David Srbecky9cd6d372016-02-09 15:24:47 +0000295 const uint32_t string_index = instruction_->AsLoadString()->GetStringIndex();
296 __ movl(CpuRegister(calling_convention.GetRegisterAt(0)), Immediate(string_index));
Roland Levillain0d5a2812015-11-13 10:07:31 +0000297 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pResolveString),
298 instruction_,
299 instruction_->GetDexPc(),
300 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000301 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000302 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000303 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000304 __ jmp(GetExitLabel());
305 }
306
Alexandre Rames9931f312015-06-19 14:47:01 +0100307 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathX86_64"; }
308
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000309 private:
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000310 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86_64);
311};
312
Andreas Gampe85b62f22015-09-09 13:15:38 -0700313class TypeCheckSlowPathX86_64 : public SlowPathCode {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000314 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000315 TypeCheckSlowPathX86_64(HInstruction* instruction, bool is_fatal)
David Srbecky9cd6d372016-02-09 15:24:47 +0000316 : SlowPathCode(instruction), is_fatal_(is_fatal) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000317
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000318 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000319 LocationSummary* locations = instruction_->GetLocations();
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100320 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0)
321 : locations->Out();
322 uint32_t dex_pc = instruction_->GetDexPc();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000323 DCHECK(instruction_->IsCheckCast()
324 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000325
Roland Levillain0d5a2812015-11-13 10:07:31 +0000326 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000327 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000328
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000329 if (!is_fatal_) {
330 SaveLiveRegisters(codegen, locations);
331 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000332
333 // We're moving two locations to locations that could overlap, so we need a parallel
334 // move resolver.
335 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000336 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100337 locations->InAt(1),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000338 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100339 Primitive::kPrimNot,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100340 object_class,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100341 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
342 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000343
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000344 if (instruction_->IsInstanceOf()) {
Roland Levillain0d5a2812015-11-13 10:07:31 +0000345 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
346 instruction_,
347 dex_pc,
348 this);
349 CheckEntrypointTypes<
350 kQuickInstanceofNonTrivial, uint32_t, const mirror::Class*, const mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000351 } else {
352 DCHECK(instruction_->IsCheckCast());
Roland Levillain0d5a2812015-11-13 10:07:31 +0000353 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
354 instruction_,
355 dex_pc,
356 this);
357 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000358 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000359
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000360 if (!is_fatal_) {
361 if (instruction_->IsInstanceOf()) {
Roland Levillain0d5a2812015-11-13 10:07:31 +0000362 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000363 }
Nicolas Geoffray75374372015-09-17 17:12:19 +0000364
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000365 RestoreLiveRegisters(codegen, locations);
366 __ jmp(GetExitLabel());
367 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000368 }
369
Alexandre Rames9931f312015-06-19 14:47:01 +0100370 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathX86_64"; }
371
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000372 bool IsFatal() const OVERRIDE { return is_fatal_; }
373
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000374 private:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000375 const bool is_fatal_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000376
377 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86_64);
378};
379
Andreas Gampe85b62f22015-09-09 13:15:38 -0700380class DeoptimizationSlowPathX86_64 : public SlowPathCode {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700381 public:
Aart Bik42249c32016-01-07 15:33:50 -0800382 explicit DeoptimizationSlowPathX86_64(HDeoptimize* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000383 : SlowPathCode(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700384
385 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Roland Levillain0d5a2812015-11-13 10:07:31 +0000386 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700387 __ Bind(GetEntryLabel());
388 SaveLiveRegisters(codegen, instruction_->GetLocations());
Roland Levillain0d5a2812015-11-13 10:07:31 +0000389 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize),
Aart Bik42249c32016-01-07 15:33:50 -0800390 instruction_,
391 instruction_->GetDexPc(),
Roland Levillain0d5a2812015-11-13 10:07:31 +0000392 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000393 CheckEntrypointTypes<kQuickDeoptimize, void, void>();
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700394 }
395
Alexandre Rames9931f312015-06-19 14:47:01 +0100396 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathX86_64"; }
397
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700398 private:
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700399 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86_64);
400};
401
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100402class ArraySetSlowPathX86_64 : public SlowPathCode {
403 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000404 explicit ArraySetSlowPathX86_64(HInstruction* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100405
406 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
407 LocationSummary* locations = instruction_->GetLocations();
408 __ Bind(GetEntryLabel());
409 SaveLiveRegisters(codegen, locations);
410
411 InvokeRuntimeCallingConvention calling_convention;
412 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
413 parallel_move.AddMove(
414 locations->InAt(0),
415 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
416 Primitive::kPrimNot,
417 nullptr);
418 parallel_move.AddMove(
419 locations->InAt(1),
420 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
421 Primitive::kPrimInt,
422 nullptr);
423 parallel_move.AddMove(
424 locations->InAt(2),
425 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
426 Primitive::kPrimNot,
427 nullptr);
428 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
429
Roland Levillain0d5a2812015-11-13 10:07:31 +0000430 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
431 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
432 instruction_,
433 instruction_->GetDexPc(),
434 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000435 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100436 RestoreLiveRegisters(codegen, locations);
437 __ jmp(GetExitLabel());
438 }
439
440 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathX86_64"; }
441
442 private:
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100443 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathX86_64);
444};
445
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000446// Slow path marking an object during a read barrier.
447class ReadBarrierMarkSlowPathX86_64 : public SlowPathCode {
448 public:
449 ReadBarrierMarkSlowPathX86_64(HInstruction* instruction, Location out, Location obj)
David Srbecky9cd6d372016-02-09 15:24:47 +0000450 : SlowPathCode(instruction), out_(out), obj_(obj) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000451 DCHECK(kEmitCompilerReadBarrier);
452 }
453
454 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathX86_64"; }
455
456 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
457 LocationSummary* locations = instruction_->GetLocations();
458 Register reg_out = out_.AsRegister<Register>();
459 DCHECK(locations->CanCall());
460 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
461 DCHECK(instruction_->IsInstanceFieldGet() ||
462 instruction_->IsStaticFieldGet() ||
463 instruction_->IsArrayGet() ||
464 instruction_->IsLoadClass() ||
465 instruction_->IsLoadString() ||
466 instruction_->IsInstanceOf() ||
467 instruction_->IsCheckCast())
468 << "Unexpected instruction in read barrier marking slow path: "
469 << instruction_->DebugName();
470
471 __ Bind(GetEntryLabel());
472 SaveLiveRegisters(codegen, locations);
473
474 InvokeRuntimeCallingConvention calling_convention;
475 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
476 x86_64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), obj_);
477 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierMark),
478 instruction_,
479 instruction_->GetDexPc(),
480 this);
481 CheckEntrypointTypes<kQuickReadBarrierMark, mirror::Object*, mirror::Object*>();
482 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
483
484 RestoreLiveRegisters(codegen, locations);
485 __ jmp(GetExitLabel());
486 }
487
488 private:
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000489 const Location out_;
490 const Location obj_;
491
492 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathX86_64);
493};
494
Roland Levillain0d5a2812015-11-13 10:07:31 +0000495// Slow path generating a read barrier for a heap reference.
496class ReadBarrierForHeapReferenceSlowPathX86_64 : public SlowPathCode {
497 public:
498 ReadBarrierForHeapReferenceSlowPathX86_64(HInstruction* instruction,
499 Location out,
500 Location ref,
501 Location obj,
502 uint32_t offset,
503 Location index)
David Srbecky9cd6d372016-02-09 15:24:47 +0000504 : SlowPathCode(instruction),
Roland Levillain0d5a2812015-11-13 10:07:31 +0000505 out_(out),
506 ref_(ref),
507 obj_(obj),
508 offset_(offset),
509 index_(index) {
510 DCHECK(kEmitCompilerReadBarrier);
511 // If `obj` is equal to `out` or `ref`, it means the initial
512 // object has been overwritten by (or after) the heap object
513 // reference load to be instrumented, e.g.:
514 //
515 // __ movl(out, Address(out, offset));
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000516 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000517 //
518 // In that case, we have lost the information about the original
519 // object, and the emitted read barrier cannot work properly.
520 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
521 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
522}
523
524 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
525 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
526 LocationSummary* locations = instruction_->GetLocations();
527 CpuRegister reg_out = out_.AsRegister<CpuRegister>();
528 DCHECK(locations->CanCall());
529 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out.AsRegister())) << out_;
530 DCHECK(!instruction_->IsInvoke() ||
531 (instruction_->IsInvokeStaticOrDirect() &&
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000532 instruction_->GetLocations()->Intrinsified()))
533 << "Unexpected instruction in read barrier for heap reference slow path: "
534 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000535
536 __ Bind(GetEntryLabel());
537 SaveLiveRegisters(codegen, locations);
538
539 // We may have to change the index's value, but as `index_` is a
540 // constant member (like other "inputs" of this slow path),
541 // introduce a copy of it, `index`.
542 Location index = index_;
543 if (index_.IsValid()) {
544 // Handle `index_` for HArrayGet and intrinsic UnsafeGetObject.
545 if (instruction_->IsArrayGet()) {
546 // Compute real offset and store it in index_.
547 Register index_reg = index_.AsRegister<CpuRegister>().AsRegister();
548 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg));
549 if (codegen->IsCoreCalleeSaveRegister(index_reg)) {
550 // We are about to change the value of `index_reg` (see the
551 // calls to art::x86_64::X86_64Assembler::shll and
552 // art::x86_64::X86_64Assembler::AddImmediate below), but it
553 // has not been saved by the previous call to
554 // art::SlowPathCode::SaveLiveRegisters, as it is a
555 // callee-save register --
556 // art::SlowPathCode::SaveLiveRegisters does not consider
557 // callee-save registers, as it has been designed with the
558 // assumption that callee-save registers are supposed to be
559 // handled by the called function. So, as a callee-save
560 // register, `index_reg` _would_ eventually be saved onto
561 // the stack, but it would be too late: we would have
562 // changed its value earlier. Therefore, we manually save
563 // it here into another freely available register,
564 // `free_reg`, chosen of course among the caller-save
565 // registers (as a callee-save `free_reg` register would
566 // exhibit the same problem).
567 //
568 // Note we could have requested a temporary register from
569 // the register allocator instead; but we prefer not to, as
570 // this is a slow path, and we know we can find a
571 // caller-save register that is available.
572 Register free_reg = FindAvailableCallerSaveRegister(codegen).AsRegister();
573 __ movl(CpuRegister(free_reg), CpuRegister(index_reg));
574 index_reg = free_reg;
575 index = Location::RegisterLocation(index_reg);
576 } else {
577 // The initial register stored in `index_` has already been
578 // saved in the call to art::SlowPathCode::SaveLiveRegisters
579 // (as it is not a callee-save register), so we can freely
580 // use it.
581 }
582 // Shifting the index value contained in `index_reg` by the
583 // scale factor (2) cannot overflow in practice, as the
584 // runtime is unable to allocate object arrays with a size
585 // larger than 2^26 - 1 (that is, 2^28 - 4 bytes).
586 __ shll(CpuRegister(index_reg), Immediate(TIMES_4));
587 static_assert(
588 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
589 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
590 __ AddImmediate(CpuRegister(index_reg), Immediate(offset_));
591 } else {
592 DCHECK(instruction_->IsInvoke());
593 DCHECK(instruction_->GetLocations()->Intrinsified());
594 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
595 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
596 << instruction_->AsInvoke()->GetIntrinsic();
597 DCHECK_EQ(offset_, 0U);
598 DCHECK(index_.IsRegister());
599 }
600 }
601
602 // We're moving two or three locations to locations that could
603 // overlap, so we need a parallel move resolver.
604 InvokeRuntimeCallingConvention calling_convention;
605 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
606 parallel_move.AddMove(ref_,
607 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
608 Primitive::kPrimNot,
609 nullptr);
610 parallel_move.AddMove(obj_,
611 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
612 Primitive::kPrimNot,
613 nullptr);
614 if (index.IsValid()) {
615 parallel_move.AddMove(index,
616 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
617 Primitive::kPrimInt,
618 nullptr);
619 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
620 } else {
621 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
622 __ movl(CpuRegister(calling_convention.GetRegisterAt(2)), Immediate(offset_));
623 }
624 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierSlow),
625 instruction_,
626 instruction_->GetDexPc(),
627 this);
628 CheckEntrypointTypes<
629 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
630 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
631
632 RestoreLiveRegisters(codegen, locations);
633 __ jmp(GetExitLabel());
634 }
635
636 const char* GetDescription() const OVERRIDE {
637 return "ReadBarrierForHeapReferenceSlowPathX86_64";
638 }
639
640 private:
641 CpuRegister FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
642 size_t ref = static_cast<int>(ref_.AsRegister<CpuRegister>().AsRegister());
643 size_t obj = static_cast<int>(obj_.AsRegister<CpuRegister>().AsRegister());
644 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
645 if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) {
646 return static_cast<CpuRegister>(i);
647 }
648 }
649 // We shall never fail to find a free caller-save register, as
650 // there are more than two core caller-save registers on x86-64
651 // (meaning it is possible to find one which is different from
652 // `ref` and `obj`).
653 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
654 LOG(FATAL) << "Could not find a free caller-save register";
655 UNREACHABLE();
656 }
657
Roland Levillain0d5a2812015-11-13 10:07:31 +0000658 const Location out_;
659 const Location ref_;
660 const Location obj_;
661 const uint32_t offset_;
662 // An additional location containing an index to an array.
663 // Only used for HArrayGet and the UnsafeGetObject &
664 // UnsafeGetObjectVolatile intrinsics.
665 const Location index_;
666
667 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathX86_64);
668};
669
670// Slow path generating a read barrier for a GC root.
671class ReadBarrierForRootSlowPathX86_64 : public SlowPathCode {
672 public:
673 ReadBarrierForRootSlowPathX86_64(HInstruction* instruction, Location out, Location root)
David Srbecky9cd6d372016-02-09 15:24:47 +0000674 : SlowPathCode(instruction), out_(out), root_(root) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000675 DCHECK(kEmitCompilerReadBarrier);
676 }
Roland Levillain0d5a2812015-11-13 10:07:31 +0000677
678 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
679 LocationSummary* locations = instruction_->GetLocations();
680 DCHECK(locations->CanCall());
681 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(out_.reg()));
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000682 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
683 << "Unexpected instruction in read barrier for GC root slow path: "
684 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000685
686 __ Bind(GetEntryLabel());
687 SaveLiveRegisters(codegen, locations);
688
689 InvokeRuntimeCallingConvention calling_convention;
690 CodeGeneratorX86_64* x86_64_codegen = down_cast<CodeGeneratorX86_64*>(codegen);
691 x86_64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_);
692 x86_64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierForRootSlow),
693 instruction_,
694 instruction_->GetDexPc(),
695 this);
696 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
697 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
698
699 RestoreLiveRegisters(codegen, locations);
700 __ jmp(GetExitLabel());
701 }
702
703 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathX86_64"; }
704
705 private:
Roland Levillain0d5a2812015-11-13 10:07:31 +0000706 const Location out_;
707 const Location root_;
708
709 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathX86_64);
710};
711
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100712#undef __
Roland Levillain62a46b22015-06-01 18:24:13 +0100713#define __ down_cast<X86_64Assembler*>(GetAssembler())->
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100714
Roland Levillain4fa13f62015-07-06 18:11:54 +0100715inline Condition X86_64IntegerCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700716 switch (cond) {
717 case kCondEQ: return kEqual;
718 case kCondNE: return kNotEqual;
719 case kCondLT: return kLess;
720 case kCondLE: return kLessEqual;
721 case kCondGT: return kGreater;
722 case kCondGE: return kGreaterEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700723 case kCondB: return kBelow;
724 case kCondBE: return kBelowEqual;
725 case kCondA: return kAbove;
726 case kCondAE: return kAboveEqual;
Dave Allison20dfc792014-06-16 20:44:29 -0700727 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100728 LOG(FATAL) << "Unreachable";
729 UNREACHABLE();
730}
731
Aart Bike9f37602015-10-09 11:15:55 -0700732// Maps FP condition to x86_64 name.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100733inline Condition X86_64FPCondition(IfCondition cond) {
734 switch (cond) {
735 case kCondEQ: return kEqual;
736 case kCondNE: return kNotEqual;
737 case kCondLT: return kBelow;
738 case kCondLE: return kBelowEqual;
739 case kCondGT: return kAbove;
740 case kCondGE: return kAboveEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700741 default: break; // should not happen
Roland Levillain4fa13f62015-07-06 18:11:54 +0100742 };
743 LOG(FATAL) << "Unreachable";
744 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700745}
746
Vladimir Markodc151b22015-10-15 18:02:30 +0100747HInvokeStaticOrDirect::DispatchInfo CodeGeneratorX86_64::GetSupportedInvokeStaticOrDirectDispatch(
748 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
749 MethodReference target_method ATTRIBUTE_UNUSED) {
750 switch (desired_dispatch_info.code_ptr_location) {
751 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
752 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
753 // For direct code, we actually prefer to call via the code pointer from ArtMethod*.
754 return HInvokeStaticOrDirect::DispatchInfo {
755 desired_dispatch_info.method_load_kind,
756 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
757 desired_dispatch_info.method_load_data,
758 0u
759 };
760 default:
761 return desired_dispatch_info;
762 }
763}
764
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800765void CodeGeneratorX86_64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke,
Nicolas Geoffray38207af2015-06-01 15:46:22 +0100766 Location temp) {
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800767 // All registers are assumed to be correctly set up.
768
Vladimir Marko58155012015-08-19 12:49:41 +0000769 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
770 switch (invoke->GetMethodLoadKind()) {
771 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
772 // temp = thread->string_init_entrypoint
Nicolas Geoffray7f59d592015-12-29 16:20:52 +0000773 __ gs()->movq(temp.AsRegister<CpuRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000774 Address::Absolute(invoke->GetStringInitOffset(), /* no_rip */ true));
Vladimir Marko58155012015-08-19 12:49:41 +0000775 break;
776 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +0000777 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +0000778 break;
779 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
780 __ movq(temp.AsRegister<CpuRegister>(), Immediate(invoke->GetMethodAddress()));
781 break;
782 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
783 __ movl(temp.AsRegister<CpuRegister>(), Immediate(0)); // Placeholder.
784 method_patches_.emplace_back(invoke->GetTargetMethod());
785 __ Bind(&method_patches_.back().label); // Bind the label at the end of the "movl" insn.
786 break;
787 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000788 pc_relative_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
789 invoke->GetDexCacheArrayOffset());
Vladimir Marko58155012015-08-19 12:49:41 +0000790 __ movq(temp.AsRegister<CpuRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000791 Address::Absolute(kDummy32BitOffset, /* no_rip */ false));
Vladimir Marko58155012015-08-19 12:49:41 +0000792 // Bind the label at the end of the "movl" insn.
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000793 __ Bind(&pc_relative_dex_cache_patches_.back().label);
Vladimir Marko58155012015-08-19 12:49:41 +0000794 break;
795 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
Vladimir Markoc53c0792015-11-19 15:48:33 +0000796 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +0000797 Register method_reg;
798 CpuRegister reg = temp.AsRegister<CpuRegister>();
799 if (current_method.IsRegister()) {
800 method_reg = current_method.AsRegister<Register>();
801 } else {
802 DCHECK(invoke->GetLocations()->Intrinsified());
803 DCHECK(!current_method.IsValid());
804 method_reg = reg.AsRegister();
805 __ movq(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset));
806 }
Roland Levillain0d5a2812015-11-13 10:07:31 +0000807 // /* ArtMethod*[] */ temp = temp.ptr_sized_fields_->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +0100808 __ movq(reg,
809 Address(CpuRegister(method_reg),
810 ArtMethod::DexCacheResolvedMethodsOffset(kX86_64PointerSize).SizeValue()));
Vladimir Marko58155012015-08-19 12:49:41 +0000811 // temp = temp[index_in_cache]
812 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
813 __ movq(reg, Address(reg, CodeGenerator::GetCachePointerOffset(index_in_cache)));
814 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +0100815 }
Vladimir Marko58155012015-08-19 12:49:41 +0000816 }
817
818 switch (invoke->GetCodePtrLocation()) {
819 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
820 __ call(&frame_entry_label_);
821 break;
822 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative: {
823 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
824 Label* label = &relative_call_patches_.back().label;
825 __ call(label); // Bind to the patch label, override at link time.
826 __ Bind(label); // Bind the label at the end of the "call" insn.
827 break;
828 }
829 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
830 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
Vladimir Markodc151b22015-10-15 18:02:30 +0100831 // Filtered out by GetSupportedInvokeStaticOrDirectDispatch().
832 LOG(FATAL) << "Unsupported";
833 UNREACHABLE();
Vladimir Marko58155012015-08-19 12:49:41 +0000834 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
835 // (callee_method + offset_of_quick_compiled_code)()
836 __ call(Address(callee_method.AsRegister<CpuRegister>(),
837 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
838 kX86_64WordSize).SizeValue()));
839 break;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000840 }
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800841
842 DCHECK(!IsLeafMethod());
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800843}
844
Andreas Gampebfb5ba92015-09-01 15:45:02 +0000845void CodeGeneratorX86_64::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
846 CpuRegister temp = temp_in.AsRegister<CpuRegister>();
847 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
848 invoke->GetVTableIndex(), kX86_64PointerSize).SizeValue();
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000849
850 // Use the calling convention instead of the location of the receiver, as
851 // intrinsics may have put the receiver in a different register. In the intrinsics
852 // slow path, the arguments have been moved to the right place, so here we are
853 // guaranteed that the receiver is the first register of the calling convention.
854 InvokeDexCallingConvention calling_convention;
855 Register receiver = calling_convention.GetRegisterAt(0);
856
Andreas Gampebfb5ba92015-09-01 15:45:02 +0000857 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000858 // /* HeapReference<Class> */ temp = receiver->klass_
Nicolas Geoffraye5234232015-12-02 09:06:11 +0000859 __ movl(temp, Address(CpuRegister(receiver), class_offset));
Andreas Gampebfb5ba92015-09-01 15:45:02 +0000860 MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000861 // Instead of simply (possibly) unpoisoning `temp` here, we should
862 // emit a read barrier for the previous class reference load.
863 // However this is not required in practice, as this is an
864 // intermediate/temporary reference and because the current
865 // concurrent copying collector keeps the from-space memory
866 // intact/accessible until the end of the marking phase (the
867 // concurrent copying collector may not in the future).
Andreas Gampebfb5ba92015-09-01 15:45:02 +0000868 __ MaybeUnpoisonHeapReference(temp);
869 // temp = temp->GetMethodAt(method_offset);
870 __ movq(temp, Address(temp, method_offset));
871 // call temp->GetEntryPoint();
872 __ call(Address(temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(
873 kX86_64WordSize).SizeValue()));
874}
875
Vladimir Marko58155012015-08-19 12:49:41 +0000876void CodeGeneratorX86_64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
877 DCHECK(linker_patches->empty());
878 size_t size =
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000879 method_patches_.size() +
880 relative_call_patches_.size() +
881 pc_relative_dex_cache_patches_.size();
Vladimir Marko58155012015-08-19 12:49:41 +0000882 linker_patches->reserve(size);
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000883 // The label points to the end of the "movl" insn but the literal offset for method
884 // patch needs to point to the embedded constant which occupies the last 4 bytes.
885 constexpr uint32_t kLabelPositionToLiteralOffsetAdjustment = 4u;
Vladimir Marko58155012015-08-19 12:49:41 +0000886 for (const MethodPatchInfo<Label>& info : method_patches_) {
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000887 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Vladimir Marko58155012015-08-19 12:49:41 +0000888 linker_patches->push_back(LinkerPatch::MethodPatch(literal_offset,
889 info.target_method.dex_file,
890 info.target_method.dex_method_index));
891 }
892 for (const MethodPatchInfo<Label>& info : relative_call_patches_) {
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000893 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Vladimir Marko58155012015-08-19 12:49:41 +0000894 linker_patches->push_back(LinkerPatch::RelativeCodePatch(literal_offset,
895 info.target_method.dex_file,
896 info.target_method.dex_method_index));
897 }
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000898 for (const PcRelativeDexCacheAccessInfo& info : pc_relative_dex_cache_patches_) {
899 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Vladimir Marko58155012015-08-19 12:49:41 +0000900 linker_patches->push_back(LinkerPatch::DexCacheArrayPatch(literal_offset,
901 &info.target_dex_file,
902 info.label.Position(),
903 info.element_offset));
904 }
905}
906
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100907void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100908 stream << Register(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100909}
910
911void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100912 stream << FloatRegister(reg);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100913}
914
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100915size_t CodeGeneratorX86_64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
916 __ movq(Address(CpuRegister(RSP), stack_index), CpuRegister(reg_id));
917 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100918}
919
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100920size_t CodeGeneratorX86_64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
921 __ movq(CpuRegister(reg_id), Address(CpuRegister(RSP), stack_index));
922 return kX86_64WordSize;
923}
924
925size_t CodeGeneratorX86_64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
926 __ movsd(Address(CpuRegister(RSP), stack_index), XmmRegister(reg_id));
927 return kX86_64WordSize;
928}
929
930size_t CodeGeneratorX86_64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
931 __ movsd(XmmRegister(reg_id), Address(CpuRegister(RSP), stack_index));
932 return kX86_64WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100933}
934
Calin Juravle175dc732015-08-25 15:42:32 +0100935void CodeGeneratorX86_64::InvokeRuntime(QuickEntrypointEnum entrypoint,
936 HInstruction* instruction,
937 uint32_t dex_pc,
938 SlowPathCode* slow_path) {
939 InvokeRuntime(GetThreadOffset<kX86_64WordSize>(entrypoint).Int32Value(),
940 instruction,
941 dex_pc,
942 slow_path);
943}
944
945void CodeGeneratorX86_64::InvokeRuntime(int32_t entry_point_offset,
Alexandre Rames8158f282015-08-07 10:26:17 +0100946 HInstruction* instruction,
947 uint32_t dex_pc,
948 SlowPathCode* slow_path) {
Alexandre Rames78e3ef62015-08-12 13:43:29 +0100949 ValidateInvokeRuntime(instruction, slow_path);
Roland Levillain1e7f8db2015-12-15 10:54:19 +0000950 __ gs()->call(Address::Absolute(entry_point_offset, /* no_rip */ true));
Alexandre Rames8158f282015-08-07 10:26:17 +0100951 RecordPcInfo(instruction, dex_pc, slow_path);
Alexandre Rames8158f282015-08-07 10:26:17 +0100952}
953
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000954static constexpr int kNumberOfCpuRegisterPairs = 0;
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +0000955// Use a fake return address register to mimic Quick.
956static constexpr Register kFakeReturnRegister = Register(kLastCpuRegister + 1);
Mark Mendellfb8d2792015-03-31 22:16:59 -0400957CodeGeneratorX86_64::CodeGeneratorX86_64(HGraph* graph,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000958 const X86_64InstructionSetFeatures& isa_features,
959 const CompilerOptions& compiler_options,
960 OptimizingCompilerStats* stats)
Nicolas Geoffray98893962015-01-21 12:32:32 +0000961 : CodeGenerator(graph,
962 kNumberOfCpuRegisters,
963 kNumberOfFloatRegisters,
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000964 kNumberOfCpuRegisterPairs,
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000965 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
966 arraysize(kCoreCalleeSaves))
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +0000967 | (1 << kFakeReturnRegister),
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000968 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
969 arraysize(kFpuCalleeSaves)),
Serban Constantinescuecc43662015-08-13 13:33:12 +0100970 compiler_options,
971 stats),
Vladimir Marko225b6462015-09-28 12:17:40 +0100972 block_labels_(nullptr),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100973 location_builder_(graph, this),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000974 instruction_visitor_(graph, this),
Mark Mendellfb8d2792015-03-31 22:16:59 -0400975 move_resolver_(graph->GetArena(), this),
Mark Mendellf55c3e02015-03-26 21:07:46 -0400976 isa_features_(isa_features),
Vladimir Marko58155012015-08-19 12:49:41 +0000977 constant_area_start_(0),
Vladimir Marko5233f932015-09-29 19:01:15 +0100978 method_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
979 relative_call_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Marko0f7dca42015-11-02 14:36:43 +0000980 pc_relative_dex_cache_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Mark Mendell9c86b482015-09-18 13:36:07 -0400981 fixups_to_jump_tables_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000982 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
983}
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100984
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100985InstructionCodeGeneratorX86_64::InstructionCodeGeneratorX86_64(HGraph* graph,
986 CodeGeneratorX86_64* codegen)
Aart Bik42249c32016-01-07 15:33:50 -0800987 : InstructionCodeGenerator(graph, codegen),
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100988 assembler_(codegen->GetAssembler()),
989 codegen_(codegen) {}
990
David Brazdil58282f42016-01-14 12:45:10 +0000991void CodeGeneratorX86_64::SetupBlockedRegisters() const {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100992 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100993 blocked_core_registers_[RSP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100994
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +0000995 // Block the register used as TMP.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100996 blocked_core_registers_[TMP] = true;
Nicolas Geoffray9cf35522014-06-09 18:40:10 +0100997}
998
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100999static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001000 return dwarf::Reg::X86_64Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001001}
David Srbecky9d8606d2015-04-12 09:35:32 +01001002
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001003static dwarf::Reg DWARFReg(FloatRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001004 return dwarf::Reg::X86_64Fp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001005}
1006
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001007void CodeGeneratorX86_64::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001008 __ cfi().SetCurrentCFAOffset(kX86_64WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001009 __ Bind(&frame_entry_label_);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +01001010 bool skip_overflow_check = IsLeafMethod()
Dave Allison648d7112014-07-25 16:15:27 -07001011 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001012 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +01001013
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001014 if (!skip_overflow_check) {
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +01001015 __ testq(CpuRegister(RAX), Address(
1016 CpuRegister(RSP), -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86_64))));
Nicolas Geoffray39468442014-09-02 15:17:15 +01001017 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +01001018 }
Nicolas Geoffraya26369a2015-01-22 08:46:05 +00001019
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001020 if (HasEmptyFrame()) {
1021 return;
1022 }
1023
Nicolas Geoffray98893962015-01-21 12:32:32 +00001024 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001025 Register reg = kCoreCalleeSaves[i];
Nicolas Geoffray4597b5b2015-01-23 21:51:55 +00001026 if (allocated_registers_.ContainsCoreRegister(reg)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001027 __ pushq(CpuRegister(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001028 __ cfi().AdjustCFAOffset(kX86_64WordSize);
1029 __ cfi().RelOffset(DWARFReg(reg), 0);
Nicolas Geoffray98893962015-01-21 12:32:32 +00001030 }
1031 }
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +01001032
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001033 int adjust = GetFrameSize() - GetCoreSpillSize();
1034 __ subq(CpuRegister(RSP), Immediate(adjust));
1035 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001036 uint32_t xmm_spill_location = GetFpuSpillStart();
1037 size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize();
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001038
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001039 for (int i = arraysize(kFpuCalleeSaves) - 1; i >= 0; --i) {
1040 if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001041 int offset = xmm_spill_location + (xmm_spill_slot_size * i);
1042 __ movsd(Address(CpuRegister(RSP), offset), XmmRegister(kFpuCalleeSaves[i]));
1043 __ cfi().RelOffset(DWARFReg(kFpuCalleeSaves[i]), offset);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001044 }
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001045 }
1046
Mathieu Chartiere401d142015-04-22 13:56:20 -07001047 __ movq(Address(CpuRegister(RSP), kCurrentMethodStackOffset),
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01001048 CpuRegister(kMethodRegisterArgument));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001049}
1050
1051void CodeGeneratorX86_64::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +01001052 __ cfi().RememberState();
1053 if (!HasEmptyFrame()) {
1054 uint32_t xmm_spill_location = GetFpuSpillStart();
1055 size_t xmm_spill_slot_size = GetFloatingPointSpillSlotSize();
1056 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
1057 if (allocated_registers_.ContainsFloatingPointRegister(kFpuCalleeSaves[i])) {
1058 int offset = xmm_spill_location + (xmm_spill_slot_size * i);
1059 __ movsd(XmmRegister(kFpuCalleeSaves[i]), Address(CpuRegister(RSP), offset));
1060 __ cfi().Restore(DWARFReg(kFpuCalleeSaves[i]));
1061 }
1062 }
1063
1064 int adjust = GetFrameSize() - GetCoreSpillSize();
1065 __ addq(CpuRegister(RSP), Immediate(adjust));
1066 __ cfi().AdjustCFAOffset(-adjust);
1067
1068 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
1069 Register reg = kCoreCalleeSaves[i];
1070 if (allocated_registers_.ContainsCoreRegister(reg)) {
1071 __ popq(CpuRegister(reg));
1072 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86_64WordSize));
1073 __ cfi().Restore(DWARFReg(reg));
1074 }
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001075 }
1076 }
David Srbeckyc34dc932015-04-12 09:27:43 +01001077 __ ret();
1078 __ cfi().RestoreState();
1079 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001080}
1081
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001082void CodeGeneratorX86_64::Bind(HBasicBlock* block) {
1083 __ Bind(GetLabelOf(block));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001084}
1085
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001086Location CodeGeneratorX86_64::GetStackLocation(HLoadLocal* load) const {
1087 switch (load->GetType()) {
1088 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001089 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001090 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001091
1092 case Primitive::kPrimInt:
1093 case Primitive::kPrimNot:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001094 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001095 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001096
1097 case Primitive::kPrimBoolean:
1098 case Primitive::kPrimByte:
1099 case Primitive::kPrimChar:
1100 case Primitive::kPrimShort:
1101 case Primitive::kPrimVoid:
1102 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -07001103 UNREACHABLE();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001104 }
1105
1106 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -07001107 UNREACHABLE();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001108}
1109
1110void CodeGeneratorX86_64::Move(Location destination, Location source) {
1111 if (source.Equals(destination)) {
1112 return;
1113 }
1114 if (destination.IsRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001115 CpuRegister dest = destination.AsRegister<CpuRegister>();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001116 if (source.IsRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001117 __ movq(dest, source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001118 } else if (source.IsFpuRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001119 __ movd(dest, source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001120 } else if (source.IsStackSlot()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001121 __ movl(dest, Address(CpuRegister(RSP), source.GetStackIndex()));
1122 } else if (source.IsConstant()) {
1123 HConstant* constant = source.GetConstant();
1124 if (constant->IsLongConstant()) {
1125 Load64BitValue(dest, constant->AsLongConstant()->GetValue());
1126 } else {
1127 Load32BitValue(dest, GetInt32ValueOf(constant));
1128 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001129 } else {
1130 DCHECK(source.IsDoubleStackSlot());
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001131 __ movq(dest, Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001132 }
1133 } else if (destination.IsFpuRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001134 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001135 if (source.IsRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001136 __ movd(dest, source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001137 } else if (source.IsFpuRegister()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001138 __ movaps(dest, source.AsFpuRegister<XmmRegister>());
1139 } else if (source.IsConstant()) {
1140 HConstant* constant = source.GetConstant();
1141 int64_t value = CodeGenerator::GetInt64ValueOf(constant);
1142 if (constant->IsFloatConstant()) {
1143 Load32BitValue(dest, static_cast<int32_t>(value));
1144 } else {
1145 Load64BitValue(dest, value);
1146 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001147 } else if (source.IsStackSlot()) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001148 __ movss(dest, Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001149 } else {
1150 DCHECK(source.IsDoubleStackSlot());
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001151 __ movsd(dest, Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001152 }
1153 } else if (destination.IsStackSlot()) {
1154 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001155 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00001156 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001157 } else if (source.IsFpuRegister()) {
1158 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00001159 source.AsFpuRegister<XmmRegister>());
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001160 } else if (source.IsConstant()) {
1161 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001162 int32_t value = GetInt32ValueOf(constant);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001163 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001164 } else {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001165 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001166 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1167 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001168 }
1169 } else {
1170 DCHECK(destination.IsDoubleStackSlot());
1171 if (source.IsRegister()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001172 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00001173 source.AsRegister<CpuRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001174 } else if (source.IsFpuRegister()) {
1175 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00001176 source.AsFpuRegister<XmmRegister>());
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001177 } else if (source.IsConstant()) {
1178 HConstant* constant = source.GetConstant();
Zheng Xu12bca972015-03-30 19:35:50 +08001179 int64_t value;
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001180 if (constant->IsDoubleConstant()) {
Roland Levillainda4d79b2015-03-24 14:36:11 +00001181 value = bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue());
Mark Mendell24f2dfa2015-01-14 19:51:45 -05001182 } else {
1183 DCHECK(constant->IsLongConstant());
1184 value = constant->AsLongConstant()->GetValue();
1185 }
Mark Mendellcfa410b2015-05-25 16:02:44 -04001186 Store64BitValueToStack(destination, value);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001187 } else {
1188 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00001189 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
1190 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001191 }
1192 }
1193}
1194
Calin Juravle175dc732015-08-25 15:42:32 +01001195void CodeGeneratorX86_64::MoveConstant(Location location, int32_t value) {
1196 DCHECK(location.IsRegister());
1197 Load64BitValue(location.AsRegister<CpuRegister>(), static_cast<int64_t>(value));
1198}
1199
Calin Juravlee460d1d2015-09-29 04:52:17 +01001200void CodeGeneratorX86_64::MoveLocation(
1201 Location dst, Location src, Primitive::Type dst_type ATTRIBUTE_UNUSED) {
1202 Move(dst, src);
1203}
1204
1205void CodeGeneratorX86_64::AddLocationAsTemp(Location location, LocationSummary* locations) {
1206 if (location.IsRegister()) {
1207 locations->AddTemp(location);
1208 } else {
1209 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1210 }
1211}
1212
David Brazdilfc6a86a2015-06-26 10:33:45 +00001213void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001214 DCHECK(!successor->IsExitBlock());
1215
1216 HBasicBlock* block = got->GetBlock();
1217 HInstruction* previous = got->GetPrevious();
1218
1219 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +00001220 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001221 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1222 return;
1223 }
1224
1225 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1226 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1227 }
1228 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001229 __ jmp(codegen_->GetLabelOf(successor));
1230 }
1231}
1232
David Brazdilfc6a86a2015-06-26 10:33:45 +00001233void LocationsBuilderX86_64::VisitGoto(HGoto* got) {
1234 got->SetLocations(nullptr);
1235}
1236
1237void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) {
1238 HandleGoto(got, got->GetSuccessor());
1239}
1240
1241void LocationsBuilderX86_64::VisitTryBoundary(HTryBoundary* try_boundary) {
1242 try_boundary->SetLocations(nullptr);
1243}
1244
1245void InstructionCodeGeneratorX86_64::VisitTryBoundary(HTryBoundary* try_boundary) {
1246 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
1247 if (!successor->IsExitBlock()) {
1248 HandleGoto(try_boundary, successor);
1249 }
1250}
1251
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001252void LocationsBuilderX86_64::VisitExit(HExit* exit) {
1253 exit->SetLocations(nullptr);
1254}
1255
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001256void InstructionCodeGeneratorX86_64::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001257}
1258
Mark Mendell152408f2015-12-31 12:28:50 -05001259template<class LabelType>
Mark Mendellc4701932015-04-10 13:18:51 -04001260void InstructionCodeGeneratorX86_64::GenerateFPJumps(HCondition* cond,
Mark Mendell152408f2015-12-31 12:28:50 -05001261 LabelType* true_label,
1262 LabelType* false_label) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001263 if (cond->IsFPConditionTrueIfNaN()) {
1264 __ j(kUnordered, true_label);
1265 } else if (cond->IsFPConditionFalseIfNaN()) {
1266 __ j(kUnordered, false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001267 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001268 __ j(X86_64FPCondition(cond->GetCondition()), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001269}
1270
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001271void InstructionCodeGeneratorX86_64::GenerateCompareTest(HCondition* condition) {
Mark Mendellc4701932015-04-10 13:18:51 -04001272 LocationSummary* locations = condition->GetLocations();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001273
Mark Mendellc4701932015-04-10 13:18:51 -04001274 Location left = locations->InAt(0);
1275 Location right = locations->InAt(1);
Mark Mendellc4701932015-04-10 13:18:51 -04001276 Primitive::Type type = condition->InputAt(0)->GetType();
1277 switch (type) {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001278 case Primitive::kPrimBoolean:
1279 case Primitive::kPrimByte:
1280 case Primitive::kPrimChar:
1281 case Primitive::kPrimShort:
1282 case Primitive::kPrimInt:
1283 case Primitive::kPrimNot: {
1284 CpuRegister left_reg = left.AsRegister<CpuRegister>();
1285 if (right.IsConstant()) {
1286 int32_t value = CodeGenerator::GetInt32ValueOf(right.GetConstant());
1287 if (value == 0) {
1288 __ testl(left_reg, left_reg);
1289 } else {
1290 __ cmpl(left_reg, Immediate(value));
1291 }
1292 } else if (right.IsStackSlot()) {
1293 __ cmpl(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
1294 } else {
1295 __ cmpl(left_reg, right.AsRegister<CpuRegister>());
1296 }
1297 break;
1298 }
Mark Mendellc4701932015-04-10 13:18:51 -04001299 case Primitive::kPrimLong: {
1300 CpuRegister left_reg = left.AsRegister<CpuRegister>();
1301 if (right.IsConstant()) {
1302 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
Aart Bika19616e2016-02-01 18:57:58 -08001303 codegen_->Compare64BitValue(left_reg, value);
Mark Mendellc4701932015-04-10 13:18:51 -04001304 } else if (right.IsDoubleStackSlot()) {
1305 __ cmpq(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
1306 } else {
1307 __ cmpq(left_reg, right.AsRegister<CpuRegister>());
1308 }
Mark Mendellc4701932015-04-10 13:18:51 -04001309 break;
1310 }
1311 case Primitive::kPrimFloat: {
1312 if (right.IsFpuRegister()) {
1313 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
1314 } else if (right.IsConstant()) {
1315 __ ucomiss(left.AsFpuRegister<XmmRegister>(),
1316 codegen_->LiteralFloatAddress(
1317 right.GetConstant()->AsFloatConstant()->GetValue()));
1318 } else {
1319 DCHECK(right.IsStackSlot());
1320 __ ucomiss(left.AsFpuRegister<XmmRegister>(),
1321 Address(CpuRegister(RSP), right.GetStackIndex()));
1322 }
Mark Mendellc4701932015-04-10 13:18:51 -04001323 break;
1324 }
1325 case Primitive::kPrimDouble: {
1326 if (right.IsFpuRegister()) {
1327 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
1328 } else if (right.IsConstant()) {
1329 __ ucomisd(left.AsFpuRegister<XmmRegister>(),
1330 codegen_->LiteralDoubleAddress(
1331 right.GetConstant()->AsDoubleConstant()->GetValue()));
1332 } else {
1333 DCHECK(right.IsDoubleStackSlot());
1334 __ ucomisd(left.AsFpuRegister<XmmRegister>(),
1335 Address(CpuRegister(RSP), right.GetStackIndex()));
1336 }
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001337 break;
1338 }
1339 default:
1340 LOG(FATAL) << "Unexpected condition type " << type;
1341 }
1342}
1343
1344template<class LabelType>
1345void InstructionCodeGeneratorX86_64::GenerateCompareTestAndBranch(HCondition* condition,
1346 LabelType* true_target_in,
1347 LabelType* false_target_in) {
1348 // Generated branching requires both targets to be explicit. If either of the
1349 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
1350 LabelType fallthrough_target;
1351 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1352 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
1353
1354 // Generate the comparison to set the CC.
1355 GenerateCompareTest(condition);
1356
1357 // Now generate the correct jump(s).
1358 Primitive::Type type = condition->InputAt(0)->GetType();
1359 switch (type) {
1360 case Primitive::kPrimLong: {
1361 __ j(X86_64IntegerCondition(condition->GetCondition()), true_target);
1362 break;
1363 }
1364 case Primitive::kPrimFloat: {
1365 GenerateFPJumps(condition, true_target, false_target);
1366 break;
1367 }
1368 case Primitive::kPrimDouble: {
Mark Mendellc4701932015-04-10 13:18:51 -04001369 GenerateFPJumps(condition, true_target, false_target);
1370 break;
1371 }
1372 default:
1373 LOG(FATAL) << "Unexpected condition type " << type;
1374 }
1375
David Brazdil0debae72015-11-12 18:37:00 +00001376 if (false_target != &fallthrough_target) {
Mark Mendellc4701932015-04-10 13:18:51 -04001377 __ jmp(false_target);
1378 }
David Brazdil0debae72015-11-12 18:37:00 +00001379
1380 if (fallthrough_target.IsLinked()) {
1381 __ Bind(&fallthrough_target);
1382 }
Mark Mendellc4701932015-04-10 13:18:51 -04001383}
1384
David Brazdil0debae72015-11-12 18:37:00 +00001385static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) {
1386 // Moves may affect the eflags register (move zero uses xorl), so the EFLAGS
1387 // are set only strictly before `branch`. We can't use the eflags on long
1388 // conditions if they are materialized due to the complex branching.
1389 return cond->IsCondition() &&
1390 cond->GetNext() == branch &&
1391 !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType());
1392}
1393
Mark Mendell152408f2015-12-31 12:28:50 -05001394template<class LabelType>
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001395void InstructionCodeGeneratorX86_64::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00001396 size_t condition_input_index,
Mark Mendell152408f2015-12-31 12:28:50 -05001397 LabelType* true_target,
1398 LabelType* false_target) {
David Brazdil0debae72015-11-12 18:37:00 +00001399 HInstruction* cond = instruction->InputAt(condition_input_index);
1400
1401 if (true_target == nullptr && false_target == nullptr) {
1402 // Nothing to do. The code always falls through.
1403 return;
1404 } else if (cond->IsIntConstant()) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001405 // Constant condition, statically compared against 1.
David Brazdil0debae72015-11-12 18:37:00 +00001406 if (cond->AsIntConstant()->IsOne()) {
1407 if (true_target != nullptr) {
1408 __ jmp(true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001409 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001410 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001411 DCHECK(cond->AsIntConstant()->IsZero());
1412 if (false_target != nullptr) {
1413 __ jmp(false_target);
1414 }
1415 }
1416 return;
1417 }
1418
1419 // The following code generates these patterns:
1420 // (1) true_target == nullptr && false_target != nullptr
1421 // - opposite condition true => branch to false_target
1422 // (2) true_target != nullptr && false_target == nullptr
1423 // - condition true => branch to true_target
1424 // (3) true_target != nullptr && false_target != nullptr
1425 // - condition true => branch to true_target
1426 // - branch to false_target
1427 if (IsBooleanValueOrMaterializedCondition(cond)) {
1428 if (AreEflagsSetFrom(cond, instruction)) {
1429 if (true_target == nullptr) {
1430 __ j(X86_64IntegerCondition(cond->AsCondition()->GetOppositeCondition()), false_target);
1431 } else {
1432 __ j(X86_64IntegerCondition(cond->AsCondition()->GetCondition()), true_target);
1433 }
1434 } else {
1435 // Materialized condition, compare against 0.
1436 Location lhs = instruction->GetLocations()->InAt(condition_input_index);
1437 if (lhs.IsRegister()) {
1438 __ testl(lhs.AsRegister<CpuRegister>(), lhs.AsRegister<CpuRegister>());
1439 } else {
1440 __ cmpl(Address(CpuRegister(RSP), lhs.GetStackIndex()), Immediate(0));
1441 }
1442 if (true_target == nullptr) {
1443 __ j(kEqual, false_target);
1444 } else {
1445 __ j(kNotEqual, true_target);
1446 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001447 }
1448 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001449 // Condition has not been materialized, use its inputs as the
1450 // comparison and its condition as the branch condition.
Mark Mendellb8b97692015-05-22 16:58:19 -04001451 HCondition* condition = cond->AsCondition();
Mark Mendellc4701932015-04-10 13:18:51 -04001452
David Brazdil0debae72015-11-12 18:37:00 +00001453 // If this is a long or FP comparison that has been folded into
1454 // the HCondition, generate the comparison directly.
1455 Primitive::Type type = condition->InputAt(0)->GetType();
1456 if (type == Primitive::kPrimLong || Primitive::IsFloatingPointType(type)) {
1457 GenerateCompareTestAndBranch(condition, true_target, false_target);
1458 return;
1459 }
1460
1461 Location lhs = condition->GetLocations()->InAt(0);
1462 Location rhs = condition->GetLocations()->InAt(1);
1463 if (rhs.IsRegister()) {
1464 __ cmpl(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
1465 } else if (rhs.IsConstant()) {
1466 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Aart Bika19616e2016-02-01 18:57:58 -08001467 codegen_->Compare32BitValue(lhs.AsRegister<CpuRegister>(), constant);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001468 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001469 __ cmpl(lhs.AsRegister<CpuRegister>(),
1470 Address(CpuRegister(RSP), rhs.GetStackIndex()));
1471 }
1472 if (true_target == nullptr) {
1473 __ j(X86_64IntegerCondition(condition->GetOppositeCondition()), false_target);
1474 } else {
Mark Mendellb8b97692015-05-22 16:58:19 -04001475 __ j(X86_64IntegerCondition(condition->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -07001476 }
Dave Allison20dfc792014-06-16 20:44:29 -07001477 }
David Brazdil0debae72015-11-12 18:37:00 +00001478
1479 // If neither branch falls through (case 3), the conditional branch to `true_target`
1480 // was already emitted (case 2) and we need to emit a jump to `false_target`.
1481 if (true_target != nullptr && false_target != nullptr) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001482 __ jmp(false_target);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001483 }
1484}
1485
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001486void LocationsBuilderX86_64::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001487 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
1488 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001489 locations->SetInAt(0, Location::Any());
1490 }
1491}
1492
1493void InstructionCodeGeneratorX86_64::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001494 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
1495 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
1496 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
1497 nullptr : codegen_->GetLabelOf(true_successor);
1498 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
1499 nullptr : codegen_->GetLabelOf(false_successor);
1500 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001501}
1502
1503void LocationsBuilderX86_64::VisitDeoptimize(HDeoptimize* deoptimize) {
1504 LocationSummary* locations = new (GetGraph()->GetArena())
1505 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
David Brazdil0debae72015-11-12 18:37:00 +00001506 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001507 locations->SetInAt(0, Location::Any());
1508 }
1509}
1510
1511void InstructionCodeGeneratorX86_64::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08001512 SlowPathCode* slow_path = deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathX86_64>(deoptimize);
David Brazdil74eb1b22015-12-14 11:44:01 +00001513 GenerateTestAndBranch<Label>(deoptimize,
1514 /* condition_input_index */ 0,
1515 slow_path->GetEntryLabel(),
1516 /* false_target */ nullptr);
1517}
1518
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001519static bool SelectCanUseCMOV(HSelect* select) {
1520 // There are no conditional move instructions for XMMs.
1521 if (Primitive::IsFloatingPointType(select->GetType())) {
1522 return false;
1523 }
1524
1525 // A FP condition doesn't generate the single CC that we need.
1526 HInstruction* condition = select->GetCondition();
1527 if (condition->IsCondition() &&
1528 Primitive::IsFloatingPointType(condition->InputAt(0)->GetType())) {
1529 return false;
1530 }
1531
1532 // We can generate a CMOV for this Select.
1533 return true;
1534}
1535
David Brazdil74eb1b22015-12-14 11:44:01 +00001536void LocationsBuilderX86_64::VisitSelect(HSelect* select) {
1537 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(select);
1538 if (Primitive::IsFloatingPointType(select->GetType())) {
1539 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001540 locations->SetInAt(1, Location::Any());
David Brazdil74eb1b22015-12-14 11:44:01 +00001541 } else {
1542 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001543 if (SelectCanUseCMOV(select)) {
Mark Mendelldee1b9a2016-02-12 14:36:51 -05001544 if (select->InputAt(1)->IsConstant()) {
1545 locations->SetInAt(1, Location::RequiresRegister());
1546 } else {
1547 locations->SetInAt(1, Location::Any());
1548 }
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001549 } else {
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001550 locations->SetInAt(1, Location::Any());
1551 }
David Brazdil74eb1b22015-12-14 11:44:01 +00001552 }
1553 if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) {
1554 locations->SetInAt(2, Location::RequiresRegister());
1555 }
1556 locations->SetOut(Location::SameAsFirstInput());
1557}
1558
1559void InstructionCodeGeneratorX86_64::VisitSelect(HSelect* select) {
1560 LocationSummary* locations = select->GetLocations();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001561 if (SelectCanUseCMOV(select)) {
1562 // If both the condition and the source types are integer, we can generate
1563 // a CMOV to implement Select.
1564 CpuRegister value_false = locations->InAt(0).AsRegister<CpuRegister>();
Mark Mendelldee1b9a2016-02-12 14:36:51 -05001565 Location value_true_loc = locations->InAt(1);
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001566 DCHECK(locations->InAt(0).Equals(locations->Out()));
1567
1568 HInstruction* select_condition = select->GetCondition();
1569 Condition cond = kNotEqual;
1570
1571 // Figure out how to test the 'condition'.
1572 if (select_condition->IsCondition()) {
1573 HCondition* condition = select_condition->AsCondition();
1574 if (!condition->IsEmittedAtUseSite()) {
1575 // This was a previously materialized condition.
1576 // Can we use the existing condition code?
1577 if (AreEflagsSetFrom(condition, select)) {
1578 // Materialization was the previous instruction. Condition codes are right.
1579 cond = X86_64IntegerCondition(condition->GetCondition());
1580 } else {
1581 // No, we have to recreate the condition code.
1582 CpuRegister cond_reg = locations->InAt(2).AsRegister<CpuRegister>();
1583 __ testl(cond_reg, cond_reg);
1584 }
1585 } else {
1586 GenerateCompareTest(condition);
1587 cond = X86_64IntegerCondition(condition->GetCondition());
1588 }
1589 } else {
1590 // Must be a boolean condition, which needs to be compared to 0.
1591 CpuRegister cond_reg = locations->InAt(2).AsRegister<CpuRegister>();
1592 __ testl(cond_reg, cond_reg);
1593 }
1594
1595 // If the condition is true, overwrite the output, which already contains false.
1596 // Generate the correct sized CMOV.
Mark Mendelldee1b9a2016-02-12 14:36:51 -05001597 bool is_64_bit = Primitive::Is64BitType(select->GetType());
1598 if (value_true_loc.IsRegister()) {
1599 __ cmov(cond, value_false, value_true_loc.AsRegister<CpuRegister>(), is_64_bit);
1600 } else {
1601 __ cmov(cond,
1602 value_false,
1603 Address(CpuRegister(RSP), value_true_loc.GetStackIndex()), is_64_bit);
1604 }
Mark Mendell7c0b44f2016-02-01 10:08:35 -05001605 } else {
1606 NearLabel false_target;
1607 GenerateTestAndBranch<NearLabel>(select,
1608 /* condition_input_index */ 2,
1609 /* true_target */ nullptr,
1610 &false_target);
1611 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
1612 __ Bind(&false_target);
1613 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001614}
1615
David Srbecky0cf44932015-12-09 14:09:59 +00001616void LocationsBuilderX86_64::VisitNativeDebugInfo(HNativeDebugInfo* info) {
1617 new (GetGraph()->GetArena()) LocationSummary(info);
1618}
1619
1620void InstructionCodeGeneratorX86_64::VisitNativeDebugInfo(HNativeDebugInfo* info) {
David Srbeckyc7098ff2016-02-09 14:30:11 +00001621 codegen_->MaybeRecordNativeDebugInfo(info, info->GetDexPc());
1622}
1623
1624void CodeGeneratorX86_64::GenerateNop() {
1625 __ nop();
David Srbecky0cf44932015-12-09 14:09:59 +00001626}
1627
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001628void LocationsBuilderX86_64::VisitLocal(HLocal* local) {
1629 local->SetLocations(nullptr);
1630}
1631
1632void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) {
1633 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
1634}
1635
1636void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) {
1637 local->SetLocations(nullptr);
1638}
1639
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001640void InstructionCodeGeneratorX86_64::VisitLoadLocal(HLoadLocal* load ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001641 // Nothing to do, this is driven by the code generator.
1642}
1643
1644void LocationsBuilderX86_64::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001645 LocationSummary* locations =
1646 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001647 switch (store->InputAt(1)->GetType()) {
1648 case Primitive::kPrimBoolean:
1649 case Primitive::kPrimByte:
1650 case Primitive::kPrimChar:
1651 case Primitive::kPrimShort:
1652 case Primitive::kPrimInt:
1653 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001654 case Primitive::kPrimFloat:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001655 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1656 break;
1657
1658 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001659 case Primitive::kPrimDouble:
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001660 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1661 break;
1662
1663 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001664 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001665 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001666}
1667
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001668void InstructionCodeGeneratorX86_64::VisitStoreLocal(HStoreLocal* store ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001669}
1670
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001671void LocationsBuilderX86_64::HandleCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001672 LocationSummary* locations =
Roland Levillain0d37cd02015-05-27 16:39:19 +01001673 new (GetGraph()->GetArena()) LocationSummary(cond, LocationSummary::kNoCall);
Mark Mendellc4701932015-04-10 13:18:51 -04001674 // Handle the long/FP comparisons made in instruction simplification.
1675 switch (cond->InputAt(0)->GetType()) {
1676 case Primitive::kPrimLong:
1677 locations->SetInAt(0, Location::RequiresRegister());
1678 locations->SetInAt(1, Location::Any());
1679 break;
1680 case Primitive::kPrimFloat:
1681 case Primitive::kPrimDouble:
1682 locations->SetInAt(0, Location::RequiresFpuRegister());
1683 locations->SetInAt(1, Location::Any());
1684 break;
1685 default:
1686 locations->SetInAt(0, Location::RequiresRegister());
1687 locations->SetInAt(1, Location::Any());
1688 break;
1689 }
David Brazdilb3e773e2016-01-26 11:28:37 +00001690 if (!cond->IsEmittedAtUseSite()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001691 locations->SetOut(Location::RequiresRegister());
1692 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001693}
1694
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001695void InstructionCodeGeneratorX86_64::HandleCondition(HCondition* cond) {
David Brazdilb3e773e2016-01-26 11:28:37 +00001696 if (cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001697 return;
Dave Allison20dfc792014-06-16 20:44:29 -07001698 }
Mark Mendellc4701932015-04-10 13:18:51 -04001699
1700 LocationSummary* locations = cond->GetLocations();
1701 Location lhs = locations->InAt(0);
1702 Location rhs = locations->InAt(1);
1703 CpuRegister reg = locations->Out().AsRegister<CpuRegister>();
Mark Mendell152408f2015-12-31 12:28:50 -05001704 NearLabel true_label, false_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001705
1706 switch (cond->InputAt(0)->GetType()) {
1707 default:
1708 // Integer case.
1709
1710 // Clear output register: setcc only sets the low byte.
1711 __ xorl(reg, reg);
1712
1713 if (rhs.IsRegister()) {
1714 __ cmpl(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
1715 } else if (rhs.IsConstant()) {
1716 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Aart Bika19616e2016-02-01 18:57:58 -08001717 codegen_->Compare32BitValue(lhs.AsRegister<CpuRegister>(), constant);
Mark Mendellc4701932015-04-10 13:18:51 -04001718 } else {
1719 __ cmpl(lhs.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), rhs.GetStackIndex()));
1720 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001721 __ setcc(X86_64IntegerCondition(cond->GetCondition()), reg);
Mark Mendellc4701932015-04-10 13:18:51 -04001722 return;
1723 case Primitive::kPrimLong:
1724 // Clear output register: setcc only sets the low byte.
1725 __ xorl(reg, reg);
1726
1727 if (rhs.IsRegister()) {
1728 __ cmpq(lhs.AsRegister<CpuRegister>(), rhs.AsRegister<CpuRegister>());
1729 } else if (rhs.IsConstant()) {
1730 int64_t value = rhs.GetConstant()->AsLongConstant()->GetValue();
Aart Bika19616e2016-02-01 18:57:58 -08001731 codegen_->Compare64BitValue(lhs.AsRegister<CpuRegister>(), value);
Mark Mendellc4701932015-04-10 13:18:51 -04001732 } else {
1733 __ cmpq(lhs.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), rhs.GetStackIndex()));
1734 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001735 __ setcc(X86_64IntegerCondition(cond->GetCondition()), reg);
Mark Mendellc4701932015-04-10 13:18:51 -04001736 return;
1737 case Primitive::kPrimFloat: {
1738 XmmRegister lhs_reg = lhs.AsFpuRegister<XmmRegister>();
1739 if (rhs.IsConstant()) {
1740 float value = rhs.GetConstant()->AsFloatConstant()->GetValue();
1741 __ ucomiss(lhs_reg, codegen_->LiteralFloatAddress(value));
1742 } else if (rhs.IsStackSlot()) {
1743 __ ucomiss(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex()));
1744 } else {
1745 __ ucomiss(lhs_reg, rhs.AsFpuRegister<XmmRegister>());
1746 }
1747 GenerateFPJumps(cond, &true_label, &false_label);
1748 break;
1749 }
1750 case Primitive::kPrimDouble: {
1751 XmmRegister lhs_reg = lhs.AsFpuRegister<XmmRegister>();
1752 if (rhs.IsConstant()) {
1753 double value = rhs.GetConstant()->AsDoubleConstant()->GetValue();
1754 __ ucomisd(lhs_reg, codegen_->LiteralDoubleAddress(value));
1755 } else if (rhs.IsDoubleStackSlot()) {
1756 __ ucomisd(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex()));
1757 } else {
1758 __ ucomisd(lhs_reg, rhs.AsFpuRegister<XmmRegister>());
1759 }
1760 GenerateFPJumps(cond, &true_label, &false_label);
1761 break;
1762 }
1763 }
1764
1765 // Convert the jumps into the result.
Mark Mendell0c9497d2015-08-21 09:30:05 -04001766 NearLabel done_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001767
Roland Levillain4fa13f62015-07-06 18:11:54 +01001768 // False case: result = 0.
Mark Mendellc4701932015-04-10 13:18:51 -04001769 __ Bind(&false_label);
1770 __ xorl(reg, reg);
1771 __ jmp(&done_label);
1772
Roland Levillain4fa13f62015-07-06 18:11:54 +01001773 // True case: result = 1.
Mark Mendellc4701932015-04-10 13:18:51 -04001774 __ Bind(&true_label);
1775 __ movl(reg, Immediate(1));
1776 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07001777}
1778
1779void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001780 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001781}
1782
1783void InstructionCodeGeneratorX86_64::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001784 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001785}
1786
1787void LocationsBuilderX86_64::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001788 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001789}
1790
1791void InstructionCodeGeneratorX86_64::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001792 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001793}
1794
1795void LocationsBuilderX86_64::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001796 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001797}
1798
1799void InstructionCodeGeneratorX86_64::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001800 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001801}
1802
1803void LocationsBuilderX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001804 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001805}
1806
1807void InstructionCodeGeneratorX86_64::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001808 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001809}
1810
1811void LocationsBuilderX86_64::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001812 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001813}
1814
1815void InstructionCodeGeneratorX86_64::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001816 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001817}
1818
1819void LocationsBuilderX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001820 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001821}
1822
1823void InstructionCodeGeneratorX86_64::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001824 HandleCondition(comp);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001825}
1826
Aart Bike9f37602015-10-09 11:15:55 -07001827void LocationsBuilderX86_64::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001828 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001829}
1830
1831void InstructionCodeGeneratorX86_64::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001832 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001833}
1834
1835void LocationsBuilderX86_64::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001836 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001837}
1838
1839void InstructionCodeGeneratorX86_64::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001840 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001841}
1842
1843void LocationsBuilderX86_64::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001844 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001845}
1846
1847void InstructionCodeGeneratorX86_64::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001848 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001849}
1850
1851void LocationsBuilderX86_64::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001852 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001853}
1854
1855void InstructionCodeGeneratorX86_64::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001856 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001857}
1858
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001859void LocationsBuilderX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001860 LocationSummary* locations =
1861 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00001862 switch (compare->InputAt(0)->GetType()) {
Aart Bika19616e2016-02-01 18:57:58 -08001863 case Primitive::kPrimInt:
Calin Juravleddb7df22014-11-25 20:56:51 +00001864 case Primitive::kPrimLong: {
1865 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell40741f32015-04-20 22:10:34 -04001866 locations->SetInAt(1, Location::Any());
Calin Juravleddb7df22014-11-25 20:56:51 +00001867 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1868 break;
1869 }
1870 case Primitive::kPrimFloat:
1871 case Primitive::kPrimDouble: {
1872 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendell40741f32015-04-20 22:10:34 -04001873 locations->SetInAt(1, Location::Any());
Calin Juravleddb7df22014-11-25 20:56:51 +00001874 locations->SetOut(Location::RequiresRegister());
1875 break;
1876 }
1877 default:
1878 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
1879 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001880}
1881
1882void InstructionCodeGeneratorX86_64::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001883 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001884 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Calin Juravleddb7df22014-11-25 20:56:51 +00001885 Location left = locations->InAt(0);
1886 Location right = locations->InAt(1);
1887
Mark Mendell0c9497d2015-08-21 09:30:05 -04001888 NearLabel less, greater, done;
Calin Juravleddb7df22014-11-25 20:56:51 +00001889 Primitive::Type type = compare->InputAt(0)->GetType();
Aart Bika19616e2016-02-01 18:57:58 -08001890 Condition less_cond = kLess;
1891
Calin Juravleddb7df22014-11-25 20:56:51 +00001892 switch (type) {
Aart Bika19616e2016-02-01 18:57:58 -08001893 case Primitive::kPrimInt: {
1894 CpuRegister left_reg = left.AsRegister<CpuRegister>();
1895 if (right.IsConstant()) {
1896 int32_t value = right.GetConstant()->AsIntConstant()->GetValue();
1897 codegen_->Compare32BitValue(left_reg, value);
1898 } else if (right.IsStackSlot()) {
1899 __ cmpl(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
1900 } else {
1901 __ cmpl(left_reg, right.AsRegister<CpuRegister>());
1902 }
1903 break;
1904 }
Calin Juravleddb7df22014-11-25 20:56:51 +00001905 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04001906 CpuRegister left_reg = left.AsRegister<CpuRegister>();
1907 if (right.IsConstant()) {
1908 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
Aart Bika19616e2016-02-01 18:57:58 -08001909 codegen_->Compare64BitValue(left_reg, value);
Mark Mendell40741f32015-04-20 22:10:34 -04001910 } else if (right.IsDoubleStackSlot()) {
1911 __ cmpq(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04001912 } else {
1913 __ cmpq(left_reg, right.AsRegister<CpuRegister>());
1914 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001915 break;
Calin Juravleddb7df22014-11-25 20:56:51 +00001916 }
1917 case Primitive::kPrimFloat: {
Mark Mendell40741f32015-04-20 22:10:34 -04001918 XmmRegister left_reg = left.AsFpuRegister<XmmRegister>();
1919 if (right.IsConstant()) {
1920 float value = right.GetConstant()->AsFloatConstant()->GetValue();
1921 __ ucomiss(left_reg, codegen_->LiteralFloatAddress(value));
1922 } else if (right.IsStackSlot()) {
1923 __ ucomiss(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
1924 } else {
1925 __ ucomiss(left_reg, right.AsFpuRegister<XmmRegister>());
1926 }
Calin Juravleddb7df22014-11-25 20:56:51 +00001927 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08001928 less_cond = kBelow; // ucomis{s,d} sets CF
Calin Juravleddb7df22014-11-25 20:56:51 +00001929 break;
1930 }
1931 case Primitive::kPrimDouble: {
Mark Mendell40741f32015-04-20 22:10:34 -04001932 XmmRegister left_reg = left.AsFpuRegister<XmmRegister>();
1933 if (right.IsConstant()) {
1934 double value = right.GetConstant()->AsDoubleConstant()->GetValue();
1935 __ ucomisd(left_reg, codegen_->LiteralDoubleAddress(value));
1936 } else if (right.IsDoubleStackSlot()) {
1937 __ ucomisd(left_reg, Address(CpuRegister(RSP), right.GetStackIndex()));
1938 } else {
1939 __ ucomisd(left_reg, right.AsFpuRegister<XmmRegister>());
1940 }
Calin Juravleddb7df22014-11-25 20:56:51 +00001941 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08001942 less_cond = kBelow; // ucomis{s,d} sets CF
Calin Juravleddb7df22014-11-25 20:56:51 +00001943 break;
1944 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001945 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00001946 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001947 }
Aart Bika19616e2016-02-01 18:57:58 -08001948
Calin Juravleddb7df22014-11-25 20:56:51 +00001949 __ movl(out, Immediate(0));
Calin Juravle91debbc2014-11-26 19:01:09 +00001950 __ j(kEqual, &done);
Aart Bika19616e2016-02-01 18:57:58 -08001951 __ j(less_cond, &less);
Calin Juravlefd861242014-11-25 20:56:51 +00001952
Calin Juravle91debbc2014-11-26 19:01:09 +00001953 __ Bind(&greater);
Calin Juravleddb7df22014-11-25 20:56:51 +00001954 __ movl(out, Immediate(1));
1955 __ jmp(&done);
1956
1957 __ Bind(&less);
1958 __ movl(out, Immediate(-1));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01001959
1960 __ Bind(&done);
1961}
1962
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001963void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001964 LocationSummary* locations =
1965 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001966 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001967}
1968
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001969void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001970 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001971}
1972
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001973void LocationsBuilderX86_64::VisitNullConstant(HNullConstant* constant) {
1974 LocationSummary* locations =
1975 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1976 locations->SetOut(Location::ConstantLocation(constant));
1977}
1978
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001979void InstructionCodeGeneratorX86_64::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001980 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001981}
1982
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001983void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001984 LocationSummary* locations =
1985 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001986 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001987}
1988
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001989void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001990 // Will be generated at use site.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01001991}
1992
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001993void LocationsBuilderX86_64::VisitFloatConstant(HFloatConstant* constant) {
1994 LocationSummary* locations =
1995 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1996 locations->SetOut(Location::ConstantLocation(constant));
1997}
1998
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001999void InstructionCodeGeneratorX86_64::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002000 // Will be generated at use site.
2001}
2002
2003void LocationsBuilderX86_64::VisitDoubleConstant(HDoubleConstant* constant) {
2004 LocationSummary* locations =
2005 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2006 locations->SetOut(Location::ConstantLocation(constant));
2007}
2008
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002009void InstructionCodeGeneratorX86_64::VisitDoubleConstant(
2010 HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002011 // Will be generated at use site.
2012}
2013
Calin Juravle27df7582015-04-17 19:12:31 +01002014void LocationsBuilderX86_64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
2015 memory_barrier->SetLocations(nullptr);
2016}
2017
2018void InstructionCodeGeneratorX86_64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00002019 codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
Calin Juravle27df7582015-04-17 19:12:31 +01002020}
2021
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002022void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) {
2023 ret->SetLocations(nullptr);
2024}
2025
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002026void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002027 codegen_->GenerateFrameExit();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002028}
2029
2030void LocationsBuilderX86_64::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002031 LocationSummary* locations =
2032 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002033 switch (ret->InputAt(0)->GetType()) {
2034 case Primitive::kPrimBoolean:
2035 case Primitive::kPrimByte:
2036 case Primitive::kPrimChar:
2037 case Primitive::kPrimShort:
2038 case Primitive::kPrimInt:
2039 case Primitive::kPrimNot:
2040 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002041 locations->SetInAt(0, Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002042 break;
2043
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002044 case Primitive::kPrimFloat:
2045 case Primitive::kPrimDouble:
Mark Mendell40741f32015-04-20 22:10:34 -04002046 locations->SetInAt(0, Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002047 break;
2048
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002049 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002050 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002051 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002052}
2053
2054void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) {
2055 if (kIsDebugBuild) {
2056 switch (ret->InputAt(0)->GetType()) {
2057 case Primitive::kPrimBoolean:
2058 case Primitive::kPrimByte:
2059 case Primitive::kPrimChar:
2060 case Primitive::kPrimShort:
2061 case Primitive::kPrimInt:
2062 case Primitive::kPrimNot:
2063 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002064 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<CpuRegister>().AsRegister(), RAX);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002065 break;
2066
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002067 case Primitive::kPrimFloat:
2068 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002069 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>().AsFloatRegister(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002070 XMM0);
2071 break;
2072
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002073 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002074 LOG(FATAL) << "Unexpected return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002075 }
2076 }
2077 codegen_->GenerateFrameExit();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002078}
2079
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002080Location InvokeDexCallingConventionVisitorX86_64::GetReturnLocation(Primitive::Type type) const {
2081 switch (type) {
2082 case Primitive::kPrimBoolean:
2083 case Primitive::kPrimByte:
2084 case Primitive::kPrimChar:
2085 case Primitive::kPrimShort:
2086 case Primitive::kPrimInt:
2087 case Primitive::kPrimNot:
2088 case Primitive::kPrimLong:
2089 return Location::RegisterLocation(RAX);
2090
2091 case Primitive::kPrimVoid:
2092 return Location::NoLocation();
2093
2094 case Primitive::kPrimDouble:
2095 case Primitive::kPrimFloat:
2096 return Location::FpuRegisterLocation(XMM0);
2097 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +01002098
2099 UNREACHABLE();
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002100}
2101
2102Location InvokeDexCallingConventionVisitorX86_64::GetMethodLocation() const {
2103 return Location::RegisterLocation(kMethodRegisterArgument);
2104}
2105
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002106Location InvokeDexCallingConventionVisitorX86_64::GetNextLocation(Primitive::Type type) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002107 switch (type) {
2108 case Primitive::kPrimBoolean:
2109 case Primitive::kPrimByte:
2110 case Primitive::kPrimChar:
2111 case Primitive::kPrimShort:
2112 case Primitive::kPrimInt:
2113 case Primitive::kPrimNot: {
2114 uint32_t index = gp_index_++;
2115 stack_index_++;
2116 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002117 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002118 } else {
2119 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2120 }
2121 }
2122
2123 case Primitive::kPrimLong: {
2124 uint32_t index = gp_index_;
2125 stack_index_ += 2;
2126 if (index < calling_convention.GetNumberOfRegisters()) {
2127 gp_index_ += 1;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002128 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002129 } else {
2130 gp_index_ += 2;
2131 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
2132 }
2133 }
2134
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002135 case Primitive::kPrimFloat: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002136 uint32_t index = float_index_++;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002137 stack_index_++;
2138 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002139 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002140 } else {
2141 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
2142 }
2143 }
2144
2145 case Primitive::kPrimDouble: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002146 uint32_t index = float_index_++;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002147 stack_index_ += 2;
2148 if (index < calling_convention.GetNumberOfFpuRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002149 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002150 } else {
2151 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
2152 }
2153 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002154
2155 case Primitive::kPrimVoid:
2156 LOG(FATAL) << "Unexpected parameter type " << type;
2157 break;
2158 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00002159 return Location::NoLocation();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002160}
2161
Calin Juravle175dc732015-08-25 15:42:32 +01002162void LocationsBuilderX86_64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2163 // The trampoline uses the same calling convention as dex calling conventions,
2164 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2165 // the method_idx.
2166 HandleInvoke(invoke);
2167}
2168
2169void InstructionCodeGeneratorX86_64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2170 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2171}
2172
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002173void LocationsBuilderX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002174 // Explicit clinit checks triggered by static invokes must have been pruned by
2175 // art::PrepareForRegisterAllocation.
2176 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002177
Mark Mendellfb8d2792015-03-31 22:16:59 -04002178 IntrinsicLocationsBuilderX86_64 intrinsic(codegen_);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002179 if (intrinsic.TryDispatch(invoke)) {
2180 return;
2181 }
2182
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002183 HandleInvoke(invoke);
2184}
2185
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002186static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86_64* codegen) {
2187 if (invoke->GetLocations()->Intrinsified()) {
2188 IntrinsicCodeGeneratorX86_64 intrinsic(codegen);
2189 intrinsic.Dispatch(invoke);
2190 return true;
2191 }
2192 return false;
2193}
2194
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002195void InstructionCodeGeneratorX86_64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002196 // Explicit clinit checks triggered by static invokes must have been pruned by
2197 // art::PrepareForRegisterAllocation.
2198 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002199
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002200 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2201 return;
2202 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002203
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002204 LocationSummary* locations = invoke->GetLocations();
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002205 codegen_->GenerateStaticOrDirectCall(
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002206 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00002207 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002208}
2209
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002210void LocationsBuilderX86_64::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002211 InvokeDexCallingConventionVisitorX86_64 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002212 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002213}
2214
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002215void LocationsBuilderX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Mark Mendellfb8d2792015-03-31 22:16:59 -04002216 IntrinsicLocationsBuilderX86_64 intrinsic(codegen_);
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002217 if (intrinsic.TryDispatch(invoke)) {
2218 return;
2219 }
2220
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002221 HandleInvoke(invoke);
2222}
2223
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002224void InstructionCodeGeneratorX86_64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe71fb52f2014-12-29 17:43:08 -08002225 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2226 return;
2227 }
2228
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002229 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002230 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002231 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002232}
2233
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002234void LocationsBuilderX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
2235 HandleInvoke(invoke);
2236 // Add the hidden argument.
2237 invoke->GetLocations()->AddTemp(Location::RegisterLocation(RAX));
2238}
2239
2240void InstructionCodeGeneratorX86_64::VisitInvokeInterface(HInvokeInterface* invoke) {
2241 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain0d5a2812015-11-13 10:07:31 +00002242 LocationSummary* locations = invoke->GetLocations();
2243 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
2244 CpuRegister hidden_reg = locations->GetTemp(1).AsRegister<CpuRegister>();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002245 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
2246 invoke->GetImtIndex() % mirror::Class::kImtSize, kX86_64PointerSize).Uint32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002247 Location receiver = locations->InAt(0);
2248 size_t class_offset = mirror::Object::ClassOffset().SizeValue();
2249
Roland Levillain0d5a2812015-11-13 10:07:31 +00002250 // Set the hidden argument. This is safe to do this here, as RAX
2251 // won't be modified thereafter, before the `call` instruction.
2252 DCHECK_EQ(RAX, hidden_reg.AsRegister());
Mark Mendell92e83bf2015-05-07 11:25:03 -04002253 codegen_->Load64BitValue(hidden_reg, invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002254
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002255 if (receiver.IsStackSlot()) {
2256 __ movl(temp, Address(CpuRegister(RSP), receiver.GetStackIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00002257 // /* HeapReference<Class> */ temp = temp->klass_
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002258 __ movl(temp, Address(temp, class_offset));
2259 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00002260 // /* HeapReference<Class> */ temp = receiver->klass_
Roland Levillain271ab9c2014-11-27 15:23:57 +00002261 __ movl(temp, Address(receiver.AsRegister<CpuRegister>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002262 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002263 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +00002264 // Instead of simply (possibly) unpoisoning `temp` here, we should
2265 // emit a read barrier for the previous class reference load.
2266 // However this is not required in practice, as this is an
2267 // intermediate/temporary reference and because the current
2268 // concurrent copying collector keeps the from-space memory
2269 // intact/accessible until the end of the marking phase (the
2270 // concurrent copying collector may not in the future).
Roland Levillain4d027112015-07-01 15:41:14 +01002271 __ MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002272 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002273 __ movq(temp, Address(temp, method_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002274 // call temp->GetEntryPoint();
Roland Levillain0d5a2812015-11-13 10:07:31 +00002275 __ call(Address(temp,
2276 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86_64WordSize).SizeValue()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002277
2278 DCHECK(!codegen_->IsLeafMethod());
2279 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2280}
2281
Roland Levillain88cb1752014-10-20 16:36:47 +01002282void LocationsBuilderX86_64::VisitNeg(HNeg* neg) {
2283 LocationSummary* locations =
2284 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2285 switch (neg->GetResultType()) {
2286 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002287 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01002288 locations->SetInAt(0, Location::RequiresRegister());
2289 locations->SetOut(Location::SameAsFirstInput());
2290 break;
2291
Roland Levillain88cb1752014-10-20 16:36:47 +01002292 case Primitive::kPrimFloat:
2293 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002294 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00002295 locations->SetOut(Location::SameAsFirstInput());
Roland Levillain5368c212014-11-27 15:03:41 +00002296 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01002297 break;
2298
2299 default:
2300 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2301 }
2302}
2303
2304void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) {
2305 LocationSummary* locations = neg->GetLocations();
2306 Location out = locations->Out();
2307 Location in = locations->InAt(0);
2308 switch (neg->GetResultType()) {
2309 case Primitive::kPrimInt:
2310 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002311 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002312 __ negl(out.AsRegister<CpuRegister>());
Roland Levillain88cb1752014-10-20 16:36:47 +01002313 break;
2314
2315 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002316 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002317 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002318 __ negq(out.AsRegister<CpuRegister>());
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002319 break;
2320
Roland Levillain5368c212014-11-27 15:03:41 +00002321 case Primitive::kPrimFloat: {
2322 DCHECK(in.Equals(out));
Mark Mendell40741f32015-04-20 22:10:34 -04002323 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002324 // Implement float negation with an exclusive or with value
2325 // 0x80000000 (mask for bit 31, representing the sign of a
2326 // single-precision floating-point number).
Mark Mendell40741f32015-04-20 22:10:34 -04002327 __ movss(mask, codegen_->LiteralInt32Address(0x80000000));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002328 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00002329 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002330 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00002331
Roland Levillain5368c212014-11-27 15:03:41 +00002332 case Primitive::kPrimDouble: {
2333 DCHECK(in.Equals(out));
Mark Mendell40741f32015-04-20 22:10:34 -04002334 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002335 // Implement double negation with an exclusive or with value
Roland Levillain3dbcb382014-10-28 17:30:07 +00002336 // 0x8000000000000000 (mask for bit 63, representing the sign of
Roland Levillain5368c212014-11-27 15:03:41 +00002337 // a double-precision floating-point number).
Mark Mendell40741f32015-04-20 22:10:34 -04002338 __ movsd(mask, codegen_->LiteralInt64Address(INT64_C(0x8000000000000000)));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002339 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01002340 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002341 }
Roland Levillain88cb1752014-10-20 16:36:47 +01002342
2343 default:
2344 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2345 }
2346}
2347
Roland Levillaindff1f282014-11-05 14:15:05 +00002348void LocationsBuilderX86_64::VisitTypeConversion(HTypeConversion* conversion) {
2349 LocationSummary* locations =
2350 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
2351 Primitive::Type result_type = conversion->GetResultType();
2352 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002353 DCHECK_NE(result_type, input_type);
David Brazdil46e2a392015-03-16 17:31:52 +00002354
David Brazdilb2bd1c52015-03-25 11:17:37 +00002355 // The Java language does not allow treating boolean as an integral type but
2356 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00002357
Roland Levillaindff1f282014-11-05 14:15:05 +00002358 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002359 case Primitive::kPrimByte:
2360 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002361 case Primitive::kPrimLong:
2362 // Type conversion from long to byte is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002363 case Primitive::kPrimBoolean:
2364 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002365 case Primitive::kPrimShort:
2366 case Primitive::kPrimInt:
2367 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002368 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002369 locations->SetInAt(0, Location::Any());
2370 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2371 break;
2372
2373 default:
2374 LOG(FATAL) << "Unexpected type conversion from " << input_type
2375 << " to " << result_type;
2376 }
2377 break;
2378
Roland Levillain01a8d712014-11-14 16:27:39 +00002379 case Primitive::kPrimShort:
2380 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002381 case Primitive::kPrimLong:
2382 // Type conversion from long to short is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002383 case Primitive::kPrimBoolean:
2384 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002385 case Primitive::kPrimByte:
2386 case Primitive::kPrimInt:
2387 case Primitive::kPrimChar:
2388 // Processing a Dex `int-to-short' instruction.
2389 locations->SetInAt(0, Location::Any());
2390 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2391 break;
2392
2393 default:
2394 LOG(FATAL) << "Unexpected type conversion from " << input_type
2395 << " to " << result_type;
2396 }
2397 break;
2398
Roland Levillain946e1432014-11-11 17:35:19 +00002399 case Primitive::kPrimInt:
2400 switch (input_type) {
2401 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002402 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002403 locations->SetInAt(0, Location::Any());
2404 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2405 break;
2406
2407 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00002408 // Processing a Dex `float-to-int' instruction.
2409 locations->SetInAt(0, Location::RequiresFpuRegister());
2410 locations->SetOut(Location::RequiresRegister());
Roland Levillain3f8f9362014-12-02 17:45:01 +00002411 break;
2412
Roland Levillain946e1432014-11-11 17:35:19 +00002413 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002414 // Processing a Dex `double-to-int' instruction.
2415 locations->SetInAt(0, Location::RequiresFpuRegister());
2416 locations->SetOut(Location::RequiresRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00002417 break;
2418
2419 default:
2420 LOG(FATAL) << "Unexpected type conversion from " << input_type
2421 << " to " << result_type;
2422 }
2423 break;
2424
Roland Levillaindff1f282014-11-05 14:15:05 +00002425 case Primitive::kPrimLong:
2426 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002427 case Primitive::kPrimBoolean:
2428 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002429 case Primitive::kPrimByte:
2430 case Primitive::kPrimShort:
2431 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002432 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002433 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002434 // TODO: We would benefit from a (to-be-implemented)
2435 // Location::RegisterOrStackSlot requirement for this input.
2436 locations->SetInAt(0, Location::RequiresRegister());
2437 locations->SetOut(Location::RequiresRegister());
2438 break;
2439
2440 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00002441 // Processing a Dex `float-to-long' instruction.
2442 locations->SetInAt(0, Location::RequiresFpuRegister());
2443 locations->SetOut(Location::RequiresRegister());
Roland Levillain624279f2014-12-04 11:54:28 +00002444 break;
2445
Roland Levillaindff1f282014-11-05 14:15:05 +00002446 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002447 // Processing a Dex `double-to-long' instruction.
2448 locations->SetInAt(0, Location::RequiresFpuRegister());
2449 locations->SetOut(Location::RequiresRegister());
Roland Levillaindff1f282014-11-05 14:15:05 +00002450 break;
2451
2452 default:
2453 LOG(FATAL) << "Unexpected type conversion from " << input_type
2454 << " to " << result_type;
2455 }
2456 break;
2457
Roland Levillain981e4542014-11-14 11:47:14 +00002458 case Primitive::kPrimChar:
2459 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002460 case Primitive::kPrimLong:
2461 // Type conversion from long to char is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002462 case Primitive::kPrimBoolean:
2463 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002464 case Primitive::kPrimByte:
2465 case Primitive::kPrimShort:
2466 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002467 // Processing a Dex `int-to-char' instruction.
2468 locations->SetInAt(0, Location::Any());
2469 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2470 break;
2471
2472 default:
2473 LOG(FATAL) << "Unexpected type conversion from " << input_type
2474 << " to " << result_type;
2475 }
2476 break;
2477
Roland Levillaindff1f282014-11-05 14:15:05 +00002478 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002479 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002480 case Primitive::kPrimBoolean:
2481 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002482 case Primitive::kPrimByte:
2483 case Primitive::kPrimShort:
2484 case Primitive::kPrimInt:
2485 case Primitive::kPrimChar:
2486 // Processing a Dex `int-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002487 locations->SetInAt(0, Location::Any());
Roland Levillaincff13742014-11-17 14:32:17 +00002488 locations->SetOut(Location::RequiresFpuRegister());
2489 break;
2490
2491 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002492 // Processing a Dex `long-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002493 locations->SetInAt(0, Location::Any());
Roland Levillain6d0e4832014-11-27 18:31:21 +00002494 locations->SetOut(Location::RequiresFpuRegister());
2495 break;
2496
Roland Levillaincff13742014-11-17 14:32:17 +00002497 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002498 // Processing a Dex `double-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002499 locations->SetInAt(0, Location::Any());
Roland Levillain8964e2b2014-12-04 12:10:50 +00002500 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002501 break;
2502
2503 default:
2504 LOG(FATAL) << "Unexpected type conversion from " << input_type
2505 << " to " << result_type;
2506 };
2507 break;
2508
Roland Levillaindff1f282014-11-05 14:15:05 +00002509 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002510 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002511 case Primitive::kPrimBoolean:
2512 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002513 case Primitive::kPrimByte:
2514 case Primitive::kPrimShort:
2515 case Primitive::kPrimInt:
2516 case Primitive::kPrimChar:
2517 // Processing a Dex `int-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002518 locations->SetInAt(0, Location::Any());
Roland Levillaincff13742014-11-17 14:32:17 +00002519 locations->SetOut(Location::RequiresFpuRegister());
2520 break;
2521
2522 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00002523 // Processing a Dex `long-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002524 locations->SetInAt(0, Location::Any());
Roland Levillain647b9ed2014-11-27 12:06:00 +00002525 locations->SetOut(Location::RequiresFpuRegister());
2526 break;
2527
Roland Levillaincff13742014-11-17 14:32:17 +00002528 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002529 // Processing a Dex `float-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002530 locations->SetInAt(0, Location::Any());
Roland Levillain8964e2b2014-12-04 12:10:50 +00002531 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002532 break;
2533
2534 default:
2535 LOG(FATAL) << "Unexpected type conversion from " << input_type
2536 << " to " << result_type;
2537 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002538 break;
2539
2540 default:
2541 LOG(FATAL) << "Unexpected type conversion from " << input_type
2542 << " to " << result_type;
2543 }
2544}
2545
2546void InstructionCodeGeneratorX86_64::VisitTypeConversion(HTypeConversion* conversion) {
2547 LocationSummary* locations = conversion->GetLocations();
2548 Location out = locations->Out();
2549 Location in = locations->InAt(0);
2550 Primitive::Type result_type = conversion->GetResultType();
2551 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002552 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00002553 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002554 case Primitive::kPrimByte:
2555 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002556 case Primitive::kPrimLong:
2557 // Type conversion from long to byte is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002558 case Primitive::kPrimBoolean:
2559 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002560 case Primitive::kPrimShort:
2561 case Primitive::kPrimInt:
2562 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002563 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002564 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002565 __ movsxb(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Vladimir Markob52bbde2016-02-12 12:06:05 +00002566 } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002567 __ movsxb(out.AsRegister<CpuRegister>(),
Roland Levillain51d3fc42014-11-13 14:11:42 +00002568 Address(CpuRegister(RSP), in.GetStackIndex()));
2569 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002570 __ movl(out.AsRegister<CpuRegister>(),
Vladimir Markob52bbde2016-02-12 12:06:05 +00002571 Immediate(static_cast<int8_t>(Int64FromConstant(in.GetConstant()))));
Roland Levillain51d3fc42014-11-13 14:11:42 +00002572 }
2573 break;
2574
2575 default:
2576 LOG(FATAL) << "Unexpected type conversion from " << input_type
2577 << " to " << result_type;
2578 }
2579 break;
2580
Roland Levillain01a8d712014-11-14 16:27:39 +00002581 case Primitive::kPrimShort:
2582 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002583 case Primitive::kPrimLong:
2584 // Type conversion from long to short is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002585 case Primitive::kPrimBoolean:
2586 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002587 case Primitive::kPrimByte:
2588 case Primitive::kPrimInt:
2589 case Primitive::kPrimChar:
2590 // Processing a Dex `int-to-short' instruction.
2591 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002592 __ movsxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Vladimir Markob52bbde2016-02-12 12:06:05 +00002593 } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002594 __ movsxw(out.AsRegister<CpuRegister>(),
Roland Levillain01a8d712014-11-14 16:27:39 +00002595 Address(CpuRegister(RSP), in.GetStackIndex()));
2596 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002597 __ movl(out.AsRegister<CpuRegister>(),
Vladimir Markob52bbde2016-02-12 12:06:05 +00002598 Immediate(static_cast<int16_t>(Int64FromConstant(in.GetConstant()))));
Roland Levillain01a8d712014-11-14 16:27:39 +00002599 }
2600 break;
2601
2602 default:
2603 LOG(FATAL) << "Unexpected type conversion from " << input_type
2604 << " to " << result_type;
2605 }
2606 break;
2607
Roland Levillain946e1432014-11-11 17:35:19 +00002608 case Primitive::kPrimInt:
2609 switch (input_type) {
2610 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002611 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002612 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002613 __ movl(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillain946e1432014-11-11 17:35:19 +00002614 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002615 __ movl(out.AsRegister<CpuRegister>(),
Roland Levillain946e1432014-11-11 17:35:19 +00002616 Address(CpuRegister(RSP), in.GetStackIndex()));
2617 } else {
2618 DCHECK(in.IsConstant());
2619 DCHECK(in.GetConstant()->IsLongConstant());
2620 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002621 __ movl(out.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00002622 }
2623 break;
2624
Roland Levillain3f8f9362014-12-02 17:45:01 +00002625 case Primitive::kPrimFloat: {
2626 // Processing a Dex `float-to-int' instruction.
2627 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2628 CpuRegister output = out.AsRegister<CpuRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002629 NearLabel done, nan;
Roland Levillain3f8f9362014-12-02 17:45:01 +00002630
2631 __ movl(output, Immediate(kPrimIntMax));
Mark Mendellcfa410b2015-05-25 16:02:44 -04002632 // if input >= (float)INT_MAX goto done
2633 __ comiss(input, codegen_->LiteralFloatAddress(kPrimIntMax));
Roland Levillain3f8f9362014-12-02 17:45:01 +00002634 __ j(kAboveEqual, &done);
2635 // if input == NaN goto nan
2636 __ j(kUnordered, &nan);
2637 // output = float-to-int-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00002638 __ cvttss2si(output, input, false);
Roland Levillain3f8f9362014-12-02 17:45:01 +00002639 __ jmp(&done);
2640 __ Bind(&nan);
2641 // output = 0
2642 __ xorl(output, output);
2643 __ Bind(&done);
2644 break;
2645 }
2646
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002647 case Primitive::kPrimDouble: {
2648 // Processing a Dex `double-to-int' instruction.
2649 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2650 CpuRegister output = out.AsRegister<CpuRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002651 NearLabel done, nan;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002652
2653 __ movl(output, Immediate(kPrimIntMax));
Mark Mendellcfa410b2015-05-25 16:02:44 -04002654 // if input >= (double)INT_MAX goto done
2655 __ comisd(input, codegen_->LiteralDoubleAddress(kPrimIntMax));
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002656 __ j(kAboveEqual, &done);
2657 // if input == NaN goto nan
2658 __ j(kUnordered, &nan);
2659 // output = double-to-int-truncate(input)
2660 __ cvttsd2si(output, input);
2661 __ jmp(&done);
2662 __ Bind(&nan);
2663 // output = 0
2664 __ xorl(output, output);
2665 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00002666 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002667 }
Roland Levillain946e1432014-11-11 17:35:19 +00002668
2669 default:
2670 LOG(FATAL) << "Unexpected type conversion from " << input_type
2671 << " to " << result_type;
2672 }
2673 break;
2674
Roland Levillaindff1f282014-11-05 14:15:05 +00002675 case Primitive::kPrimLong:
2676 switch (input_type) {
2677 DCHECK(out.IsRegister());
David Brazdil46e2a392015-03-16 17:31:52 +00002678 case Primitive::kPrimBoolean:
2679 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002680 case Primitive::kPrimByte:
2681 case Primitive::kPrimShort:
2682 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002683 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002684 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002685 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002686 __ movsxd(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Roland Levillaindff1f282014-11-05 14:15:05 +00002687 break;
2688
Roland Levillain624279f2014-12-04 11:54:28 +00002689 case Primitive::kPrimFloat: {
2690 // Processing a Dex `float-to-long' instruction.
2691 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2692 CpuRegister output = out.AsRegister<CpuRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002693 NearLabel done, nan;
Roland Levillain624279f2014-12-04 11:54:28 +00002694
Mark Mendell92e83bf2015-05-07 11:25:03 -04002695 codegen_->Load64BitValue(output, kPrimLongMax);
Mark Mendellcfa410b2015-05-25 16:02:44 -04002696 // if input >= (float)LONG_MAX goto done
2697 __ comiss(input, codegen_->LiteralFloatAddress(kPrimLongMax));
Roland Levillain624279f2014-12-04 11:54:28 +00002698 __ j(kAboveEqual, &done);
2699 // if input == NaN goto nan
2700 __ j(kUnordered, &nan);
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002701 // output = float-to-long-truncate(input)
Roland Levillain624279f2014-12-04 11:54:28 +00002702 __ cvttss2si(output, input, true);
2703 __ jmp(&done);
2704 __ Bind(&nan);
2705 // output = 0
Mark Mendell92e83bf2015-05-07 11:25:03 -04002706 __ xorl(output, output);
Roland Levillain624279f2014-12-04 11:54:28 +00002707 __ Bind(&done);
2708 break;
2709 }
2710
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002711 case Primitive::kPrimDouble: {
2712 // Processing a Dex `double-to-long' instruction.
2713 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2714 CpuRegister output = out.AsRegister<CpuRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002715 NearLabel done, nan;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002716
Mark Mendell92e83bf2015-05-07 11:25:03 -04002717 codegen_->Load64BitValue(output, kPrimLongMax);
Mark Mendellcfa410b2015-05-25 16:02:44 -04002718 // if input >= (double)LONG_MAX goto done
2719 __ comisd(input, codegen_->LiteralDoubleAddress(kPrimLongMax));
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002720 __ j(kAboveEqual, &done);
2721 // if input == NaN goto nan
2722 __ j(kUnordered, &nan);
2723 // output = double-to-long-truncate(input)
2724 __ cvttsd2si(output, input, true);
2725 __ jmp(&done);
2726 __ Bind(&nan);
2727 // output = 0
Mark Mendell92e83bf2015-05-07 11:25:03 -04002728 __ xorl(output, output);
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002729 __ Bind(&done);
Roland Levillaindff1f282014-11-05 14:15:05 +00002730 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002731 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002732
2733 default:
2734 LOG(FATAL) << "Unexpected type conversion from " << input_type
2735 << " to " << result_type;
2736 }
2737 break;
2738
Roland Levillain981e4542014-11-14 11:47:14 +00002739 case Primitive::kPrimChar:
2740 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002741 case Primitive::kPrimLong:
2742 // Type conversion from long to char is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002743 case Primitive::kPrimBoolean:
2744 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002745 case Primitive::kPrimByte:
2746 case Primitive::kPrimShort:
2747 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002748 // Processing a Dex `int-to-char' instruction.
2749 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002750 __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
Vladimir Markob52bbde2016-02-12 12:06:05 +00002751 } else if (in.IsStackSlot() || in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002752 __ movzxw(out.AsRegister<CpuRegister>(),
Roland Levillain981e4542014-11-14 11:47:14 +00002753 Address(CpuRegister(RSP), in.GetStackIndex()));
2754 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002755 __ movl(out.AsRegister<CpuRegister>(),
Vladimir Markob52bbde2016-02-12 12:06:05 +00002756 Immediate(static_cast<uint16_t>(Int64FromConstant(in.GetConstant()))));
Roland Levillain981e4542014-11-14 11:47:14 +00002757 }
2758 break;
2759
2760 default:
2761 LOG(FATAL) << "Unexpected type conversion from " << input_type
2762 << " to " << result_type;
2763 }
2764 break;
2765
Roland Levillaindff1f282014-11-05 14:15:05 +00002766 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002767 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002768 case Primitive::kPrimBoolean:
2769 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002770 case Primitive::kPrimByte:
2771 case Primitive::kPrimShort:
2772 case Primitive::kPrimInt:
2773 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002774 // Processing a Dex `int-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002775 if (in.IsRegister()) {
2776 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
2777 } else if (in.IsConstant()) {
2778 int32_t v = in.GetConstant()->AsIntConstant()->GetValue();
2779 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002780 codegen_->Load32BitValue(dest, static_cast<float>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002781 } else {
2782 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(),
2783 Address(CpuRegister(RSP), in.GetStackIndex()), false);
2784 }
Roland Levillaincff13742014-11-17 14:32:17 +00002785 break;
2786
2787 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002788 // Processing a Dex `long-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002789 if (in.IsRegister()) {
2790 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
2791 } else if (in.IsConstant()) {
2792 int64_t v = in.GetConstant()->AsLongConstant()->GetValue();
2793 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002794 codegen_->Load64BitValue(dest, static_cast<double>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002795 } else {
2796 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(),
2797 Address(CpuRegister(RSP), in.GetStackIndex()), true);
2798 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002799 break;
2800
Roland Levillaincff13742014-11-17 14:32:17 +00002801 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002802 // Processing a Dex `double-to-float' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002803 if (in.IsFpuRegister()) {
2804 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
2805 } else if (in.IsConstant()) {
2806 double v = in.GetConstant()->AsDoubleConstant()->GetValue();
2807 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002808 codegen_->Load32BitValue(dest, static_cast<float>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002809 } else {
2810 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(),
2811 Address(CpuRegister(RSP), in.GetStackIndex()));
2812 }
Roland Levillaincff13742014-11-17 14:32:17 +00002813 break;
2814
2815 default:
2816 LOG(FATAL) << "Unexpected type conversion from " << input_type
2817 << " to " << result_type;
2818 };
2819 break;
2820
Roland Levillaindff1f282014-11-05 14:15:05 +00002821 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002822 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002823 case Primitive::kPrimBoolean:
2824 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002825 case Primitive::kPrimByte:
2826 case Primitive::kPrimShort:
2827 case Primitive::kPrimInt:
2828 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002829 // Processing a Dex `int-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002830 if (in.IsRegister()) {
2831 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), false);
2832 } else if (in.IsConstant()) {
2833 int32_t v = in.GetConstant()->AsIntConstant()->GetValue();
2834 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002835 codegen_->Load64BitValue(dest, static_cast<double>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002836 } else {
2837 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(),
2838 Address(CpuRegister(RSP), in.GetStackIndex()), false);
2839 }
Roland Levillaincff13742014-11-17 14:32:17 +00002840 break;
2841
2842 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00002843 // Processing a Dex `long-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002844 if (in.IsRegister()) {
2845 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<CpuRegister>(), true);
2846 } else if (in.IsConstant()) {
2847 int64_t v = in.GetConstant()->AsLongConstant()->GetValue();
2848 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002849 codegen_->Load64BitValue(dest, static_cast<double>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002850 } else {
2851 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(),
2852 Address(CpuRegister(RSP), in.GetStackIndex()), true);
2853 }
Roland Levillain647b9ed2014-11-27 12:06:00 +00002854 break;
2855
Roland Levillaincff13742014-11-17 14:32:17 +00002856 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002857 // Processing a Dex `float-to-double' instruction.
Mark Mendell40741f32015-04-20 22:10:34 -04002858 if (in.IsFpuRegister()) {
2859 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
2860 } else if (in.IsConstant()) {
2861 float v = in.GetConstant()->AsFloatConstant()->GetValue();
2862 XmmRegister dest = out.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05002863 codegen_->Load64BitValue(dest, static_cast<double>(v));
Mark Mendell40741f32015-04-20 22:10:34 -04002864 } else {
2865 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(),
2866 Address(CpuRegister(RSP), in.GetStackIndex()));
2867 }
Roland Levillaincff13742014-11-17 14:32:17 +00002868 break;
2869
2870 default:
2871 LOG(FATAL) << "Unexpected type conversion from " << input_type
2872 << " to " << result_type;
2873 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002874 break;
2875
2876 default:
2877 LOG(FATAL) << "Unexpected type conversion from " << input_type
2878 << " to " << result_type;
2879 }
2880}
2881
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002882void LocationsBuilderX86_64::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002883 LocationSummary* locations =
2884 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002885 switch (add->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002886 case Primitive::kPrimInt: {
2887 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002888 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
2889 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002890 break;
2891 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002892
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002893 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002894 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell09b84632015-02-13 17:48:38 -05002895 // We can use a leaq or addq if the constant can fit in an immediate.
Mark Mendellea5af682015-10-22 17:35:49 -04002896 locations->SetInAt(1, Location::RegisterOrInt32Constant(add->InputAt(1)));
Mark Mendell09b84632015-02-13 17:48:38 -05002897 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002898 break;
2899 }
2900
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002901 case Primitive::kPrimDouble:
2902 case Primitive::kPrimFloat: {
2903 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04002904 locations->SetInAt(1, Location::Any());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002905 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002906 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002907 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002908
2909 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002910 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002911 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002912}
2913
2914void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) {
2915 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002916 Location first = locations->InAt(0);
2917 Location second = locations->InAt(1);
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002918 Location out = locations->Out();
Calin Juravle11351682014-10-23 15:38:15 +01002919
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002920 switch (add->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002921 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002922 if (second.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002923 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2924 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Mark Mendell33bf2452015-05-27 10:08:24 -04002925 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2926 __ addl(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>());
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002927 } else {
2928 __ leal(out.AsRegister<CpuRegister>(), Address(
2929 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2930 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002931 } else if (second.IsConstant()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002932 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2933 __ addl(out.AsRegister<CpuRegister>(),
2934 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
2935 } else {
2936 __ leal(out.AsRegister<CpuRegister>(), Address(
2937 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue()));
2938 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002939 } else {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00002940 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002941 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002942 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00002943 break;
2944 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002945
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002946 case Primitive::kPrimLong: {
Mark Mendell09b84632015-02-13 17:48:38 -05002947 if (second.IsRegister()) {
2948 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2949 __ addq(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Mark Mendell33bf2452015-05-27 10:08:24 -04002950 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2951 __ addq(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>());
Mark Mendell09b84632015-02-13 17:48:38 -05002952 } else {
2953 __ leaq(out.AsRegister<CpuRegister>(), Address(
2954 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2955 }
2956 } else {
2957 DCHECK(second.IsConstant());
2958 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2959 int32_t int32_value = Low32Bits(value);
2960 DCHECK_EQ(int32_value, value);
2961 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2962 __ addq(out.AsRegister<CpuRegister>(), Immediate(int32_value));
2963 } else {
2964 __ leaq(out.AsRegister<CpuRegister>(), Address(
2965 first.AsRegister<CpuRegister>(), int32_value));
2966 }
2967 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002968 break;
2969 }
2970
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002971 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002972 if (second.IsFpuRegister()) {
2973 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2974 } else if (second.IsConstant()) {
2975 __ addss(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00002976 codegen_->LiteralFloatAddress(
2977 second.GetConstant()->AsFloatConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04002978 } else {
2979 DCHECK(second.IsStackSlot());
2980 __ addss(first.AsFpuRegister<XmmRegister>(),
2981 Address(CpuRegister(RSP), second.GetStackIndex()));
2982 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01002983 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002984 }
2985
2986 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04002987 if (second.IsFpuRegister()) {
2988 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
2989 } else if (second.IsConstant()) {
2990 __ addsd(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00002991 codegen_->LiteralDoubleAddress(
2992 second.GetConstant()->AsDoubleConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04002993 } else {
2994 DCHECK(second.IsDoubleStackSlot());
2995 __ addsd(first.AsFpuRegister<XmmRegister>(),
2996 Address(CpuRegister(RSP), second.GetStackIndex()));
2997 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002998 break;
2999 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003000
3001 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003002 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003003 }
3004}
3005
3006void LocationsBuilderX86_64::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003007 LocationSummary* locations =
3008 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003009 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003010 case Primitive::kPrimInt: {
3011 locations->SetInAt(0, Location::RequiresRegister());
3012 locations->SetInAt(1, Location::Any());
3013 locations->SetOut(Location::SameAsFirstInput());
3014 break;
3015 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003016 case Primitive::kPrimLong: {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003017 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendellea5af682015-10-22 17:35:49 -04003018 locations->SetInAt(1, Location::RegisterOrInt32Constant(sub->InputAt(1)));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003019 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003020 break;
3021 }
Calin Juravle11351682014-10-23 15:38:15 +01003022 case Primitive::kPrimFloat:
3023 case Primitive::kPrimDouble: {
3024 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04003025 locations->SetInAt(1, Location::Any());
Calin Juravle11351682014-10-23 15:38:15 +01003026 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003027 break;
Calin Juravle11351682014-10-23 15:38:15 +01003028 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003029 default:
Calin Juravle11351682014-10-23 15:38:15 +01003030 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003031 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003032}
3033
3034void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) {
3035 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01003036 Location first = locations->InAt(0);
3037 Location second = locations->InAt(1);
3038 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003039 switch (sub->GetResultType()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003040 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01003041 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003042 __ subl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01003043 } else if (second.IsConstant()) {
3044 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003045 __ subl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003046 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003047 __ subl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003048 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00003049 break;
3050 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003051 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003052 if (second.IsConstant()) {
3053 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
3054 DCHECK(IsInt<32>(value));
3055 __ subq(first.AsRegister<CpuRegister>(), Immediate(static_cast<int32_t>(value)));
3056 } else {
3057 __ subq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
3058 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003059 break;
3060 }
3061
Calin Juravle11351682014-10-23 15:38:15 +01003062 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04003063 if (second.IsFpuRegister()) {
3064 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3065 } else if (second.IsConstant()) {
3066 __ subss(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003067 codegen_->LiteralFloatAddress(
3068 second.GetConstant()->AsFloatConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003069 } else {
3070 DCHECK(second.IsStackSlot());
3071 __ subss(first.AsFpuRegister<XmmRegister>(),
3072 Address(CpuRegister(RSP), second.GetStackIndex()));
3073 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003074 break;
Calin Juravle11351682014-10-23 15:38:15 +01003075 }
3076
3077 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04003078 if (second.IsFpuRegister()) {
3079 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3080 } else if (second.IsConstant()) {
3081 __ subsd(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003082 codegen_->LiteralDoubleAddress(
3083 second.GetConstant()->AsDoubleConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003084 } else {
3085 DCHECK(second.IsDoubleStackSlot());
3086 __ subsd(first.AsFpuRegister<XmmRegister>(),
3087 Address(CpuRegister(RSP), second.GetStackIndex()));
3088 }
Calin Juravle11351682014-10-23 15:38:15 +01003089 break;
3090 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003091
3092 default:
Calin Juravle11351682014-10-23 15:38:15 +01003093 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003094 }
3095}
3096
Calin Juravle34bacdf2014-10-07 20:23:36 +01003097void LocationsBuilderX86_64::VisitMul(HMul* mul) {
3098 LocationSummary* locations =
3099 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
3100 switch (mul->GetResultType()) {
3101 case Primitive::kPrimInt: {
3102 locations->SetInAt(0, Location::RequiresRegister());
3103 locations->SetInAt(1, Location::Any());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003104 if (mul->InputAt(1)->IsIntConstant()) {
3105 // Can use 3 operand multiply.
3106 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3107 } else {
3108 locations->SetOut(Location::SameAsFirstInput());
3109 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003110 break;
3111 }
3112 case Primitive::kPrimLong: {
3113 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003114 locations->SetInAt(1, Location::Any());
3115 if (mul->InputAt(1)->IsLongConstant() &&
3116 IsInt<32>(mul->InputAt(1)->AsLongConstant()->GetValue())) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003117 // Can use 3 operand multiply.
3118 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3119 } else {
3120 locations->SetOut(Location::SameAsFirstInput());
3121 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003122 break;
3123 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003124 case Primitive::kPrimFloat:
3125 case Primitive::kPrimDouble: {
3126 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04003127 locations->SetInAt(1, Location::Any());
Calin Juravleb5bfa962014-10-21 18:02:24 +01003128 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003129 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003130 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003131
3132 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003133 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003134 }
3135}
3136
3137void InstructionCodeGeneratorX86_64::VisitMul(HMul* mul) {
3138 LocationSummary* locations = mul->GetLocations();
3139 Location first = locations->InAt(0);
3140 Location second = locations->InAt(1);
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003141 Location out = locations->Out();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003142 switch (mul->GetResultType()) {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003143 case Primitive::kPrimInt:
3144 // The constant may have ended up in a register, so test explicitly to avoid
3145 // problems where the output may not be the same as the first operand.
3146 if (mul->InputAt(1)->IsIntConstant()) {
3147 Immediate imm(mul->InputAt(1)->AsIntConstant()->GetValue());
3148 __ imull(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), imm);
3149 } else if (second.IsRegister()) {
3150 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00003151 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003152 } else {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003153 DCHECK(first.Equals(out));
Calin Juravle34bacdf2014-10-07 20:23:36 +01003154 DCHECK(second.IsStackSlot());
Roland Levillain199f3362014-11-27 17:15:16 +00003155 __ imull(first.AsRegister<CpuRegister>(),
3156 Address(CpuRegister(RSP), second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01003157 }
3158 break;
Calin Juravle34bacdf2014-10-07 20:23:36 +01003159 case Primitive::kPrimLong: {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003160 // The constant may have ended up in a register, so test explicitly to avoid
3161 // problems where the output may not be the same as the first operand.
3162 if (mul->InputAt(1)->IsLongConstant()) {
3163 int64_t value = mul->InputAt(1)->AsLongConstant()->GetValue();
3164 if (IsInt<32>(value)) {
3165 __ imulq(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(),
3166 Immediate(static_cast<int32_t>(value)));
3167 } else {
3168 // Have to use the constant area.
3169 DCHECK(first.Equals(out));
3170 __ imulq(first.AsRegister<CpuRegister>(), codegen_->LiteralInt64Address(value));
3171 }
3172 } else if (second.IsRegister()) {
3173 DCHECK(first.Equals(out));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003174 __ imulq(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003175 } else {
3176 DCHECK(second.IsDoubleStackSlot());
3177 DCHECK(first.Equals(out));
3178 __ imulq(first.AsRegister<CpuRegister>(),
3179 Address(CpuRegister(RSP), second.GetStackIndex()));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003180 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003181 break;
3182 }
3183
Calin Juravleb5bfa962014-10-21 18:02:24 +01003184 case Primitive::kPrimFloat: {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003185 DCHECK(first.Equals(out));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003186 if (second.IsFpuRegister()) {
3187 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3188 } else if (second.IsConstant()) {
3189 __ mulss(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003190 codegen_->LiteralFloatAddress(
3191 second.GetConstant()->AsFloatConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003192 } else {
3193 DCHECK(second.IsStackSlot());
3194 __ mulss(first.AsFpuRegister<XmmRegister>(),
3195 Address(CpuRegister(RSP), second.GetStackIndex()));
3196 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003197 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003198 }
3199
3200 case Primitive::kPrimDouble: {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003201 DCHECK(first.Equals(out));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003202 if (second.IsFpuRegister()) {
3203 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3204 } else if (second.IsConstant()) {
3205 __ mulsd(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003206 codegen_->LiteralDoubleAddress(
3207 second.GetConstant()->AsDoubleConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003208 } else {
3209 DCHECK(second.IsDoubleStackSlot());
3210 __ mulsd(first.AsFpuRegister<XmmRegister>(),
3211 Address(CpuRegister(RSP), second.GetStackIndex()));
3212 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003213 break;
3214 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003215
3216 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003217 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003218 }
3219}
3220
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003221void InstructionCodeGeneratorX86_64::PushOntoFPStack(Location source, uint32_t temp_offset,
3222 uint32_t stack_adjustment, bool is_float) {
3223 if (source.IsStackSlot()) {
3224 DCHECK(is_float);
3225 __ flds(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment));
3226 } else if (source.IsDoubleStackSlot()) {
3227 DCHECK(!is_float);
3228 __ fldl(Address(CpuRegister(RSP), source.GetStackIndex() + stack_adjustment));
3229 } else {
3230 // Write the value to the temporary location on the stack and load to FP stack.
3231 if (is_float) {
3232 Location stack_temp = Location::StackSlot(temp_offset);
3233 codegen_->Move(stack_temp, source);
3234 __ flds(Address(CpuRegister(RSP), temp_offset));
3235 } else {
3236 Location stack_temp = Location::DoubleStackSlot(temp_offset);
3237 codegen_->Move(stack_temp, source);
3238 __ fldl(Address(CpuRegister(RSP), temp_offset));
3239 }
3240 }
3241}
3242
3243void InstructionCodeGeneratorX86_64::GenerateRemFP(HRem *rem) {
3244 Primitive::Type type = rem->GetResultType();
3245 bool is_float = type == Primitive::kPrimFloat;
3246 size_t elem_size = Primitive::ComponentSize(type);
3247 LocationSummary* locations = rem->GetLocations();
3248 Location first = locations->InAt(0);
3249 Location second = locations->InAt(1);
3250 Location out = locations->Out();
3251
3252 // Create stack space for 2 elements.
3253 // TODO: enhance register allocator to ask for stack temporaries.
3254 __ subq(CpuRegister(RSP), Immediate(2 * elem_size));
3255
3256 // Load the values to the FP stack in reverse order, using temporaries if needed.
3257 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float);
3258 PushOntoFPStack(first, 0, 2 * elem_size, is_float);
3259
3260 // Loop doing FPREM until we stabilize.
Mark Mendell0c9497d2015-08-21 09:30:05 -04003261 NearLabel retry;
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003262 __ Bind(&retry);
3263 __ fprem();
3264
3265 // Move FP status to AX.
3266 __ fstsw();
3267
3268 // And see if the argument reduction is complete. This is signaled by the
3269 // C2 FPU flag bit set to 0.
3270 __ andl(CpuRegister(RAX), Immediate(kC2ConditionMask));
3271 __ j(kNotEqual, &retry);
3272
3273 // We have settled on the final value. Retrieve it into an XMM register.
3274 // Store FP top of stack to real stack.
3275 if (is_float) {
3276 __ fsts(Address(CpuRegister(RSP), 0));
3277 } else {
3278 __ fstl(Address(CpuRegister(RSP), 0));
3279 }
3280
3281 // Pop the 2 items from the FP stack.
3282 __ fucompp();
3283
3284 // Load the value from the stack into an XMM register.
3285 DCHECK(out.IsFpuRegister()) << out;
3286 if (is_float) {
3287 __ movss(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0));
3288 } else {
3289 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(CpuRegister(RSP), 0));
3290 }
3291
3292 // And remove the temporary stack space we allocated.
3293 __ addq(CpuRegister(RSP), Immediate(2 * elem_size));
3294}
3295
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003296void InstructionCodeGeneratorX86_64::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
3297 DCHECK(instruction->IsDiv() || instruction->IsRem());
3298
3299 LocationSummary* locations = instruction->GetLocations();
3300 Location second = locations->InAt(1);
3301 DCHECK(second.IsConstant());
3302
3303 CpuRegister output_register = locations->Out().AsRegister<CpuRegister>();
3304 CpuRegister input_register = locations->InAt(0).AsRegister<CpuRegister>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003305 int64_t imm = Int64FromConstant(second.GetConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003306
3307 DCHECK(imm == 1 || imm == -1);
3308
3309 switch (instruction->GetResultType()) {
3310 case Primitive::kPrimInt: {
3311 if (instruction->IsRem()) {
3312 __ xorl(output_register, output_register);
3313 } else {
3314 __ movl(output_register, input_register);
3315 if (imm == -1) {
3316 __ negl(output_register);
3317 }
3318 }
3319 break;
3320 }
3321
3322 case Primitive::kPrimLong: {
3323 if (instruction->IsRem()) {
Mark Mendell92e83bf2015-05-07 11:25:03 -04003324 __ xorl(output_register, output_register);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003325 } else {
3326 __ movq(output_register, input_register);
3327 if (imm == -1) {
3328 __ negq(output_register);
3329 }
3330 }
3331 break;
3332 }
3333
3334 default:
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003335 LOG(FATAL) << "Unexpected type for div by (-)1 " << instruction->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003336 }
3337}
3338
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003339void InstructionCodeGeneratorX86_64::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003340 LocationSummary* locations = instruction->GetLocations();
3341 Location second = locations->InAt(1);
3342
3343 CpuRegister output_register = locations->Out().AsRegister<CpuRegister>();
3344 CpuRegister numerator = locations->InAt(0).AsRegister<CpuRegister>();
3345
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003346 int64_t imm = Int64FromConstant(second.GetConstant());
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003347 DCHECK(IsPowerOfTwo(AbsOrMin(imm)));
3348 uint64_t abs_imm = AbsOrMin(imm);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003349
3350 CpuRegister tmp = locations->GetTemp(0).AsRegister<CpuRegister>();
3351
3352 if (instruction->GetResultType() == Primitive::kPrimInt) {
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003353 __ leal(tmp, Address(numerator, abs_imm - 1));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003354 __ testl(numerator, numerator);
3355 __ cmov(kGreaterEqual, tmp, numerator);
3356 int shift = CTZ(imm);
3357 __ sarl(tmp, Immediate(shift));
3358
3359 if (imm < 0) {
3360 __ negl(tmp);
3361 }
3362
3363 __ movl(output_register, tmp);
3364 } else {
3365 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
3366 CpuRegister rdx = locations->GetTemp(0).AsRegister<CpuRegister>();
3367
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003368 codegen_->Load64BitValue(rdx, abs_imm - 1);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003369 __ addq(rdx, numerator);
3370 __ testq(numerator, numerator);
3371 __ cmov(kGreaterEqual, rdx, numerator);
3372 int shift = CTZ(imm);
3373 __ sarq(rdx, Immediate(shift));
3374
3375 if (imm < 0) {
3376 __ negq(rdx);
3377 }
3378
3379 __ movq(output_register, rdx);
3380 }
3381}
3382
3383void InstructionCodeGeneratorX86_64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
3384 DCHECK(instruction->IsDiv() || instruction->IsRem());
3385
3386 LocationSummary* locations = instruction->GetLocations();
3387 Location second = locations->InAt(1);
3388
3389 CpuRegister numerator = instruction->IsDiv() ? locations->GetTemp(1).AsRegister<CpuRegister>()
3390 : locations->GetTemp(0).AsRegister<CpuRegister>();
3391 CpuRegister eax = locations->InAt(0).AsRegister<CpuRegister>();
3392 CpuRegister edx = instruction->IsDiv() ? locations->GetTemp(0).AsRegister<CpuRegister>()
3393 : locations->Out().AsRegister<CpuRegister>();
3394 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
3395
3396 DCHECK_EQ(RAX, eax.AsRegister());
3397 DCHECK_EQ(RDX, edx.AsRegister());
3398 if (instruction->IsDiv()) {
3399 DCHECK_EQ(RAX, out.AsRegister());
3400 } else {
3401 DCHECK_EQ(RDX, out.AsRegister());
3402 }
3403
3404 int64_t magic;
3405 int shift;
3406
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003407 // TODO: can these branches be written as one?
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003408 if (instruction->GetResultType() == Primitive::kPrimInt) {
3409 int imm = second.GetConstant()->AsIntConstant()->GetValue();
3410
3411 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
3412
3413 __ movl(numerator, eax);
3414
Mark Mendell0c9497d2015-08-21 09:30:05 -04003415 NearLabel no_div;
3416 NearLabel end;
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003417 __ testl(eax, eax);
3418 __ j(kNotEqual, &no_div);
3419
3420 __ xorl(out, out);
3421 __ jmp(&end);
3422
3423 __ Bind(&no_div);
3424
3425 __ movl(eax, Immediate(magic));
3426 __ imull(numerator);
3427
3428 if (imm > 0 && magic < 0) {
3429 __ addl(edx, numerator);
3430 } else if (imm < 0 && magic > 0) {
3431 __ subl(edx, numerator);
3432 }
3433
3434 if (shift != 0) {
3435 __ sarl(edx, Immediate(shift));
3436 }
3437
3438 __ movl(eax, edx);
3439 __ shrl(edx, Immediate(31));
3440 __ addl(edx, eax);
3441
3442 if (instruction->IsRem()) {
3443 __ movl(eax, numerator);
3444 __ imull(edx, Immediate(imm));
3445 __ subl(eax, edx);
3446 __ movl(edx, eax);
3447 } else {
3448 __ movl(eax, edx);
3449 }
3450 __ Bind(&end);
3451 } else {
3452 int64_t imm = second.GetConstant()->AsLongConstant()->GetValue();
3453
3454 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
3455
3456 CpuRegister rax = eax;
3457 CpuRegister rdx = edx;
3458
3459 CalculateMagicAndShiftForDivRem(imm, true /* is_long */, &magic, &shift);
3460
3461 // Save the numerator.
3462 __ movq(numerator, rax);
3463
3464 // RAX = magic
Mark Mendell92e83bf2015-05-07 11:25:03 -04003465 codegen_->Load64BitValue(rax, magic);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003466
3467 // RDX:RAX = magic * numerator
3468 __ imulq(numerator);
3469
3470 if (imm > 0 && magic < 0) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003471 // RDX += numerator
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003472 __ addq(rdx, numerator);
3473 } else if (imm < 0 && magic > 0) {
3474 // RDX -= numerator
3475 __ subq(rdx, numerator);
3476 }
3477
3478 // Shift if needed.
3479 if (shift != 0) {
3480 __ sarq(rdx, Immediate(shift));
3481 }
3482
3483 // RDX += 1 if RDX < 0
3484 __ movq(rax, rdx);
3485 __ shrq(rdx, Immediate(63));
3486 __ addq(rdx, rax);
3487
3488 if (instruction->IsRem()) {
3489 __ movq(rax, numerator);
3490
3491 if (IsInt<32>(imm)) {
3492 __ imulq(rdx, Immediate(static_cast<int32_t>(imm)));
3493 } else {
Mark Mendell92e83bf2015-05-07 11:25:03 -04003494 __ imulq(rdx, codegen_->LiteralInt64Address(imm));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003495 }
3496
3497 __ subq(rax, rdx);
3498 __ movq(rdx, rax);
3499 } else {
3500 __ movq(rax, rdx);
3501 }
3502 }
3503}
3504
Calin Juravlebacfec32014-11-14 15:54:36 +00003505void InstructionCodeGeneratorX86_64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
3506 DCHECK(instruction->IsDiv() || instruction->IsRem());
3507 Primitive::Type type = instruction->GetResultType();
3508 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
3509
3510 bool is_div = instruction->IsDiv();
3511 LocationSummary* locations = instruction->GetLocations();
3512
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003513 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
3514 Location second = locations->InAt(1);
Calin Juravlebacfec32014-11-14 15:54:36 +00003515
Roland Levillain271ab9c2014-11-27 15:23:57 +00003516 DCHECK_EQ(RAX, locations->InAt(0).AsRegister<CpuRegister>().AsRegister());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003517 DCHECK_EQ(is_div ? RAX : RDX, out.AsRegister());
Calin Juravlebacfec32014-11-14 15:54:36 +00003518
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003519 if (second.IsConstant()) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003520 int64_t imm = Int64FromConstant(second.GetConstant());
Calin Juravlebacfec32014-11-14 15:54:36 +00003521
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003522 if (imm == 0) {
3523 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
3524 } else if (imm == 1 || imm == -1) {
3525 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003526 } else if (instruction->IsDiv() && IsPowerOfTwo(AbsOrMin(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003527 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003528 } else {
3529 DCHECK(imm <= -2 || imm >= 2);
3530 GenerateDivRemWithAnyConstant(instruction);
3531 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003532 } else {
Andreas Gampe85b62f22015-09-09 13:15:38 -07003533 SlowPathCode* slow_path =
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003534 new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86_64(
David Srbecky9cd6d372016-02-09 15:24:47 +00003535 instruction, out.AsRegister(), type, is_div);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003536 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00003537
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003538 CpuRegister second_reg = second.AsRegister<CpuRegister>();
3539 // 0x80000000(00000000)/-1 triggers an arithmetic exception!
3540 // Dividing by -1 is actually negation and -0x800000000(00000000) = 0x80000000(00000000)
3541 // so it's safe to just use negl instead of more complex comparisons.
3542 if (type == Primitive::kPrimInt) {
3543 __ cmpl(second_reg, Immediate(-1));
3544 __ j(kEqual, slow_path->GetEntryLabel());
3545 // edx:eax <- sign-extended of eax
3546 __ cdq();
3547 // eax = quotient, edx = remainder
3548 __ idivl(second_reg);
3549 } else {
3550 __ cmpq(second_reg, Immediate(-1));
3551 __ j(kEqual, slow_path->GetEntryLabel());
3552 // rdx:rax <- sign-extended of rax
3553 __ cqo();
3554 // rax = quotient, rdx = remainder
3555 __ idivq(second_reg);
3556 }
3557 __ Bind(slow_path->GetExitLabel());
3558 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003559}
3560
Calin Juravle7c4954d2014-10-28 16:57:40 +00003561void LocationsBuilderX86_64::VisitDiv(HDiv* div) {
3562 LocationSummary* locations =
3563 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
3564 switch (div->GetResultType()) {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003565 case Primitive::kPrimInt:
3566 case Primitive::kPrimLong: {
Calin Juravled0d48522014-11-04 16:40:20 +00003567 locations->SetInAt(0, Location::RegisterLocation(RAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003568 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00003569 locations->SetOut(Location::SameAsFirstInput());
3570 // Intel uses edx:eax as the dividend.
3571 locations->AddTemp(Location::RegisterLocation(RDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003572 // We need to save the numerator while we tweak rax and rdx. As we are using imul in a way
3573 // which enforces results to be in RAX and RDX, things are simpler if we use RDX also as
3574 // output and request another temp.
3575 if (div->InputAt(1)->IsConstant()) {
3576 locations->AddTemp(Location::RequiresRegister());
3577 }
Calin Juravled0d48522014-11-04 16:40:20 +00003578 break;
3579 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003580
Calin Juravle7c4954d2014-10-28 16:57:40 +00003581 case Primitive::kPrimFloat:
3582 case Primitive::kPrimDouble: {
3583 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendellf55c3e02015-03-26 21:07:46 -04003584 locations->SetInAt(1, Location::Any());
Calin Juravle7c4954d2014-10-28 16:57:40 +00003585 locations->SetOut(Location::SameAsFirstInput());
3586 break;
3587 }
3588
3589 default:
3590 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3591 }
3592}
3593
3594void InstructionCodeGeneratorX86_64::VisitDiv(HDiv* div) {
3595 LocationSummary* locations = div->GetLocations();
3596 Location first = locations->InAt(0);
3597 Location second = locations->InAt(1);
3598 DCHECK(first.Equals(locations->Out()));
3599
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003600 Primitive::Type type = div->GetResultType();
3601 switch (type) {
3602 case Primitive::kPrimInt:
3603 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003604 GenerateDivRemIntegral(div);
Calin Juravled0d48522014-11-04 16:40:20 +00003605 break;
3606 }
3607
Calin Juravle7c4954d2014-10-28 16:57:40 +00003608 case Primitive::kPrimFloat: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04003609 if (second.IsFpuRegister()) {
3610 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3611 } else if (second.IsConstant()) {
3612 __ divss(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003613 codegen_->LiteralFloatAddress(
3614 second.GetConstant()->AsFloatConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003615 } else {
3616 DCHECK(second.IsStackSlot());
3617 __ divss(first.AsFpuRegister<XmmRegister>(),
3618 Address(CpuRegister(RSP), second.GetStackIndex()));
3619 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003620 break;
3621 }
3622
3623 case Primitive::kPrimDouble: {
Mark Mendellf55c3e02015-03-26 21:07:46 -04003624 if (second.IsFpuRegister()) {
3625 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3626 } else if (second.IsConstant()) {
3627 __ divsd(first.AsFpuRegister<XmmRegister>(),
Roland Levillain1e7f8db2015-12-15 10:54:19 +00003628 codegen_->LiteralDoubleAddress(
3629 second.GetConstant()->AsDoubleConstant()->GetValue()));
Mark Mendellf55c3e02015-03-26 21:07:46 -04003630 } else {
3631 DCHECK(second.IsDoubleStackSlot());
3632 __ divsd(first.AsFpuRegister<XmmRegister>(),
3633 Address(CpuRegister(RSP), second.GetStackIndex()));
3634 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003635 break;
3636 }
3637
3638 default:
3639 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3640 }
3641}
3642
Calin Juravlebacfec32014-11-14 15:54:36 +00003643void LocationsBuilderX86_64::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00003644 Primitive::Type type = rem->GetResultType();
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003645 LocationSummary* locations =
3646 new (GetGraph()->GetArena()) LocationSummary(rem, LocationSummary::kNoCall);
Calin Juravled2ec87d2014-12-08 14:24:46 +00003647
3648 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00003649 case Primitive::kPrimInt:
3650 case Primitive::kPrimLong: {
3651 locations->SetInAt(0, Location::RegisterLocation(RAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003652 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00003653 // Intel uses rdx:rax as the dividend and puts the remainder in rdx
3654 locations->SetOut(Location::RegisterLocation(RDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003655 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
3656 // which enforces results to be in RAX and RDX, things are simpler if we use EAX also as
3657 // output and request another temp.
3658 if (rem->InputAt(1)->IsConstant()) {
3659 locations->AddTemp(Location::RequiresRegister());
3660 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003661 break;
3662 }
3663
3664 case Primitive::kPrimFloat:
3665 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003666 locations->SetInAt(0, Location::Any());
3667 locations->SetInAt(1, Location::Any());
3668 locations->SetOut(Location::RequiresFpuRegister());
3669 locations->AddTemp(Location::RegisterLocation(RAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00003670 break;
3671 }
3672
3673 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003674 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00003675 }
3676}
3677
3678void InstructionCodeGeneratorX86_64::VisitRem(HRem* rem) {
3679 Primitive::Type type = rem->GetResultType();
3680 switch (type) {
3681 case Primitive::kPrimInt:
3682 case Primitive::kPrimLong: {
3683 GenerateDivRemIntegral(rem);
3684 break;
3685 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003686 case Primitive::kPrimFloat:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003687 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003688 GenerateRemFP(rem);
Calin Juravled2ec87d2014-12-08 14:24:46 +00003689 break;
3690 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003691 default:
3692 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
3693 }
3694}
3695
Calin Juravled0d48522014-11-04 16:40:20 +00003696void LocationsBuilderX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003697 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
3698 ? LocationSummary::kCallOnSlowPath
3699 : LocationSummary::kNoCall;
3700 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Calin Juravled0d48522014-11-04 16:40:20 +00003701 locations->SetInAt(0, Location::Any());
3702 if (instruction->HasUses()) {
3703 locations->SetOut(Location::SameAsFirstInput());
3704 }
3705}
3706
3707void InstructionCodeGeneratorX86_64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07003708 SlowPathCode* slow_path =
Calin Juravled0d48522014-11-04 16:40:20 +00003709 new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86_64(instruction);
3710 codegen_->AddSlowPath(slow_path);
3711
3712 LocationSummary* locations = instruction->GetLocations();
3713 Location value = locations->InAt(0);
3714
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003715 switch (instruction->GetType()) {
Nicolas Geoffraye5671612016-03-16 11:03:54 +00003716 case Primitive::kPrimBoolean:
Serguei Katkov8c0676c2015-08-03 13:55:33 +06003717 case Primitive::kPrimByte:
3718 case Primitive::kPrimChar:
3719 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003720 case Primitive::kPrimInt: {
3721 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003722 __ testl(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003723 __ j(kEqual, slow_path->GetEntryLabel());
3724 } else if (value.IsStackSlot()) {
3725 __ cmpl(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
3726 __ j(kEqual, slow_path->GetEntryLabel());
3727 } else {
3728 DCHECK(value.IsConstant()) << value;
3729 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
3730 __ jmp(slow_path->GetEntryLabel());
3731 }
3732 }
3733 break;
Calin Juravled0d48522014-11-04 16:40:20 +00003734 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003735 case Primitive::kPrimLong: {
3736 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003737 __ testq(value.AsRegister<CpuRegister>(), value.AsRegister<CpuRegister>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003738 __ j(kEqual, slow_path->GetEntryLabel());
3739 } else if (value.IsDoubleStackSlot()) {
3740 __ cmpq(Address(CpuRegister(RSP), value.GetStackIndex()), Immediate(0));
3741 __ j(kEqual, slow_path->GetEntryLabel());
3742 } else {
3743 DCHECK(value.IsConstant()) << value;
3744 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
3745 __ jmp(slow_path->GetEntryLabel());
3746 }
3747 }
3748 break;
3749 }
3750 default:
3751 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00003752 }
Calin Juravled0d48522014-11-04 16:40:20 +00003753}
3754
Calin Juravle9aec02f2014-11-18 23:06:35 +00003755void LocationsBuilderX86_64::HandleShift(HBinaryOperation* op) {
3756 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3757
3758 LocationSummary* locations =
3759 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
3760
3761 switch (op->GetResultType()) {
3762 case Primitive::kPrimInt:
3763 case Primitive::kPrimLong: {
3764 locations->SetInAt(0, Location::RequiresRegister());
3765 // The shift count needs to be in CL.
3766 locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, op->InputAt(1)));
3767 locations->SetOut(Location::SameAsFirstInput());
3768 break;
3769 }
3770 default:
3771 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
3772 }
3773}
3774
3775void InstructionCodeGeneratorX86_64::HandleShift(HBinaryOperation* op) {
3776 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3777
3778 LocationSummary* locations = op->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003779 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003780 Location second = locations->InAt(1);
3781
3782 switch (op->GetResultType()) {
3783 case Primitive::kPrimInt: {
3784 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003785 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003786 if (op->IsShl()) {
3787 __ shll(first_reg, second_reg);
3788 } else if (op->IsShr()) {
3789 __ sarl(first_reg, second_reg);
3790 } else {
3791 __ shrl(first_reg, second_reg);
3792 }
3793 } else {
Nicolas Geoffray486cc192014-12-08 18:00:55 +00003794 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003795 if (op->IsShl()) {
3796 __ shll(first_reg, imm);
3797 } else if (op->IsShr()) {
3798 __ sarl(first_reg, imm);
3799 } else {
3800 __ shrl(first_reg, imm);
3801 }
3802 }
3803 break;
3804 }
3805 case Primitive::kPrimLong: {
3806 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003807 CpuRegister second_reg = second.AsRegister<CpuRegister>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003808 if (op->IsShl()) {
3809 __ shlq(first_reg, second_reg);
3810 } else if (op->IsShr()) {
3811 __ sarq(first_reg, second_reg);
3812 } else {
3813 __ shrq(first_reg, second_reg);
3814 }
3815 } else {
Nicolas Geoffray486cc192014-12-08 18:00:55 +00003816 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftValue);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003817 if (op->IsShl()) {
3818 __ shlq(first_reg, imm);
3819 } else if (op->IsShr()) {
3820 __ sarq(first_reg, imm);
3821 } else {
3822 __ shrq(first_reg, imm);
3823 }
3824 }
3825 break;
3826 }
3827 default:
3828 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
Vladimir Marko351dddf2015-12-11 16:34:46 +00003829 UNREACHABLE();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003830 }
3831}
3832
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003833void LocationsBuilderX86_64::VisitRor(HRor* ror) {
3834 LocationSummary* locations =
3835 new (GetGraph()->GetArena()) LocationSummary(ror, LocationSummary::kNoCall);
3836
3837 switch (ror->GetResultType()) {
3838 case Primitive::kPrimInt:
3839 case Primitive::kPrimLong: {
3840 locations->SetInAt(0, Location::RequiresRegister());
3841 // The shift count needs to be in CL (unless it is a constant).
3842 locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, ror->InputAt(1)));
3843 locations->SetOut(Location::SameAsFirstInput());
3844 break;
3845 }
3846 default:
3847 LOG(FATAL) << "Unexpected operation type " << ror->GetResultType();
3848 UNREACHABLE();
3849 }
3850}
3851
3852void InstructionCodeGeneratorX86_64::VisitRor(HRor* ror) {
3853 LocationSummary* locations = ror->GetLocations();
3854 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>();
3855 Location second = locations->InAt(1);
3856
3857 switch (ror->GetResultType()) {
3858 case Primitive::kPrimInt:
3859 if (second.IsRegister()) {
3860 CpuRegister second_reg = second.AsRegister<CpuRegister>();
3861 __ rorl(first_reg, second_reg);
3862 } else {
3863 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue);
3864 __ rorl(first_reg, imm);
3865 }
3866 break;
3867 case Primitive::kPrimLong:
3868 if (second.IsRegister()) {
3869 CpuRegister second_reg = second.AsRegister<CpuRegister>();
3870 __ rorq(first_reg, second_reg);
3871 } else {
3872 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftValue);
3873 __ rorq(first_reg, imm);
3874 }
3875 break;
3876 default:
3877 LOG(FATAL) << "Unexpected operation type " << ror->GetResultType();
3878 UNREACHABLE();
3879 }
3880}
3881
Calin Juravle9aec02f2014-11-18 23:06:35 +00003882void LocationsBuilderX86_64::VisitShl(HShl* shl) {
3883 HandleShift(shl);
3884}
3885
3886void InstructionCodeGeneratorX86_64::VisitShl(HShl* shl) {
3887 HandleShift(shl);
3888}
3889
3890void LocationsBuilderX86_64::VisitShr(HShr* shr) {
3891 HandleShift(shr);
3892}
3893
3894void InstructionCodeGeneratorX86_64::VisitShr(HShr* shr) {
3895 HandleShift(shr);
3896}
3897
3898void LocationsBuilderX86_64::VisitUShr(HUShr* ushr) {
3899 HandleShift(ushr);
3900}
3901
3902void InstructionCodeGeneratorX86_64::VisitUShr(HUShr* ushr) {
3903 HandleShift(ushr);
3904}
3905
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003906void LocationsBuilderX86_64::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003907 LocationSummary* locations =
3908 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01003909 InvokeRuntimeCallingConvention calling_convention;
David Brazdil6de19382016-01-08 17:37:10 +00003910 if (instruction->IsStringAlloc()) {
3911 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
3912 } else {
3913 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3914 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3915 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003916 locations->SetOut(Location::RegisterLocation(RAX));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003917}
3918
3919void InstructionCodeGeneratorX86_64::VisitNewInstance(HNewInstance* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01003920 // Note: if heap poisoning is enabled, the entry point takes cares
3921 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00003922 if (instruction->IsStringAlloc()) {
3923 // String is allocated through StringFactory. Call NewEmptyString entry point.
3924 CpuRegister temp = instruction->GetLocations()->GetTemp(0).AsRegister<CpuRegister>();
3925 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86_64WordSize);
3926 __ gs()->movq(temp, Address::Absolute(QUICK_ENTRY_POINT(pNewEmptyString), /* no_rip */ true));
3927 __ call(Address(temp, code_offset.SizeValue()));
3928 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3929 } else {
3930 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3931 instruction,
3932 instruction->GetDexPc(),
3933 nullptr);
3934 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
3935 DCHECK(!codegen_->IsLeafMethod());
3936 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003937}
3938
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003939void LocationsBuilderX86_64::VisitNewArray(HNewArray* instruction) {
3940 LocationSummary* locations =
3941 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3942 InvokeRuntimeCallingConvention calling_convention;
3943 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003944 locations->SetOut(Location::RegisterLocation(RAX));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003945 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003946 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003947}
3948
3949void InstructionCodeGeneratorX86_64::VisitNewArray(HNewArray* instruction) {
3950 InvokeRuntimeCallingConvention calling_convention;
Mark Mendell92e83bf2015-05-07 11:25:03 -04003951 codegen_->Load64BitValue(CpuRegister(calling_convention.GetRegisterAt(0)),
3952 instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003953 // Note: if heap poisoning is enabled, the entry point takes cares
3954 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003955 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3956 instruction,
3957 instruction->GetDexPc(),
3958 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00003959 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003960
3961 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003962}
3963
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003964void LocationsBuilderX86_64::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003965 LocationSummary* locations =
3966 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003967 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3968 if (location.IsStackSlot()) {
3969 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3970 } else if (location.IsDoubleStackSlot()) {
3971 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3972 }
3973 locations->SetOut(location);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003974}
3975
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003976void InstructionCodeGeneratorX86_64::VisitParameterValue(
3977 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003978 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003979}
3980
3981void LocationsBuilderX86_64::VisitCurrentMethod(HCurrentMethod* instruction) {
3982 LocationSummary* locations =
3983 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3984 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
3985}
3986
3987void InstructionCodeGeneratorX86_64::VisitCurrentMethod(
3988 HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
3989 // Nothing to do, the method is already at its location.
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01003990}
3991
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00003992void LocationsBuilderX86_64::VisitClassTableGet(HClassTableGet* instruction) {
3993 LocationSummary* locations =
3994 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3995 locations->SetInAt(0, Location::RequiresRegister());
3996 locations->SetOut(Location::RequiresRegister());
3997}
3998
3999void InstructionCodeGeneratorX86_64::VisitClassTableGet(HClassTableGet* instruction) {
4000 LocationSummary* locations = instruction->GetLocations();
4001 uint32_t method_offset = 0;
Vladimir Markoa1de9182016-02-25 11:37:38 +00004002 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004003 method_offset = mirror::Class::EmbeddedVTableEntryOffset(
4004 instruction->GetIndex(), kX86_64PointerSize).SizeValue();
4005 } else {
4006 method_offset = mirror::Class::EmbeddedImTableEntryOffset(
4007 instruction->GetIndex() % mirror::Class::kImtSize, kX86_64PointerSize).Uint32Value();
4008 }
4009 __ movq(locations->Out().AsRegister<CpuRegister>(),
4010 Address(locations->InAt(0).AsRegister<CpuRegister>(), method_offset));
4011}
4012
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004013void LocationsBuilderX86_64::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004014 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004015 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00004016 locations->SetInAt(0, Location::RequiresRegister());
4017 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004018}
4019
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004020void InstructionCodeGeneratorX86_64::VisitNot(HNot* not_) {
4021 LocationSummary* locations = not_->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004022 DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(),
4023 locations->Out().AsRegister<CpuRegister>().AsRegister());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004024 Location out = locations->Out();
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00004025 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004026 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00004027 __ notl(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004028 break;
4029
4030 case Primitive::kPrimLong:
Roland Levillain271ab9c2014-11-27 15:23:57 +00004031 __ notq(out.AsRegister<CpuRegister>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004032 break;
4033
4034 default:
4035 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
4036 }
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004037}
4038
David Brazdil66d126e2015-04-03 16:02:44 +01004039void LocationsBuilderX86_64::VisitBooleanNot(HBooleanNot* bool_not) {
4040 LocationSummary* locations =
4041 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
4042 locations->SetInAt(0, Location::RequiresRegister());
4043 locations->SetOut(Location::SameAsFirstInput());
4044}
4045
4046void InstructionCodeGeneratorX86_64::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01004047 LocationSummary* locations = bool_not->GetLocations();
4048 DCHECK_EQ(locations->InAt(0).AsRegister<CpuRegister>().AsRegister(),
4049 locations->Out().AsRegister<CpuRegister>().AsRegister());
4050 Location out = locations->Out();
4051 __ xorl(out.AsRegister<CpuRegister>(), Immediate(1));
4052}
4053
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004054void LocationsBuilderX86_64::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004055 LocationSummary* locations =
4056 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004057 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
4058 locations->SetInAt(i, Location::Any());
4059 }
4060 locations->SetOut(Location::Any());
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004061}
4062
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004063void InstructionCodeGeneratorX86_64::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01004064 LOG(FATAL) << "Unimplemented";
4065}
4066
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004067void CodeGeneratorX86_64::GenerateMemoryBarrier(MemBarrierKind kind) {
Calin Juravle52c48962014-12-16 17:02:57 +00004068 /*
4069 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004070 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86-64 memory model.
Calin Juravle52c48962014-12-16 17:02:57 +00004071 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
4072 */
4073 switch (kind) {
4074 case MemBarrierKind::kAnyAny: {
Mark P Mendell17077d82015-12-16 19:15:59 +00004075 MemoryFence();
Calin Juravle52c48962014-12-16 17:02:57 +00004076 break;
4077 }
4078 case MemBarrierKind::kAnyStore:
4079 case MemBarrierKind::kLoadAny:
4080 case MemBarrierKind::kStoreStore: {
4081 // nop
4082 break;
4083 }
4084 default:
4085 LOG(FATAL) << "Unexpected memory barier " << kind;
4086 }
4087}
4088
4089void LocationsBuilderX86_64::HandleFieldGet(HInstruction* instruction) {
4090 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
4091
Roland Levillain0d5a2812015-11-13 10:07:31 +00004092 bool object_field_get_with_read_barrier =
4093 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004094 LocationSummary* locations =
Roland Levillain0d5a2812015-11-13 10:07:31 +00004095 new (GetGraph()->GetArena()) LocationSummary(instruction,
4096 object_field_get_with_read_barrier ?
4097 LocationSummary::kCallOnSlowPath :
4098 LocationSummary::kNoCall);
Calin Juravle52c48962014-12-16 17:02:57 +00004099 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004100 if (Primitive::IsFloatingPointType(instruction->GetType())) {
4101 locations->SetOut(Location::RequiresFpuRegister());
4102 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004103 // The output overlaps for an object field get when read barriers
4104 // are enabled: we do not want the move to overwrite the object's
4105 // location, as we need it to emit the read barrier.
4106 locations->SetOut(
4107 Location::RequiresRegister(),
4108 object_field_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004109 }
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004110 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
4111 // We need a temporary register for the read barrier marking slow
4112 // path in CodeGeneratorX86_64::GenerateFieldLoadWithBakerReadBarrier.
4113 locations->AddTemp(Location::RequiresRegister());
4114 }
Calin Juravle52c48962014-12-16 17:02:57 +00004115}
4116
4117void InstructionCodeGeneratorX86_64::HandleFieldGet(HInstruction* instruction,
4118 const FieldInfo& field_info) {
4119 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
4120
4121 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004122 Location base_loc = locations->InAt(0);
4123 CpuRegister base = base_loc.AsRegister<CpuRegister>();
Calin Juravle52c48962014-12-16 17:02:57 +00004124 Location out = locations->Out();
4125 bool is_volatile = field_info.IsVolatile();
4126 Primitive::Type field_type = field_info.GetFieldType();
4127 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
4128
4129 switch (field_type) {
4130 case Primitive::kPrimBoolean: {
4131 __ movzxb(out.AsRegister<CpuRegister>(), Address(base, offset));
4132 break;
4133 }
4134
4135 case Primitive::kPrimByte: {
4136 __ movsxb(out.AsRegister<CpuRegister>(), Address(base, offset));
4137 break;
4138 }
4139
4140 case Primitive::kPrimShort: {
4141 __ movsxw(out.AsRegister<CpuRegister>(), Address(base, offset));
4142 break;
4143 }
4144
4145 case Primitive::kPrimChar: {
4146 __ movzxw(out.AsRegister<CpuRegister>(), Address(base, offset));
4147 break;
4148 }
4149
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004150 case Primitive::kPrimInt: {
Calin Juravle52c48962014-12-16 17:02:57 +00004151 __ movl(out.AsRegister<CpuRegister>(), Address(base, offset));
4152 break;
4153 }
4154
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004155 case Primitive::kPrimNot: {
4156 // /* HeapReference<Object> */ out = *(base + offset)
4157 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
4158 Location temp_loc = locations->GetTemp(0);
4159 // Note that a potential implicit null check is handled in this
4160 // CodeGeneratorX86::GenerateFieldLoadWithBakerReadBarrier call.
4161 codegen_->GenerateFieldLoadWithBakerReadBarrier(
4162 instruction, out, base, offset, temp_loc, /* needs_null_check */ true);
4163 if (is_volatile) {
4164 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4165 }
4166 } else {
4167 __ movl(out.AsRegister<CpuRegister>(), Address(base, offset));
4168 codegen_->MaybeRecordImplicitNullCheck(instruction);
4169 if (is_volatile) {
4170 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4171 }
4172 // If read barriers are enabled, emit read barriers other than
4173 // Baker's using a slow path (and also unpoison the loaded
4174 // reference, if heap poisoning is enabled).
4175 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset);
4176 }
4177 break;
4178 }
4179
Calin Juravle52c48962014-12-16 17:02:57 +00004180 case Primitive::kPrimLong: {
4181 __ movq(out.AsRegister<CpuRegister>(), Address(base, offset));
4182 break;
4183 }
4184
4185 case Primitive::kPrimFloat: {
4186 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
4187 break;
4188 }
4189
4190 case Primitive::kPrimDouble: {
4191 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
4192 break;
4193 }
4194
4195 case Primitive::kPrimVoid:
4196 LOG(FATAL) << "Unreachable type " << field_type;
4197 UNREACHABLE();
4198 }
4199
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004200 if (field_type == Primitive::kPrimNot) {
4201 // Potential implicit null checks, in the case of reference
4202 // fields, are handled in the previous switch statement.
4203 } else {
4204 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004205 }
Roland Levillain4d027112015-07-01 15:41:14 +01004206
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004207 if (is_volatile) {
4208 if (field_type == Primitive::kPrimNot) {
4209 // Memory barriers, in the case of references, are also handled
4210 // in the previous switch statement.
4211 } else {
4212 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4213 }
Roland Levillain4d027112015-07-01 15:41:14 +01004214 }
Calin Juravle52c48962014-12-16 17:02:57 +00004215}
4216
4217void LocationsBuilderX86_64::HandleFieldSet(HInstruction* instruction,
4218 const FieldInfo& field_info) {
4219 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4220
4221 LocationSummary* locations =
4222 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Roland Levillain4d027112015-07-01 15:41:14 +01004223 Primitive::Type field_type = field_info.GetFieldType();
Mark Mendellea5af682015-10-22 17:35:49 -04004224 bool is_volatile = field_info.IsVolatile();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004225 bool needs_write_barrier =
Roland Levillain4d027112015-07-01 15:41:14 +01004226 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00004227
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004228 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004229 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) {
Mark Mendellea5af682015-10-22 17:35:49 -04004230 if (is_volatile) {
4231 // In order to satisfy the semantics of volatile, this must be a single instruction store.
4232 locations->SetInAt(1, Location::FpuRegisterOrInt32Constant(instruction->InputAt(1)));
4233 } else {
4234 locations->SetInAt(1, Location::FpuRegisterOrConstant(instruction->InputAt(1)));
4235 }
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004236 } else {
Mark Mendellea5af682015-10-22 17:35:49 -04004237 if (is_volatile) {
4238 // In order to satisfy the semantics of volatile, this must be a single instruction store.
4239 locations->SetInAt(1, Location::RegisterOrInt32Constant(instruction->InputAt(1)));
4240 } else {
4241 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
4242 }
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004243 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004244 if (needs_write_barrier) {
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01004245 // Temporary registers for the write barrier.
Roland Levillain4d027112015-07-01 15:41:14 +01004246 locations->AddTemp(Location::RequiresRegister()); // Possibly used for reference poisoning too.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004247 locations->AddTemp(Location::RequiresRegister());
Roland Levillain4d027112015-07-01 15:41:14 +01004248 } else if (kPoisonHeapReferences && field_type == Primitive::kPrimNot) {
4249 // Temporary register for the reference poisoning.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004250 locations->AddTemp(Location::RequiresRegister());
4251 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004252}
4253
Calin Juravle52c48962014-12-16 17:02:57 +00004254void InstructionCodeGeneratorX86_64::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004255 const FieldInfo& field_info,
4256 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00004257 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4258
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004259 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00004260 CpuRegister base = locations->InAt(0).AsRegister<CpuRegister>();
4261 Location value = locations->InAt(1);
4262 bool is_volatile = field_info.IsVolatile();
4263 Primitive::Type field_type = field_info.GetFieldType();
4264 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
4265
4266 if (is_volatile) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004267 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
Calin Juravle52c48962014-12-16 17:02:57 +00004268 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004269
Mark Mendellea5af682015-10-22 17:35:49 -04004270 bool maybe_record_implicit_null_check_done = false;
4271
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004272 switch (field_type) {
4273 case Primitive::kPrimBoolean:
4274 case Primitive::kPrimByte: {
Mark Mendell40741f32015-04-20 22:10:34 -04004275 if (value.IsConstant()) {
Mark Mendellea5af682015-10-22 17:35:49 -04004276 int8_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
Mark Mendell40741f32015-04-20 22:10:34 -04004277 __ movb(Address(base, offset), Immediate(v));
4278 } else {
4279 __ movb(Address(base, offset), value.AsRegister<CpuRegister>());
4280 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004281 break;
4282 }
4283
4284 case Primitive::kPrimShort:
4285 case Primitive::kPrimChar: {
Mark Mendell40741f32015-04-20 22:10:34 -04004286 if (value.IsConstant()) {
Mark Mendellea5af682015-10-22 17:35:49 -04004287 int16_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
Mark Mendell40741f32015-04-20 22:10:34 -04004288 __ movw(Address(base, offset), Immediate(v));
4289 } else {
4290 __ movw(Address(base, offset), value.AsRegister<CpuRegister>());
4291 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004292 break;
4293 }
4294
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004295 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004296 case Primitive::kPrimNot: {
Mark Mendell40741f32015-04-20 22:10:34 -04004297 if (value.IsConstant()) {
4298 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
Roland Levillain4d027112015-07-01 15:41:14 +01004299 // `field_type == Primitive::kPrimNot` implies `v == 0`.
4300 DCHECK((field_type != Primitive::kPrimNot) || (v == 0));
4301 // Note: if heap poisoning is enabled, no need to poison
4302 // (negate) `v` if it is a reference, as it would be null.
Roland Levillain06b66d02015-07-01 12:47:25 +01004303 __ movl(Address(base, offset), Immediate(v));
Mark Mendell40741f32015-04-20 22:10:34 -04004304 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01004305 if (kPoisonHeapReferences && field_type == Primitive::kPrimNot) {
4306 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
4307 __ movl(temp, value.AsRegister<CpuRegister>());
4308 __ PoisonHeapReference(temp);
4309 __ movl(Address(base, offset), temp);
4310 } else {
4311 __ movl(Address(base, offset), value.AsRegister<CpuRegister>());
4312 }
Mark Mendell40741f32015-04-20 22:10:34 -04004313 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004314 break;
4315 }
4316
4317 case Primitive::kPrimLong: {
Mark Mendell40741f32015-04-20 22:10:34 -04004318 if (value.IsConstant()) {
4319 int64_t v = value.GetConstant()->AsLongConstant()->GetValue();
Mark Mendellea5af682015-10-22 17:35:49 -04004320 codegen_->MoveInt64ToAddress(Address(base, offset),
4321 Address(base, offset + sizeof(int32_t)),
4322 v,
4323 instruction);
4324 maybe_record_implicit_null_check_done = true;
Mark Mendell40741f32015-04-20 22:10:34 -04004325 } else {
4326 __ movq(Address(base, offset), value.AsRegister<CpuRegister>());
4327 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004328 break;
4329 }
4330
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004331 case Primitive::kPrimFloat: {
Mark Mendellea5af682015-10-22 17:35:49 -04004332 if (value.IsConstant()) {
4333 int32_t v =
4334 bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue());
4335 __ movl(Address(base, offset), Immediate(v));
4336 } else {
4337 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
4338 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004339 break;
4340 }
4341
4342 case Primitive::kPrimDouble: {
Mark Mendellea5af682015-10-22 17:35:49 -04004343 if (value.IsConstant()) {
4344 int64_t v =
4345 bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue());
4346 codegen_->MoveInt64ToAddress(Address(base, offset),
4347 Address(base, offset + sizeof(int32_t)),
4348 v,
4349 instruction);
4350 maybe_record_implicit_null_check_done = true;
4351 } else {
4352 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
4353 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004354 break;
4355 }
4356
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004357 case Primitive::kPrimVoid:
4358 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004359 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004360 }
Calin Juravle52c48962014-12-16 17:02:57 +00004361
Mark Mendellea5af682015-10-22 17:35:49 -04004362 if (!maybe_record_implicit_null_check_done) {
4363 codegen_->MaybeRecordImplicitNullCheck(instruction);
4364 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004365
4366 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
4367 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
4368 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004369 codegen_->MarkGCCard(temp, card, base, value.AsRegister<CpuRegister>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00004370 }
4371
Calin Juravle52c48962014-12-16 17:02:57 +00004372 if (is_volatile) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004373 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
Calin Juravle52c48962014-12-16 17:02:57 +00004374 }
4375}
4376
4377void LocationsBuilderX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
4378 HandleFieldSet(instruction, instruction->GetFieldInfo());
4379}
4380
4381void InstructionCodeGeneratorX86_64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004382 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004383}
4384
4385void LocationsBuilderX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00004386 HandleFieldGet(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004387}
4388
4389void InstructionCodeGeneratorX86_64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00004390 HandleFieldGet(instruction, instruction->GetFieldInfo());
4391}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004392
Calin Juravle52c48962014-12-16 17:02:57 +00004393void LocationsBuilderX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4394 HandleFieldGet(instruction);
4395}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004396
Calin Juravle52c48962014-12-16 17:02:57 +00004397void InstructionCodeGeneratorX86_64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4398 HandleFieldGet(instruction, instruction->GetFieldInfo());
4399}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004400
Calin Juravle52c48962014-12-16 17:02:57 +00004401void LocationsBuilderX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
4402 HandleFieldSet(instruction, instruction->GetFieldInfo());
4403}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004404
Calin Juravle52c48962014-12-16 17:02:57 +00004405void InstructionCodeGeneratorX86_64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004406 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004407}
4408
Calin Juravlee460d1d2015-09-29 04:52:17 +01004409void LocationsBuilderX86_64::VisitUnresolvedInstanceFieldGet(
4410 HUnresolvedInstanceFieldGet* instruction) {
4411 FieldAccessCallingConventionX86_64 calling_convention;
4412 codegen_->CreateUnresolvedFieldLocationSummary(
4413 instruction, instruction->GetFieldType(), calling_convention);
4414}
4415
4416void InstructionCodeGeneratorX86_64::VisitUnresolvedInstanceFieldGet(
4417 HUnresolvedInstanceFieldGet* instruction) {
4418 FieldAccessCallingConventionX86_64 calling_convention;
4419 codegen_->GenerateUnresolvedFieldAccess(instruction,
4420 instruction->GetFieldType(),
4421 instruction->GetFieldIndex(),
4422 instruction->GetDexPc(),
4423 calling_convention);
4424}
4425
4426void LocationsBuilderX86_64::VisitUnresolvedInstanceFieldSet(
4427 HUnresolvedInstanceFieldSet* instruction) {
4428 FieldAccessCallingConventionX86_64 calling_convention;
4429 codegen_->CreateUnresolvedFieldLocationSummary(
4430 instruction, instruction->GetFieldType(), calling_convention);
4431}
4432
4433void InstructionCodeGeneratorX86_64::VisitUnresolvedInstanceFieldSet(
4434 HUnresolvedInstanceFieldSet* instruction) {
4435 FieldAccessCallingConventionX86_64 calling_convention;
4436 codegen_->GenerateUnresolvedFieldAccess(instruction,
4437 instruction->GetFieldType(),
4438 instruction->GetFieldIndex(),
4439 instruction->GetDexPc(),
4440 calling_convention);
4441}
4442
4443void LocationsBuilderX86_64::VisitUnresolvedStaticFieldGet(
4444 HUnresolvedStaticFieldGet* instruction) {
4445 FieldAccessCallingConventionX86_64 calling_convention;
4446 codegen_->CreateUnresolvedFieldLocationSummary(
4447 instruction, instruction->GetFieldType(), calling_convention);
4448}
4449
4450void InstructionCodeGeneratorX86_64::VisitUnresolvedStaticFieldGet(
4451 HUnresolvedStaticFieldGet* instruction) {
4452 FieldAccessCallingConventionX86_64 calling_convention;
4453 codegen_->GenerateUnresolvedFieldAccess(instruction,
4454 instruction->GetFieldType(),
4455 instruction->GetFieldIndex(),
4456 instruction->GetDexPc(),
4457 calling_convention);
4458}
4459
4460void LocationsBuilderX86_64::VisitUnresolvedStaticFieldSet(
4461 HUnresolvedStaticFieldSet* instruction) {
4462 FieldAccessCallingConventionX86_64 calling_convention;
4463 codegen_->CreateUnresolvedFieldLocationSummary(
4464 instruction, instruction->GetFieldType(), calling_convention);
4465}
4466
4467void InstructionCodeGeneratorX86_64::VisitUnresolvedStaticFieldSet(
4468 HUnresolvedStaticFieldSet* instruction) {
4469 FieldAccessCallingConventionX86_64 calling_convention;
4470 codegen_->GenerateUnresolvedFieldAccess(instruction,
4471 instruction->GetFieldType(),
4472 instruction->GetFieldIndex(),
4473 instruction->GetDexPc(),
4474 calling_convention);
4475}
4476
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004477void LocationsBuilderX86_64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00004478 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
4479 ? LocationSummary::kCallOnSlowPath
4480 : LocationSummary::kNoCall;
4481 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
4482 Location loc = codegen_->IsImplicitNullCheckAllowed(instruction)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004483 ? Location::RequiresRegister()
4484 : Location::Any();
4485 locations->SetInAt(0, loc);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004486 if (instruction->HasUses()) {
4487 locations->SetOut(Location::SameAsFirstInput());
4488 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004489}
4490
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004491void InstructionCodeGeneratorX86_64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00004492 if (codegen_->CanMoveNullCheckToUser(instruction)) {
4493 return;
4494 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004495 LocationSummary* locations = instruction->GetLocations();
4496 Location obj = locations->InAt(0);
4497
4498 __ testl(CpuRegister(RAX), Address(obj.AsRegister<CpuRegister>(), 0));
4499 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4500}
4501
4502void InstructionCodeGeneratorX86_64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07004503 SlowPathCode* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86_64(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004504 codegen_->AddSlowPath(slow_path);
4505
4506 LocationSummary* locations = instruction->GetLocations();
4507 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004508
4509 if (obj.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00004510 __ testl(obj.AsRegister<CpuRegister>(), obj.AsRegister<CpuRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004511 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004512 __ cmpl(Address(CpuRegister(RSP), obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004513 } else {
4514 DCHECK(obj.IsConstant()) << obj;
David Brazdil77a48ae2015-09-15 12:34:04 +00004515 DCHECK(obj.GetConstant()->IsNullConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004516 __ jmp(slow_path->GetEntryLabel());
4517 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004518 }
4519 __ j(kEqual, slow_path->GetEntryLabel());
4520}
4521
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004522void InstructionCodeGeneratorX86_64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00004523 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004524 GenerateImplicitNullCheck(instruction);
4525 } else {
4526 GenerateExplicitNullCheck(instruction);
4527 }
4528}
4529
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004530void LocationsBuilderX86_64::VisitArrayGet(HArrayGet* instruction) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004531 bool object_array_get_with_read_barrier =
4532 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004533 LocationSummary* locations =
Roland Levillain0d5a2812015-11-13 10:07:31 +00004534 new (GetGraph()->GetArena()) LocationSummary(instruction,
4535 object_array_get_with_read_barrier ?
4536 LocationSummary::kCallOnSlowPath :
4537 LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004538 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell40741f32015-04-20 22:10:34 -04004539 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004540 if (Primitive::IsFloatingPointType(instruction->GetType())) {
4541 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4542 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004543 // The output overlaps for an object array get when read barriers
4544 // are enabled: we do not want the move to overwrite the array's
4545 // location, as we need it to emit the read barrier.
4546 locations->SetOut(
4547 Location::RequiresRegister(),
4548 object_array_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004549 }
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004550 // We need a temporary register for the read barrier marking slow
4551 // path in CodeGeneratorX86_64::GenerateArrayLoadWithBakerReadBarrier.
4552 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
4553 locations->AddTemp(Location::RequiresRegister());
4554 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004555}
4556
4557void InstructionCodeGeneratorX86_64::VisitArrayGet(HArrayGet* instruction) {
4558 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004559 Location obj_loc = locations->InAt(0);
4560 CpuRegister obj = obj_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004561 Location index = locations->InAt(1);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004562 Location out_loc = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004563
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004564 Primitive::Type type = instruction->GetType();
Roland Levillain4d027112015-07-01 15:41:14 +01004565 switch (type) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004566 case Primitive::kPrimBoolean: {
4567 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004568 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004569 if (index.IsConstant()) {
4570 __ movzxb(out, Address(obj,
4571 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
4572 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004573 __ movzxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004574 }
4575 break;
4576 }
4577
4578 case Primitive::kPrimByte: {
4579 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004580 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004581 if (index.IsConstant()) {
4582 __ movsxb(out, Address(obj,
4583 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
4584 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004585 __ movsxb(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004586 }
4587 break;
4588 }
4589
4590 case Primitive::kPrimShort: {
4591 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004592 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004593 if (index.IsConstant()) {
4594 __ movsxw(out, Address(obj,
4595 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
4596 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004597 __ movsxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004598 }
4599 break;
4600 }
4601
4602 case Primitive::kPrimChar: {
4603 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004604 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004605 if (index.IsConstant()) {
4606 __ movzxw(out, Address(obj,
4607 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
4608 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004609 __ movzxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004610 }
4611 break;
4612 }
4613
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004614 case Primitive::kPrimInt: {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004615 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004616 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004617 if (index.IsConstant()) {
4618 __ movl(out, Address(obj,
4619 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
4620 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004621 __ movl(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004622 }
4623 break;
4624 }
4625
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004626 case Primitive::kPrimNot: {
4627 static_assert(
4628 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
4629 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
4630 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4631 // /* HeapReference<Object> */ out =
4632 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
4633 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
4634 Location temp = locations->GetTemp(0);
4635 // Note that a potential implicit null check is handled in this
4636 // CodeGeneratorX86::GenerateArrayLoadWithBakerReadBarrier call.
4637 codegen_->GenerateArrayLoadWithBakerReadBarrier(
4638 instruction, out_loc, obj, data_offset, index, temp, /* needs_null_check */ true);
4639 } else {
4640 CpuRegister out = out_loc.AsRegister<CpuRegister>();
4641 if (index.IsConstant()) {
4642 uint32_t offset =
4643 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4644 __ movl(out, Address(obj, offset));
4645 codegen_->MaybeRecordImplicitNullCheck(instruction);
4646 // If read barriers are enabled, emit read barriers other than
4647 // Baker's using a slow path (and also unpoison the loaded
4648 // reference, if heap poisoning is enabled).
4649 codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset);
4650 } else {
4651 __ movl(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
4652 codegen_->MaybeRecordImplicitNullCheck(instruction);
4653 // If read barriers are enabled, emit read barriers other than
4654 // Baker's using a slow path (and also unpoison the loaded
4655 // reference, if heap poisoning is enabled).
4656 codegen_->MaybeGenerateReadBarrierSlow(
4657 instruction, out_loc, out_loc, obj_loc, data_offset, index);
4658 }
4659 }
4660 break;
4661 }
4662
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004663 case Primitive::kPrimLong: {
4664 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004665 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004666 if (index.IsConstant()) {
4667 __ movq(out, Address(obj,
4668 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
4669 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004670 __ movq(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004671 }
4672 break;
4673 }
4674
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004675 case Primitive::kPrimFloat: {
4676 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004677 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004678 if (index.IsConstant()) {
4679 __ movss(out, Address(obj,
4680 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
4681 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004682 __ movss(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004683 }
4684 break;
4685 }
4686
4687 case Primitive::kPrimDouble: {
4688 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004689 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004690 if (index.IsConstant()) {
4691 __ movsd(out, Address(obj,
4692 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
4693 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004694 __ movsd(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_8, data_offset));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004695 }
4696 break;
4697 }
4698
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004699 case Primitive::kPrimVoid:
Roland Levillain4d027112015-07-01 15:41:14 +01004700 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004701 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004702 }
Roland Levillain4d027112015-07-01 15:41:14 +01004703
4704 if (type == Primitive::kPrimNot) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004705 // Potential implicit null checks, in the case of reference
4706 // arrays, are handled in the previous switch statement.
4707 } else {
4708 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01004709 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004710}
4711
4712void LocationsBuilderX86_64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004713 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004714
4715 bool needs_write_barrier =
4716 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004717 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004718 bool object_array_set_with_read_barrier =
4719 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004720
Nicolas Geoffray39468442014-09-02 15:17:15 +01004721 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004722 instruction,
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004723 (may_need_runtime_call_for_type_check || object_array_set_with_read_barrier) ?
Roland Levillain0d5a2812015-11-13 10:07:31 +00004724 LocationSummary::kCallOnSlowPath :
4725 LocationSummary::kNoCall);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004726
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004727 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendellea5af682015-10-22 17:35:49 -04004728 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
4729 if (Primitive::IsFloatingPointType(value_type)) {
4730 locations->SetInAt(2, Location::FpuRegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004731 } else {
4732 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
4733 }
4734
4735 if (needs_write_barrier) {
4736 // Temporary registers for the write barrier.
Roland Levillain0d5a2812015-11-13 10:07:31 +00004737
4738 // This first temporary register is possibly used for heap
4739 // reference poisoning and/or read barrier emission too.
4740 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004741 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004742 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004743}
4744
4745void InstructionCodeGeneratorX86_64::VisitArraySet(HArraySet* instruction) {
4746 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004747 Location array_loc = locations->InAt(0);
4748 CpuRegister array = array_loc.AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004749 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004750 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004751 Primitive::Type value_type = instruction->GetComponentType();
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004752 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004753 bool needs_write_barrier =
4754 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004755 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4756 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
4757 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004758
4759 switch (value_type) {
4760 case Primitive::kPrimBoolean:
4761 case Primitive::kPrimByte: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004762 uint32_t offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
4763 Address address = index.IsConstant()
4764 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + offset)
4765 : Address(array, index.AsRegister<CpuRegister>(), TIMES_1, offset);
4766 if (value.IsRegister()) {
4767 __ movb(address, value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004768 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004769 __ movb(address, Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004770 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004771 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004772 break;
4773 }
4774
4775 case Primitive::kPrimShort:
4776 case Primitive::kPrimChar: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004777 uint32_t offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
4778 Address address = index.IsConstant()
4779 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + offset)
4780 : Address(array, index.AsRegister<CpuRegister>(), TIMES_2, offset);
4781 if (value.IsRegister()) {
4782 __ movw(address, value.AsRegister<CpuRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004783 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004784 DCHECK(value.IsConstant()) << value;
4785 __ movw(address, Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004786 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004787 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004788 break;
4789 }
4790
4791 case Primitive::kPrimNot: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004792 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4793 Address address = index.IsConstant()
4794 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + offset)
4795 : Address(array, index.AsRegister<CpuRegister>(), TIMES_4, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +00004796
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004797 if (!value.IsRegister()) {
4798 // Just setting null.
4799 DCHECK(instruction->InputAt(2)->IsNullConstant());
4800 DCHECK(value.IsConstant()) << value;
4801 __ movl(address, Immediate(0));
Calin Juravle77520bc2015-01-12 18:45:46 +00004802 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004803 DCHECK(!needs_write_barrier);
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004804 DCHECK(!may_need_runtime_call_for_type_check);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004805 break;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004806 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004807
4808 DCHECK(needs_write_barrier);
4809 CpuRegister register_value = value.AsRegister<CpuRegister>();
4810 NearLabel done, not_null, do_put;
4811 SlowPathCode* slow_path = nullptr;
4812 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>();
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004813 if (may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004814 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathX86_64(instruction);
4815 codegen_->AddSlowPath(slow_path);
4816 if (instruction->GetValueCanBeNull()) {
4817 __ testl(register_value, register_value);
4818 __ j(kNotEqual, &not_null);
4819 __ movl(address, Immediate(0));
4820 codegen_->MaybeRecordImplicitNullCheck(instruction);
4821 __ jmp(&done);
4822 __ Bind(&not_null);
4823 }
4824
Roland Levillain0d5a2812015-11-13 10:07:31 +00004825 if (kEmitCompilerReadBarrier) {
4826 // When read barriers are enabled, the type checking
4827 // instrumentation requires two read barriers:
4828 //
4829 // __ movl(temp2, temp);
4830 // // /* HeapReference<Class> */ temp = temp->component_type_
4831 // __ movl(temp, Address(temp, component_offset));
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004832 // codegen_->GenerateReadBarrierSlow(
Roland Levillain0d5a2812015-11-13 10:07:31 +00004833 // instruction, temp_loc, temp_loc, temp2_loc, component_offset);
4834 //
4835 // // /* HeapReference<Class> */ temp2 = register_value->klass_
4836 // __ movl(temp2, Address(register_value, class_offset));
Roland Levillain1e7f8db2015-12-15 10:54:19 +00004837 // codegen_->GenerateReadBarrierSlow(
Roland Levillain0d5a2812015-11-13 10:07:31 +00004838 // instruction, temp2_loc, temp2_loc, value, class_offset, temp_loc);
4839 //
4840 // __ cmpl(temp, temp2);
4841 //
4842 // However, the second read barrier may trash `temp`, as it
4843 // is a temporary register, and as such would not be saved
4844 // along with live registers before calling the runtime (nor
4845 // restored afterwards). So in this case, we bail out and
4846 // delegate the work to the array set slow path.
4847 //
4848 // TODO: Extend the register allocator to support a new
4849 // "(locally) live temp" location so as to avoid always
4850 // going into the slow path when read barriers are enabled.
4851 __ jmp(slow_path->GetEntryLabel());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004852 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004853 // /* HeapReference<Class> */ temp = array->klass_
4854 __ movl(temp, Address(array, class_offset));
4855 codegen_->MaybeRecordImplicitNullCheck(instruction);
4856 __ MaybeUnpoisonHeapReference(temp);
4857
4858 // /* HeapReference<Class> */ temp = temp->component_type_
4859 __ movl(temp, Address(temp, component_offset));
4860 // If heap poisoning is enabled, no need to unpoison `temp`
4861 // nor the object reference in `register_value->klass`, as
4862 // we are comparing two poisoned references.
4863 __ cmpl(temp, Address(register_value, class_offset));
4864
4865 if (instruction->StaticTypeOfArrayIsObjectArray()) {
4866 __ j(kEqual, &do_put);
4867 // If heap poisoning is enabled, the `temp` reference has
4868 // not been unpoisoned yet; unpoison it now.
4869 __ MaybeUnpoisonHeapReference(temp);
4870
4871 // /* HeapReference<Class> */ temp = temp->super_class_
4872 __ movl(temp, Address(temp, super_offset));
4873 // If heap poisoning is enabled, no need to unpoison
4874 // `temp`, as we are comparing against null below.
4875 __ testl(temp, temp);
4876 __ j(kNotEqual, slow_path->GetEntryLabel());
4877 __ Bind(&do_put);
4878 } else {
4879 __ j(kNotEqual, slow_path->GetEntryLabel());
4880 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004881 }
4882 }
4883
4884 if (kPoisonHeapReferences) {
4885 __ movl(temp, register_value);
4886 __ PoisonHeapReference(temp);
4887 __ movl(address, temp);
4888 } else {
4889 __ movl(address, register_value);
4890 }
Roland Levillaine3f43ac2016-01-19 15:07:47 +00004891 if (!may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004892 codegen_->MaybeRecordImplicitNullCheck(instruction);
4893 }
4894
4895 CpuRegister card = locations->GetTemp(1).AsRegister<CpuRegister>();
4896 codegen_->MarkGCCard(
4897 temp, card, array, value.AsRegister<CpuRegister>(), instruction->GetValueCanBeNull());
4898 __ Bind(&done);
4899
4900 if (slow_path != nullptr) {
4901 __ Bind(slow_path->GetExitLabel());
4902 }
4903
4904 break;
4905 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00004906
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004907 case Primitive::kPrimInt: {
4908 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4909 Address address = index.IsConstant()
4910 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + offset)
4911 : Address(array, index.AsRegister<CpuRegister>(), TIMES_4, offset);
4912 if (value.IsRegister()) {
4913 __ movl(address, value.AsRegister<CpuRegister>());
4914 } else {
4915 DCHECK(value.IsConstant()) << value;
4916 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4917 __ movl(address, Immediate(v));
4918 }
4919 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004920 break;
4921 }
4922
4923 case Primitive::kPrimLong: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004924 uint32_t offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
4925 Address address = index.IsConstant()
4926 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + offset)
4927 : Address(array, index.AsRegister<CpuRegister>(), TIMES_8, offset);
4928 if (value.IsRegister()) {
4929 __ movq(address, value.AsRegister<CpuRegister>());
Mark Mendellea5af682015-10-22 17:35:49 -04004930 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004931 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004932 int64_t v = value.GetConstant()->AsLongConstant()->GetValue();
Mark Mendellea5af682015-10-22 17:35:49 -04004933 Address address_high = index.IsConstant()
4934 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) +
4935 offset + sizeof(int32_t))
4936 : Address(array, index.AsRegister<CpuRegister>(), TIMES_8, offset + sizeof(int32_t));
4937 codegen_->MoveInt64ToAddress(address, address_high, v, instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004938 }
4939 break;
4940 }
4941
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004942 case Primitive::kPrimFloat: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004943 uint32_t offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
4944 Address address = index.IsConstant()
4945 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + offset)
4946 : Address(array, index.AsRegister<CpuRegister>(), TIMES_4, offset);
Mark Mendellea5af682015-10-22 17:35:49 -04004947 if (value.IsFpuRegister()) {
4948 __ movss(address, value.AsFpuRegister<XmmRegister>());
4949 } else {
4950 DCHECK(value.IsConstant());
4951 int32_t v =
4952 bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue());
4953 __ movl(address, Immediate(v));
4954 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004955 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004956 break;
4957 }
4958
4959 case Primitive::kPrimDouble: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004960 uint32_t offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
4961 Address address = index.IsConstant()
4962 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + offset)
4963 : Address(array, index.AsRegister<CpuRegister>(), TIMES_8, offset);
Mark Mendellea5af682015-10-22 17:35:49 -04004964 if (value.IsFpuRegister()) {
4965 __ movsd(address, value.AsFpuRegister<XmmRegister>());
4966 codegen_->MaybeRecordImplicitNullCheck(instruction);
4967 } else {
4968 int64_t v =
4969 bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue());
4970 Address address_high = index.IsConstant()
4971 ? Address(array, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) +
4972 offset + sizeof(int32_t))
4973 : Address(array, index.AsRegister<CpuRegister>(), TIMES_8, offset + sizeof(int32_t));
4974 codegen_->MoveInt64ToAddress(address, address_high, v, instruction);
4975 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01004976 break;
4977 }
4978
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004979 case Primitive::kPrimVoid:
4980 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07004981 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004982 }
4983}
4984
4985void LocationsBuilderX86_64::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004986 LocationSummary* locations =
4987 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004988 locations->SetInAt(0, Location::RequiresRegister());
4989 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004990}
4991
4992void InstructionCodeGeneratorX86_64::VisitArrayLength(HArrayLength* instruction) {
4993 LocationSummary* locations = instruction->GetLocations();
4994 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004995 CpuRegister obj = locations->InAt(0).AsRegister<CpuRegister>();
4996 CpuRegister out = locations->Out().AsRegister<CpuRegister>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004997 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004998 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004999}
5000
5001void LocationsBuilderX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00005002 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
5003 ? LocationSummary::kCallOnSlowPath
5004 : LocationSummary::kNoCall;
5005 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Mark Mendellf60c90b2015-03-04 15:12:59 -05005006 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Mark Mendell99dbd682015-04-22 16:18:52 -04005007 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005008 if (instruction->HasUses()) {
5009 locations->SetOut(Location::SameAsFirstInput());
5010 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005011}
5012
5013void InstructionCodeGeneratorX86_64::VisitBoundsCheck(HBoundsCheck* instruction) {
5014 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05005015 Location index_loc = locations->InAt(0);
5016 Location length_loc = locations->InAt(1);
Andreas Gampe85b62f22015-09-09 13:15:38 -07005017 SlowPathCode* slow_path =
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005018 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005019
Mark Mendell99dbd682015-04-22 16:18:52 -04005020 if (length_loc.IsConstant()) {
5021 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant());
5022 if (index_loc.IsConstant()) {
5023 // BCE will remove the bounds check if we are guarenteed to pass.
5024 int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5025 if (index < 0 || index >= length) {
5026 codegen_->AddSlowPath(slow_path);
5027 __ jmp(slow_path->GetEntryLabel());
5028 } else {
5029 // Some optimization after BCE may have generated this, and we should not
5030 // generate a bounds check if it is a valid range.
5031 }
5032 return;
5033 }
5034
5035 // We have to reverse the jump condition because the length is the constant.
5036 CpuRegister index_reg = index_loc.AsRegister<CpuRegister>();
5037 __ cmpl(index_reg, Immediate(length));
5038 codegen_->AddSlowPath(slow_path);
5039 __ j(kAboveEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005040 } else {
Mark Mendell99dbd682015-04-22 16:18:52 -04005041 CpuRegister length = length_loc.AsRegister<CpuRegister>();
5042 if (index_loc.IsConstant()) {
5043 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5044 __ cmpl(length, Immediate(value));
5045 } else {
5046 __ cmpl(length, index_loc.AsRegister<CpuRegister>());
5047 }
5048 codegen_->AddSlowPath(slow_path);
5049 __ j(kBelowEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005050 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005051}
5052
5053void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp,
5054 CpuRegister card,
5055 CpuRegister object,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005056 CpuRegister value,
5057 bool value_can_be_null) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04005058 NearLabel is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005059 if (value_can_be_null) {
5060 __ testl(value, value);
5061 __ j(kEqual, &is_null);
5062 }
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005063 __ gs()->movq(card, Address::Absolute(Thread::CardTableOffset<kX86_64WordSize>().Int32Value(),
5064 /* no_rip */ true));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005065 __ movq(temp, object);
5066 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift));
Roland Levillain4d027112015-07-01 15:41:14 +01005067 __ movb(Address(temp, card, TIMES_1, 0), card);
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005068 if (value_can_be_null) {
5069 __ Bind(&is_null);
5070 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005071}
5072
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005073void LocationsBuilderX86_64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01005074 LOG(FATAL) << "Unimplemented";
5075}
5076
5077void InstructionCodeGeneratorX86_64::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005078 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
5079}
5080
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005081void LocationsBuilderX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
5082 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
5083}
5084
5085void InstructionCodeGeneratorX86_64::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005086 HBasicBlock* block = instruction->GetBlock();
5087 if (block->GetLoopInformation() != nullptr) {
5088 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
5089 // The back edge will generate the suspend check.
5090 return;
5091 }
5092 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
5093 // The goto will generate the suspend check.
5094 return;
5095 }
5096 GenerateSuspendCheck(instruction, nullptr);
5097}
5098
5099void InstructionCodeGeneratorX86_64::GenerateSuspendCheck(HSuspendCheck* instruction,
5100 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005101 SuspendCheckSlowPathX86_64* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005102 down_cast<SuspendCheckSlowPathX86_64*>(instruction->GetSlowPath());
5103 if (slow_path == nullptr) {
5104 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathX86_64(instruction, successor);
5105 instruction->SetSlowPath(slow_path);
5106 codegen_->AddSlowPath(slow_path);
5107 if (successor != nullptr) {
5108 DCHECK(successor->IsLoopHeader());
5109 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
5110 }
5111 } else {
5112 DCHECK_EQ(slow_path->GetSuccessor(), successor);
5113 }
5114
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005115 __ gs()->cmpw(Address::Absolute(Thread::ThreadFlagsOffset<kX86_64WordSize>().Int32Value(),
5116 /* no_rip */ true),
5117 Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005118 if (successor == nullptr) {
5119 __ j(kNotEqual, slow_path->GetEntryLabel());
5120 __ Bind(slow_path->GetReturnLabel());
5121 } else {
5122 __ j(kEqual, codegen_->GetLabelOf(successor));
5123 __ jmp(slow_path->GetEntryLabel());
5124 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005125}
5126
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005127X86_64Assembler* ParallelMoveResolverX86_64::GetAssembler() const {
5128 return codegen_->GetAssembler();
5129}
5130
5131void ParallelMoveResolverX86_64::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005132 MoveOperands* move = moves_[index];
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005133 Location source = move->GetSource();
5134 Location destination = move->GetDestination();
5135
5136 if (source.IsRegister()) {
5137 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005138 __ movq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005139 } else if (destination.IsStackSlot()) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005140 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00005141 source.AsRegister<CpuRegister>());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005142 } else {
5143 DCHECK(destination.IsDoubleStackSlot());
5144 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00005145 source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005146 }
5147 } else if (source.IsStackSlot()) {
5148 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005149 __ movl(destination.AsRegister<CpuRegister>(),
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005150 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005151 } else if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005152 __ movss(destination.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005153 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005154 } else {
5155 DCHECK(destination.IsStackSlot());
5156 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
5157 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
5158 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005159 } else if (source.IsDoubleStackSlot()) {
5160 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005161 __ movq(destination.AsRegister<CpuRegister>(),
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005162 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005163 } else if (destination.IsFpuRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00005164 __ movsd(destination.AsFpuRegister<XmmRegister>(),
5165 Address(CpuRegister(RSP), source.GetStackIndex()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005166 } else {
Nicolas Geoffrayc8147a72014-10-21 16:06:20 +01005167 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005168 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex()));
5169 __ movq(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP));
5170 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005171 } else if (source.IsConstant()) {
5172 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00005173 if (constant->IsIntConstant() || constant->IsNullConstant()) {
5174 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005175 if (destination.IsRegister()) {
Nicolas Geoffray748f1402015-01-27 08:17:54 +00005176 if (value == 0) {
5177 __ xorl(destination.AsRegister<CpuRegister>(), destination.AsRegister<CpuRegister>());
5178 } else {
5179 __ movl(destination.AsRegister<CpuRegister>(), Immediate(value));
5180 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005181 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005182 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray748f1402015-01-27 08:17:54 +00005183 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005184 }
5185 } else if (constant->IsLongConstant()) {
5186 int64_t value = constant->AsLongConstant()->GetValue();
5187 if (destination.IsRegister()) {
Mark Mendell92e83bf2015-05-07 11:25:03 -04005188 codegen_->Load64BitValue(destination.AsRegister<CpuRegister>(), value);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005189 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005190 DCHECK(destination.IsDoubleStackSlot()) << destination;
Mark Mendellcfa410b2015-05-25 16:02:44 -04005191 codegen_->Store64BitValueToStack(destination, value);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005192 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005193 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005194 float fp_value = constant->AsFloatConstant()->GetValue();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005195 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005196 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05005197 codegen_->Load32BitValue(dest, fp_value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005198 } else {
5199 DCHECK(destination.IsStackSlot()) << destination;
Mark Mendell7c0b44f2016-02-01 10:08:35 -05005200 Immediate imm(bit_cast<int32_t, float>(fp_value));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005201 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), imm);
5202 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005203 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005204 DCHECK(constant->IsDoubleConstant()) << constant->DebugName();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005205 double fp_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00005206 int64_t value = bit_cast<int64_t, double>(fp_value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005207 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005208 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
Mark Mendell7c0b44f2016-02-01 10:08:35 -05005209 codegen_->Load64BitValue(dest, fp_value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005210 } else {
5211 DCHECK(destination.IsDoubleStackSlot()) << destination;
Mark Mendellcfa410b2015-05-25 16:02:44 -04005212 codegen_->Store64BitValueToStack(destination, value);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005213 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005214 }
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005215 } else if (source.IsFpuRegister()) {
5216 if (destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005217 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005218 } else if (destination.IsStackSlot()) {
5219 __ movss(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00005220 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005221 } else {
Nicolas Geoffray31596742014-11-24 15:28:45 +00005222 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005223 __ movsd(Address(CpuRegister(RSP), destination.GetStackIndex()),
Roland Levillain271ab9c2014-11-27 15:23:57 +00005224 source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005225 }
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005226 }
5227}
5228
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005229void ParallelMoveResolverX86_64::Exchange32(CpuRegister reg, int mem) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005230 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005231 __ movl(Address(CpuRegister(RSP), mem), reg);
5232 __ movl(reg, CpuRegister(TMP));
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005233}
5234
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005235void ParallelMoveResolverX86_64::Exchange32(int mem1, int mem2) {
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005236 ScratchRegisterScope ensure_scratch(
5237 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
5238
5239 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
5240 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
5241 __ movl(CpuRegister(ensure_scratch.GetRegister()),
5242 Address(CpuRegister(RSP), mem2 + stack_offset));
5243 __ movl(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
5244 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset),
5245 CpuRegister(ensure_scratch.GetRegister()));
5246}
5247
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005248void ParallelMoveResolverX86_64::Exchange64(CpuRegister reg, int mem) {
5249 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
5250 __ movq(Address(CpuRegister(RSP), mem), reg);
5251 __ movq(reg, CpuRegister(TMP));
5252}
5253
5254void ParallelMoveResolverX86_64::Exchange64(int mem1, int mem2) {
5255 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005256 this, TMP, RAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005257
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005258 int stack_offset = ensure_scratch.IsSpilled() ? kX86_64WordSize : 0;
5259 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset));
5260 __ movq(CpuRegister(ensure_scratch.GetRegister()),
5261 Address(CpuRegister(RSP), mem2 + stack_offset));
5262 __ movq(Address(CpuRegister(RSP), mem2 + stack_offset), CpuRegister(TMP));
5263 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset),
5264 CpuRegister(ensure_scratch.GetRegister()));
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005265}
5266
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005267void ParallelMoveResolverX86_64::Exchange32(XmmRegister reg, int mem) {
5268 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
5269 __ movss(Address(CpuRegister(RSP), mem), reg);
5270 __ movd(reg, CpuRegister(TMP));
5271}
5272
5273void ParallelMoveResolverX86_64::Exchange64(XmmRegister reg, int mem) {
5274 __ movq(CpuRegister(TMP), Address(CpuRegister(RSP), mem));
5275 __ movsd(Address(CpuRegister(RSP), mem), reg);
5276 __ movd(reg, CpuRegister(TMP));
5277}
5278
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005279void ParallelMoveResolverX86_64::EmitSwap(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005280 MoveOperands* move = moves_[index];
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005281 Location source = move->GetSource();
5282 Location destination = move->GetDestination();
5283
5284 if (source.IsRegister() && destination.IsRegister()) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005285 __ xchgq(destination.AsRegister<CpuRegister>(), source.AsRegister<CpuRegister>());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005286 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005287 Exchange32(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005288 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005289 Exchange32(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005290 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005291 Exchange32(destination.GetStackIndex(), source.GetStackIndex());
5292 } else if (source.IsRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005293 Exchange64(source.AsRegister<CpuRegister>(), destination.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005294 } else if (source.IsDoubleStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005295 Exchange64(destination.AsRegister<CpuRegister>(), source.GetStackIndex());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01005296 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
5297 Exchange64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005298 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005299 __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>());
5300 __ movaps(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
5301 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005302 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005303 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005304 } else if (source.IsStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005305 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005306 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005307 Exchange64(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005308 } else if (source.IsDoubleStackSlot() && destination.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005309 Exchange64(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005310 } else {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01005311 LOG(FATAL) << "Unimplemented swap between " << source << " and " << destination;
Nicolas Geoffrayecb2f9b2014-06-13 08:59:59 +00005312 }
5313}
5314
5315
5316void ParallelMoveResolverX86_64::SpillScratch(int reg) {
5317 __ pushq(CpuRegister(reg));
5318}
5319
5320
5321void ParallelMoveResolverX86_64::RestoreScratch(int reg) {
5322 __ popq(CpuRegister(reg));
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01005323}
5324
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005325void InstructionCodeGeneratorX86_64::GenerateClassInitializationCheck(
Andreas Gampe85b62f22015-09-09 13:15:38 -07005326 SlowPathCode* slow_path, CpuRegister class_reg) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005327 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
5328 Immediate(mirror::Class::kStatusInitialized));
5329 __ j(kLess, slow_path->GetEntryLabel());
5330 __ Bind(slow_path->GetExitLabel());
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005331 // No need for memory fence, thanks to the x86-64 memory model.
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005332}
5333
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005334void LocationsBuilderX86_64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01005335 InvokeRuntimeCallingConvention calling_convention;
5336 CodeGenerator::CreateLoadClassLocationSummary(
5337 cls,
5338 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Roland Levillain0d5a2812015-11-13 10:07:31 +00005339 Location::RegisterLocation(RAX),
5340 /* code_generator_supports_read_barrier */ true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005341}
5342
5343void InstructionCodeGeneratorX86_64::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01005344 LocationSummary* locations = cls->GetLocations();
Calin Juravle98893e12015-10-02 21:05:03 +01005345 if (cls->NeedsAccessCheck()) {
5346 codegen_->MoveConstant(locations->GetTemp(0), cls->GetTypeIndex());
5347 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
5348 cls,
5349 cls->GetDexPc(),
5350 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00005351 CheckEntrypointTypes<kQuickInitializeTypeAndVerifyAccess, void*, uint32_t>();
Calin Juravle580b6092015-10-06 17:35:58 +01005352 return;
5353 }
5354
Roland Levillain0d5a2812015-11-13 10:07:31 +00005355 Location out_loc = locations->Out();
5356 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Calin Juravle580b6092015-10-06 17:35:58 +01005357 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005358
Calin Juravle580b6092015-10-06 17:35:58 +01005359 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005360 DCHECK(!cls->CanCallRuntime());
5361 DCHECK(!cls->MustGenerateClinitCheck());
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005362 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
5363 GenerateGcRootFieldLoad(
5364 cls, out_loc, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005365 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005366 // /* GcRoot<mirror::Class>[] */ out =
5367 // current_method.ptr_sized_fields_->dex_cache_resolved_types_
5368 __ movq(out, Address(current_method,
5369 ArtMethod::DexCacheResolvedTypesOffset(kX86_64PointerSize).Int32Value()));
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005370 // /* GcRoot<mirror::Class> */ out = out[type_index]
5371 GenerateGcRootFieldLoad(cls, out_loc, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Roland Levillain4d027112015-07-01 15:41:14 +01005372
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00005373 if (!cls->IsInDexCache() || cls->MustGenerateClinitCheck()) {
5374 DCHECK(cls->CanCallRuntime());
5375 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
5376 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
5377 codegen_->AddSlowPath(slow_path);
5378 if (!cls->IsInDexCache()) {
5379 __ testl(out, out);
5380 __ j(kEqual, slow_path->GetEntryLabel());
5381 }
5382 if (cls->MustGenerateClinitCheck()) {
5383 GenerateClassInitializationCheck(slow_path, out);
5384 } else {
5385 __ Bind(slow_path->GetExitLabel());
5386 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005387 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005388 }
5389}
5390
5391void LocationsBuilderX86_64::VisitClinitCheck(HClinitCheck* check) {
5392 LocationSummary* locations =
5393 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
5394 locations->SetInAt(0, Location::RequiresRegister());
5395 if (check->HasUses()) {
5396 locations->SetOut(Location::SameAsFirstInput());
5397 }
5398}
5399
5400void InstructionCodeGeneratorX86_64::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005401 // We assume the class to not be null.
Andreas Gampe85b62f22015-09-09 13:15:38 -07005402 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86_64(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005403 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005404 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00005405 GenerateClassInitializationCheck(slow_path,
5406 check->GetLocations()->InAt(0).AsRegister<CpuRegister>());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005407}
5408
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005409void LocationsBuilderX86_64::VisitLoadString(HLoadString* load) {
Nicolas Geoffray917d0162015-11-24 18:25:35 +00005410 LocationSummary::CallKind call_kind = (!load->IsInDexCache() || kEmitCompilerReadBarrier)
5411 ? LocationSummary::kCallOnSlowPath
5412 : LocationSummary::kNoCall;
5413 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(load, call_kind);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01005414 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005415 locations->SetOut(Location::RequiresRegister());
5416}
5417
5418void InstructionCodeGeneratorX86_64::VisitLoadString(HLoadString* load) {
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01005419 LocationSummary* locations = load->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005420 Location out_loc = locations->Out();
5421 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01005422 CpuRegister current_method = locations->InAt(0).AsRegister<CpuRegister>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005423
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005424 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
5425 GenerateGcRootFieldLoad(
5426 load, out_loc, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
Roland Levillain0d5a2812015-11-13 10:07:31 +00005427 // /* GcRoot<mirror::String>[] */ out = out->dex_cache_strings_
5428 __ movq(out, Address(out, mirror::Class::DexCacheStringsOffset().Uint32Value()));
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005429 // /* GcRoot<mirror::String> */ out = out[string_index]
5430 GenerateGcRootFieldLoad(
5431 load, out_loc, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00005432
Nicolas Geoffray917d0162015-11-24 18:25:35 +00005433 if (!load->IsInDexCache()) {
5434 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86_64(load);
5435 codegen_->AddSlowPath(slow_path);
5436 __ testl(out, out);
5437 __ j(kEqual, slow_path->GetEntryLabel());
5438 __ Bind(slow_path->GetExitLabel());
5439 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005440}
5441
David Brazdilcb1c0552015-08-04 16:22:25 +01005442static Address GetExceptionTlsAddress() {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005443 return Address::Absolute(Thread::ExceptionOffset<kX86_64WordSize>().Int32Value(),
5444 /* no_rip */ true);
David Brazdilcb1c0552015-08-04 16:22:25 +01005445}
5446
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00005447void LocationsBuilderX86_64::VisitLoadException(HLoadException* load) {
5448 LocationSummary* locations =
5449 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
5450 locations->SetOut(Location::RequiresRegister());
5451}
5452
5453void InstructionCodeGeneratorX86_64::VisitLoadException(HLoadException* load) {
David Brazdilcb1c0552015-08-04 16:22:25 +01005454 __ gs()->movl(load->GetLocations()->Out().AsRegister<CpuRegister>(), GetExceptionTlsAddress());
5455}
5456
5457void LocationsBuilderX86_64::VisitClearException(HClearException* clear) {
5458 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
5459}
5460
5461void InstructionCodeGeneratorX86_64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
5462 __ gs()->movl(GetExceptionTlsAddress(), Immediate(0));
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00005463}
5464
5465void LocationsBuilderX86_64::VisitThrow(HThrow* instruction) {
5466 LocationSummary* locations =
5467 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
5468 InvokeRuntimeCallingConvention calling_convention;
5469 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5470}
5471
5472void InstructionCodeGeneratorX86_64::VisitThrow(HThrow* instruction) {
Alexandre Rames8158f282015-08-07 10:26:17 +01005473 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pDeliverException),
5474 instruction,
5475 instruction->GetDexPc(),
5476 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00005477 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00005478}
5479
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005480static bool TypeCheckNeedsATemporary(TypeCheckKind type_check_kind) {
5481 return kEmitCompilerReadBarrier &&
5482 (kUseBakerReadBarrier ||
5483 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
5484 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
5485 type_check_kind == TypeCheckKind::kArrayObjectCheck);
5486}
5487
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005488void LocationsBuilderX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005489 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Roland Levillain0d5a2812015-11-13 10:07:31 +00005490 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
5491 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005492 case TypeCheckKind::kExactCheck:
5493 case TypeCheckKind::kAbstractClassCheck:
5494 case TypeCheckKind::kClassHierarchyCheck:
5495 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00005496 call_kind =
5497 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005498 break;
5499 case TypeCheckKind::kArrayCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00005500 case TypeCheckKind::kUnresolvedCheck:
5501 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005502 call_kind = LocationSummary::kCallOnSlowPath;
5503 break;
5504 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005505
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005506 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005507 locations->SetInAt(0, Location::RequiresRegister());
5508 locations->SetInAt(1, Location::Any());
5509 // Note that TypeCheckSlowPathX86_64 uses this "out" register too.
5510 locations->SetOut(Location::RequiresRegister());
5511 // When read barriers are enabled, we need a temporary register for
5512 // some cases.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005513 if (TypeCheckNeedsATemporary(type_check_kind)) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005514 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005515 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005516}
5517
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005518void InstructionCodeGeneratorX86_64::VisitInstanceOf(HInstanceOf* instruction) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005519 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005520 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005521 Location obj_loc = locations->InAt(0);
5522 CpuRegister obj = obj_loc.AsRegister<CpuRegister>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005523 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005524 Location out_loc = locations->Out();
5525 CpuRegister out = out_loc.AsRegister<CpuRegister>();
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005526 Location maybe_temp_loc = TypeCheckNeedsATemporary(type_check_kind) ?
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005527 locations->GetTemp(0) :
5528 Location::NoLocation();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005529 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005530 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
5531 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
5532 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Andreas Gampe85b62f22015-09-09 13:15:38 -07005533 SlowPathCode* slow_path = nullptr;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005534 NearLabel done, zero;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005535
5536 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01005537 // Avoid null check if we know obj is not null.
5538 if (instruction->MustDoNullCheck()) {
5539 __ testl(obj, obj);
5540 __ j(kEqual, &zero);
5541 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005542
Roland Levillain0d5a2812015-11-13 10:07:31 +00005543 // /* HeapReference<Class> */ out = obj->klass_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005544 GenerateReferenceLoadTwoRegisters(instruction, out_loc, obj_loc, class_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005545
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005546 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005547 case TypeCheckKind::kExactCheck: {
5548 if (cls.IsRegister()) {
5549 __ cmpl(out, cls.AsRegister<CpuRegister>());
5550 } else {
5551 DCHECK(cls.IsStackSlot()) << cls;
5552 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
5553 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005554 if (zero.IsLinked()) {
5555 // Classes must be equal for the instanceof to succeed.
5556 __ j(kNotEqual, &zero);
5557 __ movl(out, Immediate(1));
5558 __ jmp(&done);
5559 } else {
5560 __ setcc(kEqual, out);
5561 // setcc only sets the low byte.
5562 __ andl(out, Immediate(1));
5563 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005564 break;
5565 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005566
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005567 case TypeCheckKind::kAbstractClassCheck: {
5568 // If the class is abstract, we eagerly fetch the super class of the
5569 // object to avoid doing a comparison we know will fail.
5570 NearLabel loop, success;
5571 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005572 // /* HeapReference<Class> */ out = out->super_class_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005573 GenerateReferenceLoadOneRegister(instruction, out_loc, super_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005574 __ testl(out, out);
5575 // If `out` is null, we use it for the result, and jump to `done`.
5576 __ j(kEqual, &done);
5577 if (cls.IsRegister()) {
5578 __ cmpl(out, cls.AsRegister<CpuRegister>());
5579 } else {
5580 DCHECK(cls.IsStackSlot()) << cls;
5581 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
5582 }
5583 __ j(kNotEqual, &loop);
5584 __ movl(out, Immediate(1));
5585 if (zero.IsLinked()) {
5586 __ jmp(&done);
5587 }
5588 break;
5589 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005590
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005591 case TypeCheckKind::kClassHierarchyCheck: {
5592 // Walk over the class hierarchy to find a match.
5593 NearLabel loop, success;
5594 __ Bind(&loop);
5595 if (cls.IsRegister()) {
5596 __ cmpl(out, cls.AsRegister<CpuRegister>());
5597 } else {
5598 DCHECK(cls.IsStackSlot()) << cls;
5599 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
5600 }
5601 __ j(kEqual, &success);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005602 // /* HeapReference<Class> */ out = out->super_class_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005603 GenerateReferenceLoadOneRegister(instruction, out_loc, super_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005604 __ testl(out, out);
5605 __ j(kNotEqual, &loop);
5606 // If `out` is null, we use it for the result, and jump to `done`.
5607 __ jmp(&done);
5608 __ Bind(&success);
5609 __ movl(out, Immediate(1));
5610 if (zero.IsLinked()) {
5611 __ jmp(&done);
5612 }
5613 break;
5614 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005615
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005616 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005617 // Do an exact check.
5618 NearLabel exact_check;
5619 if (cls.IsRegister()) {
5620 __ cmpl(out, cls.AsRegister<CpuRegister>());
5621 } else {
5622 DCHECK(cls.IsStackSlot()) << cls;
5623 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
5624 }
5625 __ j(kEqual, &exact_check);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005626 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005627 // /* HeapReference<Class> */ out = out->component_type_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005628 GenerateReferenceLoadOneRegister(instruction, out_loc, component_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005629 __ testl(out, out);
5630 // If `out` is null, we use it for the result, and jump to `done`.
5631 __ j(kEqual, &done);
5632 __ cmpw(Address(out, primitive_offset), Immediate(Primitive::kPrimNot));
5633 __ j(kNotEqual, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005634 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005635 __ movl(out, Immediate(1));
5636 __ jmp(&done);
5637 break;
5638 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005639
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005640 case TypeCheckKind::kArrayCheck: {
5641 if (cls.IsRegister()) {
5642 __ cmpl(out, cls.AsRegister<CpuRegister>());
5643 } else {
5644 DCHECK(cls.IsStackSlot()) << cls;
5645 __ cmpl(out, Address(CpuRegister(RSP), cls.GetStackIndex()));
5646 }
5647 DCHECK(locations->OnlyCallsOnSlowPath());
Roland Levillain0d5a2812015-11-13 10:07:31 +00005648 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(instruction,
5649 /* is_fatal */ false);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005650 codegen_->AddSlowPath(slow_path);
5651 __ j(kNotEqual, slow_path->GetEntryLabel());
5652 __ movl(out, Immediate(1));
5653 if (zero.IsLinked()) {
5654 __ jmp(&done);
5655 }
5656 break;
5657 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005658
Calin Juravle98893e12015-10-02 21:05:03 +01005659 case TypeCheckKind::kUnresolvedCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00005660 case TypeCheckKind::kInterfaceCheck: {
5661 // Note that we indeed only call on slow path, but we always go
Roland Levillaine3f43ac2016-01-19 15:07:47 +00005662 // into the slow path for the unresolved and interface check
Roland Levillain0d5a2812015-11-13 10:07:31 +00005663 // cases.
5664 //
5665 // We cannot directly call the InstanceofNonTrivial runtime
5666 // entry point without resorting to a type checking slow path
5667 // here (i.e. by calling InvokeRuntime directly), as it would
5668 // require to assign fixed registers for the inputs of this
5669 // HInstanceOf instruction (following the runtime calling
5670 // convention), which might be cluttered by the potential first
5671 // read barrier emission at the beginning of this method.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005672 //
5673 // TODO: Introduce a new runtime entry point taking the object
5674 // to test (instead of its class) as argument, and let it deal
5675 // with the read barrier issues. This will let us refactor this
5676 // case of the `switch` code as it was previously (with a direct
5677 // call to the runtime not using a type checking slow path).
5678 // This should also be beneficial for the other cases above.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005679 DCHECK(locations->OnlyCallsOnSlowPath());
5680 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(instruction,
5681 /* is_fatal */ false);
5682 codegen_->AddSlowPath(slow_path);
5683 __ jmp(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005684 if (zero.IsLinked()) {
5685 __ jmp(&done);
5686 }
5687 break;
5688 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005689 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01005690
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005691 if (zero.IsLinked()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01005692 __ Bind(&zero);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005693 __ xorl(out, out);
5694 }
5695
5696 if (done.IsLinked()) {
5697 __ Bind(&done);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01005698 }
5699
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005700 if (slow_path != nullptr) {
5701 __ Bind(slow_path->GetExitLabel());
5702 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00005703}
5704
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005705void LocationsBuilderX86_64::VisitCheckCast(HCheckCast* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005706 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
5707 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005708 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
5709 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005710 case TypeCheckKind::kExactCheck:
5711 case TypeCheckKind::kAbstractClassCheck:
5712 case TypeCheckKind::kClassHierarchyCheck:
5713 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00005714 call_kind = (throws_into_catch || kEmitCompilerReadBarrier) ?
5715 LocationSummary::kCallOnSlowPath :
5716 LocationSummary::kNoCall; // In fact, call on a fatal (non-returning) slow path.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005717 break;
5718 case TypeCheckKind::kArrayCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00005719 case TypeCheckKind::kUnresolvedCheck:
5720 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005721 call_kind = LocationSummary::kCallOnSlowPath;
5722 break;
5723 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005724 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
5725 locations->SetInAt(0, Location::RequiresRegister());
5726 locations->SetInAt(1, Location::Any());
5727 // Note that TypeCheckSlowPathX86_64 uses this "temp" register too.
5728 locations->AddTemp(Location::RequiresRegister());
5729 // When read barriers are enabled, we need an additional temporary
5730 // register for some cases.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005731 if (TypeCheckNeedsATemporary(type_check_kind)) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005732 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005733 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005734}
5735
5736void InstructionCodeGeneratorX86_64::VisitCheckCast(HCheckCast* instruction) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005737 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005738 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005739 Location obj_loc = locations->InAt(0);
5740 CpuRegister obj = obj_loc.AsRegister<CpuRegister>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005741 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005742 Location temp_loc = locations->GetTemp(0);
5743 CpuRegister temp = temp_loc.AsRegister<CpuRegister>();
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005744 Location maybe_temp2_loc = TypeCheckNeedsATemporary(type_check_kind) ?
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005745 locations->GetTemp(1) :
5746 Location::NoLocation();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005747 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
5748 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
5749 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
5750 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005751
Roland Levillain0d5a2812015-11-13 10:07:31 +00005752 bool is_type_check_slow_path_fatal =
5753 (type_check_kind == TypeCheckKind::kExactCheck ||
5754 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
5755 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
5756 type_check_kind == TypeCheckKind::kArrayObjectCheck) &&
5757 !instruction->CanThrowIntoCatchBlock();
5758 SlowPathCode* type_check_slow_path =
5759 new (GetGraph()->GetArena()) TypeCheckSlowPathX86_64(instruction,
5760 is_type_check_slow_path_fatal);
5761 codegen_->AddSlowPath(type_check_slow_path);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005762
Roland Levillain0d5a2812015-11-13 10:07:31 +00005763 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005764 case TypeCheckKind::kExactCheck:
5765 case TypeCheckKind::kArrayCheck: {
Roland Levillain86503782016-02-11 19:07:30 +00005766 NearLabel done;
5767 // Avoid null check if we know obj is not null.
5768 if (instruction->MustDoNullCheck()) {
5769 __ testl(obj, obj);
5770 __ j(kEqual, &done);
5771 }
5772
5773 // /* HeapReference<Class> */ temp = obj->klass_
5774 GenerateReferenceLoadTwoRegisters(
5775 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
5776
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005777 if (cls.IsRegister()) {
5778 __ cmpl(temp, cls.AsRegister<CpuRegister>());
5779 } else {
5780 DCHECK(cls.IsStackSlot()) << cls;
5781 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
5782 }
5783 // Jump to slow path for throwing the exception or doing a
5784 // more involved array check.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005785 __ j(kNotEqual, type_check_slow_path->GetEntryLabel());
Roland Levillain86503782016-02-11 19:07:30 +00005786 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005787 break;
5788 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005789
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005790 case TypeCheckKind::kAbstractClassCheck: {
Roland Levillain86503782016-02-11 19:07:30 +00005791 NearLabel done;
5792 // Avoid null check if we know obj is not null.
5793 if (instruction->MustDoNullCheck()) {
5794 __ testl(obj, obj);
5795 __ j(kEqual, &done);
5796 }
5797
5798 // /* HeapReference<Class> */ temp = obj->klass_
5799 GenerateReferenceLoadTwoRegisters(
5800 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
5801
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005802 // If the class is abstract, we eagerly fetch the super class of the
5803 // object to avoid doing a comparison we know will fail.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005804 NearLabel loop, compare_classes;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005805 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005806 // /* HeapReference<Class> */ temp = temp->super_class_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005807 GenerateReferenceLoadOneRegister(instruction, temp_loc, super_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005808
5809 // If the class reference currently in `temp` is not null, jump
5810 // to the `compare_classes` label to compare it with the checked
5811 // class.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005812 __ testl(temp, temp);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005813 __ j(kNotEqual, &compare_classes);
5814 // Otherwise, jump to the slow path to throw the exception.
5815 //
5816 // But before, move back the object's class into `temp` before
5817 // going into the slow path, as it has been overwritten in the
5818 // meantime.
5819 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005820 GenerateReferenceLoadTwoRegisters(
5821 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005822 __ jmp(type_check_slow_path->GetEntryLabel());
5823
5824 __ Bind(&compare_classes);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005825 if (cls.IsRegister()) {
5826 __ cmpl(temp, cls.AsRegister<CpuRegister>());
5827 } else {
5828 DCHECK(cls.IsStackSlot()) << cls;
5829 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
5830 }
5831 __ j(kNotEqual, &loop);
Roland Levillain86503782016-02-11 19:07:30 +00005832 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005833 break;
5834 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005835
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005836 case TypeCheckKind::kClassHierarchyCheck: {
Roland Levillain86503782016-02-11 19:07:30 +00005837 NearLabel done;
5838 // Avoid null check if we know obj is not null.
5839 if (instruction->MustDoNullCheck()) {
5840 __ testl(obj, obj);
5841 __ j(kEqual, &done);
5842 }
5843
5844 // /* HeapReference<Class> */ temp = obj->klass_
5845 GenerateReferenceLoadTwoRegisters(
5846 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
5847
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005848 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005849 NearLabel loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005850 __ Bind(&loop);
5851 if (cls.IsRegister()) {
5852 __ cmpl(temp, cls.AsRegister<CpuRegister>());
5853 } else {
5854 DCHECK(cls.IsStackSlot()) << cls;
5855 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
5856 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005857 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005858
Roland Levillain0d5a2812015-11-13 10:07:31 +00005859 // /* HeapReference<Class> */ temp = temp->super_class_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005860 GenerateReferenceLoadOneRegister(instruction, temp_loc, super_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005861
5862 // If the class reference currently in `temp` is not null, jump
5863 // back at the beginning of the loop.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005864 __ testl(temp, temp);
5865 __ j(kNotEqual, &loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005866 // Otherwise, jump to the slow path to throw the exception.
5867 //
5868 // But before, move back the object's class into `temp` before
5869 // going into the slow path, as it has been overwritten in the
5870 // meantime.
5871 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005872 GenerateReferenceLoadTwoRegisters(
5873 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005874 __ jmp(type_check_slow_path->GetEntryLabel());
Roland Levillain86503782016-02-11 19:07:30 +00005875 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005876 break;
5877 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005878
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005879 case TypeCheckKind::kArrayObjectCheck: {
Roland Levillain86503782016-02-11 19:07:30 +00005880 // We cannot use a NearLabel here, as its range might be too
5881 // short in some cases when read barriers are enabled. This has
5882 // been observed for instance when the code emitted for this
5883 // case uses high x86-64 registers (R8-R15).
5884 Label done;
5885 // Avoid null check if we know obj is not null.
5886 if (instruction->MustDoNullCheck()) {
5887 __ testl(obj, obj);
5888 __ j(kEqual, &done);
5889 }
5890
5891 // /* HeapReference<Class> */ temp = obj->klass_
5892 GenerateReferenceLoadTwoRegisters(
5893 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
5894
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005895 // Do an exact check.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005896 NearLabel check_non_primitive_component_type;
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01005897 if (cls.IsRegister()) {
5898 __ cmpl(temp, cls.AsRegister<CpuRegister>());
5899 } else {
5900 DCHECK(cls.IsStackSlot()) << cls;
5901 __ cmpl(temp, Address(CpuRegister(RSP), cls.GetStackIndex()));
5902 }
5903 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005904
5905 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005906 // /* HeapReference<Class> */ temp = temp->component_type_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005907 GenerateReferenceLoadOneRegister(instruction, temp_loc, component_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005908
5909 // If the component type is not null (i.e. the object is indeed
5910 // an array), jump to label `check_non_primitive_component_type`
5911 // to further check that this component type is not a primitive
5912 // type.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005913 __ testl(temp, temp);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005914 __ j(kNotEqual, &check_non_primitive_component_type);
5915 // Otherwise, jump to the slow path to throw the exception.
5916 //
5917 // But before, move back the object's class into `temp` before
5918 // going into the slow path, as it has been overwritten in the
5919 // meantime.
5920 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005921 GenerateReferenceLoadTwoRegisters(
5922 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005923 __ jmp(type_check_slow_path->GetEntryLabel());
5924
5925 __ Bind(&check_non_primitive_component_type);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005926 __ cmpw(Address(temp, primitive_offset), Immediate(Primitive::kPrimNot));
Roland Levillain0d5a2812015-11-13 10:07:31 +00005927 __ j(kEqual, &done);
5928 // Same comment as above regarding `temp` and the slow path.
5929 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain95e7ffc2016-01-22 11:57:25 +00005930 GenerateReferenceLoadTwoRegisters(
5931 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005932 __ jmp(type_check_slow_path->GetEntryLabel());
Roland Levillain86503782016-02-11 19:07:30 +00005933 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005934 break;
5935 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005936
Calin Juravle98893e12015-10-02 21:05:03 +01005937 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005938 case TypeCheckKind::kInterfaceCheck:
Roland Levillain86503782016-02-11 19:07:30 +00005939 NearLabel done;
5940 // Avoid null check if we know obj is not null.
5941 if (instruction->MustDoNullCheck()) {
5942 __ testl(obj, obj);
5943 __ j(kEqual, &done);
5944 }
5945
5946 // /* HeapReference<Class> */ temp = obj->klass_
5947 GenerateReferenceLoadTwoRegisters(
5948 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
5949
Roland Levillaine3f43ac2016-01-19 15:07:47 +00005950 // We always go into the type check slow path for the unresolved
5951 // and interface check cases.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005952 //
5953 // We cannot directly call the CheckCast runtime entry point
5954 // without resorting to a type checking slow path here (i.e. by
5955 // calling InvokeRuntime directly), as it would require to
5956 // assign fixed registers for the inputs of this HInstanceOf
5957 // instruction (following the runtime calling convention), which
5958 // might be cluttered by the potential first read barrier
5959 // emission at the beginning of this method.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00005960 //
5961 // TODO: Introduce a new runtime entry point taking the object
5962 // to test (instead of its class) as argument, and let it deal
5963 // with the read barrier issues. This will let us refactor this
5964 // case of the `switch` code as it was previously (with a direct
5965 // call to the runtime not using a type checking slow path).
5966 // This should also be beneficial for the other cases above.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005967 __ jmp(type_check_slow_path->GetEntryLabel());
Roland Levillain86503782016-02-11 19:07:30 +00005968 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005969 break;
5970 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00005971
Roland Levillain0d5a2812015-11-13 10:07:31 +00005972 __ Bind(type_check_slow_path->GetExitLabel());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00005973}
5974
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00005975void LocationsBuilderX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
5976 LocationSummary* locations =
5977 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
5978 InvokeRuntimeCallingConvention calling_convention;
5979 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5980}
5981
5982void InstructionCodeGeneratorX86_64::VisitMonitorOperation(HMonitorOperation* instruction) {
Alexandre Rames8158f282015-08-07 10:26:17 +01005983 codegen_->InvokeRuntime(instruction->IsEnter() ? QUICK_ENTRY_POINT(pLockObject)
5984 : QUICK_ENTRY_POINT(pUnlockObject),
5985 instruction,
5986 instruction->GetDexPc(),
5987 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00005988 if (instruction->IsEnter()) {
5989 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
5990 } else {
5991 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
5992 }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00005993}
5994
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005995void LocationsBuilderX86_64::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
5996void LocationsBuilderX86_64::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
5997void LocationsBuilderX86_64::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
5998
5999void LocationsBuilderX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
6000 LocationSummary* locations =
6001 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
6002 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
6003 || instruction->GetResultType() == Primitive::kPrimLong);
6004 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell40741f32015-04-20 22:10:34 -04006005 locations->SetInAt(1, Location::Any());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006006 locations->SetOut(Location::SameAsFirstInput());
6007}
6008
6009void InstructionCodeGeneratorX86_64::VisitAnd(HAnd* instruction) {
6010 HandleBitwiseOperation(instruction);
6011}
6012
6013void InstructionCodeGeneratorX86_64::VisitOr(HOr* instruction) {
6014 HandleBitwiseOperation(instruction);
6015}
6016
6017void InstructionCodeGeneratorX86_64::VisitXor(HXor* instruction) {
6018 HandleBitwiseOperation(instruction);
6019}
6020
6021void InstructionCodeGeneratorX86_64::HandleBitwiseOperation(HBinaryOperation* instruction) {
6022 LocationSummary* locations = instruction->GetLocations();
6023 Location first = locations->InAt(0);
6024 Location second = locations->InAt(1);
6025 DCHECK(first.Equals(locations->Out()));
6026
6027 if (instruction->GetResultType() == Primitive::kPrimInt) {
6028 if (second.IsRegister()) {
6029 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006030 __ andl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006031 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006032 __ orl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006033 } else {
6034 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006035 __ xorl(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006036 }
6037 } else if (second.IsConstant()) {
6038 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
6039 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006040 __ andl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006041 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006042 __ orl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006043 } else {
6044 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006045 __ xorl(first.AsRegister<CpuRegister>(), imm);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006046 }
6047 } else {
6048 Address address(CpuRegister(RSP), second.GetStackIndex());
6049 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006050 __ andl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006051 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006052 __ orl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006053 } else {
6054 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006055 __ xorl(first.AsRegister<CpuRegister>(), address);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006056 }
6057 }
6058 } else {
6059 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006060 CpuRegister first_reg = first.AsRegister<CpuRegister>();
6061 bool second_is_constant = false;
6062 int64_t value = 0;
6063 if (second.IsConstant()) {
6064 second_is_constant = true;
6065 value = second.GetConstant()->AsLongConstant()->GetValue();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006066 }
Mark Mendell40741f32015-04-20 22:10:34 -04006067 bool is_int32_value = IsInt<32>(value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006068
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006069 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006070 if (second_is_constant) {
Mark Mendell40741f32015-04-20 22:10:34 -04006071 if (is_int32_value) {
6072 __ andq(first_reg, Immediate(static_cast<int32_t>(value)));
6073 } else {
6074 __ andq(first_reg, codegen_->LiteralInt64Address(value));
6075 }
6076 } else if (second.IsDoubleStackSlot()) {
6077 __ andq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex()));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006078 } else {
6079 __ andq(first_reg, second.AsRegister<CpuRegister>());
6080 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006081 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006082 if (second_is_constant) {
Mark Mendell40741f32015-04-20 22:10:34 -04006083 if (is_int32_value) {
6084 __ orq(first_reg, Immediate(static_cast<int32_t>(value)));
6085 } else {
6086 __ orq(first_reg, codegen_->LiteralInt64Address(value));
6087 }
6088 } else if (second.IsDoubleStackSlot()) {
6089 __ orq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex()));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006090 } else {
6091 __ orq(first_reg, second.AsRegister<CpuRegister>());
6092 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006093 } else {
6094 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006095 if (second_is_constant) {
Mark Mendell40741f32015-04-20 22:10:34 -04006096 if (is_int32_value) {
6097 __ xorq(first_reg, Immediate(static_cast<int32_t>(value)));
6098 } else {
6099 __ xorq(first_reg, codegen_->LiteralInt64Address(value));
6100 }
6101 } else if (second.IsDoubleStackSlot()) {
6102 __ xorq(first_reg, Address(CpuRegister(RSP), second.GetStackIndex()));
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006103 } else {
6104 __ xorq(first_reg, second.AsRegister<CpuRegister>());
6105 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006106 }
6107 }
6108}
6109
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006110void InstructionCodeGeneratorX86_64::GenerateReferenceLoadOneRegister(HInstruction* instruction,
6111 Location out,
6112 uint32_t offset,
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006113 Location maybe_temp) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006114 CpuRegister out_reg = out.AsRegister<CpuRegister>();
6115 if (kEmitCompilerReadBarrier) {
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006116 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006117 if (kUseBakerReadBarrier) {
6118 // Load with fast path based Baker's read barrier.
6119 // /* HeapReference<Object> */ out = *(out + offset)
6120 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006121 instruction, out, out_reg, offset, maybe_temp, /* needs_null_check */ false);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006122 } else {
6123 // Load with slow path based read barrier.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006124 // Save the value of `out` into `maybe_temp` before overwriting it
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006125 // in the following move operation, as we will need it for the
6126 // read barrier below.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006127 __ movl(maybe_temp.AsRegister<CpuRegister>(), out_reg);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006128 // /* HeapReference<Object> */ out = *(out + offset)
6129 __ movl(out_reg, Address(out_reg, offset));
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006130 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006131 }
6132 } else {
6133 // Plain load with no read barrier.
6134 // /* HeapReference<Object> */ out = *(out + offset)
6135 __ movl(out_reg, Address(out_reg, offset));
6136 __ MaybeUnpoisonHeapReference(out_reg);
6137 }
6138}
6139
6140void InstructionCodeGeneratorX86_64::GenerateReferenceLoadTwoRegisters(HInstruction* instruction,
6141 Location out,
6142 Location obj,
6143 uint32_t offset,
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006144 Location maybe_temp) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006145 CpuRegister out_reg = out.AsRegister<CpuRegister>();
6146 CpuRegister obj_reg = obj.AsRegister<CpuRegister>();
6147 if (kEmitCompilerReadBarrier) {
6148 if (kUseBakerReadBarrier) {
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006149 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006150 // Load with fast path based Baker's read barrier.
6151 // /* HeapReference<Object> */ out = *(obj + offset)
6152 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006153 instruction, out, obj_reg, offset, maybe_temp, /* needs_null_check */ false);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006154 } else {
6155 // Load with slow path based read barrier.
6156 // /* HeapReference<Object> */ out = *(obj + offset)
6157 __ movl(out_reg, Address(obj_reg, offset));
6158 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
6159 }
6160 } else {
6161 // Plain load with no read barrier.
6162 // /* HeapReference<Object> */ out = *(obj + offset)
6163 __ movl(out_reg, Address(obj_reg, offset));
6164 __ MaybeUnpoisonHeapReference(out_reg);
6165 }
6166}
6167
6168void InstructionCodeGeneratorX86_64::GenerateGcRootFieldLoad(HInstruction* instruction,
6169 Location root,
6170 CpuRegister obj,
6171 uint32_t offset) {
6172 CpuRegister root_reg = root.AsRegister<CpuRegister>();
6173 if (kEmitCompilerReadBarrier) {
6174 if (kUseBakerReadBarrier) {
6175 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
6176 // Baker's read barrier are used:
6177 //
6178 // root = obj.field;
6179 // if (Thread::Current()->GetIsGcMarking()) {
6180 // root = ReadBarrier::Mark(root)
6181 // }
6182
6183 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6184 __ movl(root_reg, Address(obj, offset));
6185 static_assert(
6186 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
6187 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
6188 "have different sizes.");
6189 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
6190 "art::mirror::CompressedReference<mirror::Object> and int32_t "
6191 "have different sizes.");
6192
6193 // Slow path used to mark the GC root `root`.
6194 SlowPathCode* slow_path =
6195 new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathX86_64(instruction, root, root);
6196 codegen_->AddSlowPath(slow_path);
6197
6198 __ gs()->cmpl(Address::Absolute(Thread::IsGcMarkingOffset<kX86_64WordSize>().Int32Value(),
6199 /* no_rip */ true),
6200 Immediate(0));
6201 __ j(kNotEqual, slow_path->GetEntryLabel());
6202 __ Bind(slow_path->GetExitLabel());
6203 } else {
6204 // GC root loaded through a slow path for read barriers other
6205 // than Baker's.
6206 // /* GcRoot<mirror::Object>* */ root = obj + offset
6207 __ leaq(root_reg, Address(obj, offset));
6208 // /* mirror::Object* */ root = root->Read()
6209 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
6210 }
6211 } else {
6212 // Plain GC root load with no read barrier.
6213 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6214 __ movl(root_reg, Address(obj, offset));
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006215 // Note that GC roots are not affected by heap poisoning, thus we
6216 // do not have to unpoison `root_reg` here.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006217 }
6218}
6219
6220void CodeGeneratorX86_64::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
6221 Location ref,
6222 CpuRegister obj,
6223 uint32_t offset,
6224 Location temp,
6225 bool needs_null_check) {
6226 DCHECK(kEmitCompilerReadBarrier);
6227 DCHECK(kUseBakerReadBarrier);
6228
6229 // /* HeapReference<Object> */ ref = *(obj + offset)
6230 Address src(obj, offset);
6231 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, temp, needs_null_check);
6232}
6233
6234void CodeGeneratorX86_64::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
6235 Location ref,
6236 CpuRegister obj,
6237 uint32_t data_offset,
6238 Location index,
6239 Location temp,
6240 bool needs_null_check) {
6241 DCHECK(kEmitCompilerReadBarrier);
6242 DCHECK(kUseBakerReadBarrier);
6243
6244 // /* HeapReference<Object> */ ref =
6245 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
6246 Address src = index.IsConstant() ?
6247 Address(obj, (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset) :
6248 Address(obj, index.AsRegister<CpuRegister>(), TIMES_4, data_offset);
6249 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, temp, needs_null_check);
6250}
6251
6252void CodeGeneratorX86_64::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
6253 Location ref,
6254 CpuRegister obj,
6255 const Address& src,
6256 Location temp,
6257 bool needs_null_check) {
6258 DCHECK(kEmitCompilerReadBarrier);
6259 DCHECK(kUseBakerReadBarrier);
6260
6261 // In slow path based read barriers, the read barrier call is
6262 // inserted after the original load. However, in fast path based
6263 // Baker's read barriers, we need to perform the load of
6264 // mirror::Object::monitor_ *before* the original reference load.
6265 // This load-load ordering is required by the read barrier.
6266 // The fast path/slow path (for Baker's algorithm) should look like:
6267 //
6268 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
6269 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
6270 // HeapReference<Object> ref = *src; // Original reference load.
6271 // bool is_gray = (rb_state == ReadBarrier::gray_ptr_);
6272 // if (is_gray) {
6273 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
6274 // }
6275 //
6276 // Note: the original implementation in ReadBarrier::Barrier is
6277 // slightly more complex as:
6278 // - it implements the load-load fence using a data dependency on
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006279 // the high-bits of rb_state, which are expected to be all zeroes
6280 // (we use CodeGeneratorX86_64::GenerateMemoryBarrier instead
6281 // here, which is a no-op thanks to the x86-64 memory model);
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006282 // - it performs additional checks that we do not do here for
6283 // performance reasons.
6284
6285 CpuRegister ref_reg = ref.AsRegister<CpuRegister>();
6286 CpuRegister temp_reg = temp.AsRegister<CpuRegister>();
6287 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
6288
6289 // /* int32_t */ monitor = obj->monitor_
6290 __ movl(temp_reg, Address(obj, monitor_offset));
6291 if (needs_null_check) {
6292 MaybeRecordImplicitNullCheck(instruction);
6293 }
6294 // /* LockWord */ lock_word = LockWord(monitor)
6295 static_assert(sizeof(LockWord) == sizeof(int32_t),
6296 "art::LockWord and int32_t have different sizes.");
6297 // /* uint32_t */ rb_state = lock_word.ReadBarrierState()
6298 __ shrl(temp_reg, Immediate(LockWord::kReadBarrierStateShift));
6299 __ andl(temp_reg, Immediate(LockWord::kReadBarrierStateMask));
6300 static_assert(
6301 LockWord::kReadBarrierStateMask == ReadBarrier::rb_ptr_mask_,
6302 "art::LockWord::kReadBarrierStateMask is not equal to art::ReadBarrier::rb_ptr_mask_.");
6303
6304 // Load fence to prevent load-load reordering.
6305 // Note that this is a no-op, thanks to the x86-64 memory model.
6306 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6307
6308 // The actual reference load.
6309 // /* HeapReference<Object> */ ref = *src
6310 __ movl(ref_reg, src);
6311
6312 // Object* ref = ref_addr->AsMirrorPtr()
6313 __ MaybeUnpoisonHeapReference(ref_reg);
6314
6315 // Slow path used to mark the object `ref` when it is gray.
6316 SlowPathCode* slow_path =
6317 new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathX86_64(instruction, ref, ref);
6318 AddSlowPath(slow_path);
6319
6320 // if (rb_state == ReadBarrier::gray_ptr_)
6321 // ref = ReadBarrier::Mark(ref);
6322 __ cmpl(temp_reg, Immediate(ReadBarrier::gray_ptr_));
6323 __ j(kEqual, slow_path->GetEntryLabel());
6324 __ Bind(slow_path->GetExitLabel());
6325}
6326
6327void CodeGeneratorX86_64::GenerateReadBarrierSlow(HInstruction* instruction,
6328 Location out,
6329 Location ref,
6330 Location obj,
6331 uint32_t offset,
6332 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00006333 DCHECK(kEmitCompilerReadBarrier);
6334
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006335 // Insert a slow path based read barrier *after* the reference load.
6336 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00006337 // If heap poisoning is enabled, the unpoisoning of the loaded
6338 // reference will be carried out by the runtime within the slow
6339 // path.
6340 //
6341 // Note that `ref` currently does not get unpoisoned (when heap
6342 // poisoning is enabled), which is alright as the `ref` argument is
6343 // not used by the artReadBarrierSlow entry point.
6344 //
6345 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
6346 SlowPathCode* slow_path = new (GetGraph()->GetArena())
6347 ReadBarrierForHeapReferenceSlowPathX86_64(instruction, out, ref, obj, offset, index);
6348 AddSlowPath(slow_path);
6349
Roland Levillain0d5a2812015-11-13 10:07:31 +00006350 __ jmp(slow_path->GetEntryLabel());
6351 __ Bind(slow_path->GetExitLabel());
6352}
6353
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006354void CodeGeneratorX86_64::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
6355 Location out,
6356 Location ref,
6357 Location obj,
6358 uint32_t offset,
6359 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00006360 if (kEmitCompilerReadBarrier) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006361 // Baker's read barriers shall be handled by the fast path
6362 // (CodeGeneratorX86_64::GenerateReferenceLoadWithBakerReadBarrier).
6363 DCHECK(!kUseBakerReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006364 // If heap poisoning is enabled, unpoisoning will be taken care of
6365 // by the runtime within the slow path.
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006366 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006367 } else if (kPoisonHeapReferences) {
6368 __ UnpoisonHeapReference(out.AsRegister<CpuRegister>());
6369 }
6370}
6371
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006372void CodeGeneratorX86_64::GenerateReadBarrierForRootSlow(HInstruction* instruction,
6373 Location out,
6374 Location root) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00006375 DCHECK(kEmitCompilerReadBarrier);
6376
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006377 // Insert a slow path based read barrier *after* the GC root load.
6378 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00006379 // Note that GC roots are not affected by heap poisoning, so we do
6380 // not need to do anything special for this here.
6381 SlowPathCode* slow_path =
6382 new (GetGraph()->GetArena()) ReadBarrierForRootSlowPathX86_64(instruction, out, root);
6383 AddSlowPath(slow_path);
6384
Roland Levillain0d5a2812015-11-13 10:07:31 +00006385 __ jmp(slow_path->GetEntryLabel());
6386 __ Bind(slow_path->GetExitLabel());
6387}
6388
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01006389void LocationsBuilderX86_64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00006390 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00006391 LOG(FATAL) << "Unreachable";
6392}
6393
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01006394void InstructionCodeGeneratorX86_64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00006395 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00006396 LOG(FATAL) << "Unreachable";
6397}
6398
Mark Mendellfe57faa2015-09-18 09:26:15 -04006399// Simple implementation of packed switch - generate cascaded compare/jumps.
6400void LocationsBuilderX86_64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
6401 LocationSummary* locations =
6402 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
6403 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell9c86b482015-09-18 13:36:07 -04006404 locations->AddTemp(Location::RequiresRegister());
6405 locations->AddTemp(Location::RequiresRegister());
Mark Mendellfe57faa2015-09-18 09:26:15 -04006406}
6407
6408void InstructionCodeGeneratorX86_64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
6409 int32_t lower_bound = switch_instr->GetStartValue();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00006410 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendellfe57faa2015-09-18 09:26:15 -04006411 LocationSummary* locations = switch_instr->GetLocations();
Mark Mendell9c86b482015-09-18 13:36:07 -04006412 CpuRegister value_reg_in = locations->InAt(0).AsRegister<CpuRegister>();
6413 CpuRegister temp_reg = locations->GetTemp(0).AsRegister<CpuRegister>();
6414 CpuRegister base_reg = locations->GetTemp(1).AsRegister<CpuRegister>();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00006415 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
6416
6417 // Should we generate smaller inline compare/jumps?
6418 if (num_entries <= kPackedSwitchJumpTableThreshold) {
6419 // Figure out the correct compare values and jump conditions.
6420 // Handle the first compare/branch as a special case because it might
6421 // jump to the default case.
6422 DCHECK_GT(num_entries, 2u);
6423 Condition first_condition;
6424 uint32_t index;
6425 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
6426 if (lower_bound != 0) {
6427 first_condition = kLess;
6428 __ cmpl(value_reg_in, Immediate(lower_bound));
6429 __ j(first_condition, codegen_->GetLabelOf(default_block));
6430 __ j(kEqual, codegen_->GetLabelOf(successors[0]));
6431
6432 index = 1;
6433 } else {
6434 // Handle all the compare/jumps below.
6435 first_condition = kBelow;
6436 index = 0;
6437 }
6438
6439 // Handle the rest of the compare/jumps.
6440 for (; index + 1 < num_entries; index += 2) {
6441 int32_t compare_to_value = lower_bound + index + 1;
6442 __ cmpl(value_reg_in, Immediate(compare_to_value));
6443 // Jump to successors[index] if value < case_value[index].
6444 __ j(first_condition, codegen_->GetLabelOf(successors[index]));
6445 // Jump to successors[index + 1] if value == case_value[index + 1].
6446 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1]));
6447 }
6448
6449 if (index != num_entries) {
6450 // There are an odd number of entries. Handle the last one.
6451 DCHECK_EQ(index + 1, num_entries);
Nicolas Geoffray6ce01732015-12-30 14:10:13 +00006452 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index)));
Vladimir Markof3e0ee22015-12-17 15:23:13 +00006453 __ j(kEqual, codegen_->GetLabelOf(successors[index]));
6454 }
6455
6456 // And the default for any other value.
6457 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
6458 __ jmp(codegen_->GetLabelOf(default_block));
6459 }
6460 return;
6461 }
Mark Mendell9c86b482015-09-18 13:36:07 -04006462
6463 // Remove the bias, if needed.
6464 Register value_reg_out = value_reg_in.AsRegister();
6465 if (lower_bound != 0) {
6466 __ leal(temp_reg, Address(value_reg_in, -lower_bound));
6467 value_reg_out = temp_reg.AsRegister();
6468 }
6469 CpuRegister value_reg(value_reg_out);
6470
6471 // Is the value in range?
Mark Mendell9c86b482015-09-18 13:36:07 -04006472 __ cmpl(value_reg, Immediate(num_entries - 1));
6473 __ j(kAbove, codegen_->GetLabelOf(default_block));
Mark Mendellfe57faa2015-09-18 09:26:15 -04006474
Mark Mendell9c86b482015-09-18 13:36:07 -04006475 // We are in the range of the table.
6476 // Load the address of the jump table in the constant area.
6477 __ leaq(base_reg, codegen_->LiteralCaseTable(switch_instr));
Mark Mendellfe57faa2015-09-18 09:26:15 -04006478
Mark Mendell9c86b482015-09-18 13:36:07 -04006479 // Load the (signed) offset from the jump table.
6480 __ movsxd(temp_reg, Address(base_reg, value_reg, TIMES_4, 0));
6481
6482 // Add the offset to the address of the table base.
6483 __ addq(temp_reg, base_reg);
6484
6485 // And jump.
6486 __ jmp(temp_reg);
Mark Mendellfe57faa2015-09-18 09:26:15 -04006487}
6488
Aart Bikc5d47542016-01-27 17:00:35 -08006489void CodeGeneratorX86_64::Load32BitValue(CpuRegister dest, int32_t value) {
6490 if (value == 0) {
6491 __ xorl(dest, dest);
6492 } else {
6493 __ movl(dest, Immediate(value));
6494 }
6495}
6496
Mark Mendell92e83bf2015-05-07 11:25:03 -04006497void CodeGeneratorX86_64::Load64BitValue(CpuRegister dest, int64_t value) {
6498 if (value == 0) {
Aart Bikc5d47542016-01-27 17:00:35 -08006499 // Clears upper bits too.
Mark Mendell92e83bf2015-05-07 11:25:03 -04006500 __ xorl(dest, dest);
Vladimir Markoed009782016-02-22 16:54:39 +00006501 } else if (IsUint<32>(value)) {
6502 // We can use a 32 bit move, as it will zero-extend and is shorter.
Mark Mendell92e83bf2015-05-07 11:25:03 -04006503 __ movl(dest, Immediate(static_cast<int32_t>(value)));
6504 } else {
6505 __ movq(dest, Immediate(value));
6506 }
6507}
6508
Mark Mendell7c0b44f2016-02-01 10:08:35 -05006509void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, int32_t value) {
6510 if (value == 0) {
6511 __ xorps(dest, dest);
6512 } else {
6513 __ movss(dest, LiteralInt32Address(value));
6514 }
6515}
6516
6517void CodeGeneratorX86_64::Load64BitValue(XmmRegister dest, int64_t value) {
6518 if (value == 0) {
6519 __ xorpd(dest, dest);
6520 } else {
6521 __ movsd(dest, LiteralInt64Address(value));
6522 }
6523}
6524
6525void CodeGeneratorX86_64::Load32BitValue(XmmRegister dest, float value) {
6526 Load32BitValue(dest, bit_cast<int32_t, float>(value));
6527}
6528
6529void CodeGeneratorX86_64::Load64BitValue(XmmRegister dest, double value) {
6530 Load64BitValue(dest, bit_cast<int64_t, double>(value));
6531}
6532
Aart Bika19616e2016-02-01 18:57:58 -08006533void CodeGeneratorX86_64::Compare32BitValue(CpuRegister dest, int32_t value) {
6534 if (value == 0) {
6535 __ testl(dest, dest);
6536 } else {
6537 __ cmpl(dest, Immediate(value));
6538 }
6539}
6540
6541void CodeGeneratorX86_64::Compare64BitValue(CpuRegister dest, int64_t value) {
6542 if (IsInt<32>(value)) {
6543 if (value == 0) {
6544 __ testq(dest, dest);
6545 } else {
6546 __ cmpq(dest, Immediate(static_cast<int32_t>(value)));
6547 }
6548 } else {
6549 // Value won't fit in an int.
6550 __ cmpq(dest, LiteralInt64Address(value));
6551 }
6552}
6553
Mark Mendellcfa410b2015-05-25 16:02:44 -04006554void CodeGeneratorX86_64::Store64BitValueToStack(Location dest, int64_t value) {
6555 DCHECK(dest.IsDoubleStackSlot());
6556 if (IsInt<32>(value)) {
6557 // Can move directly as an int32 constant.
6558 __ movq(Address(CpuRegister(RSP), dest.GetStackIndex()),
6559 Immediate(static_cast<int32_t>(value)));
6560 } else {
6561 Load64BitValue(CpuRegister(TMP), value);
6562 __ movq(Address(CpuRegister(RSP), dest.GetStackIndex()), CpuRegister(TMP));
6563 }
6564}
6565
Mark Mendell9c86b482015-09-18 13:36:07 -04006566/**
6567 * Class to handle late fixup of offsets into constant area.
6568 */
6569class RIPFixup : public AssemblerFixup, public ArenaObject<kArenaAllocCodeGenerator> {
6570 public:
6571 RIPFixup(CodeGeneratorX86_64& codegen, size_t offset)
6572 : codegen_(&codegen), offset_into_constant_area_(offset) {}
6573
6574 protected:
6575 void SetOffset(size_t offset) { offset_into_constant_area_ = offset; }
6576
6577 CodeGeneratorX86_64* codegen_;
6578
6579 private:
6580 void Process(const MemoryRegion& region, int pos) OVERRIDE {
6581 // Patch the correct offset for the instruction. We use the address of the
6582 // 'next' instruction, which is 'pos' (patch the 4 bytes before).
6583 int32_t constant_offset = codegen_->ConstantAreaStart() + offset_into_constant_area_;
6584 int32_t relative_position = constant_offset - pos;
6585
6586 // Patch in the right value.
6587 region.StoreUnaligned<int32_t>(pos - 4, relative_position);
6588 }
6589
6590 // Location in constant area that the fixup refers to.
6591 size_t offset_into_constant_area_;
6592};
6593
6594/**
6595 t * Class to handle late fixup of offsets to a jump table that will be created in the
6596 * constant area.
6597 */
6598class JumpTableRIPFixup : public RIPFixup {
6599 public:
6600 JumpTableRIPFixup(CodeGeneratorX86_64& codegen, HPackedSwitch* switch_instr)
6601 : RIPFixup(codegen, -1), switch_instr_(switch_instr) {}
6602
6603 void CreateJumpTable() {
6604 X86_64Assembler* assembler = codegen_->GetAssembler();
6605
6606 // Ensure that the reference to the jump table has the correct offset.
6607 const int32_t offset_in_constant_table = assembler->ConstantAreaSize();
6608 SetOffset(offset_in_constant_table);
6609
6610 // Compute the offset from the start of the function to this jump table.
6611 const int32_t current_table_offset = assembler->CodeSize() + offset_in_constant_table;
6612
6613 // Populate the jump table with the correct values for the jump table.
6614 int32_t num_entries = switch_instr_->GetNumEntries();
6615 HBasicBlock* block = switch_instr_->GetBlock();
6616 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors();
6617 // The value that we want is the target offset - the position of the table.
6618 for (int32_t i = 0; i < num_entries; i++) {
6619 HBasicBlock* b = successors[i];
6620 Label* l = codegen_->GetLabelOf(b);
6621 DCHECK(l->IsBound());
6622 int32_t offset_to_block = l->Position() - current_table_offset;
6623 assembler->AppendInt32(offset_to_block);
6624 }
6625 }
6626
6627 private:
6628 const HPackedSwitch* switch_instr_;
6629};
6630
Mark Mendellf55c3e02015-03-26 21:07:46 -04006631void CodeGeneratorX86_64::Finalize(CodeAllocator* allocator) {
6632 // Generate the constant area if needed.
Mark Mendell39dcf552015-04-09 20:42:42 -04006633 X86_64Assembler* assembler = GetAssembler();
Mark Mendell9c86b482015-09-18 13:36:07 -04006634 if (!assembler->IsConstantAreaEmpty() || !fixups_to_jump_tables_.empty()) {
6635 // Align to 4 byte boundary to reduce cache misses, as the data is 4 and 8 byte values.
Mark Mendell39dcf552015-04-09 20:42:42 -04006636 assembler->Align(4, 0);
6637 constant_area_start_ = assembler->CodeSize();
Mark Mendell9c86b482015-09-18 13:36:07 -04006638
6639 // Populate any jump tables.
6640 for (auto jump_table : fixups_to_jump_tables_) {
6641 jump_table->CreateJumpTable();
6642 }
6643
6644 // And now add the constant area to the generated code.
Mark Mendell39dcf552015-04-09 20:42:42 -04006645 assembler->AddConstantArea();
Mark Mendellf55c3e02015-03-26 21:07:46 -04006646 }
6647
6648 // And finish up.
6649 CodeGenerator::Finalize(allocator);
6650}
6651
Mark Mendellf55c3e02015-03-26 21:07:46 -04006652Address CodeGeneratorX86_64::LiteralDoubleAddress(double v) {
6653 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddDouble(v));
6654 return Address::RIP(fixup);
6655}
6656
6657Address CodeGeneratorX86_64::LiteralFloatAddress(float v) {
6658 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddFloat(v));
6659 return Address::RIP(fixup);
6660}
6661
6662Address CodeGeneratorX86_64::LiteralInt32Address(int32_t v) {
6663 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt32(v));
6664 return Address::RIP(fixup);
6665}
6666
6667Address CodeGeneratorX86_64::LiteralInt64Address(int64_t v) {
6668 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt64(v));
6669 return Address::RIP(fixup);
6670}
6671
Andreas Gampe85b62f22015-09-09 13:15:38 -07006672// TODO: trg as memory.
6673void CodeGeneratorX86_64::MoveFromReturnRegister(Location trg, Primitive::Type type) {
6674 if (!trg.IsValid()) {
Roland Levillain1e7f8db2015-12-15 10:54:19 +00006675 DCHECK_EQ(type, Primitive::kPrimVoid);
Andreas Gampe85b62f22015-09-09 13:15:38 -07006676 return;
6677 }
6678
6679 DCHECK_NE(type, Primitive::kPrimVoid);
6680
6681 Location return_loc = InvokeDexCallingConventionVisitorX86_64().GetReturnLocation(type);
6682 if (trg.Equals(return_loc)) {
6683 return;
6684 }
6685
6686 // Let the parallel move resolver take care of all of this.
6687 HParallelMove parallel_move(GetGraph()->GetArena());
6688 parallel_move.AddMove(return_loc, trg, type, nullptr);
6689 GetMoveResolver()->EmitNativeCode(&parallel_move);
6690}
6691
Mark Mendell9c86b482015-09-18 13:36:07 -04006692Address CodeGeneratorX86_64::LiteralCaseTable(HPackedSwitch* switch_instr) {
6693 // Create a fixup to be used to create and address the jump table.
6694 JumpTableRIPFixup* table_fixup =
6695 new (GetGraph()->GetArena()) JumpTableRIPFixup(*this, switch_instr);
6696
6697 // We have to populate the jump tables.
6698 fixups_to_jump_tables_.push_back(table_fixup);
6699 return Address::RIP(table_fixup);
6700}
6701
Mark Mendellea5af682015-10-22 17:35:49 -04006702void CodeGeneratorX86_64::MoveInt64ToAddress(const Address& addr_low,
6703 const Address& addr_high,
6704 int64_t v,
6705 HInstruction* instruction) {
6706 if (IsInt<32>(v)) {
6707 int32_t v_32 = v;
6708 __ movq(addr_low, Immediate(v_32));
6709 MaybeRecordImplicitNullCheck(instruction);
6710 } else {
6711 // Didn't fit in a register. Do it in pieces.
6712 int32_t low_v = Low32Bits(v);
6713 int32_t high_v = High32Bits(v);
6714 __ movl(addr_low, Immediate(low_v));
6715 MaybeRecordImplicitNullCheck(instruction);
6716 __ movl(addr_high, Immediate(high_v));
6717 }
6718}
6719
Roland Levillain4d027112015-07-01 15:41:14 +01006720#undef __
6721
Nicolas Geoffray9cf35522014-06-09 18:40:10 +01006722} // namespace x86_64
6723} // namespace art