blob: 16a27250df6b0b523a611cdf42b342917e8247b0 [file] [log] [blame]
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001/*
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.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010018
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 Geoffrayf6e206c2014-08-07 20:25:41 +010022#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +000023#include "entrypoints/quick/quick_entrypoints_enum.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010024#include "gc/accounting/card_table.h"
Mark Mendell09ed1a32015-03-25 08:30:06 -040025#include "intrinsics.h"
26#include "intrinsics_x86.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070027#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070028#include "mirror/class-inl.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010029#include "thread.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000030#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010031#include "utils/stack_checks.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000032#include "utils/x86/assembler_x86.h"
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010033#include "utils/x86/managed_register_x86.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000034
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000035namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010036
Roland Levillain0d5a2812015-11-13 10:07:31 +000037template<class MirrorType>
38class GcRoot;
39
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000040namespace x86 {
41
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010042static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010043static constexpr Register kMethodRegisterArgument = EAX;
Mark Mendell5f874182015-03-04 15:42:45 -050044static constexpr Register kCoreCalleeSaves[] = { EBP, ESI, EDI };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010045
Mark Mendell24f2dfa2015-01-14 19:51:45 -050046static constexpr int kC2ConditionMask = 0x400;
47
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000048static constexpr int kFakeReturnRegister = Register(8);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +000049
Roland Levillain7cbd27f2016-08-11 23:53:33 +010050// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
51#define __ down_cast<X86Assembler*>(codegen->GetAssembler())-> // NOLINT
Andreas Gampe542451c2016-07-26 09:02:02 -070052#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kX86PointerSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010053
Andreas Gampe85b62f22015-09-09 13:15:38 -070054class NullCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010055 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000056 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010057
Alexandre Rames2ed20af2015-03-06 13:55:35 +000058 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +010059 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010060 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000061 if (instruction_->CanThrowIntoCatchBlock()) {
62 // Live registers will be restored in the catch block if caught.
63 SaveLiveRegisters(codegen, instruction_->GetLocations());
64 }
Serban Constantinescuba45db02016-07-12 22:53:02 +010065 x86_codegen->InvokeRuntime(kQuickThrowNullPointer,
Alexandre Rames8158f282015-08-07 10:26:17 +010066 instruction_,
67 instruction_->GetDexPc(),
68 this);
Roland Levillain888d0672015-11-23 18:53:50 +000069 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +010070 }
71
Alexandre Rames8158f282015-08-07 10:26:17 +010072 bool IsFatal() const OVERRIDE { return true; }
73
Alexandre Rames9931f312015-06-19 14:47:01 +010074 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathX86"; }
75
Nicolas Geoffraye5038322014-07-04 09:41:32 +010076 private:
Nicolas Geoffraye5038322014-07-04 09:41:32 +010077 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86);
78};
79
Andreas Gampe85b62f22015-09-09 13:15:38 -070080class DivZeroCheckSlowPathX86 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +000081 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000082 explicit DivZeroCheckSlowPathX86(HDivZeroCheck* instruction) : SlowPathCode(instruction) {}
Calin Juravled0d48522014-11-04 16:40:20 +000083
Alexandre Rames2ed20af2015-03-06 13:55:35 +000084 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +010085 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Calin Juravled0d48522014-11-04 16:40:20 +000086 __ Bind(GetEntryLabel());
Serban Constantinescuba45db02016-07-12 22:53:02 +010087 x86_codegen->InvokeRuntime(kQuickThrowDivZero, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +000088 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Calin Juravled0d48522014-11-04 16:40:20 +000089 }
90
Alexandre Rames8158f282015-08-07 10:26:17 +010091 bool IsFatal() const OVERRIDE { return true; }
92
Alexandre Rames9931f312015-06-19 14:47:01 +010093 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathX86"; }
94
Calin Juravled0d48522014-11-04 16:40:20 +000095 private:
Calin Juravled0d48522014-11-04 16:40:20 +000096 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86);
97};
98
Andreas Gampe85b62f22015-09-09 13:15:38 -070099class DivRemMinusOneSlowPathX86 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +0000100 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000101 DivRemMinusOneSlowPathX86(HInstruction* instruction, Register reg, bool is_div)
102 : SlowPathCode(instruction), reg_(reg), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +0000103
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000104 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +0000105 __ Bind(GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +0000106 if (is_div_) {
107 __ negl(reg_);
108 } else {
109 __ movl(reg_, Immediate(0));
110 }
Calin Juravled0d48522014-11-04 16:40:20 +0000111 __ jmp(GetExitLabel());
112 }
113
Alexandre Rames9931f312015-06-19 14:47:01 +0100114 const char* GetDescription() const OVERRIDE { return "DivRemMinusOneSlowPathX86"; }
115
Calin Juravled0d48522014-11-04 16:40:20 +0000116 private:
117 Register reg_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000118 bool is_div_;
119 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86);
Calin Juravled0d48522014-11-04 16:40:20 +0000120};
121
Andreas Gampe85b62f22015-09-09 13:15:38 -0700122class BoundsCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100123 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000124 explicit BoundsCheckSlowPathX86(HBoundsCheck* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100125
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000126 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100127 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100128 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100129 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000130 // We're moving two locations to locations that could overlap, so we need a parallel
131 // move resolver.
David Brazdil77a48ae2015-09-15 12:34:04 +0000132 if (instruction_->CanThrowIntoCatchBlock()) {
133 // Live registers will be restored in the catch block if caught.
134 SaveLiveRegisters(codegen, instruction_->GetLocations());
135 }
Mark Mendellee8d9712016-07-12 11:13:15 -0400136
137 // Are we using an array length from memory?
138 HInstruction* array_length = instruction_->InputAt(1);
139 Location length_loc = locations->InAt(1);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100140 InvokeRuntimeCallingConvention calling_convention;
Mark Mendellee8d9712016-07-12 11:13:15 -0400141 if (array_length->IsArrayLength() && array_length->IsEmittedAtUseSite()) {
142 // Load the array length into our temporary.
143 uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(array_length->AsArrayLength());
144 Location array_loc = array_length->GetLocations()->InAt(0);
145 Address array_len(array_loc.AsRegister<Register>(), len_offset);
146 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1));
147 // Check for conflicts with index.
148 if (length_loc.Equals(locations->InAt(0))) {
149 // We know we aren't using parameter 2.
150 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2));
151 }
152 __ movl(length_loc.AsRegister<Register>(), array_len);
jessicahandojo4877b792016-09-08 19:49:13 -0700153 if (mirror::kUseStringCompression) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +0100154 __ shrl(length_loc.AsRegister<Register>(), Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -0700155 }
Mark Mendellee8d9712016-07-12 11:13:15 -0400156 }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000157 x86_codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100158 locations->InAt(0),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000159 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100160 Primitive::kPrimInt,
Mark Mendellee8d9712016-07-12 11:13:15 -0400161 length_loc,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100162 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
163 Primitive::kPrimInt);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100164 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt()
165 ? kQuickThrowStringBounds
166 : kQuickThrowArrayBounds;
167 x86_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this);
Vladimir Marko87f3fcb2016-04-28 15:52:11 +0100168 CheckEntrypointTypes<kQuickThrowStringBounds, void, int32_t, int32_t>();
Roland Levillain888d0672015-11-23 18:53:50 +0000169 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100170 }
171
Alexandre Rames8158f282015-08-07 10:26:17 +0100172 bool IsFatal() const OVERRIDE { return true; }
173
Alexandre Rames9931f312015-06-19 14:47:01 +0100174 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathX86"; }
175
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100176 private:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100177 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86);
178};
179
Andreas Gampe85b62f22015-09-09 13:15:38 -0700180class SuspendCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000181 public:
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000182 SuspendCheckSlowPathX86(HSuspendCheck* instruction, HBasicBlock* successor)
David Srbecky9cd6d372016-02-09 15:24:47 +0000183 : SlowPathCode(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000184
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000185 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100186 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000187 __ Bind(GetEntryLabel());
Serban Constantinescuba45db02016-07-12 22:53:02 +0100188 x86_codegen->InvokeRuntime(kQuickTestSuspend, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000189 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100190 if (successor_ == nullptr) {
191 __ jmp(GetReturnLabel());
192 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100193 __ jmp(x86_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100194 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000195 }
196
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100197 Label* GetReturnLabel() {
198 DCHECK(successor_ == nullptr);
199 return &return_label_;
200 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000201
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100202 HBasicBlock* GetSuccessor() const {
203 return successor_;
204 }
205
Alexandre Rames9931f312015-06-19 14:47:01 +0100206 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathX86"; }
207
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000208 private:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100209 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000210 Label return_label_;
211
212 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86);
213};
214
Vladimir Markoaad75c62016-10-03 08:46:48 +0000215class LoadStringSlowPathX86 : public SlowPathCode {
216 public:
217 explicit LoadStringSlowPathX86(HLoadString* instruction): SlowPathCode(instruction) {}
218
219 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
220 LocationSummary* locations = instruction_->GetLocations();
221 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
222
223 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
224 __ Bind(GetEntryLabel());
225 SaveLiveRegisters(codegen, locations);
226
227 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe8a0128a2016-11-28 07:38:35 -0800228 const uint32_t string_index = instruction_->AsLoadString()->GetStringIndex().index_;
Vladimir Markoaad75c62016-10-03 08:46:48 +0000229 __ movl(calling_convention.GetRegisterAt(0), Immediate(string_index));
230 x86_codegen->InvokeRuntime(kQuickResolveString, instruction_, instruction_->GetDexPc(), this);
231 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
232 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
233 RestoreLiveRegisters(codegen, locations);
234
235 // Store the resolved String to the BSS entry.
236 Register method_address = locations->InAt(0).AsRegister<Register>();
237 __ movl(Address(method_address, CodeGeneratorX86::kDummy32BitOffset),
238 locations->Out().AsRegister<Register>());
239 Label* fixup_label = x86_codegen->NewStringBssEntryPatch(instruction_->AsLoadString());
240 __ Bind(fixup_label);
241
242 __ jmp(GetExitLabel());
243 }
244
245 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathX86"; }
246
247 private:
248 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86);
249};
250
Andreas Gampe85b62f22015-09-09 13:15:38 -0700251class LoadClassSlowPathX86 : public SlowPathCode {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000252 public:
253 LoadClassSlowPathX86(HLoadClass* cls,
254 HInstruction* at,
255 uint32_t dex_pc,
256 bool do_clinit)
David Srbecky9cd6d372016-02-09 15:24:47 +0000257 : SlowPathCode(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000258 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
259 }
260
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000261 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000262 LocationSummary* locations = at_->GetLocations();
263 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
264 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000265 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000266
267 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampea5b09a62016-11-17 15:21:22 -0800268 __ movl(calling_convention.GetRegisterAt(0), Immediate(cls_->GetTypeIndex().index_));
Serban Constantinescuba45db02016-07-12 22:53:02 +0100269 x86_codegen->InvokeRuntime(do_clinit_ ? kQuickInitializeStaticStorage
270 : kQuickInitializeType,
Alexandre Rames8158f282015-08-07 10:26:17 +0100271 at_, dex_pc_, this);
Roland Levillain888d0672015-11-23 18:53:50 +0000272 if (do_clinit_) {
273 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
274 } else {
275 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
276 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000277
278 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000279 Location out = locations->Out();
280 if (out.IsValid()) {
281 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
282 x86_codegen->Move32(out, Location::RegisterLocation(EAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000283 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000284
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000285 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000286 __ jmp(GetExitLabel());
287 }
288
Alexandre Rames9931f312015-06-19 14:47:01 +0100289 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathX86"; }
290
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000291 private:
292 // The class this slow path will load.
293 HLoadClass* const cls_;
294
295 // The instruction where this slow path is happening.
296 // (Might be the load class or an initialization check).
297 HInstruction* const at_;
298
299 // The dex PC of `at_`.
300 const uint32_t dex_pc_;
301
302 // Whether to initialize the class.
303 const bool do_clinit_;
304
305 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86);
306};
307
Andreas Gampe85b62f22015-09-09 13:15:38 -0700308class TypeCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000309 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000310 TypeCheckSlowPathX86(HInstruction* instruction, bool is_fatal)
David Srbecky9cd6d372016-02-09 15:24:47 +0000311 : SlowPathCode(instruction), is_fatal_(is_fatal) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000312
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000313 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000314 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000315 DCHECK(instruction_->IsCheckCast()
316 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000317
318 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
319 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000320
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000321 if (!is_fatal_) {
322 SaveLiveRegisters(codegen, locations);
323 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000324
325 // We're moving two locations to locations that could overlap, so we need a parallel
326 // move resolver.
327 InvokeRuntimeCallingConvention calling_convention;
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800328 x86_codegen->EmitParallelMoves(locations->InAt(0),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800329 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
330 Primitive::kPrimNot,
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800331 locations->InAt(1),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800332 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
333 Primitive::kPrimNot);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000334 if (instruction_->IsInstanceOf()) {
Serban Constantinescuba45db02016-07-12 22:53:02 +0100335 x86_codegen->InvokeRuntime(kQuickInstanceofNonTrivial,
Alexandre Rames8158f282015-08-07 10:26:17 +0100336 instruction_,
337 instruction_->GetDexPc(),
338 this);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800339 CheckEntrypointTypes<kQuickInstanceofNonTrivial, size_t, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000340 } else {
341 DCHECK(instruction_->IsCheckCast());
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800342 x86_codegen->InvokeRuntime(kQuickCheckInstanceOf,
343 instruction_,
344 instruction_->GetDexPc(),
345 this);
346 CheckEntrypointTypes<kQuickCheckInstanceOf, void, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000347 }
348
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000349 if (!is_fatal_) {
350 if (instruction_->IsInstanceOf()) {
351 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
352 }
353 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray75374372015-09-17 17:12:19 +0000354
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000355 __ jmp(GetExitLabel());
356 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000357 }
358
Alexandre Rames9931f312015-06-19 14:47:01 +0100359 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathX86"; }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000360 bool IsFatal() const OVERRIDE { return is_fatal_; }
Alexandre Rames9931f312015-06-19 14:47:01 +0100361
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000362 private:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000363 const bool is_fatal_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000364
365 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86);
366};
367
Andreas Gampe85b62f22015-09-09 13:15:38 -0700368class DeoptimizationSlowPathX86 : public SlowPathCode {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700369 public:
Aart Bik42249c32016-01-07 15:33:50 -0800370 explicit DeoptimizationSlowPathX86(HDeoptimize* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000371 : SlowPathCode(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700372
373 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +0100374 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700375 __ Bind(GetEntryLabel());
Serban Constantinescuba45db02016-07-12 22:53:02 +0100376 x86_codegen->InvokeRuntime(kQuickDeoptimize, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000377 CheckEntrypointTypes<kQuickDeoptimize, void, void>();
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700378 }
379
Alexandre Rames9931f312015-06-19 14:47:01 +0100380 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathX86"; }
381
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700382 private:
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700383 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86);
384};
385
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100386class ArraySetSlowPathX86 : public SlowPathCode {
387 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000388 explicit ArraySetSlowPathX86(HInstruction* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100389
390 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
391 LocationSummary* locations = instruction_->GetLocations();
392 __ Bind(GetEntryLabel());
393 SaveLiveRegisters(codegen, locations);
394
395 InvokeRuntimeCallingConvention calling_convention;
396 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
397 parallel_move.AddMove(
398 locations->InAt(0),
399 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
400 Primitive::kPrimNot,
401 nullptr);
402 parallel_move.AddMove(
403 locations->InAt(1),
404 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
405 Primitive::kPrimInt,
406 nullptr);
407 parallel_move.AddMove(
408 locations->InAt(2),
409 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
410 Primitive::kPrimNot,
411 nullptr);
412 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
413
414 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100415 x86_codegen->InvokeRuntime(kQuickAputObject, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000416 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100417 RestoreLiveRegisters(codegen, locations);
418 __ jmp(GetExitLabel());
419 }
420
421 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathX86"; }
422
423 private:
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100424 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathX86);
425};
426
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100427// Slow path marking an object reference `ref` during a read
428// barrier. The field `obj.field` in the object `obj` holding this
429// reference does not get updated by this slow path after marking (see
430// ReadBarrierMarkAndUpdateFieldSlowPathX86 below for that).
431//
432// This means that after the execution of this slow path, `ref` will
433// always be up-to-date, but `obj.field` may not; i.e., after the
434// flip, `ref` will be a to-space reference, but `obj.field` will
435// probably still be a from-space reference (unless it gets updated by
436// another thread, or if another thread installed another object
437// reference (different from `ref`) in `obj.field`).
Roland Levillain7c1559a2015-12-15 10:55:36 +0000438class ReadBarrierMarkSlowPathX86 : public SlowPathCode {
439 public:
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100440 ReadBarrierMarkSlowPathX86(HInstruction* instruction,
441 Location ref,
442 bool unpoison_ref_before_marking)
443 : SlowPathCode(instruction),
444 ref_(ref),
445 unpoison_ref_before_marking_(unpoison_ref_before_marking) {
Roland Levillain7c1559a2015-12-15 10:55:36 +0000446 DCHECK(kEmitCompilerReadBarrier);
447 }
448
449 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathX86"; }
450
451 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
452 LocationSummary* locations = instruction_->GetLocations();
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100453 Register ref_reg = ref_.AsRegister<Register>();
Roland Levillain7c1559a2015-12-15 10:55:36 +0000454 DCHECK(locations->CanCall());
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100455 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
Roland Levillain7c1559a2015-12-15 10:55:36 +0000456 DCHECK(instruction_->IsInstanceFieldGet() ||
457 instruction_->IsStaticFieldGet() ||
458 instruction_->IsArrayGet() ||
Roland Levillain16d9f942016-08-25 17:27:56 +0100459 instruction_->IsArraySet() ||
Roland Levillain7c1559a2015-12-15 10:55:36 +0000460 instruction_->IsLoadClass() ||
461 instruction_->IsLoadString() ||
462 instruction_->IsInstanceOf() ||
Roland Levillain3d312422016-06-23 13:53:42 +0100463 instruction_->IsCheckCast() ||
Roland Levillain0b671c02016-08-19 12:02:34 +0100464 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()) ||
465 (instruction_->IsInvokeStaticOrDirect() && instruction_->GetLocations()->Intrinsified()))
Roland Levillain7c1559a2015-12-15 10:55:36 +0000466 << "Unexpected instruction in read barrier marking slow path: "
467 << instruction_->DebugName();
468
469 __ Bind(GetEntryLabel());
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100470 if (unpoison_ref_before_marking_) {
Vladimir Marko953437b2016-08-24 08:30:46 +0000471 // Object* ref = ref_addr->AsMirrorPtr()
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100472 __ MaybeUnpoisonHeapReference(ref_reg);
Vladimir Marko953437b2016-08-24 08:30:46 +0000473 }
Roland Levillain4359e612016-07-20 11:32:19 +0100474 // No need to save live registers; it's taken care of by the
475 // entrypoint. Also, there is no need to update the stack mask,
476 // as this runtime call will not trigger a garbage collection.
Roland Levillain7c1559a2015-12-15 10:55:36 +0000477 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100478 DCHECK_NE(ref_reg, ESP);
479 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg;
Roland Levillain02b75802016-07-13 11:54:35 +0100480 // "Compact" slow path, saving two moves.
481 //
482 // Instead of using the standard runtime calling convention (input
483 // and output in EAX):
484 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100485 // EAX <- ref
Roland Levillain02b75802016-07-13 11:54:35 +0100486 // EAX <- ReadBarrierMark(EAX)
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100487 // ref <- EAX
Roland Levillain02b75802016-07-13 11:54:35 +0100488 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100489 // we just use rX (the register containing `ref`) as input and output
Roland Levillain02b75802016-07-13 11:54:35 +0100490 // of a dedicated entrypoint:
491 //
492 // rX <- ReadBarrierMarkRegX(rX)
493 //
494 int32_t entry_point_offset =
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100495 CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kX86PointerSize>(ref_reg);
Roland Levillaindec8f632016-07-22 17:10:06 +0100496 // This runtime call does not require a stack map.
497 x86_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
Roland Levillain7c1559a2015-12-15 10:55:36 +0000498 __ jmp(GetExitLabel());
499 }
500
501 private:
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100502 // The location (register) of the marked object reference.
503 const Location ref_;
504 // Should the reference in `ref_` be unpoisoned prior to marking it?
505 const bool unpoison_ref_before_marking_;
Roland Levillain7c1559a2015-12-15 10:55:36 +0000506
507 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathX86);
508};
509
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100510// Slow path marking an object reference `ref` during a read barrier,
511// and if needed, atomically updating the field `obj.field` in the
512// object `obj` holding this reference after marking (contrary to
513// ReadBarrierMarkSlowPathX86 above, which never tries to update
514// `obj.field`).
515//
516// This means that after the execution of this slow path, both `ref`
517// and `obj.field` will be up-to-date; i.e., after the flip, both will
518// hold the same to-space reference (unless another thread installed
519// another object reference (different from `ref`) in `obj.field`).
520class ReadBarrierMarkAndUpdateFieldSlowPathX86 : public SlowPathCode {
521 public:
522 ReadBarrierMarkAndUpdateFieldSlowPathX86(HInstruction* instruction,
523 Location ref,
524 Register obj,
525 const Address& field_addr,
526 bool unpoison_ref_before_marking,
527 Register temp)
528 : SlowPathCode(instruction),
529 ref_(ref),
530 obj_(obj),
531 field_addr_(field_addr),
532 unpoison_ref_before_marking_(unpoison_ref_before_marking),
533 temp_(temp) {
534 DCHECK(kEmitCompilerReadBarrier);
535 }
536
537 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkAndUpdateFieldSlowPathX86"; }
538
539 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
540 LocationSummary* locations = instruction_->GetLocations();
541 Register ref_reg = ref_.AsRegister<Register>();
542 DCHECK(locations->CanCall());
543 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
544 // This slow path is only used by the UnsafeCASObject intrinsic.
545 DCHECK((instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
546 << "Unexpected instruction in read barrier marking and field updating slow path: "
547 << instruction_->DebugName();
548 DCHECK(instruction_->GetLocations()->Intrinsified());
549 DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kUnsafeCASObject);
550
551 __ Bind(GetEntryLabel());
552 if (unpoison_ref_before_marking_) {
553 // Object* ref = ref_addr->AsMirrorPtr()
554 __ MaybeUnpoisonHeapReference(ref_reg);
555 }
556
557 // Save the old (unpoisoned) reference.
558 __ movl(temp_, ref_reg);
559
560 // No need to save live registers; it's taken care of by the
561 // entrypoint. Also, there is no need to update the stack mask,
562 // as this runtime call will not trigger a garbage collection.
563 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
564 DCHECK_NE(ref_reg, ESP);
565 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg;
566 // "Compact" slow path, saving two moves.
567 //
568 // Instead of using the standard runtime calling convention (input
569 // and output in EAX):
570 //
571 // EAX <- ref
572 // EAX <- ReadBarrierMark(EAX)
573 // ref <- EAX
574 //
575 // we just use rX (the register containing `ref`) as input and output
576 // of a dedicated entrypoint:
577 //
578 // rX <- ReadBarrierMarkRegX(rX)
579 //
580 int32_t entry_point_offset =
581 CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kX86PointerSize>(ref_reg);
582 // This runtime call does not require a stack map.
583 x86_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
584
585 // If the new reference is different from the old reference,
586 // update the field in the holder (`*field_addr`).
587 //
588 // Note that this field could also hold a different object, if
589 // another thread had concurrently changed it. In that case, the
590 // LOCK CMPXCHGL instruction in the compare-and-set (CAS)
591 // operation below would abort the CAS, leaving the field as-is.
592 NearLabel done;
593 __ cmpl(temp_, ref_reg);
594 __ j(kEqual, &done);
595
596 // Update the the holder's field atomically. This may fail if
597 // mutator updates before us, but it's OK. This is achieved
598 // using a strong compare-and-set (CAS) operation with relaxed
599 // memory synchronization ordering, where the expected value is
600 // the old reference and the desired value is the new reference.
601 // This operation is implemented with a 32-bit LOCK CMPXLCHG
602 // instruction, which requires the expected value (the old
603 // reference) to be in EAX. Save EAX beforehand, and move the
604 // expected value (stored in `temp_`) into EAX.
605 __ pushl(EAX);
606 __ movl(EAX, temp_);
607
608 // Convenience aliases.
609 Register base = obj_;
610 Register expected = EAX;
611 Register value = ref_reg;
612
613 bool base_equals_value = (base == value);
614 if (kPoisonHeapReferences) {
615 if (base_equals_value) {
616 // If `base` and `value` are the same register location, move
617 // `value` to a temporary register. This way, poisoning
618 // `value` won't invalidate `base`.
619 value = temp_;
620 __ movl(value, base);
621 }
622
623 // Check that the register allocator did not assign the location
624 // of `expected` (EAX) to `value` nor to `base`, so that heap
625 // poisoning (when enabled) works as intended below.
626 // - If `value` were equal to `expected`, both references would
627 // be poisoned twice, meaning they would not be poisoned at
628 // all, as heap poisoning uses address negation.
629 // - If `base` were equal to `expected`, poisoning `expected`
630 // would invalidate `base`.
631 DCHECK_NE(value, expected);
632 DCHECK_NE(base, expected);
633
634 __ PoisonHeapReference(expected);
635 __ PoisonHeapReference(value);
636 }
637
638 __ LockCmpxchgl(field_addr_, value);
639
640 // If heap poisoning is enabled, we need to unpoison the values
641 // that were poisoned earlier.
642 if (kPoisonHeapReferences) {
643 if (base_equals_value) {
644 // `value` has been moved to a temporary register, no need
645 // to unpoison it.
646 } else {
647 __ UnpoisonHeapReference(value);
648 }
649 // No need to unpoison `expected` (EAX), as it is be overwritten below.
650 }
651
652 // Restore EAX.
653 __ popl(EAX);
654
655 __ Bind(&done);
656 __ jmp(GetExitLabel());
657 }
658
659 private:
660 // The location (register) of the marked object reference.
661 const Location ref_;
662 // The register containing the object holding the marked object reference field.
663 const Register obj_;
664 // The address of the marked reference field. The base of this address must be `obj_`.
665 const Address field_addr_;
666
667 // Should the reference in `ref_` be unpoisoned prior to marking it?
668 const bool unpoison_ref_before_marking_;
669
670 const Register temp_;
671
672 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkAndUpdateFieldSlowPathX86);
673};
674
Roland Levillain0d5a2812015-11-13 10:07:31 +0000675// Slow path generating a read barrier for a heap reference.
676class ReadBarrierForHeapReferenceSlowPathX86 : public SlowPathCode {
677 public:
678 ReadBarrierForHeapReferenceSlowPathX86(HInstruction* instruction,
679 Location out,
680 Location ref,
681 Location obj,
682 uint32_t offset,
683 Location index)
David Srbecky9cd6d372016-02-09 15:24:47 +0000684 : SlowPathCode(instruction),
Roland Levillain0d5a2812015-11-13 10:07:31 +0000685 out_(out),
686 ref_(ref),
687 obj_(obj),
688 offset_(offset),
689 index_(index) {
690 DCHECK(kEmitCompilerReadBarrier);
691 // If `obj` is equal to `out` or `ref`, it means the initial object
692 // has been overwritten by (or after) the heap object reference load
693 // to be instrumented, e.g.:
694 //
695 // __ movl(out, Address(out, offset));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000696 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000697 //
698 // In that case, we have lost the information about the original
699 // object, and the emitted read barrier cannot work properly.
700 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
701 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
702 }
703
704 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
705 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
706 LocationSummary* locations = instruction_->GetLocations();
707 Register reg_out = out_.AsRegister<Register>();
708 DCHECK(locations->CanCall());
709 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillain3d312422016-06-23 13:53:42 +0100710 DCHECK(instruction_->IsInstanceFieldGet() ||
711 instruction_->IsStaticFieldGet() ||
712 instruction_->IsArrayGet() ||
713 instruction_->IsInstanceOf() ||
714 instruction_->IsCheckCast() ||
Roland Levillaindec8f632016-07-22 17:10:06 +0100715 (instruction_->IsInvokeVirtual()) && instruction_->GetLocations()->Intrinsified())
Roland Levillain7c1559a2015-12-15 10:55:36 +0000716 << "Unexpected instruction in read barrier for heap reference slow path: "
717 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000718
719 __ Bind(GetEntryLabel());
720 SaveLiveRegisters(codegen, locations);
721
722 // We may have to change the index's value, but as `index_` is a
723 // constant member (like other "inputs" of this slow path),
724 // introduce a copy of it, `index`.
725 Location index = index_;
726 if (index_.IsValid()) {
Roland Levillain3d312422016-06-23 13:53:42 +0100727 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
Roland Levillain0d5a2812015-11-13 10:07:31 +0000728 if (instruction_->IsArrayGet()) {
729 // Compute the actual memory offset and store it in `index`.
730 Register index_reg = index_.AsRegister<Register>();
731 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg));
732 if (codegen->IsCoreCalleeSaveRegister(index_reg)) {
733 // We are about to change the value of `index_reg` (see the
734 // calls to art::x86::X86Assembler::shll and
735 // art::x86::X86Assembler::AddImmediate below), but it has
736 // not been saved by the previous call to
737 // art::SlowPathCode::SaveLiveRegisters, as it is a
738 // callee-save register --
739 // art::SlowPathCode::SaveLiveRegisters does not consider
740 // callee-save registers, as it has been designed with the
741 // assumption that callee-save registers are supposed to be
742 // handled by the called function. So, as a callee-save
743 // register, `index_reg` _would_ eventually be saved onto
744 // the stack, but it would be too late: we would have
745 // changed its value earlier. Therefore, we manually save
746 // it here into another freely available register,
747 // `free_reg`, chosen of course among the caller-save
748 // registers (as a callee-save `free_reg` register would
749 // exhibit the same problem).
750 //
751 // Note we could have requested a temporary register from
752 // the register allocator instead; but we prefer not to, as
753 // this is a slow path, and we know we can find a
754 // caller-save register that is available.
755 Register free_reg = FindAvailableCallerSaveRegister(codegen);
756 __ movl(free_reg, index_reg);
757 index_reg = free_reg;
758 index = Location::RegisterLocation(index_reg);
759 } else {
760 // The initial register stored in `index_` has already been
761 // saved in the call to art::SlowPathCode::SaveLiveRegisters
762 // (as it is not a callee-save register), so we can freely
763 // use it.
764 }
765 // Shifting the index value contained in `index_reg` by the scale
766 // factor (2) cannot overflow in practice, as the runtime is
767 // unable to allocate object arrays with a size larger than
768 // 2^26 - 1 (that is, 2^28 - 4 bytes).
769 __ shll(index_reg, Immediate(TIMES_4));
770 static_assert(
771 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
772 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
773 __ AddImmediate(index_reg, Immediate(offset_));
774 } else {
Roland Levillain3d312422016-06-23 13:53:42 +0100775 // In the case of the UnsafeGetObject/UnsafeGetObjectVolatile
776 // intrinsics, `index_` is not shifted by a scale factor of 2
777 // (as in the case of ArrayGet), as it is actually an offset
778 // to an object field within an object.
779 DCHECK(instruction_->IsInvoke()) << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000780 DCHECK(instruction_->GetLocations()->Intrinsified());
781 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
782 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
783 << instruction_->AsInvoke()->GetIntrinsic();
784 DCHECK_EQ(offset_, 0U);
785 DCHECK(index_.IsRegisterPair());
786 // UnsafeGet's offset location is a register pair, the low
787 // part contains the correct offset.
788 index = index_.ToLow();
789 }
790 }
791
792 // We're moving two or three locations to locations that could
793 // overlap, so we need a parallel move resolver.
794 InvokeRuntimeCallingConvention calling_convention;
795 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
796 parallel_move.AddMove(ref_,
797 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
798 Primitive::kPrimNot,
799 nullptr);
800 parallel_move.AddMove(obj_,
801 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
802 Primitive::kPrimNot,
803 nullptr);
804 if (index.IsValid()) {
805 parallel_move.AddMove(index,
806 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
807 Primitive::kPrimInt,
808 nullptr);
809 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
810 } else {
811 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
812 __ movl(calling_convention.GetRegisterAt(2), Immediate(offset_));
813 }
Serban Constantinescuba45db02016-07-12 22:53:02 +0100814 x86_codegen->InvokeRuntime(kQuickReadBarrierSlow, instruction_, instruction_->GetDexPc(), this);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000815 CheckEntrypointTypes<
816 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
817 x86_codegen->Move32(out_, Location::RegisterLocation(EAX));
818
819 RestoreLiveRegisters(codegen, locations);
820 __ jmp(GetExitLabel());
821 }
822
823 const char* GetDescription() const OVERRIDE { return "ReadBarrierForHeapReferenceSlowPathX86"; }
824
825 private:
826 Register FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
827 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
828 size_t obj = static_cast<int>(obj_.AsRegister<Register>());
829 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
830 if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) {
831 return static_cast<Register>(i);
832 }
833 }
834 // We shall never fail to find a free caller-save register, as
835 // there are more than two core caller-save registers on x86
836 // (meaning it is possible to find one which is different from
837 // `ref` and `obj`).
838 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
839 LOG(FATAL) << "Could not find a free caller-save register";
840 UNREACHABLE();
841 }
842
Roland Levillain0d5a2812015-11-13 10:07:31 +0000843 const Location out_;
844 const Location ref_;
845 const Location obj_;
846 const uint32_t offset_;
847 // An additional location containing an index to an array.
848 // Only used for HArrayGet and the UnsafeGetObject &
849 // UnsafeGetObjectVolatile intrinsics.
850 const Location index_;
851
852 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathX86);
853};
854
855// Slow path generating a read barrier for a GC root.
856class ReadBarrierForRootSlowPathX86 : public SlowPathCode {
857 public:
858 ReadBarrierForRootSlowPathX86(HInstruction* instruction, Location out, Location root)
David Srbecky9cd6d372016-02-09 15:24:47 +0000859 : SlowPathCode(instruction), out_(out), root_(root) {
Roland Levillain7c1559a2015-12-15 10:55:36 +0000860 DCHECK(kEmitCompilerReadBarrier);
861 }
Roland Levillain0d5a2812015-11-13 10:07:31 +0000862
863 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
864 LocationSummary* locations = instruction_->GetLocations();
865 Register reg_out = out_.AsRegister<Register>();
866 DCHECK(locations->CanCall());
867 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000868 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
869 << "Unexpected instruction in read barrier for GC root slow path: "
870 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000871
872 __ Bind(GetEntryLabel());
873 SaveLiveRegisters(codegen, locations);
874
875 InvokeRuntimeCallingConvention calling_convention;
876 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
877 x86_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100878 x86_codegen->InvokeRuntime(kQuickReadBarrierForRootSlow,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000879 instruction_,
880 instruction_->GetDexPc(),
881 this);
882 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
883 x86_codegen->Move32(out_, Location::RegisterLocation(EAX));
884
885 RestoreLiveRegisters(codegen, locations);
886 __ jmp(GetExitLabel());
887 }
888
889 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathX86"; }
890
891 private:
Roland Levillain0d5a2812015-11-13 10:07:31 +0000892 const Location out_;
893 const Location root_;
894
895 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathX86);
896};
897
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100898#undef __
Roland Levillain7cbd27f2016-08-11 23:53:33 +0100899// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
900#define __ down_cast<X86Assembler*>(GetAssembler())-> // NOLINT
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100901
Aart Bike9f37602015-10-09 11:15:55 -0700902inline Condition X86Condition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700903 switch (cond) {
904 case kCondEQ: return kEqual;
905 case kCondNE: return kNotEqual;
906 case kCondLT: return kLess;
907 case kCondLE: return kLessEqual;
908 case kCondGT: return kGreater;
909 case kCondGE: return kGreaterEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700910 case kCondB: return kBelow;
911 case kCondBE: return kBelowEqual;
912 case kCondA: return kAbove;
913 case kCondAE: return kAboveEqual;
Dave Allison20dfc792014-06-16 20:44:29 -0700914 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100915 LOG(FATAL) << "Unreachable";
916 UNREACHABLE();
917}
918
Aart Bike9f37602015-10-09 11:15:55 -0700919// Maps signed condition to unsigned condition and FP condition to x86 name.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100920inline Condition X86UnsignedOrFPCondition(IfCondition cond) {
921 switch (cond) {
922 case kCondEQ: return kEqual;
923 case kCondNE: return kNotEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700924 // Signed to unsigned, and FP to x86 name.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100925 case kCondLT: return kBelow;
926 case kCondLE: return kBelowEqual;
927 case kCondGT: return kAbove;
928 case kCondGE: return kAboveEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700929 // Unsigned remain unchanged.
930 case kCondB: return kBelow;
931 case kCondBE: return kBelowEqual;
932 case kCondA: return kAbove;
933 case kCondAE: return kAboveEqual;
Roland Levillain4fa13f62015-07-06 18:11:54 +0100934 }
935 LOG(FATAL) << "Unreachable";
936 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700937}
938
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100939void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100940 stream << Register(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100941}
942
943void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100944 stream << XmmRegister(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100945}
946
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100947size_t CodeGeneratorX86::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
948 __ movl(Address(ESP, stack_index), static_cast<Register>(reg_id));
949 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100950}
951
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100952size_t CodeGeneratorX86::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
953 __ movl(static_cast<Register>(reg_id), Address(ESP, stack_index));
954 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100955}
956
Mark Mendell7c8d0092015-01-26 11:21:33 -0500957size_t CodeGeneratorX86::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
958 __ movsd(Address(ESP, stack_index), XmmRegister(reg_id));
959 return GetFloatingPointSpillSlotSize();
960}
961
962size_t CodeGeneratorX86::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
963 __ movsd(XmmRegister(reg_id), Address(ESP, stack_index));
964 return GetFloatingPointSpillSlotSize();
965}
966
Calin Juravle175dc732015-08-25 15:42:32 +0100967void CodeGeneratorX86::InvokeRuntime(QuickEntrypointEnum entrypoint,
968 HInstruction* instruction,
969 uint32_t dex_pc,
970 SlowPathCode* slow_path) {
Alexandre Rames91a65162016-09-19 13:54:30 +0100971 ValidateInvokeRuntime(entrypoint, instruction, slow_path);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100972 GenerateInvokeRuntime(GetThreadOffset<kX86PointerSize>(entrypoint).Int32Value());
973 if (EntrypointRequiresStackMap(entrypoint)) {
974 RecordPcInfo(instruction, dex_pc, slow_path);
975 }
Alexandre Rames8158f282015-08-07 10:26:17 +0100976}
977
Roland Levillaindec8f632016-07-22 17:10:06 +0100978void CodeGeneratorX86::InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset,
979 HInstruction* instruction,
980 SlowPathCode* slow_path) {
981 ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction, slow_path);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100982 GenerateInvokeRuntime(entry_point_offset);
983}
984
985void CodeGeneratorX86::GenerateInvokeRuntime(int32_t entry_point_offset) {
Roland Levillaindec8f632016-07-22 17:10:06 +0100986 __ fs()->call(Address::Absolute(entry_point_offset));
987}
988
Mark Mendellfb8d2792015-03-31 22:16:59 -0400989CodeGeneratorX86::CodeGeneratorX86(HGraph* graph,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000990 const X86InstructionSetFeatures& isa_features,
991 const CompilerOptions& compiler_options,
992 OptimizingCompilerStats* stats)
Mark Mendell5f874182015-03-04 15:42:45 -0500993 : CodeGenerator(graph,
994 kNumberOfCpuRegisters,
995 kNumberOfXmmRegisters,
996 kNumberOfRegisterPairs,
997 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
998 arraysize(kCoreCalleeSaves))
999 | (1 << kFakeReturnRegister),
Serban Constantinescuecc43662015-08-13 13:33:12 +01001000 0,
1001 compiler_options,
1002 stats),
Vladimir Marko225b6462015-09-28 12:17:40 +01001003 block_labels_(nullptr),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001004 location_builder_(graph, this),
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001005 instruction_visitor_(graph, this),
Mark Mendellfb8d2792015-03-31 22:16:59 -04001006 move_resolver_(graph->GetArena(), this),
Vladimir Marko93205e32016-04-13 11:59:46 +01001007 assembler_(graph->GetArena()),
Vladimir Marko58155012015-08-19 12:49:41 +00001008 isa_features_(isa_features),
Vladimir Marko0f7dca42015-11-02 14:36:43 +00001009 pc_relative_dex_cache_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001010 simple_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1011 string_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01001012 type_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001013 jit_string_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001014 jit_class_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Marko93205e32016-04-13 11:59:46 +01001015 constant_area_start_(-1),
1016 fixups_to_jump_tables_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1017 method_address_offset_(-1) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001018 // Use a fake return address register to mimic Quick.
1019 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001020}
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001021
David Brazdil58282f42016-01-14 12:45:10 +00001022void CodeGeneratorX86::SetupBlockedRegisters() const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001023 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +01001024 blocked_core_registers_[ESP] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001025}
1026
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001027InstructionCodeGeneratorX86::InstructionCodeGeneratorX86(HGraph* graph, CodeGeneratorX86* codegen)
Aart Bik42249c32016-01-07 15:33:50 -08001028 : InstructionCodeGenerator(graph, codegen),
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001029 assembler_(codegen->GetAssembler()),
1030 codegen_(codegen) {}
1031
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001032static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001033 return dwarf::Reg::X86Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001034}
1035
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001036void CodeGeneratorX86::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001037 __ cfi().SetCurrentCFAOffset(kX86WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001038 __ Bind(&frame_entry_label_);
Roland Levillain199f3362014-11-27 17:15:16 +00001039 bool skip_overflow_check =
1040 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001041 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Calin Juravle93edf732015-01-20 20:14:07 +00001042
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001043 if (!skip_overflow_check) {
Nicolas Geoffray397f2e42014-07-23 12:57:19 +01001044 __ testl(EAX, Address(ESP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86))));
Nicolas Geoffray39468442014-09-02 15:17:15 +01001045 RecordPcInfo(nullptr, 0);
Nicolas Geoffray397f2e42014-07-23 12:57:19 +01001046 }
1047
Mark Mendell5f874182015-03-04 15:42:45 -05001048 if (HasEmptyFrame()) {
1049 return;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001050 }
Mark Mendell5f874182015-03-04 15:42:45 -05001051
1052 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
1053 Register reg = kCoreCalleeSaves[i];
1054 if (allocated_registers_.ContainsCoreRegister(reg)) {
1055 __ pushl(reg);
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001056 __ cfi().AdjustCFAOffset(kX86WordSize);
1057 __ cfi().RelOffset(DWARFReg(reg), 0);
Mark Mendell5f874182015-03-04 15:42:45 -05001058 }
1059 }
1060
Mingyao Yang063fc772016-08-02 11:02:54 -07001061 if (GetGraph()->HasShouldDeoptimizeFlag()) {
1062 // Initialize should_deoptimize flag to 0.
1063 __ movl(Address(ESP, -kShouldDeoptimizeFlagSize), Immediate(0));
1064 }
1065
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001066 int adjust = GetFrameSize() - FrameEntrySpillSize();
1067 __ subl(ESP, Immediate(adjust));
1068 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01001069 // Save the current method if we need it. Note that we do not
1070 // do this in HCurrentMethod, as the instruction might have been removed
1071 // in the SSA graph.
1072 if (RequiresCurrentMethod()) {
1073 __ movl(Address(ESP, kCurrentMethodStackOffset), kMethodRegisterArgument);
1074 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001075}
1076
1077void CodeGeneratorX86::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +01001078 __ cfi().RememberState();
1079 if (!HasEmptyFrame()) {
1080 int adjust = GetFrameSize() - FrameEntrySpillSize();
1081 __ addl(ESP, Immediate(adjust));
1082 __ cfi().AdjustCFAOffset(-adjust);
Mark Mendell5f874182015-03-04 15:42:45 -05001083
David Srbeckyc34dc932015-04-12 09:27:43 +01001084 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
1085 Register reg = kCoreCalleeSaves[i];
1086 if (allocated_registers_.ContainsCoreRegister(reg)) {
1087 __ popl(reg);
1088 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86WordSize));
1089 __ cfi().Restore(DWARFReg(reg));
1090 }
Mark Mendell5f874182015-03-04 15:42:45 -05001091 }
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001092 }
David Srbeckyc34dc932015-04-12 09:27:43 +01001093 __ ret();
1094 __ cfi().RestoreState();
1095 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001096}
1097
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001098void CodeGeneratorX86::Bind(HBasicBlock* block) {
1099 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001100}
1101
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001102Location InvokeDexCallingConventionVisitorX86::GetReturnLocation(Primitive::Type type) const {
1103 switch (type) {
1104 case Primitive::kPrimBoolean:
1105 case Primitive::kPrimByte:
1106 case Primitive::kPrimChar:
1107 case Primitive::kPrimShort:
1108 case Primitive::kPrimInt:
1109 case Primitive::kPrimNot:
1110 return Location::RegisterLocation(EAX);
1111
1112 case Primitive::kPrimLong:
1113 return Location::RegisterPairLocation(EAX, EDX);
1114
1115 case Primitive::kPrimVoid:
1116 return Location::NoLocation();
1117
1118 case Primitive::kPrimDouble:
1119 case Primitive::kPrimFloat:
1120 return Location::FpuRegisterLocation(XMM0);
1121 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +01001122
1123 UNREACHABLE();
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001124}
1125
1126Location InvokeDexCallingConventionVisitorX86::GetMethodLocation() const {
1127 return Location::RegisterLocation(kMethodRegisterArgument);
1128}
1129
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001130Location InvokeDexCallingConventionVisitorX86::GetNextLocation(Primitive::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001131 switch (type) {
1132 case Primitive::kPrimBoolean:
1133 case Primitive::kPrimByte:
1134 case Primitive::kPrimChar:
1135 case Primitive::kPrimShort:
1136 case Primitive::kPrimInt:
1137 case Primitive::kPrimNot: {
1138 uint32_t index = gp_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001139 stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001140 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001141 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001142 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001143 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001144 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001145 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001146
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001147 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001148 uint32_t index = gp_index_;
1149 gp_index_ += 2;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001150 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001151 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001152 X86ManagedRegister pair = X86ManagedRegister::FromRegisterPair(
1153 calling_convention.GetRegisterPairAt(index));
1154 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001155 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001156 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1157 }
1158 }
1159
1160 case Primitive::kPrimFloat: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001161 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001162 stack_index_++;
1163 if (index < calling_convention.GetNumberOfFpuRegisters()) {
1164 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
1165 } else {
1166 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1167 }
1168 }
1169
1170 case Primitive::kPrimDouble: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001171 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001172 stack_index_ += 2;
1173 if (index < calling_convention.GetNumberOfFpuRegisters()) {
1174 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
1175 } else {
1176 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001177 }
1178 }
1179
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001180 case Primitive::kPrimVoid:
1181 LOG(FATAL) << "Unexpected parameter type " << type;
1182 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001183 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00001184 return Location::NoLocation();
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001185}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001186
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001187void CodeGeneratorX86::Move32(Location destination, Location source) {
1188 if (source.Equals(destination)) {
1189 return;
1190 }
1191 if (destination.IsRegister()) {
1192 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001193 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001194 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001195 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001196 } else {
1197 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001198 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001199 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001200 } else if (destination.IsFpuRegister()) {
1201 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001202 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001203 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001204 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001205 } else {
1206 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001207 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001208 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001209 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001210 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001211 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001212 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001213 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001214 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Mark Mendell7c8d0092015-01-26 11:21:33 -05001215 } else if (source.IsConstant()) {
1216 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001217 int32_t value = GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05001218 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001219 } else {
1220 DCHECK(source.IsStackSlot());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001221 __ pushl(Address(ESP, source.GetStackIndex()));
1222 __ popl(Address(ESP, destination.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001223 }
1224 }
1225}
1226
1227void CodeGeneratorX86::Move64(Location destination, Location source) {
1228 if (source.Equals(destination)) {
1229 return;
1230 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001231 if (destination.IsRegisterPair()) {
1232 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001233 EmitParallelMoves(
1234 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
1235 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001236 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001237 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001238 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
1239 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001240 } else if (source.IsFpuRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001241 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>();
1242 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
1243 __ psrlq(src_reg, Immediate(32));
1244 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001245 } else {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001246 // No conflict possible, so just do the moves.
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001247 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001248 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
1249 __ movl(destination.AsRegisterPairHigh<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001250 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
1251 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001252 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05001253 if (source.IsFpuRegister()) {
1254 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
1255 } else if (source.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001256 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Calin Juravlee460d1d2015-09-29 04:52:17 +01001257 } else if (source.IsRegisterPair()) {
1258 size_t elem_size = Primitive::ComponentSize(Primitive::kPrimInt);
1259 // Create stack space for 2 elements.
1260 __ subl(ESP, Immediate(2 * elem_size));
1261 __ movl(Address(ESP, 0), source.AsRegisterPairLow<Register>());
1262 __ movl(Address(ESP, elem_size), source.AsRegisterPairHigh<Register>());
1263 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
1264 // And remove the temporary stack space we allocated.
1265 __ addl(ESP, Immediate(2 * elem_size));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001266 } else {
1267 LOG(FATAL) << "Unimplemented";
1268 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001269 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001270 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001271 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001272 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001273 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegisterPairLow<Register>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001274 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001275 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001276 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001277 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001278 } else if (source.IsConstant()) {
1279 HConstant* constant = source.GetConstant();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001280 DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant());
1281 int64_t value = GetInt64ValueOf(constant);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001282 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(Low32Bits(value)));
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001283 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
1284 Immediate(High32Bits(value)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001285 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001286 DCHECK(source.IsDoubleStackSlot()) << source;
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001287 EmitParallelMoves(
1288 Location::StackSlot(source.GetStackIndex()),
1289 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001290 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001291 Location::StackSlot(source.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001292 Location::StackSlot(destination.GetHighStackIndex(kX86WordSize)),
1293 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001294 }
1295 }
1296}
1297
Calin Juravle175dc732015-08-25 15:42:32 +01001298void CodeGeneratorX86::MoveConstant(Location location, int32_t value) {
1299 DCHECK(location.IsRegister());
1300 __ movl(location.AsRegister<Register>(), Immediate(value));
1301}
1302
Calin Juravlee460d1d2015-09-29 04:52:17 +01001303void CodeGeneratorX86::MoveLocation(Location dst, Location src, Primitive::Type dst_type) {
David Brazdil74eb1b22015-12-14 11:44:01 +00001304 HParallelMove move(GetGraph()->GetArena());
1305 if (dst_type == Primitive::kPrimLong && !src.IsConstant() && !src.IsFpuRegister()) {
1306 move.AddMove(src.ToLow(), dst.ToLow(), Primitive::kPrimInt, nullptr);
1307 move.AddMove(src.ToHigh(), dst.ToHigh(), Primitive::kPrimInt, nullptr);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001308 } else {
David Brazdil74eb1b22015-12-14 11:44:01 +00001309 move.AddMove(src, dst, dst_type, nullptr);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001310 }
David Brazdil74eb1b22015-12-14 11:44:01 +00001311 GetMoveResolver()->EmitNativeCode(&move);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001312}
1313
1314void CodeGeneratorX86::AddLocationAsTemp(Location location, LocationSummary* locations) {
1315 if (location.IsRegister()) {
1316 locations->AddTemp(location);
1317 } else if (location.IsRegisterPair()) {
1318 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1319 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
1320 } else {
1321 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1322 }
1323}
1324
David Brazdilfc6a86a2015-06-26 10:33:45 +00001325void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001326 DCHECK(!successor->IsExitBlock());
1327
1328 HBasicBlock* block = got->GetBlock();
1329 HInstruction* previous = got->GetPrevious();
1330
1331 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +00001332 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001333 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1334 return;
1335 }
1336
1337 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1338 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1339 }
1340 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001341 __ jmp(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001342 }
1343}
1344
David Brazdilfc6a86a2015-06-26 10:33:45 +00001345void LocationsBuilderX86::VisitGoto(HGoto* got) {
1346 got->SetLocations(nullptr);
1347}
1348
1349void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) {
1350 HandleGoto(got, got->GetSuccessor());
1351}
1352
1353void LocationsBuilderX86::VisitTryBoundary(HTryBoundary* try_boundary) {
1354 try_boundary->SetLocations(nullptr);
1355}
1356
1357void InstructionCodeGeneratorX86::VisitTryBoundary(HTryBoundary* try_boundary) {
1358 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
1359 if (!successor->IsExitBlock()) {
1360 HandleGoto(try_boundary, successor);
1361 }
1362}
1363
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001364void LocationsBuilderX86::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001365 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001366}
1367
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001368void InstructionCodeGeneratorX86::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001369}
1370
Mark Mendell152408f2015-12-31 12:28:50 -05001371template<class LabelType>
Mark Mendellc4701932015-04-10 13:18:51 -04001372void InstructionCodeGeneratorX86::GenerateFPJumps(HCondition* cond,
Mark Mendell152408f2015-12-31 12:28:50 -05001373 LabelType* true_label,
1374 LabelType* false_label) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001375 if (cond->IsFPConditionTrueIfNaN()) {
1376 __ j(kUnordered, true_label);
1377 } else if (cond->IsFPConditionFalseIfNaN()) {
1378 __ j(kUnordered, false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001379 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001380 __ j(X86UnsignedOrFPCondition(cond->GetCondition()), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001381}
1382
Mark Mendell152408f2015-12-31 12:28:50 -05001383template<class LabelType>
Mark Mendellc4701932015-04-10 13:18:51 -04001384void InstructionCodeGeneratorX86::GenerateLongComparesAndJumps(HCondition* cond,
Mark Mendell152408f2015-12-31 12:28:50 -05001385 LabelType* true_label,
1386 LabelType* false_label) {
Mark Mendellc4701932015-04-10 13:18:51 -04001387 LocationSummary* locations = cond->GetLocations();
1388 Location left = locations->InAt(0);
1389 Location right = locations->InAt(1);
1390 IfCondition if_cond = cond->GetCondition();
1391
Mark Mendellc4701932015-04-10 13:18:51 -04001392 Register left_high = left.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +01001393 Register left_low = left.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -04001394 IfCondition true_high_cond = if_cond;
1395 IfCondition false_high_cond = cond->GetOppositeCondition();
Aart Bike9f37602015-10-09 11:15:55 -07001396 Condition final_condition = X86UnsignedOrFPCondition(if_cond); // unsigned on lower part
Mark Mendellc4701932015-04-10 13:18:51 -04001397
1398 // Set the conditions for the test, remembering that == needs to be
1399 // decided using the low words.
1400 switch (if_cond) {
1401 case kCondEQ:
Mark Mendellc4701932015-04-10 13:18:51 -04001402 case kCondNE:
Roland Levillain4fa13f62015-07-06 18:11:54 +01001403 // Nothing to do.
Mark Mendellc4701932015-04-10 13:18:51 -04001404 break;
1405 case kCondLT:
1406 false_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -04001407 break;
1408 case kCondLE:
1409 true_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -04001410 break;
1411 case kCondGT:
1412 false_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -04001413 break;
1414 case kCondGE:
1415 true_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -04001416 break;
Aart Bike9f37602015-10-09 11:15:55 -07001417 case kCondB:
1418 false_high_cond = kCondA;
1419 break;
1420 case kCondBE:
1421 true_high_cond = kCondB;
1422 break;
1423 case kCondA:
1424 false_high_cond = kCondB;
1425 break;
1426 case kCondAE:
1427 true_high_cond = kCondA;
1428 break;
Mark Mendellc4701932015-04-10 13:18:51 -04001429 }
1430
1431 if (right.IsConstant()) {
1432 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
Mark Mendellc4701932015-04-10 13:18:51 -04001433 int32_t val_high = High32Bits(value);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001434 int32_t val_low = Low32Bits(value);
Mark Mendellc4701932015-04-10 13:18:51 -04001435
Aart Bika19616e2016-02-01 18:57:58 -08001436 codegen_->Compare32BitValue(left_high, val_high);
Mark Mendellc4701932015-04-10 13:18:51 -04001437 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001438 __ j(X86Condition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001439 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001440 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001441 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001442 __ j(X86Condition(true_high_cond), true_label);
1443 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001444 }
1445 // Must be equal high, so compare the lows.
Aart Bika19616e2016-02-01 18:57:58 -08001446 codegen_->Compare32BitValue(left_low, val_low);
Mark Mendell8659e842016-02-16 10:41:46 -05001447 } else if (right.IsRegisterPair()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001448 Register right_high = right.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +01001449 Register right_low = right.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -04001450
1451 __ cmpl(left_high, right_high);
1452 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001453 __ j(X86Condition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001454 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001455 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001456 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001457 __ j(X86Condition(true_high_cond), true_label);
1458 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001459 }
1460 // Must be equal high, so compare the lows.
1461 __ cmpl(left_low, right_low);
Mark Mendell8659e842016-02-16 10:41:46 -05001462 } else {
1463 DCHECK(right.IsDoubleStackSlot());
1464 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
1465 if (if_cond == kCondNE) {
1466 __ j(X86Condition(true_high_cond), true_label);
1467 } else if (if_cond == kCondEQ) {
1468 __ j(X86Condition(false_high_cond), false_label);
1469 } else {
1470 __ j(X86Condition(true_high_cond), true_label);
1471 __ j(X86Condition(false_high_cond), false_label);
1472 }
1473 // Must be equal high, so compare the lows.
1474 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Mark Mendellc4701932015-04-10 13:18:51 -04001475 }
1476 // The last comparison might be unsigned.
1477 __ j(final_condition, true_label);
1478}
1479
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001480void InstructionCodeGeneratorX86::GenerateFPCompare(Location lhs,
1481 Location rhs,
1482 HInstruction* insn,
1483 bool is_double) {
1484 HX86LoadFromConstantTable* const_area = insn->InputAt(1)->AsX86LoadFromConstantTable();
1485 if (is_double) {
1486 if (rhs.IsFpuRegister()) {
1487 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1488 } else if (const_area != nullptr) {
1489 DCHECK(const_area->IsEmittedAtUseSite());
1490 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(),
1491 codegen_->LiteralDoubleAddress(
1492 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
1493 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
1494 } else {
1495 DCHECK(rhs.IsDoubleStackSlot());
1496 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex()));
1497 }
1498 } else {
1499 if (rhs.IsFpuRegister()) {
1500 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1501 } else if (const_area != nullptr) {
1502 DCHECK(const_area->IsEmittedAtUseSite());
1503 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(),
1504 codegen_->LiteralFloatAddress(
1505 const_area->GetConstant()->AsFloatConstant()->GetValue(),
1506 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
1507 } else {
1508 DCHECK(rhs.IsStackSlot());
1509 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex()));
1510 }
1511 }
1512}
1513
Mark Mendell152408f2015-12-31 12:28:50 -05001514template<class LabelType>
David Brazdil0debae72015-11-12 18:37:00 +00001515void InstructionCodeGeneratorX86::GenerateCompareTestAndBranch(HCondition* condition,
Mark Mendell152408f2015-12-31 12:28:50 -05001516 LabelType* true_target_in,
1517 LabelType* false_target_in) {
David Brazdil0debae72015-11-12 18:37:00 +00001518 // Generated branching requires both targets to be explicit. If either of the
1519 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
Mark Mendell152408f2015-12-31 12:28:50 -05001520 LabelType fallthrough_target;
1521 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1522 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
David Brazdil0debae72015-11-12 18:37:00 +00001523
Mark Mendellc4701932015-04-10 13:18:51 -04001524 LocationSummary* locations = condition->GetLocations();
1525 Location left = locations->InAt(0);
1526 Location right = locations->InAt(1);
1527
Mark Mendellc4701932015-04-10 13:18:51 -04001528 Primitive::Type type = condition->InputAt(0)->GetType();
1529 switch (type) {
1530 case Primitive::kPrimLong:
1531 GenerateLongComparesAndJumps(condition, true_target, false_target);
1532 break;
1533 case Primitive::kPrimFloat:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001534 GenerateFPCompare(left, right, condition, false);
Mark Mendellc4701932015-04-10 13:18:51 -04001535 GenerateFPJumps(condition, true_target, false_target);
1536 break;
1537 case Primitive::kPrimDouble:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001538 GenerateFPCompare(left, right, condition, true);
Mark Mendellc4701932015-04-10 13:18:51 -04001539 GenerateFPJumps(condition, true_target, false_target);
1540 break;
1541 default:
1542 LOG(FATAL) << "Unexpected compare type " << type;
1543 }
1544
David Brazdil0debae72015-11-12 18:37:00 +00001545 if (false_target != &fallthrough_target) {
Mark Mendellc4701932015-04-10 13:18:51 -04001546 __ jmp(false_target);
1547 }
David Brazdil0debae72015-11-12 18:37:00 +00001548
1549 if (fallthrough_target.IsLinked()) {
1550 __ Bind(&fallthrough_target);
1551 }
Mark Mendellc4701932015-04-10 13:18:51 -04001552}
1553
David Brazdil0debae72015-11-12 18:37:00 +00001554static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) {
1555 // Moves may affect the eflags register (move zero uses xorl), so the EFLAGS
1556 // are set only strictly before `branch`. We can't use the eflags on long/FP
1557 // conditions if they are materialized due to the complex branching.
1558 return cond->IsCondition() &&
1559 cond->GetNext() == branch &&
1560 cond->InputAt(0)->GetType() != Primitive::kPrimLong &&
1561 !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType());
1562}
1563
Mark Mendell152408f2015-12-31 12:28:50 -05001564template<class LabelType>
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001565void InstructionCodeGeneratorX86::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00001566 size_t condition_input_index,
Mark Mendell152408f2015-12-31 12:28:50 -05001567 LabelType* true_target,
1568 LabelType* false_target) {
David Brazdil0debae72015-11-12 18:37:00 +00001569 HInstruction* cond = instruction->InputAt(condition_input_index);
1570
1571 if (true_target == nullptr && false_target == nullptr) {
1572 // Nothing to do. The code always falls through.
1573 return;
1574 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00001575 // Constant condition, statically compared against "true" (integer value 1).
1576 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00001577 if (true_target != nullptr) {
1578 __ jmp(true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001579 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001580 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00001581 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00001582 if (false_target != nullptr) {
1583 __ jmp(false_target);
1584 }
1585 }
1586 return;
1587 }
1588
1589 // The following code generates these patterns:
1590 // (1) true_target == nullptr && false_target != nullptr
1591 // - opposite condition true => branch to false_target
1592 // (2) true_target != nullptr && false_target == nullptr
1593 // - condition true => branch to true_target
1594 // (3) true_target != nullptr && false_target != nullptr
1595 // - condition true => branch to true_target
1596 // - branch to false_target
1597 if (IsBooleanValueOrMaterializedCondition(cond)) {
1598 if (AreEflagsSetFrom(cond, instruction)) {
1599 if (true_target == nullptr) {
1600 __ j(X86Condition(cond->AsCondition()->GetOppositeCondition()), false_target);
1601 } else {
1602 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target);
1603 }
1604 } else {
1605 // Materialized condition, compare against 0.
1606 Location lhs = instruction->GetLocations()->InAt(condition_input_index);
1607 if (lhs.IsRegister()) {
1608 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
1609 } else {
1610 __ cmpl(Address(ESP, lhs.GetStackIndex()), Immediate(0));
1611 }
1612 if (true_target == nullptr) {
1613 __ j(kEqual, false_target);
1614 } else {
1615 __ j(kNotEqual, true_target);
1616 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001617 }
1618 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001619 // Condition has not been materialized, use its inputs as the comparison and
1620 // its condition as the branch condition.
Mark Mendellb8b97692015-05-22 16:58:19 -04001621 HCondition* condition = cond->AsCondition();
David Brazdil0debae72015-11-12 18:37:00 +00001622
1623 // If this is a long or FP comparison that has been folded into
1624 // the HCondition, generate the comparison directly.
1625 Primitive::Type type = condition->InputAt(0)->GetType();
1626 if (type == Primitive::kPrimLong || Primitive::IsFloatingPointType(type)) {
1627 GenerateCompareTestAndBranch(condition, true_target, false_target);
1628 return;
1629 }
1630
1631 Location lhs = condition->GetLocations()->InAt(0);
1632 Location rhs = condition->GetLocations()->InAt(1);
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001633 // LHS is guaranteed to be in a register (see LocationsBuilderX86::HandleCondition).
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001634 codegen_->GenerateIntCompare(lhs, rhs);
David Brazdil0debae72015-11-12 18:37:00 +00001635 if (true_target == nullptr) {
1636 __ j(X86Condition(condition->GetOppositeCondition()), false_target);
1637 } else {
Mark Mendellb8b97692015-05-22 16:58:19 -04001638 __ j(X86Condition(condition->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -07001639 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001640 }
David Brazdil0debae72015-11-12 18:37:00 +00001641
1642 // If neither branch falls through (case 3), the conditional branch to `true_target`
1643 // was already emitted (case 2) and we need to emit a jump to `false_target`.
1644 if (true_target != nullptr && false_target != nullptr) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001645 __ jmp(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001646 }
1647}
1648
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001649void LocationsBuilderX86::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001650 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
1651 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001652 locations->SetInAt(0, Location::Any());
1653 }
1654}
1655
1656void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001657 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
1658 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
1659 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
1660 nullptr : codegen_->GetLabelOf(true_successor);
1661 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
1662 nullptr : codegen_->GetLabelOf(false_successor);
1663 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001664}
1665
1666void LocationsBuilderX86::VisitDeoptimize(HDeoptimize* deoptimize) {
1667 LocationSummary* locations = new (GetGraph()->GetArena())
1668 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
Vladimir Marko804b03f2016-09-14 16:26:36 +01001669 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
David Brazdil0debae72015-11-12 18:37:00 +00001670 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001671 locations->SetInAt(0, Location::Any());
1672 }
1673}
1674
1675void InstructionCodeGeneratorX86::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08001676 SlowPathCode* slow_path = deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathX86>(deoptimize);
David Brazdil74eb1b22015-12-14 11:44:01 +00001677 GenerateTestAndBranch<Label>(deoptimize,
1678 /* condition_input_index */ 0,
1679 slow_path->GetEntryLabel(),
1680 /* false_target */ nullptr);
1681}
1682
Mingyao Yang063fc772016-08-02 11:02:54 -07001683void LocationsBuilderX86::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
1684 LocationSummary* locations = new (GetGraph()->GetArena())
1685 LocationSummary(flag, LocationSummary::kNoCall);
1686 locations->SetOut(Location::RequiresRegister());
1687}
1688
1689void InstructionCodeGeneratorX86::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
1690 __ movl(flag->GetLocations()->Out().AsRegister<Register>(),
1691 Address(ESP, codegen_->GetStackOffsetOfShouldDeoptimizeFlag()));
1692}
1693
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001694static bool SelectCanUseCMOV(HSelect* select) {
1695 // There are no conditional move instructions for XMMs.
1696 if (Primitive::IsFloatingPointType(select->GetType())) {
1697 return false;
1698 }
1699
1700 // A FP condition doesn't generate the single CC that we need.
1701 // In 32 bit mode, a long condition doesn't generate a single CC either.
1702 HInstruction* condition = select->GetCondition();
1703 if (condition->IsCondition()) {
1704 Primitive::Type compare_type = condition->InputAt(0)->GetType();
1705 if (compare_type == Primitive::kPrimLong ||
1706 Primitive::IsFloatingPointType(compare_type)) {
1707 return false;
1708 }
1709 }
1710
1711 // We can generate a CMOV for this Select.
1712 return true;
1713}
1714
David Brazdil74eb1b22015-12-14 11:44:01 +00001715void LocationsBuilderX86::VisitSelect(HSelect* select) {
1716 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(select);
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001717 if (Primitive::IsFloatingPointType(select->GetType())) {
David Brazdil74eb1b22015-12-14 11:44:01 +00001718 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001719 locations->SetInAt(1, Location::Any());
David Brazdil74eb1b22015-12-14 11:44:01 +00001720 } else {
1721 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001722 if (SelectCanUseCMOV(select)) {
1723 if (select->InputAt(1)->IsConstant()) {
1724 // Cmov can't handle a constant value.
1725 locations->SetInAt(1, Location::RequiresRegister());
1726 } else {
1727 locations->SetInAt(1, Location::Any());
1728 }
1729 } else {
1730 locations->SetInAt(1, Location::Any());
1731 }
David Brazdil74eb1b22015-12-14 11:44:01 +00001732 }
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001733 if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) {
1734 locations->SetInAt(2, Location::RequiresRegister());
David Brazdil74eb1b22015-12-14 11:44:01 +00001735 }
1736 locations->SetOut(Location::SameAsFirstInput());
1737}
1738
1739void InstructionCodeGeneratorX86::VisitSelect(HSelect* select) {
1740 LocationSummary* locations = select->GetLocations();
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001741 DCHECK(locations->InAt(0).Equals(locations->Out()));
1742 if (SelectCanUseCMOV(select)) {
1743 // If both the condition and the source types are integer, we can generate
1744 // a CMOV to implement Select.
1745
1746 HInstruction* select_condition = select->GetCondition();
1747 Condition cond = kNotEqual;
1748
1749 // Figure out how to test the 'condition'.
1750 if (select_condition->IsCondition()) {
1751 HCondition* condition = select_condition->AsCondition();
1752 if (!condition->IsEmittedAtUseSite()) {
1753 // This was a previously materialized condition.
1754 // Can we use the existing condition code?
1755 if (AreEflagsSetFrom(condition, select)) {
1756 // Materialization was the previous instruction. Condition codes are right.
1757 cond = X86Condition(condition->GetCondition());
1758 } else {
1759 // No, we have to recreate the condition code.
1760 Register cond_reg = locations->InAt(2).AsRegister<Register>();
1761 __ testl(cond_reg, cond_reg);
1762 }
1763 } else {
1764 // We can't handle FP or long here.
1765 DCHECK_NE(condition->InputAt(0)->GetType(), Primitive::kPrimLong);
1766 DCHECK(!Primitive::IsFloatingPointType(condition->InputAt(0)->GetType()));
1767 LocationSummary* cond_locations = condition->GetLocations();
Roland Levillain0b671c02016-08-19 12:02:34 +01001768 codegen_->GenerateIntCompare(cond_locations->InAt(0), cond_locations->InAt(1));
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001769 cond = X86Condition(condition->GetCondition());
1770 }
1771 } else {
1772 // Must be a boolean condition, which needs to be compared to 0.
1773 Register cond_reg = locations->InAt(2).AsRegister<Register>();
1774 __ testl(cond_reg, cond_reg);
1775 }
1776
1777 // If the condition is true, overwrite the output, which already contains false.
1778 Location false_loc = locations->InAt(0);
1779 Location true_loc = locations->InAt(1);
1780 if (select->GetType() == Primitive::kPrimLong) {
1781 // 64 bit conditional move.
1782 Register false_high = false_loc.AsRegisterPairHigh<Register>();
1783 Register false_low = false_loc.AsRegisterPairLow<Register>();
1784 if (true_loc.IsRegisterPair()) {
1785 __ cmovl(cond, false_high, true_loc.AsRegisterPairHigh<Register>());
1786 __ cmovl(cond, false_low, true_loc.AsRegisterPairLow<Register>());
1787 } else {
1788 __ cmovl(cond, false_high, Address(ESP, true_loc.GetHighStackIndex(kX86WordSize)));
1789 __ cmovl(cond, false_low, Address(ESP, true_loc.GetStackIndex()));
1790 }
1791 } else {
1792 // 32 bit conditional move.
1793 Register false_reg = false_loc.AsRegister<Register>();
1794 if (true_loc.IsRegister()) {
1795 __ cmovl(cond, false_reg, true_loc.AsRegister<Register>());
1796 } else {
1797 __ cmovl(cond, false_reg, Address(ESP, true_loc.GetStackIndex()));
1798 }
1799 }
1800 } else {
1801 NearLabel false_target;
1802 GenerateTestAndBranch<NearLabel>(
1803 select, /* condition_input_index */ 2, /* true_target */ nullptr, &false_target);
1804 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
1805 __ Bind(&false_target);
1806 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001807}
1808
David Srbecky0cf44932015-12-09 14:09:59 +00001809void LocationsBuilderX86::VisitNativeDebugInfo(HNativeDebugInfo* info) {
1810 new (GetGraph()->GetArena()) LocationSummary(info);
1811}
1812
David Srbeckyd28f4a02016-03-14 17:14:24 +00001813void InstructionCodeGeneratorX86::VisitNativeDebugInfo(HNativeDebugInfo*) {
1814 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00001815}
1816
1817void CodeGeneratorX86::GenerateNop() {
1818 __ nop();
David Srbecky0cf44932015-12-09 14:09:59 +00001819}
1820
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001821void LocationsBuilderX86::HandleCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001822 LocationSummary* locations =
Roland Levillain0d37cd02015-05-27 16:39:19 +01001823 new (GetGraph()->GetArena()) LocationSummary(cond, LocationSummary::kNoCall);
Mark Mendellc4701932015-04-10 13:18:51 -04001824 // Handle the long/FP comparisons made in instruction simplification.
1825 switch (cond->InputAt(0)->GetType()) {
1826 case Primitive::kPrimLong: {
1827 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell8659e842016-02-16 10:41:46 -05001828 locations->SetInAt(1, Location::Any());
David Brazdilb3e773e2016-01-26 11:28:37 +00001829 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001830 locations->SetOut(Location::RequiresRegister());
1831 }
1832 break;
1833 }
1834 case Primitive::kPrimFloat:
1835 case Primitive::kPrimDouble: {
1836 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001837 if (cond->InputAt(1)->IsX86LoadFromConstantTable()) {
1838 DCHECK(cond->InputAt(1)->IsEmittedAtUseSite());
1839 } else if (cond->InputAt(1)->IsConstant()) {
1840 locations->SetInAt(1, Location::RequiresFpuRegister());
1841 } else {
1842 locations->SetInAt(1, Location::Any());
1843 }
David Brazdilb3e773e2016-01-26 11:28:37 +00001844 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001845 locations->SetOut(Location::RequiresRegister());
1846 }
1847 break;
1848 }
1849 default:
1850 locations->SetInAt(0, Location::RequiresRegister());
1851 locations->SetInAt(1, Location::Any());
David Brazdilb3e773e2016-01-26 11:28:37 +00001852 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001853 // We need a byte register.
1854 locations->SetOut(Location::RegisterLocation(ECX));
1855 }
1856 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001857 }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001858}
1859
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001860void InstructionCodeGeneratorX86::HandleCondition(HCondition* cond) {
David Brazdilb3e773e2016-01-26 11:28:37 +00001861 if (cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001862 return;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001863 }
Mark Mendellc4701932015-04-10 13:18:51 -04001864
1865 LocationSummary* locations = cond->GetLocations();
1866 Location lhs = locations->InAt(0);
1867 Location rhs = locations->InAt(1);
1868 Register reg = locations->Out().AsRegister<Register>();
Mark Mendell152408f2015-12-31 12:28:50 -05001869 NearLabel true_label, false_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001870
1871 switch (cond->InputAt(0)->GetType()) {
1872 default: {
1873 // Integer case.
1874
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01001875 // Clear output register: setb only sets the low byte.
Mark Mendellc4701932015-04-10 13:18:51 -04001876 __ xorl(reg, reg);
Roland Levillain0b671c02016-08-19 12:02:34 +01001877 codegen_->GenerateIntCompare(lhs, rhs);
Aart Bike9f37602015-10-09 11:15:55 -07001878 __ setb(X86Condition(cond->GetCondition()), reg);
Mark Mendellc4701932015-04-10 13:18:51 -04001879 return;
1880 }
1881 case Primitive::kPrimLong:
1882 GenerateLongComparesAndJumps(cond, &true_label, &false_label);
1883 break;
1884 case Primitive::kPrimFloat:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001885 GenerateFPCompare(lhs, rhs, cond, false);
Mark Mendellc4701932015-04-10 13:18:51 -04001886 GenerateFPJumps(cond, &true_label, &false_label);
1887 break;
1888 case Primitive::kPrimDouble:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001889 GenerateFPCompare(lhs, rhs, cond, true);
Mark Mendellc4701932015-04-10 13:18:51 -04001890 GenerateFPJumps(cond, &true_label, &false_label);
1891 break;
1892 }
1893
1894 // Convert the jumps into the result.
Mark Mendell0c9497d2015-08-21 09:30:05 -04001895 NearLabel done_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001896
Roland Levillain4fa13f62015-07-06 18:11:54 +01001897 // False case: result = 0.
Mark Mendellc4701932015-04-10 13:18:51 -04001898 __ Bind(&false_label);
1899 __ xorl(reg, reg);
1900 __ jmp(&done_label);
1901
Roland Levillain4fa13f62015-07-06 18:11:54 +01001902 // True case: result = 1.
Mark Mendellc4701932015-04-10 13:18:51 -04001903 __ Bind(&true_label);
1904 __ movl(reg, Immediate(1));
1905 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07001906}
1907
1908void LocationsBuilderX86::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001909 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001910}
1911
1912void InstructionCodeGeneratorX86::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001913 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001914}
1915
1916void LocationsBuilderX86::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001917 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001918}
1919
1920void InstructionCodeGeneratorX86::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001921 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001922}
1923
1924void LocationsBuilderX86::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001925 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001926}
1927
1928void InstructionCodeGeneratorX86::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001929 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001930}
1931
1932void LocationsBuilderX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001933 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001934}
1935
1936void InstructionCodeGeneratorX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001937 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001938}
1939
1940void LocationsBuilderX86::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001941 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001942}
1943
1944void InstructionCodeGeneratorX86::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001945 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001946}
1947
1948void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001949 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001950}
1951
1952void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001953 HandleCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001954}
1955
Aart Bike9f37602015-10-09 11:15:55 -07001956void LocationsBuilderX86::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001957 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001958}
1959
1960void InstructionCodeGeneratorX86::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001961 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001962}
1963
1964void LocationsBuilderX86::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001965 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001966}
1967
1968void InstructionCodeGeneratorX86::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001969 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001970}
1971
1972void LocationsBuilderX86::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001973 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001974}
1975
1976void InstructionCodeGeneratorX86::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001977 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001978}
1979
1980void LocationsBuilderX86::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001981 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001982}
1983
1984void InstructionCodeGeneratorX86::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001985 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001986}
1987
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001988void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001989 LocationSummary* locations =
1990 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001991 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001992}
1993
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001994void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001995 // Will be generated at use site.
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001996}
1997
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001998void LocationsBuilderX86::VisitNullConstant(HNullConstant* constant) {
1999 LocationSummary* locations =
2000 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2001 locations->SetOut(Location::ConstantLocation(constant));
2002}
2003
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002004void InstructionCodeGeneratorX86::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002005 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002006}
2007
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002008void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002009 LocationSummary* locations =
2010 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002011 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002012}
2013
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002014void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002015 // Will be generated at use site.
2016}
2017
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002018void LocationsBuilderX86::VisitFloatConstant(HFloatConstant* constant) {
2019 LocationSummary* locations =
2020 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2021 locations->SetOut(Location::ConstantLocation(constant));
2022}
2023
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002024void InstructionCodeGeneratorX86::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002025 // Will be generated at use site.
2026}
2027
2028void LocationsBuilderX86::VisitDoubleConstant(HDoubleConstant* constant) {
2029 LocationSummary* locations =
2030 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2031 locations->SetOut(Location::ConstantLocation(constant));
2032}
2033
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002034void InstructionCodeGeneratorX86::VisitDoubleConstant(HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002035 // Will be generated at use site.
2036}
2037
Calin Juravle27df7582015-04-17 19:12:31 +01002038void LocationsBuilderX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
2039 memory_barrier->SetLocations(nullptr);
2040}
2041
2042void InstructionCodeGeneratorX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00002043 codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
Calin Juravle27df7582015-04-17 19:12:31 +01002044}
2045
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002046void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002047 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002048}
2049
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002050void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002051 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002052}
2053
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002054void LocationsBuilderX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002055 LocationSummary* locations =
2056 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002057 switch (ret->InputAt(0)->GetType()) {
2058 case Primitive::kPrimBoolean:
2059 case Primitive::kPrimByte:
2060 case Primitive::kPrimChar:
2061 case Primitive::kPrimShort:
2062 case Primitive::kPrimInt:
2063 case Primitive::kPrimNot:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002064 locations->SetInAt(0, Location::RegisterLocation(EAX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002065 break;
2066
2067 case Primitive::kPrimLong:
2068 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002069 0, Location::RegisterPairLocation(EAX, EDX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002070 break;
2071
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002072 case Primitive::kPrimFloat:
2073 case Primitive::kPrimDouble:
2074 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002075 0, Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002076 break;
2077
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002078 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002079 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002080 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002081}
2082
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002083void InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002084 if (kIsDebugBuild) {
2085 switch (ret->InputAt(0)->GetType()) {
2086 case Primitive::kPrimBoolean:
2087 case Primitive::kPrimByte:
2088 case Primitive::kPrimChar:
2089 case Primitive::kPrimShort:
2090 case Primitive::kPrimInt:
2091 case Primitive::kPrimNot:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002092 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<Register>(), EAX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002093 break;
2094
2095 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002096 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairLow<Register>(), EAX);
2097 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairHigh<Register>(), EDX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002098 break;
2099
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002100 case Primitive::kPrimFloat:
2101 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002102 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>(), XMM0);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002103 break;
2104
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002105 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002106 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002107 }
2108 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002109 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002110}
2111
Calin Juravle175dc732015-08-25 15:42:32 +01002112void LocationsBuilderX86::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2113 // The trampoline uses the same calling convention as dex calling conventions,
2114 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2115 // the method_idx.
2116 HandleInvoke(invoke);
2117}
2118
2119void InstructionCodeGeneratorX86::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2120 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2121}
2122
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002123void LocationsBuilderX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002124 // Explicit clinit checks triggered by static invokes must have been pruned by
2125 // art::PrepareForRegisterAllocation.
2126 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002127
Mark Mendellfb8d2792015-03-31 22:16:59 -04002128 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
Mark Mendell09ed1a32015-03-25 08:30:06 -04002129 if (intrinsic.TryDispatch(invoke)) {
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002130 if (invoke->GetLocations()->CanCall() && invoke->HasPcRelativeDexCache()) {
Vladimir Markoc53c0792015-11-19 15:48:33 +00002131 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::Any());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002132 }
Mark Mendell09ed1a32015-03-25 08:30:06 -04002133 return;
2134 }
2135
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002136 HandleInvoke(invoke);
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002137
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002138 // For PC-relative dex cache the invoke has an extra input, the PC-relative address base.
2139 if (invoke->HasPcRelativeDexCache()) {
Vladimir Markob4536b72015-11-24 13:45:23 +00002140 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::RequiresRegister());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002141 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002142}
2143
Mark Mendell09ed1a32015-03-25 08:30:06 -04002144static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86* codegen) {
2145 if (invoke->GetLocations()->Intrinsified()) {
2146 IntrinsicCodeGeneratorX86 intrinsic(codegen);
2147 intrinsic.Dispatch(invoke);
2148 return true;
2149 }
2150 return false;
2151}
2152
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002153void InstructionCodeGeneratorX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002154 // Explicit clinit checks triggered by static invokes must have been pruned by
2155 // art::PrepareForRegisterAllocation.
2156 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002157
Mark Mendell09ed1a32015-03-25 08:30:06 -04002158 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2159 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002160 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002161
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002162 LocationSummary* locations = invoke->GetLocations();
Mark Mendell09ed1a32015-03-25 08:30:06 -04002163 codegen_->GenerateStaticOrDirectCall(
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002164 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Mingyao Yang8693fe12015-04-17 16:51:08 -07002165 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002166}
2167
2168void LocationsBuilderX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Nicolas Geoffraye5234232015-12-02 09:06:11 +00002169 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
2170 if (intrinsic.TryDispatch(invoke)) {
2171 return;
2172 }
2173
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002174 HandleInvoke(invoke);
2175}
2176
2177void LocationsBuilderX86::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002178 InvokeDexCallingConventionVisitorX86 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002179 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002180}
2181
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002182void InstructionCodeGeneratorX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002183 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2184 return;
2185 }
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002186
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002187 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002188 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002189 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002190}
2191
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002192void LocationsBuilderX86::VisitInvokeInterface(HInvokeInterface* invoke) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00002193 // This call to HandleInvoke allocates a temporary (core) register
2194 // which is also used to transfer the hidden argument from FP to
2195 // core register.
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002196 HandleInvoke(invoke);
2197 // Add the hidden argument.
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002198 invoke->GetLocations()->AddTemp(Location::FpuRegisterLocation(XMM7));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002199}
2200
2201void InstructionCodeGeneratorX86::VisitInvokeInterface(HInvokeInterface* invoke) {
2202 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain0d5a2812015-11-13 10:07:31 +00002203 LocationSummary* locations = invoke->GetLocations();
2204 Register temp = locations->GetTemp(0).AsRegister<Register>();
2205 XmmRegister hidden_reg = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002206 Location receiver = locations->InAt(0);
2207 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2208
Roland Levillain0d5a2812015-11-13 10:07:31 +00002209 // Set the hidden argument. This is safe to do this here, as XMM7
2210 // won't be modified thereafter, before the `call` instruction.
2211 DCHECK_EQ(XMM7, hidden_reg);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002212 __ movl(temp, Immediate(invoke->GetDexMethodIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00002213 __ movd(hidden_reg, temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002214
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002215 if (receiver.IsStackSlot()) {
2216 __ movl(temp, Address(ESP, receiver.GetStackIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00002217 // /* HeapReference<Class> */ temp = temp->klass_
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002218 __ movl(temp, Address(temp, class_offset));
2219 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00002220 // /* HeapReference<Class> */ temp = receiver->klass_
Roland Levillain271ab9c2014-11-27 15:23:57 +00002221 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002222 }
Roland Levillain4d027112015-07-01 15:41:14 +01002223 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +00002224 // Instead of simply (possibly) unpoisoning `temp` here, we should
2225 // emit a read barrier for the previous class reference load.
2226 // However this is not required in practice, as this is an
2227 // intermediate/temporary reference and because the current
2228 // concurrent copying collector keeps the from-space memory
2229 // intact/accessible until the end of the marking phase (the
2230 // concurrent copying collector may not in the future).
Roland Levillain4d027112015-07-01 15:41:14 +01002231 __ MaybeUnpoisonHeapReference(temp);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002232 // temp = temp->GetAddressOfIMT()
2233 __ movl(temp,
2234 Address(temp, mirror::Class::ImtPtrOffset(kX86PointerSize).Uint32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002235 // temp = temp->GetImtEntryAt(method_offset);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002236 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00002237 invoke->GetImtIndex(), kX86PointerSize));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002238 __ movl(temp, Address(temp, method_offset));
2239 // call temp->GetEntryPoint();
Roland Levillain0d5a2812015-11-13 10:07:31 +00002240 __ call(Address(temp,
Andreas Gampe542451c2016-07-26 09:02:02 -07002241 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize).Int32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002242
2243 DCHECK(!codegen_->IsLeafMethod());
2244 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2245}
2246
Orion Hodsonac141392017-01-13 11:53:47 +00002247void LocationsBuilderX86::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
2248 HandleInvoke(invoke);
2249}
2250
2251void InstructionCodeGeneratorX86::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
2252 codegen_->GenerateInvokePolymorphicCall(invoke);
2253}
2254
Roland Levillain88cb1752014-10-20 16:36:47 +01002255void LocationsBuilderX86::VisitNeg(HNeg* neg) {
2256 LocationSummary* locations =
2257 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2258 switch (neg->GetResultType()) {
2259 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002260 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01002261 locations->SetInAt(0, Location::RequiresRegister());
2262 locations->SetOut(Location::SameAsFirstInput());
2263 break;
2264
Roland Levillain88cb1752014-10-20 16:36:47 +01002265 case Primitive::kPrimFloat:
Roland Levillain5368c212014-11-27 15:03:41 +00002266 locations->SetInAt(0, Location::RequiresFpuRegister());
2267 locations->SetOut(Location::SameAsFirstInput());
2268 locations->AddTemp(Location::RequiresRegister());
2269 locations->AddTemp(Location::RequiresFpuRegister());
2270 break;
2271
Roland Levillain88cb1752014-10-20 16:36:47 +01002272 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002273 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00002274 locations->SetOut(Location::SameAsFirstInput());
2275 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01002276 break;
2277
2278 default:
2279 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2280 }
2281}
2282
2283void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) {
2284 LocationSummary* locations = neg->GetLocations();
2285 Location out = locations->Out();
2286 Location in = locations->InAt(0);
2287 switch (neg->GetResultType()) {
2288 case Primitive::kPrimInt:
2289 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002290 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002291 __ negl(out.AsRegister<Register>());
Roland Levillain88cb1752014-10-20 16:36:47 +01002292 break;
2293
2294 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002295 DCHECK(in.IsRegisterPair());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002296 DCHECK(in.Equals(out));
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002297 __ negl(out.AsRegisterPairLow<Register>());
2298 // Negation is similar to subtraction from zero. The least
2299 // significant byte triggers a borrow when it is different from
2300 // zero; to take it into account, add 1 to the most significant
2301 // byte if the carry flag (CF) is set to 1 after the first NEGL
2302 // operation.
2303 __ adcl(out.AsRegisterPairHigh<Register>(), Immediate(0));
2304 __ negl(out.AsRegisterPairHigh<Register>());
2305 break;
2306
Roland Levillain5368c212014-11-27 15:03:41 +00002307 case Primitive::kPrimFloat: {
2308 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002309 Register constant = locations->GetTemp(0).AsRegister<Register>();
2310 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002311 // Implement float negation with an exclusive or with value
2312 // 0x80000000 (mask for bit 31, representing the sign of a
2313 // single-precision floating-point number).
2314 __ movl(constant, Immediate(INT32_C(0x80000000)));
2315 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002316 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00002317 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002318 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00002319
Roland Levillain5368c212014-11-27 15:03:41 +00002320 case Primitive::kPrimDouble: {
2321 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002322 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002323 // Implement double negation with an exclusive or with value
2324 // 0x8000000000000000 (mask for bit 63, representing the sign of
2325 // a double-precision floating-point number).
2326 __ LoadLongConstant(mask, INT64_C(0x8000000000000000));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002327 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01002328 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002329 }
Roland Levillain88cb1752014-10-20 16:36:47 +01002330
2331 default:
2332 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2333 }
2334}
2335
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00002336void LocationsBuilderX86::VisitX86FPNeg(HX86FPNeg* neg) {
2337 LocationSummary* locations =
2338 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2339 DCHECK(Primitive::IsFloatingPointType(neg->GetType()));
2340 locations->SetInAt(0, Location::RequiresFpuRegister());
2341 locations->SetInAt(1, Location::RequiresRegister());
2342 locations->SetOut(Location::SameAsFirstInput());
2343 locations->AddTemp(Location::RequiresFpuRegister());
2344}
2345
2346void InstructionCodeGeneratorX86::VisitX86FPNeg(HX86FPNeg* neg) {
2347 LocationSummary* locations = neg->GetLocations();
2348 Location out = locations->Out();
2349 DCHECK(locations->InAt(0).Equals(out));
2350
2351 Register constant_area = locations->InAt(1).AsRegister<Register>();
2352 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
2353 if (neg->GetType() == Primitive::kPrimFloat) {
2354 __ movss(mask, codegen_->LiteralInt32Address(INT32_C(0x80000000), constant_area));
2355 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
2356 } else {
2357 __ movsd(mask, codegen_->LiteralInt64Address(INT64_C(0x8000000000000000), constant_area));
2358 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
2359 }
2360}
2361
Roland Levillaindff1f282014-11-05 14:15:05 +00002362void LocationsBuilderX86::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00002363 Primitive::Type result_type = conversion->GetResultType();
2364 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002365 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00002366
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002367 // The float-to-long and double-to-long type conversions rely on a
2368 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00002369 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002370 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
2371 && result_type == Primitive::kPrimLong)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01002372 ? LocationSummary::kCallOnMainOnly
Roland Levillain624279f2014-12-04 11:54:28 +00002373 : LocationSummary::kNoCall;
2374 LocationSummary* locations =
2375 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
2376
David Brazdilb2bd1c52015-03-25 11:17:37 +00002377 // The Java language does not allow treating boolean as an integral type but
2378 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00002379
Roland Levillaindff1f282014-11-05 14:15:05 +00002380 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002381 case Primitive::kPrimByte:
2382 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002383 case Primitive::kPrimLong: {
2384 // Type conversion from long to byte is a result of code transformations.
2385 HInstruction* input = conversion->InputAt(0);
2386 Location input_location = input->IsConstant()
2387 ? Location::ConstantLocation(input->AsConstant())
2388 : Location::RegisterPairLocation(EAX, EDX);
2389 locations->SetInAt(0, input_location);
2390 // Make the output overlap to please the register allocator. This greatly simplifies
2391 // the validation of the linear scan implementation
2392 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2393 break;
2394 }
David Brazdil46e2a392015-03-16 17:31:52 +00002395 case Primitive::kPrimBoolean:
2396 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002397 case Primitive::kPrimShort:
2398 case Primitive::kPrimInt:
2399 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002400 // Processing a Dex `int-to-byte' instruction.
Mark Mendell5f874182015-03-04 15:42:45 -05002401 locations->SetInAt(0, Location::ByteRegisterOrConstant(ECX, conversion->InputAt(0)));
2402 // Make the output overlap to please the register allocator. This greatly simplifies
2403 // the validation of the linear scan implementation
2404 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain51d3fc42014-11-13 14:11:42 +00002405 break;
2406
2407 default:
2408 LOG(FATAL) << "Unexpected type conversion from " << input_type
2409 << " to " << result_type;
2410 }
2411 break;
2412
Roland Levillain01a8d712014-11-14 16:27:39 +00002413 case Primitive::kPrimShort:
2414 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002415 case Primitive::kPrimLong:
2416 // Type conversion from long to short is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002417 case Primitive::kPrimBoolean:
2418 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002419 case Primitive::kPrimByte:
2420 case Primitive::kPrimInt:
2421 case Primitive::kPrimChar:
2422 // Processing a Dex `int-to-short' instruction.
2423 locations->SetInAt(0, Location::Any());
2424 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2425 break;
2426
2427 default:
2428 LOG(FATAL) << "Unexpected type conversion from " << input_type
2429 << " to " << result_type;
2430 }
2431 break;
2432
Roland Levillain946e1432014-11-11 17:35:19 +00002433 case Primitive::kPrimInt:
2434 switch (input_type) {
2435 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002436 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002437 locations->SetInAt(0, Location::Any());
2438 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2439 break;
2440
2441 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00002442 // Processing a Dex `float-to-int' instruction.
2443 locations->SetInAt(0, Location::RequiresFpuRegister());
2444 locations->SetOut(Location::RequiresRegister());
2445 locations->AddTemp(Location::RequiresFpuRegister());
2446 break;
2447
Roland Levillain946e1432014-11-11 17:35:19 +00002448 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002449 // Processing a Dex `double-to-int' instruction.
2450 locations->SetInAt(0, Location::RequiresFpuRegister());
2451 locations->SetOut(Location::RequiresRegister());
2452 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00002453 break;
2454
2455 default:
2456 LOG(FATAL) << "Unexpected type conversion from " << input_type
2457 << " to " << result_type;
2458 }
2459 break;
2460
Roland Levillaindff1f282014-11-05 14:15:05 +00002461 case Primitive::kPrimLong:
2462 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002463 case Primitive::kPrimBoolean:
2464 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002465 case Primitive::kPrimByte:
2466 case Primitive::kPrimShort:
2467 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002468 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002469 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002470 locations->SetInAt(0, Location::RegisterLocation(EAX));
2471 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
2472 break;
2473
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002474 case Primitive::kPrimFloat:
Vladimir Marko949c91f2015-01-27 10:48:44 +00002475 case Primitive::kPrimDouble: {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002476 // Processing a Dex `float-to-long' or 'double-to-long' instruction.
Vladimir Marko949c91f2015-01-27 10:48:44 +00002477 InvokeRuntimeCallingConvention calling_convention;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002478 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0);
2479 locations->SetInAt(0, Location::FpuRegisterLocation(parameter));
2480
Vladimir Marko949c91f2015-01-27 10:48:44 +00002481 // The runtime helper puts the result in EAX, EDX.
2482 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Vladimir Marko949c91f2015-01-27 10:48:44 +00002483 }
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002484 break;
Roland Levillaindff1f282014-11-05 14:15:05 +00002485
2486 default:
2487 LOG(FATAL) << "Unexpected type conversion from " << input_type
2488 << " to " << result_type;
2489 }
2490 break;
2491
Roland Levillain981e4542014-11-14 11:47:14 +00002492 case Primitive::kPrimChar:
2493 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002494 case Primitive::kPrimLong:
2495 // Type conversion from long to char is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002496 case Primitive::kPrimBoolean:
2497 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002498 case Primitive::kPrimByte:
2499 case Primitive::kPrimShort:
2500 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002501 // Processing a Dex `int-to-char' instruction.
2502 locations->SetInAt(0, Location::Any());
2503 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2504 break;
2505
2506 default:
2507 LOG(FATAL) << "Unexpected type conversion from " << input_type
2508 << " to " << result_type;
2509 }
2510 break;
2511
Roland Levillaindff1f282014-11-05 14:15:05 +00002512 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002513 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002514 case Primitive::kPrimBoolean:
2515 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002516 case Primitive::kPrimByte:
2517 case Primitive::kPrimShort:
2518 case Primitive::kPrimInt:
2519 case Primitive::kPrimChar:
2520 // Processing a Dex `int-to-float' instruction.
2521 locations->SetInAt(0, Location::RequiresRegister());
2522 locations->SetOut(Location::RequiresFpuRegister());
2523 break;
2524
2525 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002526 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002527 locations->SetInAt(0, Location::Any());
2528 locations->SetOut(Location::Any());
Roland Levillain6d0e4832014-11-27 18:31:21 +00002529 break;
2530
Roland Levillaincff13742014-11-17 14:32:17 +00002531 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002532 // Processing a Dex `double-to-float' instruction.
2533 locations->SetInAt(0, Location::RequiresFpuRegister());
2534 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002535 break;
2536
2537 default:
2538 LOG(FATAL) << "Unexpected type conversion from " << input_type
2539 << " to " << result_type;
2540 };
2541 break;
2542
Roland Levillaindff1f282014-11-05 14:15:05 +00002543 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002544 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002545 case Primitive::kPrimBoolean:
2546 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002547 case Primitive::kPrimByte:
2548 case Primitive::kPrimShort:
2549 case Primitive::kPrimInt:
2550 case Primitive::kPrimChar:
2551 // Processing a Dex `int-to-double' instruction.
2552 locations->SetInAt(0, Location::RequiresRegister());
2553 locations->SetOut(Location::RequiresFpuRegister());
2554 break;
2555
2556 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00002557 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002558 locations->SetInAt(0, Location::Any());
2559 locations->SetOut(Location::Any());
Roland Levillain647b9ed2014-11-27 12:06:00 +00002560 break;
2561
Roland Levillaincff13742014-11-17 14:32:17 +00002562 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002563 // Processing a Dex `float-to-double' instruction.
2564 locations->SetInAt(0, Location::RequiresFpuRegister());
2565 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002566 break;
2567
2568 default:
2569 LOG(FATAL) << "Unexpected type conversion from " << input_type
2570 << " to " << result_type;
2571 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002572 break;
2573
2574 default:
2575 LOG(FATAL) << "Unexpected type conversion from " << input_type
2576 << " to " << result_type;
2577 }
2578}
2579
2580void InstructionCodeGeneratorX86::VisitTypeConversion(HTypeConversion* conversion) {
2581 LocationSummary* locations = conversion->GetLocations();
2582 Location out = locations->Out();
2583 Location in = locations->InAt(0);
2584 Primitive::Type result_type = conversion->GetResultType();
2585 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002586 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00002587 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002588 case Primitive::kPrimByte:
2589 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002590 case Primitive::kPrimLong:
2591 // Type conversion from long to byte is a result of code transformations.
2592 if (in.IsRegisterPair()) {
2593 __ movsxb(out.AsRegister<Register>(), in.AsRegisterPairLow<ByteRegister>());
2594 } else {
2595 DCHECK(in.GetConstant()->IsLongConstant());
2596 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2597 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
2598 }
2599 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002600 case Primitive::kPrimBoolean:
2601 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002602 case Primitive::kPrimShort:
2603 case Primitive::kPrimInt:
2604 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002605 // Processing a Dex `int-to-byte' instruction.
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00002606 if (in.IsRegister()) {
2607 __ movsxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>());
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00002608 } else {
2609 DCHECK(in.GetConstant()->IsIntConstant());
2610 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
2611 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
2612 }
Roland Levillain51d3fc42014-11-13 14:11:42 +00002613 break;
2614
2615 default:
2616 LOG(FATAL) << "Unexpected type conversion from " << input_type
2617 << " to " << result_type;
2618 }
2619 break;
2620
Roland Levillain01a8d712014-11-14 16:27:39 +00002621 case Primitive::kPrimShort:
2622 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002623 case Primitive::kPrimLong:
2624 // Type conversion from long to short is a result of code transformations.
2625 if (in.IsRegisterPair()) {
2626 __ movsxw(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
2627 } else if (in.IsDoubleStackSlot()) {
2628 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
2629 } else {
2630 DCHECK(in.GetConstant()->IsLongConstant());
2631 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2632 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
2633 }
2634 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002635 case Primitive::kPrimBoolean:
2636 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002637 case Primitive::kPrimByte:
2638 case Primitive::kPrimInt:
2639 case Primitive::kPrimChar:
2640 // Processing a Dex `int-to-short' instruction.
2641 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002642 __ movsxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain01a8d712014-11-14 16:27:39 +00002643 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002644 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain01a8d712014-11-14 16:27:39 +00002645 } else {
2646 DCHECK(in.GetConstant()->IsIntConstant());
2647 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002648 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
Roland Levillain01a8d712014-11-14 16:27:39 +00002649 }
2650 break;
2651
2652 default:
2653 LOG(FATAL) << "Unexpected type conversion from " << input_type
2654 << " to " << result_type;
2655 }
2656 break;
2657
Roland Levillain946e1432014-11-11 17:35:19 +00002658 case Primitive::kPrimInt:
2659 switch (input_type) {
2660 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002661 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002662 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002663 __ movl(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00002664 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002665 __ movl(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain946e1432014-11-11 17:35:19 +00002666 } else {
2667 DCHECK(in.IsConstant());
2668 DCHECK(in.GetConstant()->IsLongConstant());
2669 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002670 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00002671 }
2672 break;
2673
Roland Levillain3f8f9362014-12-02 17:45:01 +00002674 case Primitive::kPrimFloat: {
2675 // Processing a Dex `float-to-int' instruction.
2676 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2677 Register output = out.AsRegister<Register>();
2678 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002679 NearLabel done, nan;
Roland Levillain3f8f9362014-12-02 17:45:01 +00002680
2681 __ movl(output, Immediate(kPrimIntMax));
2682 // temp = int-to-float(output)
2683 __ cvtsi2ss(temp, output);
2684 // if input >= temp goto done
2685 __ comiss(input, temp);
2686 __ j(kAboveEqual, &done);
2687 // if input == NaN goto nan
2688 __ j(kUnordered, &nan);
2689 // output = float-to-int-truncate(input)
2690 __ cvttss2si(output, input);
2691 __ jmp(&done);
2692 __ Bind(&nan);
2693 // output = 0
2694 __ xorl(output, output);
2695 __ Bind(&done);
2696 break;
2697 }
2698
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002699 case Primitive::kPrimDouble: {
2700 // Processing a Dex `double-to-int' instruction.
2701 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2702 Register output = out.AsRegister<Register>();
2703 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002704 NearLabel done, nan;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002705
2706 __ movl(output, Immediate(kPrimIntMax));
2707 // temp = int-to-double(output)
2708 __ cvtsi2sd(temp, output);
2709 // if input >= temp goto done
2710 __ comisd(input, temp);
2711 __ j(kAboveEqual, &done);
2712 // if input == NaN goto nan
2713 __ j(kUnordered, &nan);
2714 // output = double-to-int-truncate(input)
2715 __ cvttsd2si(output, input);
2716 __ jmp(&done);
2717 __ Bind(&nan);
2718 // output = 0
2719 __ xorl(output, output);
2720 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00002721 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002722 }
Roland Levillain946e1432014-11-11 17:35:19 +00002723
2724 default:
2725 LOG(FATAL) << "Unexpected type conversion from " << input_type
2726 << " to " << result_type;
2727 }
2728 break;
2729
Roland Levillaindff1f282014-11-05 14:15:05 +00002730 case Primitive::kPrimLong:
2731 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002732 case Primitive::kPrimBoolean:
2733 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002734 case Primitive::kPrimByte:
2735 case Primitive::kPrimShort:
2736 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002737 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002738 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002739 DCHECK_EQ(out.AsRegisterPairLow<Register>(), EAX);
2740 DCHECK_EQ(out.AsRegisterPairHigh<Register>(), EDX);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002741 DCHECK_EQ(in.AsRegister<Register>(), EAX);
Roland Levillaindff1f282014-11-05 14:15:05 +00002742 __ cdq();
2743 break;
2744
2745 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00002746 // Processing a Dex `float-to-long' instruction.
Serban Constantinescuba45db02016-07-12 22:53:02 +01002747 codegen_->InvokeRuntime(kQuickF2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002748 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
Roland Levillain624279f2014-12-04 11:54:28 +00002749 break;
2750
Roland Levillaindff1f282014-11-05 14:15:05 +00002751 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002752 // Processing a Dex `double-to-long' instruction.
Serban Constantinescuba45db02016-07-12 22:53:02 +01002753 codegen_->InvokeRuntime(kQuickD2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002754 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
Roland Levillaindff1f282014-11-05 14:15:05 +00002755 break;
2756
2757 default:
2758 LOG(FATAL) << "Unexpected type conversion from " << input_type
2759 << " to " << result_type;
2760 }
2761 break;
2762
Roland Levillain981e4542014-11-14 11:47:14 +00002763 case Primitive::kPrimChar:
2764 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002765 case Primitive::kPrimLong:
2766 // Type conversion from long to short is a result of code transformations.
2767 if (in.IsRegisterPair()) {
2768 __ movzxw(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
2769 } else if (in.IsDoubleStackSlot()) {
2770 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
2771 } else {
2772 DCHECK(in.GetConstant()->IsLongConstant());
2773 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2774 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
2775 }
2776 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002777 case Primitive::kPrimBoolean:
2778 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002779 case Primitive::kPrimByte:
2780 case Primitive::kPrimShort:
2781 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002782 // Processing a Dex `Process a Dex `int-to-char'' instruction.
2783 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002784 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain981e4542014-11-14 11:47:14 +00002785 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002786 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain981e4542014-11-14 11:47:14 +00002787 } else {
2788 DCHECK(in.GetConstant()->IsIntConstant());
2789 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002790 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
Roland Levillain981e4542014-11-14 11:47:14 +00002791 }
2792 break;
2793
2794 default:
2795 LOG(FATAL) << "Unexpected type conversion from " << input_type
2796 << " to " << result_type;
2797 }
2798 break;
2799
Roland Levillaindff1f282014-11-05 14:15:05 +00002800 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002801 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002802 case Primitive::kPrimBoolean:
2803 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002804 case Primitive::kPrimByte:
2805 case Primitive::kPrimShort:
2806 case Primitive::kPrimInt:
2807 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002808 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002809 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002810 break;
2811
Roland Levillain6d0e4832014-11-27 18:31:21 +00002812 case Primitive::kPrimLong: {
2813 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002814 size_t adjustment = 0;
Roland Levillain6d0e4832014-11-27 18:31:21 +00002815
Roland Levillain232ade02015-04-20 15:14:36 +01002816 // Create stack space for the call to
2817 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstps below.
2818 // TODO: enhance register allocator to ask for stack temporaries.
2819 if (!in.IsDoubleStackSlot() || !out.IsStackSlot()) {
2820 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
2821 __ subl(ESP, Immediate(adjustment));
2822 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002823
Roland Levillain232ade02015-04-20 15:14:36 +01002824 // Load the value to the FP stack, using temporaries if needed.
2825 PushOntoFPStack(in, 0, adjustment, false, true);
2826
2827 if (out.IsStackSlot()) {
2828 __ fstps(Address(ESP, out.GetStackIndex() + adjustment));
2829 } else {
2830 __ fstps(Address(ESP, 0));
2831 Location stack_temp = Location::StackSlot(0);
2832 codegen_->Move32(out, stack_temp);
2833 }
2834
2835 // Remove the temporary stack space we allocated.
2836 if (adjustment != 0) {
2837 __ addl(ESP, Immediate(adjustment));
2838 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002839 break;
2840 }
2841
Roland Levillaincff13742014-11-17 14:32:17 +00002842 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002843 // Processing a Dex `double-to-float' instruction.
2844 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002845 break;
2846
2847 default:
2848 LOG(FATAL) << "Unexpected type conversion from " << input_type
2849 << " to " << result_type;
2850 };
2851 break;
2852
Roland Levillaindff1f282014-11-05 14:15:05 +00002853 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002854 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002855 case Primitive::kPrimBoolean:
2856 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002857 case Primitive::kPrimByte:
2858 case Primitive::kPrimShort:
2859 case Primitive::kPrimInt:
2860 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002861 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002862 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002863 break;
2864
Roland Levillain647b9ed2014-11-27 12:06:00 +00002865 case Primitive::kPrimLong: {
2866 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002867 size_t adjustment = 0;
Roland Levillain647b9ed2014-11-27 12:06:00 +00002868
Roland Levillain232ade02015-04-20 15:14:36 +01002869 // Create stack space for the call to
2870 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstpl below.
2871 // TODO: enhance register allocator to ask for stack temporaries.
2872 if (!in.IsDoubleStackSlot() || !out.IsDoubleStackSlot()) {
2873 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
2874 __ subl(ESP, Immediate(adjustment));
2875 }
2876
2877 // Load the value to the FP stack, using temporaries if needed.
2878 PushOntoFPStack(in, 0, adjustment, false, true);
2879
2880 if (out.IsDoubleStackSlot()) {
2881 __ fstpl(Address(ESP, out.GetStackIndex() + adjustment));
2882 } else {
2883 __ fstpl(Address(ESP, 0));
2884 Location stack_temp = Location::DoubleStackSlot(0);
2885 codegen_->Move64(out, stack_temp);
2886 }
2887
2888 // Remove the temporary stack space we allocated.
2889 if (adjustment != 0) {
2890 __ addl(ESP, Immediate(adjustment));
2891 }
Roland Levillain647b9ed2014-11-27 12:06:00 +00002892 break;
2893 }
2894
Roland Levillaincff13742014-11-17 14:32:17 +00002895 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002896 // Processing a Dex `float-to-double' instruction.
2897 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002898 break;
2899
2900 default:
2901 LOG(FATAL) << "Unexpected type conversion from " << input_type
2902 << " to " << result_type;
2903 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002904 break;
2905
2906 default:
2907 LOG(FATAL) << "Unexpected type conversion from " << input_type
2908 << " to " << result_type;
2909 }
2910}
2911
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002912void LocationsBuilderX86::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002913 LocationSummary* locations =
2914 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002915 switch (add->GetResultType()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002916 case Primitive::kPrimInt: {
2917 locations->SetInAt(0, Location::RequiresRegister());
2918 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
2919 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2920 break;
2921 }
2922
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002923 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002924 locations->SetInAt(0, Location::RequiresRegister());
2925 locations->SetInAt(1, Location::Any());
2926 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002927 break;
2928 }
2929
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002930 case Primitive::kPrimFloat:
2931 case Primitive::kPrimDouble: {
2932 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00002933 if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
2934 DCHECK(add->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00002935 } else if (add->InputAt(1)->IsConstant()) {
2936 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00002937 } else {
2938 locations->SetInAt(1, Location::Any());
2939 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002940 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002941 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002942 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002943
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002944 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002945 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
2946 break;
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002947 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002948}
2949
2950void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) {
2951 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002952 Location first = locations->InAt(0);
2953 Location second = locations->InAt(1);
Mark Mendell09b84632015-02-13 17:48:38 -05002954 Location out = locations->Out();
2955
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002956 switch (add->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002957 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002958 if (second.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002959 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2960 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
Mark Mendell33bf2452015-05-27 10:08:24 -04002961 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2962 __ addl(out.AsRegister<Register>(), first.AsRegister<Register>());
Mark Mendell09b84632015-02-13 17:48:38 -05002963 } else {
2964 __ leal(out.AsRegister<Register>(), Address(
2965 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2966 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002967 } else if (second.IsConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002968 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2969 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2970 __ addl(out.AsRegister<Register>(), Immediate(value));
2971 } else {
2972 __ leal(out.AsRegister<Register>(), Address(first.AsRegister<Register>(), value));
2973 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002974 } else {
Mark Mendell09b84632015-02-13 17:48:38 -05002975 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002976 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002977 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002978 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002979 }
2980
2981 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00002982 if (second.IsRegisterPair()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002983 __ addl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
2984 __ adcl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002985 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002986 __ addl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
2987 __ adcl(first.AsRegisterPairHigh<Register>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002988 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002989 } else {
2990 DCHECK(second.IsConstant()) << second;
2991 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2992 __ addl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
2993 __ adcl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002994 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002995 break;
2996 }
2997
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002998 case Primitive::kPrimFloat: {
2999 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003000 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Mark Mendell0616ae02015-04-17 12:49:27 -04003001 } else if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
3002 HX86LoadFromConstantTable* const_area = add->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003003 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003004 __ addss(first.AsFpuRegister<XmmRegister>(),
3005 codegen_->LiteralFloatAddress(
3006 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3007 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3008 } else {
3009 DCHECK(second.IsStackSlot());
3010 __ addss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003011 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003012 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003013 }
3014
3015 case Primitive::kPrimDouble: {
3016 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003017 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Mark Mendell0616ae02015-04-17 12:49:27 -04003018 } else if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
3019 HX86LoadFromConstantTable* const_area = add->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003020 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003021 __ addsd(first.AsFpuRegister<XmmRegister>(),
3022 codegen_->LiteralDoubleAddress(
3023 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3024 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3025 } else {
3026 DCHECK(second.IsDoubleStackSlot());
3027 __ addsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003028 }
3029 break;
3030 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003031
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003032 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003033 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003034 }
3035}
3036
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003037void LocationsBuilderX86::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003038 LocationSummary* locations =
3039 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003040 switch (sub->GetResultType()) {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003041 case Primitive::kPrimInt:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003042 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003043 locations->SetInAt(0, Location::RequiresRegister());
3044 locations->SetInAt(1, Location::Any());
3045 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003046 break;
3047 }
Calin Juravle11351682014-10-23 15:38:15 +01003048 case Primitive::kPrimFloat:
3049 case Primitive::kPrimDouble: {
3050 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003051 if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3052 DCHECK(sub->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003053 } else if (sub->InputAt(1)->IsConstant()) {
3054 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003055 } else {
3056 locations->SetInAt(1, Location::Any());
3057 }
Calin Juravle11351682014-10-23 15:38:15 +01003058 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003059 break;
Calin Juravle11351682014-10-23 15:38:15 +01003060 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003061
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003062 default:
Calin Juravle11351682014-10-23 15:38:15 +01003063 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003064 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003065}
3066
3067void InstructionCodeGeneratorX86::VisitSub(HSub* sub) {
3068 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003069 Location first = locations->InAt(0);
3070 Location second = locations->InAt(1);
Calin Juravle11351682014-10-23 15:38:15 +01003071 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003072 switch (sub->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003073 case Primitive::kPrimInt: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003074 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003075 __ subl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003076 } else if (second.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003077 __ subl(first.AsRegister<Register>(),
3078 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003079 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003080 __ subl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003081 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003082 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003083 }
3084
3085 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003086 if (second.IsRegisterPair()) {
Calin Juravle11351682014-10-23 15:38:15 +01003087 __ subl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
3088 __ sbbl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003089 } else if (second.IsDoubleStackSlot()) {
Calin Juravle11351682014-10-23 15:38:15 +01003090 __ subl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003091 __ sbbl(first.AsRegisterPairHigh<Register>(),
3092 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003093 } else {
3094 DCHECK(second.IsConstant()) << second;
3095 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
3096 __ subl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
3097 __ sbbl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003098 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003099 break;
3100 }
3101
Calin Juravle11351682014-10-23 15:38:15 +01003102 case Primitive::kPrimFloat: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003103 if (second.IsFpuRegister()) {
3104 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3105 } else if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3106 HX86LoadFromConstantTable* const_area = sub->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003107 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003108 __ subss(first.AsFpuRegister<XmmRegister>(),
3109 codegen_->LiteralFloatAddress(
3110 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3111 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3112 } else {
3113 DCHECK(second.IsStackSlot());
3114 __ subss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3115 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003116 break;
Calin Juravle11351682014-10-23 15:38:15 +01003117 }
3118
3119 case Primitive::kPrimDouble: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003120 if (second.IsFpuRegister()) {
3121 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3122 } else if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3123 HX86LoadFromConstantTable* const_area = sub->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003124 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003125 __ subsd(first.AsFpuRegister<XmmRegister>(),
3126 codegen_->LiteralDoubleAddress(
3127 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3128 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3129 } else {
3130 DCHECK(second.IsDoubleStackSlot());
3131 __ subsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3132 }
Calin Juravle11351682014-10-23 15:38:15 +01003133 break;
3134 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003135
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003136 default:
Calin Juravle11351682014-10-23 15:38:15 +01003137 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003138 }
3139}
3140
Calin Juravle34bacdf2014-10-07 20:23:36 +01003141void LocationsBuilderX86::VisitMul(HMul* mul) {
3142 LocationSummary* locations =
3143 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
3144 switch (mul->GetResultType()) {
3145 case Primitive::kPrimInt:
3146 locations->SetInAt(0, Location::RequiresRegister());
3147 locations->SetInAt(1, Location::Any());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003148 if (mul->InputAt(1)->IsIntConstant()) {
3149 // Can use 3 operand multiply.
3150 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3151 } else {
3152 locations->SetOut(Location::SameAsFirstInput());
3153 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003154 break;
3155 case Primitive::kPrimLong: {
3156 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003157 locations->SetInAt(1, Location::Any());
3158 locations->SetOut(Location::SameAsFirstInput());
3159 // Needed for imul on 32bits with 64bits output.
3160 locations->AddTemp(Location::RegisterLocation(EAX));
3161 locations->AddTemp(Location::RegisterLocation(EDX));
3162 break;
3163 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003164 case Primitive::kPrimFloat:
3165 case Primitive::kPrimDouble: {
3166 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003167 if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3168 DCHECK(mul->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003169 } else if (mul->InputAt(1)->IsConstant()) {
3170 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003171 } else {
3172 locations->SetInAt(1, Location::Any());
3173 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003174 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003175 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003176 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003177
3178 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003179 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003180 }
3181}
3182
3183void InstructionCodeGeneratorX86::VisitMul(HMul* mul) {
3184 LocationSummary* locations = mul->GetLocations();
3185 Location first = locations->InAt(0);
3186 Location second = locations->InAt(1);
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003187 Location out = locations->Out();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003188
3189 switch (mul->GetResultType()) {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003190 case Primitive::kPrimInt:
3191 // The constant may have ended up in a register, so test explicitly to avoid
3192 // problems where the output may not be the same as the first operand.
3193 if (mul->InputAt(1)->IsIntConstant()) {
3194 Immediate imm(mul->InputAt(1)->AsIntConstant()->GetValue());
3195 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm);
3196 } else if (second.IsRegister()) {
3197 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00003198 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003199 } else {
3200 DCHECK(second.IsStackSlot());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003201 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00003202 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01003203 }
3204 break;
Calin Juravle34bacdf2014-10-07 20:23:36 +01003205
3206 case Primitive::kPrimLong: {
Calin Juravle34bacdf2014-10-07 20:23:36 +01003207 Register in1_hi = first.AsRegisterPairHigh<Register>();
3208 Register in1_lo = first.AsRegisterPairLow<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003209 Register eax = locations->GetTemp(0).AsRegister<Register>();
3210 Register edx = locations->GetTemp(1).AsRegister<Register>();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003211
3212 DCHECK_EQ(EAX, eax);
3213 DCHECK_EQ(EDX, edx);
3214
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003215 // input: in1 - 64 bits, in2 - 64 bits.
Calin Juravle34bacdf2014-10-07 20:23:36 +01003216 // output: in1
3217 // formula: in1.hi : in1.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
3218 // parts: in1.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
3219 // parts: in1.lo = (in1.lo * in2.lo)[31:0]
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003220 if (second.IsConstant()) {
3221 DCHECK(second.GetConstant()->IsLongConstant());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003222
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003223 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
3224 int32_t low_value = Low32Bits(value);
3225 int32_t high_value = High32Bits(value);
3226 Immediate low(low_value);
3227 Immediate high(high_value);
3228
3229 __ movl(eax, high);
3230 // eax <- in1.lo * in2.hi
3231 __ imull(eax, in1_lo);
3232 // in1.hi <- in1.hi * in2.lo
3233 __ imull(in1_hi, low);
3234 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3235 __ addl(in1_hi, eax);
3236 // move in2_lo to eax to prepare for double precision
3237 __ movl(eax, low);
3238 // edx:eax <- in1.lo * in2.lo
3239 __ mull(in1_lo);
3240 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3241 __ addl(in1_hi, edx);
3242 // in1.lo <- (in1.lo * in2.lo)[31:0];
3243 __ movl(in1_lo, eax);
3244 } else if (second.IsRegisterPair()) {
3245 Register in2_hi = second.AsRegisterPairHigh<Register>();
3246 Register in2_lo = second.AsRegisterPairLow<Register>();
3247
3248 __ movl(eax, in2_hi);
3249 // eax <- in1.lo * in2.hi
3250 __ imull(eax, in1_lo);
3251 // in1.hi <- in1.hi * in2.lo
3252 __ imull(in1_hi, in2_lo);
3253 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3254 __ addl(in1_hi, eax);
3255 // move in1_lo to eax to prepare for double precision
3256 __ movl(eax, in1_lo);
3257 // edx:eax <- in1.lo * in2.lo
3258 __ mull(in2_lo);
3259 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3260 __ addl(in1_hi, edx);
3261 // in1.lo <- (in1.lo * in2.lo)[31:0];
3262 __ movl(in1_lo, eax);
3263 } else {
3264 DCHECK(second.IsDoubleStackSlot()) << second;
3265 Address in2_hi(ESP, second.GetHighStackIndex(kX86WordSize));
3266 Address in2_lo(ESP, second.GetStackIndex());
3267
3268 __ movl(eax, in2_hi);
3269 // eax <- in1.lo * in2.hi
3270 __ imull(eax, in1_lo);
3271 // in1.hi <- in1.hi * in2.lo
3272 __ imull(in1_hi, in2_lo);
3273 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3274 __ addl(in1_hi, eax);
3275 // move in1_lo to eax to prepare for double precision
3276 __ movl(eax, in1_lo);
3277 // edx:eax <- in1.lo * in2.lo
3278 __ mull(in2_lo);
3279 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3280 __ addl(in1_hi, edx);
3281 // in1.lo <- (in1.lo * in2.lo)[31:0];
3282 __ movl(in1_lo, eax);
3283 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003284
3285 break;
3286 }
3287
Calin Juravleb5bfa962014-10-21 18:02:24 +01003288 case Primitive::kPrimFloat: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003289 DCHECK(first.Equals(locations->Out()));
3290 if (second.IsFpuRegister()) {
3291 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3292 } else if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3293 HX86LoadFromConstantTable* const_area = mul->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003294 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003295 __ mulss(first.AsFpuRegister<XmmRegister>(),
3296 codegen_->LiteralFloatAddress(
3297 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3298 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3299 } else {
3300 DCHECK(second.IsStackSlot());
3301 __ mulss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3302 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003303 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003304 }
3305
3306 case Primitive::kPrimDouble: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003307 DCHECK(first.Equals(locations->Out()));
3308 if (second.IsFpuRegister()) {
3309 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3310 } else if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3311 HX86LoadFromConstantTable* const_area = mul->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003312 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003313 __ mulsd(first.AsFpuRegister<XmmRegister>(),
3314 codegen_->LiteralDoubleAddress(
3315 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3316 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3317 } else {
3318 DCHECK(second.IsDoubleStackSlot());
3319 __ mulsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3320 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003321 break;
3322 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003323
3324 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003325 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003326 }
3327}
3328
Roland Levillain232ade02015-04-20 15:14:36 +01003329void InstructionCodeGeneratorX86::PushOntoFPStack(Location source,
3330 uint32_t temp_offset,
3331 uint32_t stack_adjustment,
3332 bool is_fp,
3333 bool is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003334 if (source.IsStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01003335 DCHECK(!is_wide);
3336 if (is_fp) {
3337 __ flds(Address(ESP, source.GetStackIndex() + stack_adjustment));
3338 } else {
3339 __ filds(Address(ESP, source.GetStackIndex() + stack_adjustment));
3340 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003341 } else if (source.IsDoubleStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01003342 DCHECK(is_wide);
3343 if (is_fp) {
3344 __ fldl(Address(ESP, source.GetStackIndex() + stack_adjustment));
3345 } else {
3346 __ fildl(Address(ESP, source.GetStackIndex() + stack_adjustment));
3347 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003348 } else {
3349 // Write the value to the temporary location on the stack and load to FP stack.
Roland Levillain232ade02015-04-20 15:14:36 +01003350 if (!is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003351 Location stack_temp = Location::StackSlot(temp_offset);
3352 codegen_->Move32(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01003353 if (is_fp) {
3354 __ flds(Address(ESP, temp_offset));
3355 } else {
3356 __ filds(Address(ESP, temp_offset));
3357 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003358 } else {
3359 Location stack_temp = Location::DoubleStackSlot(temp_offset);
3360 codegen_->Move64(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01003361 if (is_fp) {
3362 __ fldl(Address(ESP, temp_offset));
3363 } else {
3364 __ fildl(Address(ESP, temp_offset));
3365 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003366 }
3367 }
3368}
3369
3370void InstructionCodeGeneratorX86::GenerateRemFP(HRem *rem) {
3371 Primitive::Type type = rem->GetResultType();
3372 bool is_float = type == Primitive::kPrimFloat;
3373 size_t elem_size = Primitive::ComponentSize(type);
3374 LocationSummary* locations = rem->GetLocations();
3375 Location first = locations->InAt(0);
3376 Location second = locations->InAt(1);
3377 Location out = locations->Out();
3378
3379 // Create stack space for 2 elements.
3380 // TODO: enhance register allocator to ask for stack temporaries.
3381 __ subl(ESP, Immediate(2 * elem_size));
3382
3383 // Load the values to the FP stack in reverse order, using temporaries if needed.
Roland Levillain232ade02015-04-20 15:14:36 +01003384 const bool is_wide = !is_float;
3385 PushOntoFPStack(second, elem_size, 2 * elem_size, /* is_fp */ true, is_wide);
3386 PushOntoFPStack(first, 0, 2 * elem_size, /* is_fp */ true, is_wide);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003387
3388 // Loop doing FPREM until we stabilize.
Mark Mendell0c9497d2015-08-21 09:30:05 -04003389 NearLabel retry;
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003390 __ Bind(&retry);
3391 __ fprem();
3392
3393 // Move FP status to AX.
3394 __ fstsw();
3395
3396 // And see if the argument reduction is complete. This is signaled by the
3397 // C2 FPU flag bit set to 0.
3398 __ andl(EAX, Immediate(kC2ConditionMask));
3399 __ j(kNotEqual, &retry);
3400
3401 // We have settled on the final value. Retrieve it into an XMM register.
3402 // Store FP top of stack to real stack.
3403 if (is_float) {
3404 __ fsts(Address(ESP, 0));
3405 } else {
3406 __ fstl(Address(ESP, 0));
3407 }
3408
3409 // Pop the 2 items from the FP stack.
3410 __ fucompp();
3411
3412 // Load the value from the stack into an XMM register.
3413 DCHECK(out.IsFpuRegister()) << out;
3414 if (is_float) {
3415 __ movss(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
3416 } else {
3417 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
3418 }
3419
3420 // And remove the temporary stack space we allocated.
3421 __ addl(ESP, Immediate(2 * elem_size));
3422}
3423
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003424
3425void InstructionCodeGeneratorX86::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
3426 DCHECK(instruction->IsDiv() || instruction->IsRem());
3427
3428 LocationSummary* locations = instruction->GetLocations();
3429 DCHECK(locations->InAt(1).IsConstant());
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003430 DCHECK(locations->InAt(1).GetConstant()->IsIntConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003431
3432 Register out_register = locations->Out().AsRegister<Register>();
3433 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003434 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003435
3436 DCHECK(imm == 1 || imm == -1);
3437
3438 if (instruction->IsRem()) {
3439 __ xorl(out_register, out_register);
3440 } else {
3441 __ movl(out_register, input_register);
3442 if (imm == -1) {
3443 __ negl(out_register);
3444 }
3445 }
3446}
3447
3448
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003449void InstructionCodeGeneratorX86::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003450 LocationSummary* locations = instruction->GetLocations();
3451
3452 Register out_register = locations->Out().AsRegister<Register>();
3453 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003454 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003455 DCHECK(IsPowerOfTwo(AbsOrMin(imm)));
3456 uint32_t abs_imm = static_cast<uint32_t>(AbsOrMin(imm));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003457
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003458 Register num = locations->GetTemp(0).AsRegister<Register>();
3459
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003460 __ leal(num, Address(input_register, abs_imm - 1));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003461 __ testl(input_register, input_register);
3462 __ cmovl(kGreaterEqual, num, input_register);
3463 int shift = CTZ(imm);
3464 __ sarl(num, Immediate(shift));
3465
3466 if (imm < 0) {
3467 __ negl(num);
3468 }
3469
3470 __ movl(out_register, num);
3471}
3472
3473void InstructionCodeGeneratorX86::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
3474 DCHECK(instruction->IsDiv() || instruction->IsRem());
3475
3476 LocationSummary* locations = instruction->GetLocations();
3477 int imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
3478
3479 Register eax = locations->InAt(0).AsRegister<Register>();
3480 Register out = locations->Out().AsRegister<Register>();
3481 Register num;
3482 Register edx;
3483
3484 if (instruction->IsDiv()) {
3485 edx = locations->GetTemp(0).AsRegister<Register>();
3486 num = locations->GetTemp(1).AsRegister<Register>();
3487 } else {
3488 edx = locations->Out().AsRegister<Register>();
3489 num = locations->GetTemp(0).AsRegister<Register>();
3490 }
3491
3492 DCHECK_EQ(EAX, eax);
3493 DCHECK_EQ(EDX, edx);
3494 if (instruction->IsDiv()) {
3495 DCHECK_EQ(EAX, out);
3496 } else {
3497 DCHECK_EQ(EDX, out);
3498 }
3499
3500 int64_t magic;
3501 int shift;
3502 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
3503
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003504 // Save the numerator.
3505 __ movl(num, eax);
3506
3507 // EAX = magic
3508 __ movl(eax, Immediate(magic));
3509
3510 // EDX:EAX = magic * numerator
3511 __ imull(num);
3512
3513 if (imm > 0 && magic < 0) {
3514 // EDX += num
3515 __ addl(edx, num);
3516 } else if (imm < 0 && magic > 0) {
3517 __ subl(edx, num);
3518 }
3519
3520 // Shift if needed.
3521 if (shift != 0) {
3522 __ sarl(edx, Immediate(shift));
3523 }
3524
3525 // EDX += 1 if EDX < 0
3526 __ movl(eax, edx);
3527 __ shrl(edx, Immediate(31));
3528 __ addl(edx, eax);
3529
3530 if (instruction->IsRem()) {
3531 __ movl(eax, num);
3532 __ imull(edx, Immediate(imm));
3533 __ subl(eax, edx);
3534 __ movl(edx, eax);
3535 } else {
3536 __ movl(eax, edx);
3537 }
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003538}
3539
Calin Juravlebacfec32014-11-14 15:54:36 +00003540void InstructionCodeGeneratorX86::GenerateDivRemIntegral(HBinaryOperation* instruction) {
3541 DCHECK(instruction->IsDiv() || instruction->IsRem());
3542
3543 LocationSummary* locations = instruction->GetLocations();
3544 Location out = locations->Out();
3545 Location first = locations->InAt(0);
3546 Location second = locations->InAt(1);
3547 bool is_div = instruction->IsDiv();
3548
3549 switch (instruction->GetResultType()) {
3550 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003551 DCHECK_EQ(EAX, first.AsRegister<Register>());
3552 DCHECK_EQ(is_div ? EAX : EDX, out.AsRegister<Register>());
Calin Juravlebacfec32014-11-14 15:54:36 +00003553
Vladimir Marko13c86fd2015-11-11 12:37:46 +00003554 if (second.IsConstant()) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003555 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003556
3557 if (imm == 0) {
3558 // Do not generate anything for 0. DivZeroCheck would forbid any generated code.
3559 } else if (imm == 1 || imm == -1) {
3560 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003561 } else if (is_div && IsPowerOfTwo(AbsOrMin(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003562 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003563 } else {
3564 DCHECK(imm <= -2 || imm >= 2);
3565 GenerateDivRemWithAnyConstant(instruction);
3566 }
3567 } else {
David Srbecky9cd6d372016-02-09 15:24:47 +00003568 SlowPathCode* slow_path = new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86(
3569 instruction, out.AsRegister<Register>(), is_div);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003570 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00003571
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003572 Register second_reg = second.AsRegister<Register>();
3573 // 0x80000000/-1 triggers an arithmetic exception!
3574 // Dividing by -1 is actually negation and -0x800000000 = 0x80000000 so
3575 // it's safe to just use negl instead of more complex comparisons.
Calin Juravlebacfec32014-11-14 15:54:36 +00003576
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003577 __ cmpl(second_reg, Immediate(-1));
3578 __ j(kEqual, slow_path->GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +00003579
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003580 // edx:eax <- sign-extended of eax
3581 __ cdq();
3582 // eax = quotient, edx = remainder
3583 __ idivl(second_reg);
3584 __ Bind(slow_path->GetExitLabel());
3585 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003586 break;
3587 }
3588
3589 case Primitive::kPrimLong: {
3590 InvokeRuntimeCallingConvention calling_convention;
3591 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
3592 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
3593 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
3594 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
3595 DCHECK_EQ(EAX, out.AsRegisterPairLow<Register>());
3596 DCHECK_EQ(EDX, out.AsRegisterPairHigh<Register>());
3597
3598 if (is_div) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01003599 codegen_->InvokeRuntime(kQuickLdiv, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003600 CheckEntrypointTypes<kQuickLdiv, int64_t, int64_t, int64_t>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003601 } else {
Serban Constantinescuba45db02016-07-12 22:53:02 +01003602 codegen_->InvokeRuntime(kQuickLmod, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003603 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003604 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003605 break;
3606 }
3607
3608 default:
3609 LOG(FATAL) << "Unexpected type for GenerateDivRemIntegral " << instruction->GetResultType();
3610 }
3611}
3612
Calin Juravle7c4954d2014-10-28 16:57:40 +00003613void LocationsBuilderX86::VisitDiv(HDiv* div) {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003614 LocationSummary::CallKind call_kind = (div->GetResultType() == Primitive::kPrimLong)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003615 ? LocationSummary::kCallOnMainOnly
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003616 : LocationSummary::kNoCall;
3617 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
3618
Calin Juravle7c4954d2014-10-28 16:57:40 +00003619 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00003620 case Primitive::kPrimInt: {
3621 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003622 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00003623 locations->SetOut(Location::SameAsFirstInput());
3624 // Intel uses edx:eax as the dividend.
3625 locations->AddTemp(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003626 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
3627 // which enforces results to be in EAX and EDX, things are simpler if we use EAX also as
3628 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003629 if (div->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003630 locations->AddTemp(Location::RequiresRegister());
3631 }
Calin Juravled0d48522014-11-04 16:40:20 +00003632 break;
3633 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003634 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003635 InvokeRuntimeCallingConvention calling_convention;
3636 locations->SetInAt(0, Location::RegisterPairLocation(
3637 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3638 locations->SetInAt(1, Location::RegisterPairLocation(
3639 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3640 // Runtime helper puts the result in EAX, EDX.
3641 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Calin Juravle7c4954d2014-10-28 16:57:40 +00003642 break;
3643 }
3644 case Primitive::kPrimFloat:
3645 case Primitive::kPrimDouble: {
3646 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003647 if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3648 DCHECK(div->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003649 } else if (div->InputAt(1)->IsConstant()) {
3650 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003651 } else {
3652 locations->SetInAt(1, Location::Any());
3653 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003654 locations->SetOut(Location::SameAsFirstInput());
3655 break;
3656 }
3657
3658 default:
3659 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3660 }
3661}
3662
3663void InstructionCodeGeneratorX86::VisitDiv(HDiv* div) {
3664 LocationSummary* locations = div->GetLocations();
3665 Location first = locations->InAt(0);
3666 Location second = locations->InAt(1);
Calin Juravle7c4954d2014-10-28 16:57:40 +00003667
3668 switch (div->GetResultType()) {
Calin Juravlebacfec32014-11-14 15:54:36 +00003669 case Primitive::kPrimInt:
Calin Juravle7c4954d2014-10-28 16:57:40 +00003670 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003671 GenerateDivRemIntegral(div);
Calin Juravle7c4954d2014-10-28 16:57:40 +00003672 break;
3673 }
3674
3675 case Primitive::kPrimFloat: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003676 if (second.IsFpuRegister()) {
3677 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3678 } else if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3679 HX86LoadFromConstantTable* const_area = div->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003680 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003681 __ divss(first.AsFpuRegister<XmmRegister>(),
3682 codegen_->LiteralFloatAddress(
3683 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3684 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3685 } else {
3686 DCHECK(second.IsStackSlot());
3687 __ divss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3688 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003689 break;
3690 }
3691
3692 case Primitive::kPrimDouble: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003693 if (second.IsFpuRegister()) {
3694 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3695 } else if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3696 HX86LoadFromConstantTable* const_area = div->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003697 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003698 __ divsd(first.AsFpuRegister<XmmRegister>(),
3699 codegen_->LiteralDoubleAddress(
3700 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3701 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3702 } else {
3703 DCHECK(second.IsDoubleStackSlot());
3704 __ divsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3705 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003706 break;
3707 }
3708
3709 default:
3710 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3711 }
3712}
3713
Calin Juravlebacfec32014-11-14 15:54:36 +00003714void LocationsBuilderX86::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00003715 Primitive::Type type = rem->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003716
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003717 LocationSummary::CallKind call_kind = (rem->GetResultType() == Primitive::kPrimLong)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003718 ? LocationSummary::kCallOnMainOnly
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003719 : LocationSummary::kNoCall;
3720 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
Calin Juravlebacfec32014-11-14 15:54:36 +00003721
Calin Juravled2ec87d2014-12-08 14:24:46 +00003722 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00003723 case Primitive::kPrimInt: {
3724 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003725 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00003726 locations->SetOut(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003727 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
3728 // which enforces results to be in EAX and EDX, things are simpler if we use EDX also as
3729 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003730 if (rem->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003731 locations->AddTemp(Location::RequiresRegister());
3732 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003733 break;
3734 }
3735 case Primitive::kPrimLong: {
3736 InvokeRuntimeCallingConvention calling_convention;
3737 locations->SetInAt(0, Location::RegisterPairLocation(
3738 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3739 locations->SetInAt(1, Location::RegisterPairLocation(
3740 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3741 // Runtime helper puts the result in EAX, EDX.
3742 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
3743 break;
3744 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003745 case Primitive::kPrimDouble:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003746 case Primitive::kPrimFloat: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003747 locations->SetInAt(0, Location::Any());
3748 locations->SetInAt(1, Location::Any());
3749 locations->SetOut(Location::RequiresFpuRegister());
3750 locations->AddTemp(Location::RegisterLocation(EAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00003751 break;
3752 }
3753
3754 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003755 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00003756 }
3757}
3758
3759void InstructionCodeGeneratorX86::VisitRem(HRem* rem) {
3760 Primitive::Type type = rem->GetResultType();
3761 switch (type) {
3762 case Primitive::kPrimInt:
3763 case Primitive::kPrimLong: {
3764 GenerateDivRemIntegral(rem);
3765 break;
3766 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003767 case Primitive::kPrimFloat:
Calin Juravlebacfec32014-11-14 15:54:36 +00003768 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003769 GenerateRemFP(rem);
Calin Juravlebacfec32014-11-14 15:54:36 +00003770 break;
3771 }
3772 default:
3773 LOG(FATAL) << "Unexpected rem type " << type;
3774 }
3775}
3776
Calin Juravled0d48522014-11-04 16:40:20 +00003777void LocationsBuilderX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01003778 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003779 switch (instruction->GetType()) {
Nicolas Geoffraye5671612016-03-16 11:03:54 +00003780 case Primitive::kPrimBoolean:
Serguei Katkov8c0676c2015-08-03 13:55:33 +06003781 case Primitive::kPrimByte:
3782 case Primitive::kPrimChar:
3783 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003784 case Primitive::kPrimInt: {
3785 locations->SetInAt(0, Location::Any());
3786 break;
3787 }
3788 case Primitive::kPrimLong: {
3789 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
3790 if (!instruction->IsConstant()) {
3791 locations->AddTemp(Location::RequiresRegister());
3792 }
3793 break;
3794 }
3795 default:
3796 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
3797 }
Calin Juravled0d48522014-11-04 16:40:20 +00003798}
3799
3800void InstructionCodeGeneratorX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07003801 SlowPathCode* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86(instruction);
Calin Juravled0d48522014-11-04 16:40:20 +00003802 codegen_->AddSlowPath(slow_path);
3803
3804 LocationSummary* locations = instruction->GetLocations();
3805 Location value = locations->InAt(0);
3806
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003807 switch (instruction->GetType()) {
Nicolas Geoffraye5671612016-03-16 11:03:54 +00003808 case Primitive::kPrimBoolean:
Serguei Katkov8c0676c2015-08-03 13:55:33 +06003809 case Primitive::kPrimByte:
3810 case Primitive::kPrimChar:
3811 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003812 case Primitive::kPrimInt: {
3813 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003814 __ testl(value.AsRegister<Register>(), value.AsRegister<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003815 __ j(kEqual, slow_path->GetEntryLabel());
3816 } else if (value.IsStackSlot()) {
3817 __ cmpl(Address(ESP, value.GetStackIndex()), Immediate(0));
3818 __ j(kEqual, slow_path->GetEntryLabel());
3819 } else {
3820 DCHECK(value.IsConstant()) << value;
3821 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01003822 __ jmp(slow_path->GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003823 }
3824 }
3825 break;
Calin Juravled0d48522014-11-04 16:40:20 +00003826 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003827 case Primitive::kPrimLong: {
3828 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003829 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003830 __ movl(temp, value.AsRegisterPairLow<Register>());
3831 __ orl(temp, value.AsRegisterPairHigh<Register>());
3832 __ j(kEqual, slow_path->GetEntryLabel());
3833 } else {
3834 DCHECK(value.IsConstant()) << value;
3835 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
3836 __ jmp(slow_path->GetEntryLabel());
3837 }
3838 }
3839 break;
3840 }
3841 default:
3842 LOG(FATAL) << "Unexpected type for HDivZeroCheck" << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00003843 }
Calin Juravled0d48522014-11-04 16:40:20 +00003844}
3845
Calin Juravle9aec02f2014-11-18 23:06:35 +00003846void LocationsBuilderX86::HandleShift(HBinaryOperation* op) {
3847 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3848
3849 LocationSummary* locations =
3850 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
3851
3852 switch (op->GetResultType()) {
Mark P Mendell73945692015-04-29 14:56:17 +00003853 case Primitive::kPrimInt:
Calin Juravle9aec02f2014-11-18 23:06:35 +00003854 case Primitive::kPrimLong: {
Mark P Mendell73945692015-04-29 14:56:17 +00003855 // Can't have Location::Any() and output SameAsFirstInput()
Calin Juravle9aec02f2014-11-18 23:06:35 +00003856 locations->SetInAt(0, Location::RequiresRegister());
Mark P Mendell73945692015-04-29 14:56:17 +00003857 // The shift count needs to be in CL or a constant.
3858 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, op->InputAt(1)));
Calin Juravle9aec02f2014-11-18 23:06:35 +00003859 locations->SetOut(Location::SameAsFirstInput());
3860 break;
3861 }
3862 default:
3863 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3864 }
3865}
3866
3867void InstructionCodeGeneratorX86::HandleShift(HBinaryOperation* op) {
3868 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3869
3870 LocationSummary* locations = op->GetLocations();
3871 Location first = locations->InAt(0);
3872 Location second = locations->InAt(1);
3873 DCHECK(first.Equals(locations->Out()));
3874
3875 switch (op->GetResultType()) {
3876 case Primitive::kPrimInt: {
Mark P Mendell73945692015-04-29 14:56:17 +00003877 DCHECK(first.IsRegister());
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003878 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003879 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003880 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003881 DCHECK_EQ(ECX, second_reg);
3882 if (op->IsShl()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003883 __ shll(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003884 } else if (op->IsShr()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003885 __ sarl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003886 } else {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003887 __ shrl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003888 }
3889 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00003890 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance;
Mark P Mendell73945692015-04-29 14:56:17 +00003891 if (shift == 0) {
3892 return;
3893 }
3894 Immediate imm(shift);
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003895 if (op->IsShl()) {
3896 __ shll(first_reg, imm);
3897 } else if (op->IsShr()) {
3898 __ sarl(first_reg, imm);
3899 } else {
3900 __ shrl(first_reg, imm);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003901 }
3902 }
3903 break;
3904 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003905 case Primitive::kPrimLong: {
Mark P Mendell73945692015-04-29 14:56:17 +00003906 if (second.IsRegister()) {
3907 Register second_reg = second.AsRegister<Register>();
3908 DCHECK_EQ(ECX, second_reg);
3909 if (op->IsShl()) {
3910 GenerateShlLong(first, second_reg);
3911 } else if (op->IsShr()) {
3912 GenerateShrLong(first, second_reg);
3913 } else {
3914 GenerateUShrLong(first, second_reg);
3915 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003916 } else {
Mark P Mendell73945692015-04-29 14:56:17 +00003917 // Shift by a constant.
Roland Levillain5b5b9312016-03-22 14:57:31 +00003918 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
Mark P Mendell73945692015-04-29 14:56:17 +00003919 // Nothing to do if the shift is 0, as the input is already the output.
3920 if (shift != 0) {
3921 if (op->IsShl()) {
3922 GenerateShlLong(first, shift);
3923 } else if (op->IsShr()) {
3924 GenerateShrLong(first, shift);
3925 } else {
3926 GenerateUShrLong(first, shift);
3927 }
3928 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003929 }
3930 break;
3931 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003932 default:
3933 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3934 }
3935}
3936
Mark P Mendell73945692015-04-29 14:56:17 +00003937void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, int shift) {
3938 Register low = loc.AsRegisterPairLow<Register>();
3939 Register high = loc.AsRegisterPairHigh<Register>();
Mark Mendellba56d062015-05-05 21:34:03 -04003940 if (shift == 1) {
3941 // This is just an addition.
3942 __ addl(low, low);
3943 __ adcl(high, high);
3944 } else if (shift == 32) {
Mark P Mendell73945692015-04-29 14:56:17 +00003945 // Shift by 32 is easy. High gets low, and low gets 0.
3946 codegen_->EmitParallelMoves(
3947 loc.ToLow(),
3948 loc.ToHigh(),
3949 Primitive::kPrimInt,
3950 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
3951 loc.ToLow(),
3952 Primitive::kPrimInt);
3953 } else if (shift > 32) {
3954 // Low part becomes 0. High part is low part << (shift-32).
3955 __ movl(high, low);
3956 __ shll(high, Immediate(shift - 32));
3957 __ xorl(low, low);
3958 } else {
3959 // Between 1 and 31.
3960 __ shld(high, low, Immediate(shift));
3961 __ shll(low, Immediate(shift));
3962 }
3963}
3964
Calin Juravle9aec02f2014-11-18 23:06:35 +00003965void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04003966 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00003967 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter);
3968 __ shll(loc.AsRegisterPairLow<Register>(), shifter);
3969 __ testl(shifter, Immediate(32));
3970 __ j(kEqual, &done);
3971 __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>());
3972 __ movl(loc.AsRegisterPairLow<Register>(), Immediate(0));
3973 __ Bind(&done);
3974}
3975
Mark P Mendell73945692015-04-29 14:56:17 +00003976void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, int shift) {
3977 Register low = loc.AsRegisterPairLow<Register>();
3978 Register high = loc.AsRegisterPairHigh<Register>();
3979 if (shift == 32) {
3980 // Need to copy the sign.
3981 DCHECK_NE(low, high);
3982 __ movl(low, high);
3983 __ sarl(high, Immediate(31));
3984 } else if (shift > 32) {
3985 DCHECK_NE(low, high);
3986 // High part becomes sign. Low part is shifted by shift - 32.
3987 __ movl(low, high);
3988 __ sarl(high, Immediate(31));
3989 __ sarl(low, Immediate(shift - 32));
3990 } else {
3991 // Between 1 and 31.
3992 __ shrd(low, high, Immediate(shift));
3993 __ sarl(high, Immediate(shift));
3994 }
3995}
3996
Calin Juravle9aec02f2014-11-18 23:06:35 +00003997void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04003998 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00003999 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
4000 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter);
4001 __ testl(shifter, Immediate(32));
4002 __ j(kEqual, &done);
4003 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
4004 __ sarl(loc.AsRegisterPairHigh<Register>(), Immediate(31));
4005 __ Bind(&done);
4006}
4007
Mark P Mendell73945692015-04-29 14:56:17 +00004008void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, int shift) {
4009 Register low = loc.AsRegisterPairLow<Register>();
4010 Register high = loc.AsRegisterPairHigh<Register>();
4011 if (shift == 32) {
4012 // Shift by 32 is easy. Low gets high, and high gets 0.
4013 codegen_->EmitParallelMoves(
4014 loc.ToHigh(),
4015 loc.ToLow(),
4016 Primitive::kPrimInt,
4017 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
4018 loc.ToHigh(),
4019 Primitive::kPrimInt);
4020 } else if (shift > 32) {
4021 // Low part is high >> (shift - 32). High part becomes 0.
4022 __ movl(low, high);
4023 __ shrl(low, Immediate(shift - 32));
4024 __ xorl(high, high);
4025 } else {
4026 // Between 1 and 31.
4027 __ shrd(low, high, Immediate(shift));
4028 __ shrl(high, Immediate(shift));
4029 }
4030}
4031
Calin Juravle9aec02f2014-11-18 23:06:35 +00004032void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04004033 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00004034 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
4035 __ shrl(loc.AsRegisterPairHigh<Register>(), shifter);
4036 __ testl(shifter, Immediate(32));
4037 __ j(kEqual, &done);
4038 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
4039 __ movl(loc.AsRegisterPairHigh<Register>(), Immediate(0));
4040 __ Bind(&done);
4041}
4042
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004043void LocationsBuilderX86::VisitRor(HRor* ror) {
4044 LocationSummary* locations =
4045 new (GetGraph()->GetArena()) LocationSummary(ror, LocationSummary::kNoCall);
4046
4047 switch (ror->GetResultType()) {
4048 case Primitive::kPrimLong:
4049 // Add the temporary needed.
4050 locations->AddTemp(Location::RequiresRegister());
4051 FALLTHROUGH_INTENDED;
4052 case Primitive::kPrimInt:
4053 locations->SetInAt(0, Location::RequiresRegister());
4054 // The shift count needs to be in CL (unless it is a constant).
4055 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, ror->InputAt(1)));
4056 locations->SetOut(Location::SameAsFirstInput());
4057 break;
4058 default:
4059 LOG(FATAL) << "Unexpected operation type " << ror->GetResultType();
4060 UNREACHABLE();
4061 }
4062}
4063
4064void InstructionCodeGeneratorX86::VisitRor(HRor* ror) {
4065 LocationSummary* locations = ror->GetLocations();
4066 Location first = locations->InAt(0);
4067 Location second = locations->InAt(1);
4068
4069 if (ror->GetResultType() == Primitive::kPrimInt) {
4070 Register first_reg = first.AsRegister<Register>();
4071 if (second.IsRegister()) {
4072 Register second_reg = second.AsRegister<Register>();
4073 __ rorl(first_reg, second_reg);
4074 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004075 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004076 __ rorl(first_reg, imm);
4077 }
4078 return;
4079 }
4080
4081 DCHECK_EQ(ror->GetResultType(), Primitive::kPrimLong);
4082 Register first_reg_lo = first.AsRegisterPairLow<Register>();
4083 Register first_reg_hi = first.AsRegisterPairHigh<Register>();
4084 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
4085 if (second.IsRegister()) {
4086 Register second_reg = second.AsRegister<Register>();
4087 DCHECK_EQ(second_reg, ECX);
4088 __ movl(temp_reg, first_reg_hi);
4089 __ shrd(first_reg_hi, first_reg_lo, second_reg);
4090 __ shrd(first_reg_lo, temp_reg, second_reg);
4091 __ movl(temp_reg, first_reg_hi);
4092 __ testl(second_reg, Immediate(32));
4093 __ cmovl(kNotEqual, first_reg_hi, first_reg_lo);
4094 __ cmovl(kNotEqual, first_reg_lo, temp_reg);
4095 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004096 int32_t shift_amt = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004097 if (shift_amt == 0) {
4098 // Already fine.
4099 return;
4100 }
4101 if (shift_amt == 32) {
4102 // Just swap.
4103 __ movl(temp_reg, first_reg_lo);
4104 __ movl(first_reg_lo, first_reg_hi);
4105 __ movl(first_reg_hi, temp_reg);
4106 return;
4107 }
4108
4109 Immediate imm(shift_amt);
4110 // Save the constents of the low value.
4111 __ movl(temp_reg, first_reg_lo);
4112
4113 // Shift right into low, feeding bits from high.
4114 __ shrd(first_reg_lo, first_reg_hi, imm);
4115
4116 // Shift right into high, feeding bits from the original low.
4117 __ shrd(first_reg_hi, temp_reg, imm);
4118
4119 // Swap if needed.
4120 if (shift_amt > 32) {
4121 __ movl(temp_reg, first_reg_lo);
4122 __ movl(first_reg_lo, first_reg_hi);
4123 __ movl(first_reg_hi, temp_reg);
4124 }
4125 }
4126}
4127
Calin Juravle9aec02f2014-11-18 23:06:35 +00004128void LocationsBuilderX86::VisitShl(HShl* shl) {
4129 HandleShift(shl);
4130}
4131
4132void InstructionCodeGeneratorX86::VisitShl(HShl* shl) {
4133 HandleShift(shl);
4134}
4135
4136void LocationsBuilderX86::VisitShr(HShr* shr) {
4137 HandleShift(shr);
4138}
4139
4140void InstructionCodeGeneratorX86::VisitShr(HShr* shr) {
4141 HandleShift(shr);
4142}
4143
4144void LocationsBuilderX86::VisitUShr(HUShr* ushr) {
4145 HandleShift(ushr);
4146}
4147
4148void InstructionCodeGeneratorX86::VisitUShr(HUShr* ushr) {
4149 HandleShift(ushr);
4150}
4151
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004152void LocationsBuilderX86::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004153 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01004154 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004155 locations->SetOut(Location::RegisterLocation(EAX));
David Brazdil6de19382016-01-08 17:37:10 +00004156 if (instruction->IsStringAlloc()) {
4157 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
4158 } else {
4159 InvokeRuntimeCallingConvention calling_convention;
4160 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
David Brazdil6de19382016-01-08 17:37:10 +00004161 }
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004162}
4163
4164void InstructionCodeGeneratorX86::VisitNewInstance(HNewInstance* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01004165 // Note: if heap poisoning is enabled, the entry point takes cares
4166 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00004167 if (instruction->IsStringAlloc()) {
4168 // String is allocated through StringFactory. Call NewEmptyString entry point.
4169 Register temp = instruction->GetLocations()->GetTemp(0).AsRegister<Register>();
Andreas Gampe542451c2016-07-26 09:02:02 -07004170 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize);
David Brazdil6de19382016-01-08 17:37:10 +00004171 __ fs()->movl(temp, Address::Absolute(QUICK_ENTRY_POINT(pNewEmptyString)));
4172 __ call(Address(temp, code_offset.Int32Value()));
4173 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4174 } else {
Serban Constantinescuba45db02016-07-12 22:53:02 +01004175 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Nicolas Geoffray0d3998b2017-01-12 15:35:12 +00004176 CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>();
David Brazdil6de19382016-01-08 17:37:10 +00004177 DCHECK(!codegen_->IsLeafMethod());
4178 }
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004179}
4180
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004181void LocationsBuilderX86::VisitNewArray(HNewArray* instruction) {
4182 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01004183 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004184 locations->SetOut(Location::RegisterLocation(EAX));
4185 InvokeRuntimeCallingConvention calling_convention;
4186 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08004187 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01004188 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004189}
4190
4191void InstructionCodeGeneratorX86::VisitNewArray(HNewArray* instruction) {
4192 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampea5b09a62016-11-17 15:21:22 -08004193 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex().index_));
Roland Levillain4d027112015-07-01 15:41:14 +01004194 // Note: if heap poisoning is enabled, the entry point takes cares
4195 // of poisoning the reference.
Serban Constantinescuba45db02016-07-12 22:53:02 +01004196 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00004197 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004198 DCHECK(!codegen_->IsLeafMethod());
4199}
4200
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004201void LocationsBuilderX86::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004202 LocationSummary* locations =
4203 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01004204 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
4205 if (location.IsStackSlot()) {
4206 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4207 } else if (location.IsDoubleStackSlot()) {
4208 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004209 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01004210 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004211}
4212
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004213void InstructionCodeGeneratorX86::VisitParameterValue(
4214 HParameterValue* instruction ATTRIBUTE_UNUSED) {
4215}
4216
4217void LocationsBuilderX86::VisitCurrentMethod(HCurrentMethod* instruction) {
4218 LocationSummary* locations =
4219 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4220 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
4221}
4222
4223void InstructionCodeGeneratorX86::VisitCurrentMethod(HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004224}
4225
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004226void LocationsBuilderX86::VisitClassTableGet(HClassTableGet* instruction) {
4227 LocationSummary* locations =
4228 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4229 locations->SetInAt(0, Location::RequiresRegister());
4230 locations->SetOut(Location::RequiresRegister());
4231}
4232
4233void InstructionCodeGeneratorX86::VisitClassTableGet(HClassTableGet* instruction) {
4234 LocationSummary* locations = instruction->GetLocations();
Vladimir Markoa1de9182016-02-25 11:37:38 +00004235 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004236 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004237 instruction->GetIndex(), kX86PointerSize).SizeValue();
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004238 __ movl(locations->Out().AsRegister<Register>(),
4239 Address(locations->InAt(0).AsRegister<Register>(), method_offset));
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004240 } else {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004241 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00004242 instruction->GetIndex(), kX86PointerSize));
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004243 __ movl(locations->Out().AsRegister<Register>(),
4244 Address(locations->InAt(0).AsRegister<Register>(),
4245 mirror::Class::ImtPtrOffset(kX86PointerSize).Uint32Value()));
4246 // temp = temp->GetImtEntryAt(method_offset);
4247 __ movl(locations->Out().AsRegister<Register>(),
4248 Address(locations->Out().AsRegister<Register>(), method_offset));
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004249 }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004250}
4251
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004252void LocationsBuilderX86::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004253 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004254 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01004255 locations->SetInAt(0, Location::RequiresRegister());
4256 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01004257}
4258
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004259void InstructionCodeGeneratorX86::VisitNot(HNot* not_) {
4260 LocationSummary* locations = not_->GetLocations();
Roland Levillain70566432014-10-24 16:20:17 +01004261 Location in = locations->InAt(0);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01004262 Location out = locations->Out();
Roland Levillain70566432014-10-24 16:20:17 +01004263 DCHECK(in.Equals(out));
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00004264 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004265 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00004266 __ notl(out.AsRegister<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004267 break;
4268
4269 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01004270 __ notl(out.AsRegisterPairLow<Register>());
4271 __ notl(out.AsRegisterPairHigh<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004272 break;
4273
4274 default:
4275 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
4276 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01004277}
4278
David Brazdil66d126e2015-04-03 16:02:44 +01004279void LocationsBuilderX86::VisitBooleanNot(HBooleanNot* bool_not) {
4280 LocationSummary* locations =
4281 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
4282 locations->SetInAt(0, Location::RequiresRegister());
4283 locations->SetOut(Location::SameAsFirstInput());
4284}
4285
4286void InstructionCodeGeneratorX86::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01004287 LocationSummary* locations = bool_not->GetLocations();
4288 Location in = locations->InAt(0);
4289 Location out = locations->Out();
4290 DCHECK(in.Equals(out));
4291 __ xorl(out.AsRegister<Register>(), Immediate(1));
4292}
4293
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004294void LocationsBuilderX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004295 LocationSummary* locations =
4296 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00004297 switch (compare->InputAt(0)->GetType()) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00004298 case Primitive::kPrimBoolean:
4299 case Primitive::kPrimByte:
4300 case Primitive::kPrimShort:
4301 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08004302 case Primitive::kPrimInt:
Calin Juravleddb7df22014-11-25 20:56:51 +00004303 case Primitive::kPrimLong: {
4304 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravleddb7df22014-11-25 20:56:51 +00004305 locations->SetInAt(1, Location::Any());
4306 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4307 break;
4308 }
4309 case Primitive::kPrimFloat:
4310 case Primitive::kPrimDouble: {
4311 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004312 if (compare->InputAt(1)->IsX86LoadFromConstantTable()) {
4313 DCHECK(compare->InputAt(1)->IsEmittedAtUseSite());
4314 } else if (compare->InputAt(1)->IsConstant()) {
4315 locations->SetInAt(1, Location::RequiresFpuRegister());
4316 } else {
4317 locations->SetInAt(1, Location::Any());
4318 }
Calin Juravleddb7df22014-11-25 20:56:51 +00004319 locations->SetOut(Location::RequiresRegister());
4320 break;
4321 }
4322 default:
4323 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
4324 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004325}
4326
4327void InstructionCodeGeneratorX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004328 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004329 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00004330 Location left = locations->InAt(0);
4331 Location right = locations->InAt(1);
4332
Mark Mendell0c9497d2015-08-21 09:30:05 -04004333 NearLabel less, greater, done;
Aart Bika19616e2016-02-01 18:57:58 -08004334 Condition less_cond = kLess;
4335
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004336 switch (compare->InputAt(0)->GetType()) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00004337 case Primitive::kPrimBoolean:
4338 case Primitive::kPrimByte:
4339 case Primitive::kPrimShort:
4340 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08004341 case Primitive::kPrimInt: {
Roland Levillain0b671c02016-08-19 12:02:34 +01004342 codegen_->GenerateIntCompare(left, right);
Aart Bika19616e2016-02-01 18:57:58 -08004343 break;
4344 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004345 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004346 Register left_low = left.AsRegisterPairLow<Register>();
4347 Register left_high = left.AsRegisterPairHigh<Register>();
4348 int32_t val_low = 0;
4349 int32_t val_high = 0;
4350 bool right_is_const = false;
4351
4352 if (right.IsConstant()) {
4353 DCHECK(right.GetConstant()->IsLongConstant());
4354 right_is_const = true;
4355 int64_t val = right.GetConstant()->AsLongConstant()->GetValue();
4356 val_low = Low32Bits(val);
4357 val_high = High32Bits(val);
4358 }
4359
Calin Juravleddb7df22014-11-25 20:56:51 +00004360 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004361 __ cmpl(left_high, right.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004362 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004363 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004364 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004365 DCHECK(right_is_const) << right;
Aart Bika19616e2016-02-01 18:57:58 -08004366 codegen_->Compare32BitValue(left_high, val_high);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004367 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004368 __ j(kLess, &less); // Signed compare.
4369 __ j(kGreater, &greater); // Signed compare.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004370 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004371 __ cmpl(left_low, right.AsRegisterPairLow<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004372 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004373 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004374 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004375 DCHECK(right_is_const) << right;
Aart Bika19616e2016-02-01 18:57:58 -08004376 codegen_->Compare32BitValue(left_low, val_low);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004377 }
Aart Bika19616e2016-02-01 18:57:58 -08004378 less_cond = kBelow; // for CF (unsigned).
Calin Juravleddb7df22014-11-25 20:56:51 +00004379 break;
4380 }
4381 case Primitive::kPrimFloat: {
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004382 GenerateFPCompare(left, right, compare, false);
Calin Juravleddb7df22014-11-25 20:56:51 +00004383 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08004384 less_cond = kBelow; // for CF (floats).
Calin Juravleddb7df22014-11-25 20:56:51 +00004385 break;
4386 }
4387 case Primitive::kPrimDouble: {
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004388 GenerateFPCompare(left, right, compare, true);
Calin Juravleddb7df22014-11-25 20:56:51 +00004389 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08004390 less_cond = kBelow; // for CF (floats).
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004391 break;
4392 }
4393 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00004394 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004395 }
Aart Bika19616e2016-02-01 18:57:58 -08004396
Calin Juravleddb7df22014-11-25 20:56:51 +00004397 __ movl(out, Immediate(0));
4398 __ j(kEqual, &done);
Aart Bika19616e2016-02-01 18:57:58 -08004399 __ j(less_cond, &less);
Calin Juravleddb7df22014-11-25 20:56:51 +00004400
4401 __ Bind(&greater);
4402 __ movl(out, Immediate(1));
4403 __ jmp(&done);
4404
4405 __ Bind(&less);
4406 __ movl(out, Immediate(-1));
4407
4408 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004409}
4410
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004411void LocationsBuilderX86::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004412 LocationSummary* locations =
4413 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Vladimir Marko372f10e2016-05-17 16:30:10 +01004414 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01004415 locations->SetInAt(i, Location::Any());
4416 }
4417 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004418}
4419
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004420void InstructionCodeGeneratorX86::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004421 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004422}
4423
Roland Levillain7c1559a2015-12-15 10:55:36 +00004424void CodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) {
Calin Juravle52c48962014-12-16 17:02:57 +00004425 /*
4426 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
4427 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model.
4428 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
4429 */
4430 switch (kind) {
4431 case MemBarrierKind::kAnyAny: {
Mark P Mendell17077d82015-12-16 19:15:59 +00004432 MemoryFence();
Calin Juravle52c48962014-12-16 17:02:57 +00004433 break;
4434 }
4435 case MemBarrierKind::kAnyStore:
4436 case MemBarrierKind::kLoadAny:
4437 case MemBarrierKind::kStoreStore: {
4438 // nop
4439 break;
4440 }
Mark Mendell7aa04a12016-01-27 22:39:07 -05004441 case MemBarrierKind::kNTStoreStore:
4442 // Non-Temporal Store/Store needs an explicit fence.
4443 MemoryFence(/* non-temporal */ true);
4444 break;
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004445 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004446}
4447
Vladimir Markodc151b22015-10-15 18:02:30 +01004448HInvokeStaticOrDirect::DispatchInfo CodeGeneratorX86::GetSupportedInvokeStaticOrDirectDispatch(
4449 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004450 HInvokeStaticOrDirect* invoke ATTRIBUTE_UNUSED) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00004451 HInvokeStaticOrDirect::DispatchInfo dispatch_info = desired_dispatch_info;
4452
4453 // We disable pc-relative load when there is an irreducible loop, as the optimization
4454 // is incompatible with it.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004455 // TODO: Create as many X86ComputeBaseMethodAddress instructions
4456 // as needed for methods with irreducible loops.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00004457 if (GetGraph()->HasIrreducibleLoops() &&
4458 (dispatch_info.method_load_kind ==
4459 HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative)) {
4460 dispatch_info.method_load_kind = HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod;
4461 }
Nicolas Geoffrayc1a42cf2016-12-18 15:52:36 +00004462 return dispatch_info;
Vladimir Markodc151b22015-10-15 18:02:30 +01004463}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004464
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004465Register CodeGeneratorX86::GetInvokeStaticOrDirectExtraParameter(HInvokeStaticOrDirect* invoke,
4466 Register temp) {
4467 DCHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
Vladimir Markoc53c0792015-11-19 15:48:33 +00004468 Location location = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004469 if (!invoke->GetLocations()->Intrinsified()) {
4470 return location.AsRegister<Register>();
4471 }
4472 // For intrinsics we allow any location, so it may be on the stack.
4473 if (!location.IsRegister()) {
4474 __ movl(temp, Address(ESP, location.GetStackIndex()));
4475 return temp;
4476 }
4477 // For register locations, check if the register was saved. If so, get it from the stack.
4478 // Note: There is a chance that the register was saved but not overwritten, so we could
4479 // save one load. However, since this is just an intrinsic slow path we prefer this
4480 // simple and more robust approach rather that trying to determine if that's the case.
4481 SlowPathCode* slow_path = GetCurrentSlowPath();
Serguei Katkov288c7a82016-05-16 11:53:15 +06004482 if (slow_path != nullptr) {
4483 if (slow_path->IsCoreRegisterSaved(location.AsRegister<Register>())) {
4484 int stack_offset = slow_path->GetStackOffsetOfCoreRegister(location.AsRegister<Register>());
4485 __ movl(temp, Address(ESP, stack_offset));
4486 return temp;
4487 }
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004488 }
4489 return location.AsRegister<Register>();
4490}
4491
Serguei Katkov288c7a82016-05-16 11:53:15 +06004492Location CodeGeneratorX86::GenerateCalleeMethodStaticOrDirectCall(HInvokeStaticOrDirect* invoke,
4493 Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00004494 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
4495 switch (invoke->GetMethodLoadKind()) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004496 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: {
Vladimir Marko58155012015-08-19 12:49:41 +00004497 // temp = thread->string_init_entrypoint
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004498 uint32_t offset =
4499 GetThreadOffset<kX86PointerSize>(invoke->GetStringInitEntryPoint()).Int32Value();
4500 __ fs()->movl(temp.AsRegister<Register>(), Address::Absolute(offset));
Vladimir Marko58155012015-08-19 12:49:41 +00004501 break;
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004502 }
Vladimir Marko58155012015-08-19 12:49:41 +00004503 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00004504 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00004505 break;
4506 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
4507 __ movl(temp.AsRegister<Register>(), Immediate(invoke->GetMethodAddress()));
4508 break;
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004509 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
4510 Register base_reg = GetInvokeStaticOrDirectExtraParameter(invoke,
4511 temp.AsRegister<Register>());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004512 __ movl(temp.AsRegister<Register>(), Address(base_reg, kDummy32BitOffset));
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004513 // Bind a new fixup label at the end of the "movl" insn.
4514 uint32_t offset = invoke->GetDexCacheArrayOffset();
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004515 __ Bind(NewPcRelativeDexCacheArrayPatch(invoke->GetDexFile(), offset));
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004516 break;
4517 }
Vladimir Marko58155012015-08-19 12:49:41 +00004518 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
Vladimir Markoc53c0792015-11-19 15:48:33 +00004519 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00004520 Register method_reg;
4521 Register reg = temp.AsRegister<Register>();
4522 if (current_method.IsRegister()) {
4523 method_reg = current_method.AsRegister<Register>();
4524 } else {
David Brazdil58282f42016-01-14 12:45:10 +00004525 DCHECK(invoke->GetLocations()->Intrinsified());
Vladimir Marko58155012015-08-19 12:49:41 +00004526 DCHECK(!current_method.IsValid());
4527 method_reg = reg;
4528 __ movl(reg, Address(ESP, kCurrentMethodStackOffset));
4529 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00004530 // /* ArtMethod*[] */ temp = temp.ptr_sized_fields_->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +01004531 __ movl(reg, Address(method_reg,
4532 ArtMethod::DexCacheResolvedMethodsOffset(kX86PointerSize).Int32Value()));
Vladimir Marko40ecb122016-04-06 17:33:41 +01004533 // temp = temp[index_in_cache];
4534 // Note: Don't use invoke->GetTargetMethod() as it may point to a different dex file.
4535 uint32_t index_in_cache = invoke->GetDexMethodIndex();
Vladimir Marko58155012015-08-19 12:49:41 +00004536 __ movl(reg, Address(reg, CodeGenerator::GetCachePointerOffset(index_in_cache)));
4537 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +01004538 }
Vladimir Marko58155012015-08-19 12:49:41 +00004539 }
Serguei Katkov288c7a82016-05-16 11:53:15 +06004540 return callee_method;
4541}
4542
4543void CodeGeneratorX86::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
4544 Location callee_method = GenerateCalleeMethodStaticOrDirectCall(invoke, temp);
Vladimir Marko58155012015-08-19 12:49:41 +00004545
4546 switch (invoke->GetCodePtrLocation()) {
4547 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
4548 __ call(GetFrameEntryLabel());
4549 break;
Vladimir Marko58155012015-08-19 12:49:41 +00004550 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
4551 // (callee_method + offset_of_quick_compiled_code)()
4552 __ call(Address(callee_method.AsRegister<Register>(),
4553 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07004554 kX86PointerSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00004555 break;
Mark Mendell09ed1a32015-03-25 08:30:06 -04004556 }
4557
4558 DCHECK(!IsLeafMethod());
Mark Mendell09ed1a32015-03-25 08:30:06 -04004559}
4560
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004561void CodeGeneratorX86::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
4562 Register temp = temp_in.AsRegister<Register>();
4563 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
4564 invoke->GetVTableIndex(), kX86PointerSize).Uint32Value();
Nicolas Geoffraye5234232015-12-02 09:06:11 +00004565
4566 // Use the calling convention instead of the location of the receiver, as
4567 // intrinsics may have put the receiver in a different register. In the intrinsics
4568 // slow path, the arguments have been moved to the right place, so here we are
4569 // guaranteed that the receiver is the first register of the calling convention.
4570 InvokeDexCallingConvention calling_convention;
4571 Register receiver = calling_convention.GetRegisterAt(0);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004572 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004573 // /* HeapReference<Class> */ temp = receiver->klass_
Nicolas Geoffraye5234232015-12-02 09:06:11 +00004574 __ movl(temp, Address(receiver, class_offset));
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004575 MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +00004576 // Instead of simply (possibly) unpoisoning `temp` here, we should
4577 // emit a read barrier for the previous class reference load.
4578 // However this is not required in practice, as this is an
4579 // intermediate/temporary reference and because the current
4580 // concurrent copying collector keeps the from-space memory
4581 // intact/accessible until the end of the marking phase (the
4582 // concurrent copying collector may not in the future).
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004583 __ MaybeUnpoisonHeapReference(temp);
4584 // temp = temp->GetMethodAt(method_offset);
4585 __ movl(temp, Address(temp, method_offset));
4586 // call temp->GetEntryPoint();
4587 __ call(Address(
Andreas Gampe542451c2016-07-26 09:02:02 -07004588 temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize).Int32Value()));
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004589}
4590
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004591void CodeGeneratorX86::RecordSimplePatch() {
4592 if (GetCompilerOptions().GetIncludePatchInformation()) {
4593 simple_patches_.emplace_back();
4594 __ Bind(&simple_patches_.back());
4595 }
4596}
4597
Vladimir Markoaad75c62016-10-03 08:46:48 +00004598void CodeGeneratorX86::RecordBootStringPatch(HLoadString* load_string) {
4599 DCHECK(GetCompilerOptions().IsBootImage());
Andreas Gampe8a0128a2016-11-28 07:38:35 -08004600 string_patches_.emplace_back(load_string->GetDexFile(), load_string->GetStringIndex().index_);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004601 __ Bind(&string_patches_.back().label);
4602}
4603
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004604void CodeGeneratorX86::RecordTypePatch(HLoadClass* load_class) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004605 type_patches_.emplace_back(load_class->GetDexFile(), load_class->GetTypeIndex().index_);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004606 __ Bind(&type_patches_.back().label);
4607}
4608
Vladimir Markoaad75c62016-10-03 08:46:48 +00004609Label* CodeGeneratorX86::NewStringBssEntryPatch(HLoadString* load_string) {
4610 DCHECK(!GetCompilerOptions().IsBootImage());
Andreas Gampe8a0128a2016-11-28 07:38:35 -08004611 string_patches_.emplace_back(load_string->GetDexFile(), load_string->GetStringIndex().index_);
Vladimir Markoaad75c62016-10-03 08:46:48 +00004612 return &string_patches_.back().label;
4613}
4614
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004615Label* CodeGeneratorX86::NewPcRelativeDexCacheArrayPatch(const DexFile& dex_file,
4616 uint32_t element_offset) {
4617 // Add the patch entry and bind its label at the end of the instruction.
4618 pc_relative_dex_cache_patches_.emplace_back(dex_file, element_offset);
4619 return &pc_relative_dex_cache_patches_.back().label;
4620}
4621
Vladimir Markoaad75c62016-10-03 08:46:48 +00004622// The label points to the end of the "movl" or another instruction but the literal offset
4623// for method patch needs to point to the embedded constant which occupies the last 4 bytes.
4624constexpr uint32_t kLabelPositionToLiteralOffsetAdjustment = 4u;
4625
4626template <LinkerPatch (*Factory)(size_t, const DexFile*, uint32_t, uint32_t)>
4627inline void CodeGeneratorX86::EmitPcRelativeLinkerPatches(
4628 const ArenaDeque<PatchInfo<Label>>& infos,
4629 ArenaVector<LinkerPatch>* linker_patches) {
4630 for (const PatchInfo<Label>& info : infos) {
4631 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
4632 linker_patches->push_back(
4633 Factory(literal_offset, &info.dex_file, GetMethodAddressOffset(), info.index));
4634 }
4635}
4636
Vladimir Marko58155012015-08-19 12:49:41 +00004637void CodeGeneratorX86::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
4638 DCHECK(linker_patches->empty());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004639 size_t size =
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004640 pc_relative_dex_cache_patches_.size() +
4641 simple_patches_.size() +
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004642 string_patches_.size() +
4643 type_patches_.size();
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004644 linker_patches->reserve(size);
Vladimir Markoaad75c62016-10-03 08:46:48 +00004645 EmitPcRelativeLinkerPatches<LinkerPatch::DexCacheArrayPatch>(pc_relative_dex_cache_patches_,
4646 linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004647 for (const Label& label : simple_patches_) {
4648 uint32_t literal_offset = label.Position() - kLabelPositionToLiteralOffsetAdjustment;
4649 linker_patches->push_back(LinkerPatch::RecordPosition(literal_offset));
4650 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00004651 if (!GetCompilerOptions().IsBootImage()) {
4652 EmitPcRelativeLinkerPatches<LinkerPatch::StringBssEntryPatch>(string_patches_, linker_patches);
4653 } else if (GetCompilerOptions().GetCompilePic()) {
4654 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeStringPatch>(string_patches_, linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004655 } else {
Vladimir Markoaad75c62016-10-03 08:46:48 +00004656 for (const PatchInfo<Label>& info : string_patches_) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004657 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Vladimir Markoaad75c62016-10-03 08:46:48 +00004658 linker_patches->push_back(
4659 LinkerPatch::StringPatch(literal_offset, &info.dex_file, info.index));
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004660 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00004661 }
4662 if (GetCompilerOptions().GetCompilePic()) {
4663 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeTypePatch>(type_patches_, linker_patches);
4664 } else {
4665 for (const PatchInfo<Label>& info : type_patches_) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004666 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Vladimir Markoaad75c62016-10-03 08:46:48 +00004667 linker_patches->push_back(LinkerPatch::TypePatch(literal_offset, &info.dex_file, info.index));
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004668 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004669 }
Vladimir Marko58155012015-08-19 12:49:41 +00004670}
4671
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004672void CodeGeneratorX86::MarkGCCard(Register temp,
4673 Register card,
4674 Register object,
4675 Register value,
4676 bool value_can_be_null) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04004677 NearLabel is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004678 if (value_can_be_null) {
4679 __ testl(value, value);
4680 __ j(kEqual, &is_null);
4681 }
Andreas Gampe542451c2016-07-26 09:02:02 -07004682 __ fs()->movl(card, Address::Absolute(Thread::CardTableOffset<kX86PointerSize>().Int32Value()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004683 __ movl(temp, object);
4684 __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004685 __ movb(Address(temp, card, TIMES_1, 0),
4686 X86ManagedRegister::FromCpuRegister(card).AsByteRegister());
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004687 if (value_can_be_null) {
4688 __ Bind(&is_null);
4689 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004690}
4691
Calin Juravle52c48962014-12-16 17:02:57 +00004692void LocationsBuilderX86::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
4693 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain0d5a2812015-11-13 10:07:31 +00004694
4695 bool object_field_get_with_read_barrier =
4696 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004697 LocationSummary* locations =
Roland Levillain0d5a2812015-11-13 10:07:31 +00004698 new (GetGraph()->GetArena()) LocationSummary(instruction,
4699 kEmitCompilerReadBarrier ?
4700 LocationSummary::kCallOnSlowPath :
4701 LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01004702 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01004703 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01004704 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004705 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004706
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004707 if (Primitive::IsFloatingPointType(instruction->GetType())) {
4708 locations->SetOut(Location::RequiresFpuRegister());
4709 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004710 // The output overlaps in case of long: we don't want the low move
4711 // to overwrite the object's location. Likewise, in the case of
4712 // an object field get with read barriers enabled, we do not want
4713 // the move to overwrite the object's location, as we need it to emit
4714 // the read barrier.
4715 locations->SetOut(
4716 Location::RequiresRegister(),
4717 (object_field_get_with_read_barrier || instruction->GetType() == Primitive::kPrimLong) ?
4718 Location::kOutputOverlap :
4719 Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004720 }
Calin Juravle52c48962014-12-16 17:02:57 +00004721
4722 if (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong)) {
4723 // Long values can be loaded atomically into an XMM using movsd.
Roland Levillain7c1559a2015-12-15 10:55:36 +00004724 // So we use an XMM register as a temp to achieve atomicity (first
4725 // load the temp into the XMM and then copy the XMM into the
4726 // output, 32 bits at a time).
Calin Juravle52c48962014-12-16 17:02:57 +00004727 locations->AddTemp(Location::RequiresFpuRegister());
4728 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004729}
4730
Calin Juravle52c48962014-12-16 17:02:57 +00004731void InstructionCodeGeneratorX86::HandleFieldGet(HInstruction* instruction,
4732 const FieldInfo& field_info) {
4733 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004734
Calin Juravle52c48962014-12-16 17:02:57 +00004735 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004736 Location base_loc = locations->InAt(0);
4737 Register base = base_loc.AsRegister<Register>();
Calin Juravle52c48962014-12-16 17:02:57 +00004738 Location out = locations->Out();
4739 bool is_volatile = field_info.IsVolatile();
4740 Primitive::Type field_type = field_info.GetFieldType();
4741 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
4742
4743 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004744 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00004745 __ movzxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004746 break;
4747 }
4748
4749 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00004750 __ movsxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004751 break;
4752 }
4753
4754 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00004755 __ movsxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004756 break;
4757 }
4758
4759 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00004760 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004761 break;
4762 }
4763
4764 case Primitive::kPrimInt:
Calin Juravle52c48962014-12-16 17:02:57 +00004765 __ movl(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004766 break;
Roland Levillain7c1559a2015-12-15 10:55:36 +00004767
4768 case Primitive::kPrimNot: {
4769 // /* HeapReference<Object> */ out = *(base + offset)
4770 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004771 // Note that a potential implicit null check is handled in this
4772 // CodeGeneratorX86::GenerateFieldLoadWithBakerReadBarrier call.
4773 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00004774 instruction, out, base, offset, /* needs_null_check */ true);
Roland Levillain7c1559a2015-12-15 10:55:36 +00004775 if (is_volatile) {
4776 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4777 }
4778 } else {
4779 __ movl(out.AsRegister<Register>(), Address(base, offset));
4780 codegen_->MaybeRecordImplicitNullCheck(instruction);
4781 if (is_volatile) {
4782 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4783 }
4784 // If read barriers are enabled, emit read barriers other than
4785 // Baker's using a slow path (and also unpoison the loaded
4786 // reference, if heap poisoning is enabled).
4787 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset);
4788 }
4789 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004790 }
4791
4792 case Primitive::kPrimLong: {
Calin Juravle52c48962014-12-16 17:02:57 +00004793 if (is_volatile) {
4794 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
4795 __ movsd(temp, Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004796 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004797 __ movd(out.AsRegisterPairLow<Register>(), temp);
4798 __ psrlq(temp, Immediate(32));
4799 __ movd(out.AsRegisterPairHigh<Register>(), temp);
4800 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004801 DCHECK_NE(base, out.AsRegisterPairLow<Register>());
Calin Juravle52c48962014-12-16 17:02:57 +00004802 __ movl(out.AsRegisterPairLow<Register>(), Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004803 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004804 __ movl(out.AsRegisterPairHigh<Register>(), Address(base, kX86WordSize + offset));
4805 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004806 break;
4807 }
4808
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004809 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00004810 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004811 break;
4812 }
4813
4814 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00004815 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004816 break;
4817 }
4818
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004819 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00004820 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004821 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004822 }
Calin Juravle52c48962014-12-16 17:02:57 +00004823
Roland Levillain7c1559a2015-12-15 10:55:36 +00004824 if (field_type == Primitive::kPrimNot || field_type == Primitive::kPrimLong) {
4825 // Potential implicit null checks, in the case of reference or
4826 // long fields, are handled in the previous switch statement.
4827 } else {
Calin Juravle77520bc2015-01-12 18:45:46 +00004828 codegen_->MaybeRecordImplicitNullCheck(instruction);
4829 }
4830
Calin Juravle52c48962014-12-16 17:02:57 +00004831 if (is_volatile) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004832 if (field_type == Primitive::kPrimNot) {
4833 // Memory barriers, in the case of references, are also handled
4834 // in the previous switch statement.
4835 } else {
4836 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4837 }
Roland Levillain4d027112015-07-01 15:41:14 +01004838 }
Calin Juravle52c48962014-12-16 17:02:57 +00004839}
4840
4841void LocationsBuilderX86::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
4842 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4843
4844 LocationSummary* locations =
4845 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4846 locations->SetInAt(0, Location::RequiresRegister());
4847 bool is_volatile = field_info.IsVolatile();
4848 Primitive::Type field_type = field_info.GetFieldType();
4849 bool is_byte_type = (field_type == Primitive::kPrimBoolean)
4850 || (field_type == Primitive::kPrimByte);
4851
4852 // The register allocator does not support multiple
4853 // inputs that die at entry with one in a specific register.
4854 if (is_byte_type) {
4855 // Ensure the value is in a byte register.
4856 locations->SetInAt(1, Location::RegisterLocation(EAX));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004857 } else if (Primitive::IsFloatingPointType(field_type)) {
Mark Mendell81489372015-11-04 11:30:41 -05004858 if (is_volatile && field_type == Primitive::kPrimDouble) {
4859 // In order to satisfy the semantics of volatile, this must be a single instruction store.
4860 locations->SetInAt(1, Location::RequiresFpuRegister());
4861 } else {
4862 locations->SetInAt(1, Location::FpuRegisterOrConstant(instruction->InputAt(1)));
4863 }
4864 } else if (is_volatile && field_type == Primitive::kPrimLong) {
4865 // In order to satisfy the semantics of volatile, this must be a single instruction store.
Calin Juravle52c48962014-12-16 17:02:57 +00004866 locations->SetInAt(1, Location::RequiresRegister());
Mark Mendell81489372015-11-04 11:30:41 -05004867
Calin Juravle52c48962014-12-16 17:02:57 +00004868 // 64bits value can be atomically written to an address with movsd and an XMM register.
4869 // We need two XMM registers because there's no easier way to (bit) copy a register pair
4870 // into a single XMM register (we copy each pair part into the XMMs and then interleave them).
4871 // NB: We could make the register allocator understand fp_reg <-> core_reg moves but given the
4872 // isolated cases when we need this it isn't worth adding the extra complexity.
4873 locations->AddTemp(Location::RequiresFpuRegister());
4874 locations->AddTemp(Location::RequiresFpuRegister());
Mark Mendell81489372015-11-04 11:30:41 -05004875 } else {
4876 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
4877
4878 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
4879 // Temporary registers for the write barrier.
4880 locations->AddTemp(Location::RequiresRegister()); // May be used for reference poisoning too.
4881 // Ensure the card is in a byte register.
4882 locations->AddTemp(Location::RegisterLocation(ECX));
4883 }
Calin Juravle52c48962014-12-16 17:02:57 +00004884 }
4885}
4886
4887void InstructionCodeGeneratorX86::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004888 const FieldInfo& field_info,
4889 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00004890 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4891
4892 LocationSummary* locations = instruction->GetLocations();
4893 Register base = locations->InAt(0).AsRegister<Register>();
4894 Location value = locations->InAt(1);
4895 bool is_volatile = field_info.IsVolatile();
4896 Primitive::Type field_type = field_info.GetFieldType();
4897 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01004898 bool needs_write_barrier =
4899 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00004900
4901 if (is_volatile) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004902 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
Calin Juravle52c48962014-12-16 17:02:57 +00004903 }
4904
Mark Mendell81489372015-11-04 11:30:41 -05004905 bool maybe_record_implicit_null_check_done = false;
4906
Calin Juravle52c48962014-12-16 17:02:57 +00004907 switch (field_type) {
4908 case Primitive::kPrimBoolean:
4909 case Primitive::kPrimByte: {
4910 __ movb(Address(base, offset), value.AsRegister<ByteRegister>());
4911 break;
4912 }
4913
4914 case Primitive::kPrimShort:
4915 case Primitive::kPrimChar: {
Mark Mendell81489372015-11-04 11:30:41 -05004916 if (value.IsConstant()) {
4917 int16_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4918 __ movw(Address(base, offset), Immediate(v));
4919 } else {
4920 __ movw(Address(base, offset), value.AsRegister<Register>());
4921 }
Calin Juravle52c48962014-12-16 17:02:57 +00004922 break;
4923 }
4924
4925 case Primitive::kPrimInt:
4926 case Primitive::kPrimNot: {
Roland Levillain4d027112015-07-01 15:41:14 +01004927 if (kPoisonHeapReferences && needs_write_barrier) {
4928 // Note that in the case where `value` is a null reference,
4929 // we do not enter this block, as the reference does not
4930 // need poisoning.
4931 DCHECK_EQ(field_type, Primitive::kPrimNot);
4932 Register temp = locations->GetTemp(0).AsRegister<Register>();
4933 __ movl(temp, value.AsRegister<Register>());
4934 __ PoisonHeapReference(temp);
4935 __ movl(Address(base, offset), temp);
Mark Mendell81489372015-11-04 11:30:41 -05004936 } else if (value.IsConstant()) {
4937 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4938 __ movl(Address(base, offset), Immediate(v));
Roland Levillain4d027112015-07-01 15:41:14 +01004939 } else {
Nicolas Geoffray03971632016-03-17 10:44:24 +00004940 DCHECK(value.IsRegister()) << value;
Roland Levillain4d027112015-07-01 15:41:14 +01004941 __ movl(Address(base, offset), value.AsRegister<Register>());
4942 }
Calin Juravle52c48962014-12-16 17:02:57 +00004943 break;
4944 }
4945
4946 case Primitive::kPrimLong: {
4947 if (is_volatile) {
4948 XmmRegister temp1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
4949 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
4950 __ movd(temp1, value.AsRegisterPairLow<Register>());
4951 __ movd(temp2, value.AsRegisterPairHigh<Register>());
4952 __ punpckldq(temp1, temp2);
4953 __ movsd(Address(base, offset), temp1);
Calin Juravle77520bc2015-01-12 18:45:46 +00004954 codegen_->MaybeRecordImplicitNullCheck(instruction);
Mark Mendell81489372015-11-04 11:30:41 -05004955 } else if (value.IsConstant()) {
4956 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant());
4957 __ movl(Address(base, offset), Immediate(Low32Bits(v)));
4958 codegen_->MaybeRecordImplicitNullCheck(instruction);
4959 __ movl(Address(base, kX86WordSize + offset), Immediate(High32Bits(v)));
Calin Juravle52c48962014-12-16 17:02:57 +00004960 } else {
4961 __ movl(Address(base, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00004962 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004963 __ movl(Address(base, kX86WordSize + offset), value.AsRegisterPairHigh<Register>());
4964 }
Mark Mendell81489372015-11-04 11:30:41 -05004965 maybe_record_implicit_null_check_done = true;
Calin Juravle52c48962014-12-16 17:02:57 +00004966 break;
4967 }
4968
4969 case Primitive::kPrimFloat: {
Mark Mendell81489372015-11-04 11:30:41 -05004970 if (value.IsConstant()) {
4971 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4972 __ movl(Address(base, offset), Immediate(v));
4973 } else {
4974 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
4975 }
Calin Juravle52c48962014-12-16 17:02:57 +00004976 break;
4977 }
4978
4979 case Primitive::kPrimDouble: {
Mark Mendell81489372015-11-04 11:30:41 -05004980 if (value.IsConstant()) {
4981 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant());
4982 __ movl(Address(base, offset), Immediate(Low32Bits(v)));
4983 codegen_->MaybeRecordImplicitNullCheck(instruction);
4984 __ movl(Address(base, kX86WordSize + offset), Immediate(High32Bits(v)));
4985 maybe_record_implicit_null_check_done = true;
4986 } else {
4987 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
4988 }
Calin Juravle52c48962014-12-16 17:02:57 +00004989 break;
4990 }
4991
4992 case Primitive::kPrimVoid:
4993 LOG(FATAL) << "Unreachable type " << field_type;
4994 UNREACHABLE();
4995 }
4996
Mark Mendell81489372015-11-04 11:30:41 -05004997 if (!maybe_record_implicit_null_check_done) {
Calin Juravle77520bc2015-01-12 18:45:46 +00004998 codegen_->MaybeRecordImplicitNullCheck(instruction);
4999 }
5000
Roland Levillain4d027112015-07-01 15:41:14 +01005001 if (needs_write_barrier) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005002 Register temp = locations->GetTemp(0).AsRegister<Register>();
5003 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005004 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00005005 }
5006
Calin Juravle52c48962014-12-16 17:02:57 +00005007 if (is_volatile) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005008 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
Calin Juravle52c48962014-12-16 17:02:57 +00005009 }
5010}
5011
5012void LocationsBuilderX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
5013 HandleFieldGet(instruction, instruction->GetFieldInfo());
5014}
5015
5016void InstructionCodeGeneratorX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
5017 HandleFieldGet(instruction, instruction->GetFieldInfo());
5018}
5019
5020void LocationsBuilderX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
5021 HandleFieldSet(instruction, instruction->GetFieldInfo());
5022}
5023
5024void InstructionCodeGeneratorX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005025 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00005026}
5027
5028void LocationsBuilderX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
5029 HandleFieldSet(instruction, instruction->GetFieldInfo());
5030}
5031
5032void InstructionCodeGeneratorX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005033 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00005034}
5035
5036void LocationsBuilderX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
5037 HandleFieldGet(instruction, instruction->GetFieldInfo());
5038}
5039
5040void InstructionCodeGeneratorX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
5041 HandleFieldGet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005042}
5043
Calin Juravlee460d1d2015-09-29 04:52:17 +01005044void LocationsBuilderX86::VisitUnresolvedInstanceFieldGet(
5045 HUnresolvedInstanceFieldGet* instruction) {
5046 FieldAccessCallingConventionX86 calling_convention;
5047 codegen_->CreateUnresolvedFieldLocationSummary(
5048 instruction, instruction->GetFieldType(), calling_convention);
5049}
5050
5051void InstructionCodeGeneratorX86::VisitUnresolvedInstanceFieldGet(
5052 HUnresolvedInstanceFieldGet* instruction) {
5053 FieldAccessCallingConventionX86 calling_convention;
5054 codegen_->GenerateUnresolvedFieldAccess(instruction,
5055 instruction->GetFieldType(),
5056 instruction->GetFieldIndex(),
5057 instruction->GetDexPc(),
5058 calling_convention);
5059}
5060
5061void LocationsBuilderX86::VisitUnresolvedInstanceFieldSet(
5062 HUnresolvedInstanceFieldSet* instruction) {
5063 FieldAccessCallingConventionX86 calling_convention;
5064 codegen_->CreateUnresolvedFieldLocationSummary(
5065 instruction, instruction->GetFieldType(), calling_convention);
5066}
5067
5068void InstructionCodeGeneratorX86::VisitUnresolvedInstanceFieldSet(
5069 HUnresolvedInstanceFieldSet* instruction) {
5070 FieldAccessCallingConventionX86 calling_convention;
5071 codegen_->GenerateUnresolvedFieldAccess(instruction,
5072 instruction->GetFieldType(),
5073 instruction->GetFieldIndex(),
5074 instruction->GetDexPc(),
5075 calling_convention);
5076}
5077
5078void LocationsBuilderX86::VisitUnresolvedStaticFieldGet(
5079 HUnresolvedStaticFieldGet* instruction) {
5080 FieldAccessCallingConventionX86 calling_convention;
5081 codegen_->CreateUnresolvedFieldLocationSummary(
5082 instruction, instruction->GetFieldType(), calling_convention);
5083}
5084
5085void InstructionCodeGeneratorX86::VisitUnresolvedStaticFieldGet(
5086 HUnresolvedStaticFieldGet* instruction) {
5087 FieldAccessCallingConventionX86 calling_convention;
5088 codegen_->GenerateUnresolvedFieldAccess(instruction,
5089 instruction->GetFieldType(),
5090 instruction->GetFieldIndex(),
5091 instruction->GetDexPc(),
5092 calling_convention);
5093}
5094
5095void LocationsBuilderX86::VisitUnresolvedStaticFieldSet(
5096 HUnresolvedStaticFieldSet* instruction) {
5097 FieldAccessCallingConventionX86 calling_convention;
5098 codegen_->CreateUnresolvedFieldLocationSummary(
5099 instruction, instruction->GetFieldType(), calling_convention);
5100}
5101
5102void InstructionCodeGeneratorX86::VisitUnresolvedStaticFieldSet(
5103 HUnresolvedStaticFieldSet* instruction) {
5104 FieldAccessCallingConventionX86 calling_convention;
5105 codegen_->GenerateUnresolvedFieldAccess(instruction,
5106 instruction->GetFieldType(),
5107 instruction->GetFieldIndex(),
5108 instruction->GetDexPc(),
5109 calling_convention);
5110}
5111
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005112void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005113 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
5114 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks()
5115 ? Location::RequiresRegister()
5116 : Location::Any();
5117 locations->SetInAt(0, loc);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005118}
5119
Calin Juravle2ae48182016-03-16 14:05:09 +00005120void CodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) {
5121 if (CanMoveNullCheckToUser(instruction)) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005122 return;
5123 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005124 LocationSummary* locations = instruction->GetLocations();
5125 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00005126
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005127 __ testl(EAX, Address(obj.AsRegister<Register>(), 0));
Calin Juravle2ae48182016-03-16 14:05:09 +00005128 RecordPcInfo(instruction, instruction->GetDexPc());
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005129}
5130
Calin Juravle2ae48182016-03-16 14:05:09 +00005131void CodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07005132 SlowPathCode* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00005133 AddSlowPath(slow_path);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005134
5135 LocationSummary* locations = instruction->GetLocations();
5136 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005137
5138 if (obj.IsRegister()) {
Mark Mendell42514f62015-03-31 11:34:22 -04005139 __ testl(obj.AsRegister<Register>(), obj.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005140 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005141 __ cmpl(Address(ESP, obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005142 } else {
5143 DCHECK(obj.IsConstant()) << obj;
David Brazdil77a48ae2015-09-15 12:34:04 +00005144 DCHECK(obj.GetConstant()->IsNullConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005145 __ jmp(slow_path->GetEntryLabel());
5146 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005147 }
5148 __ j(kEqual, slow_path->GetEntryLabel());
5149}
5150
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005151void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00005152 codegen_->GenerateNullCheck(instruction);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005153}
5154
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005155void LocationsBuilderX86::VisitArrayGet(HArrayGet* instruction) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005156 bool object_array_get_with_read_barrier =
5157 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005158 LocationSummary* locations =
Roland Levillain0d5a2812015-11-13 10:07:31 +00005159 new (GetGraph()->GetArena()) LocationSummary(instruction,
5160 object_array_get_with_read_barrier ?
5161 LocationSummary::kCallOnSlowPath :
5162 LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01005163 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005164 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01005165 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01005166 locations->SetInAt(0, Location::RequiresRegister());
5167 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01005168 if (Primitive::IsFloatingPointType(instruction->GetType())) {
5169 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
5170 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005171 // The output overlaps in case of long: we don't want the low move
5172 // to overwrite the array's location. Likewise, in the case of an
5173 // object array get with read barriers enabled, we do not want the
5174 // move to overwrite the array's location, as we need it to emit
5175 // the read barrier.
5176 locations->SetOut(
5177 Location::RequiresRegister(),
5178 (instruction->GetType() == Primitive::kPrimLong || object_array_get_with_read_barrier) ?
5179 Location::kOutputOverlap :
5180 Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01005181 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005182}
5183
5184void InstructionCodeGeneratorX86::VisitArrayGet(HArrayGet* instruction) {
5185 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005186 Location obj_loc = locations->InAt(0);
5187 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005188 Location index = locations->InAt(1);
Roland Levillain7c1559a2015-12-15 10:55:36 +00005189 Location out_loc = locations->Out();
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005190 uint32_t data_offset = CodeGenerator::GetArrayDataOffset(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005191
Calin Juravle77520bc2015-01-12 18:45:46 +00005192 Primitive::Type type = instruction->GetType();
5193 switch (type) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005194 case Primitive::kPrimBoolean: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005195 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005196 __ movzxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005197 break;
5198 }
5199
5200 case Primitive::kPrimByte: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005201 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005202 __ movsxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005203 break;
5204 }
5205
5206 case Primitive::kPrimShort: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005207 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005208 __ movsxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005209 break;
5210 }
5211
5212 case Primitive::kPrimChar: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005213 Register out = out_loc.AsRegister<Register>();
jessicahandojo4877b792016-09-08 19:49:13 -07005214 if (mirror::kUseStringCompression && instruction->IsStringCharAt()) {
5215 // Branch cases into compressed and uncompressed for each index's type.
5216 uint32_t count_offset = mirror::String::CountOffset().Uint32Value();
5217 NearLabel done, not_compressed;
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005218 __ testl(Address(obj, count_offset), Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005219 codegen_->MaybeRecordImplicitNullCheck(instruction);
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005220 static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u,
5221 "Expecting 0=compressed, 1=uncompressed");
5222 __ j(kNotZero, &not_compressed);
jessicahandojo4877b792016-09-08 19:49:13 -07005223 __ movzxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
5224 __ jmp(&done);
5225 __ Bind(&not_compressed);
5226 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5227 __ Bind(&done);
5228 } else {
5229 // Common case for charAt of array of char or when string compression's
5230 // feature is turned off.
5231 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5232 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005233 break;
5234 }
5235
Roland Levillain7c1559a2015-12-15 10:55:36 +00005236 case Primitive::kPrimInt: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005237 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005238 __ movl(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005239 break;
5240 }
5241
Roland Levillain7c1559a2015-12-15 10:55:36 +00005242 case Primitive::kPrimNot: {
5243 static_assert(
5244 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
5245 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillain7c1559a2015-12-15 10:55:36 +00005246 // /* HeapReference<Object> */ out =
5247 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
5248 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005249 // Note that a potential implicit null check is handled in this
5250 // CodeGeneratorX86::GenerateArrayLoadWithBakerReadBarrier call.
5251 codegen_->GenerateArrayLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00005252 instruction, out_loc, obj, data_offset, index, /* needs_null_check */ true);
Roland Levillain7c1559a2015-12-15 10:55:36 +00005253 } else {
5254 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005255 __ movl(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
5256 codegen_->MaybeRecordImplicitNullCheck(instruction);
5257 // If read barriers are enabled, emit read barriers other than
5258 // Baker's using a slow path (and also unpoison the loaded
5259 // reference, if heap poisoning is enabled).
Roland Levillain7c1559a2015-12-15 10:55:36 +00005260 if (index.IsConstant()) {
5261 uint32_t offset =
5262 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Roland Levillain7c1559a2015-12-15 10:55:36 +00005263 codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset);
5264 } else {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005265 codegen_->MaybeGenerateReadBarrierSlow(
5266 instruction, out_loc, out_loc, obj_loc, data_offset, index);
5267 }
5268 }
5269 break;
5270 }
5271
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005272 case Primitive::kPrimLong: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005273 DCHECK_NE(obj, out_loc.AsRegisterPairLow<Register>());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005274 __ movl(out_loc.AsRegisterPairLow<Register>(),
5275 CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset));
5276 codegen_->MaybeRecordImplicitNullCheck(instruction);
5277 __ movl(out_loc.AsRegisterPairHigh<Register>(),
5278 CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005279 break;
5280 }
5281
Mark Mendell7c8d0092015-01-26 11:21:33 -05005282 case Primitive::kPrimFloat: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005283 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005284 __ movss(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005285 break;
5286 }
5287
5288 case Primitive::kPrimDouble: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005289 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005290 __ movsd(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005291 break;
5292 }
5293
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005294 case Primitive::kPrimVoid:
Calin Juravle77520bc2015-01-12 18:45:46 +00005295 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07005296 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005297 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005298
Roland Levillain7c1559a2015-12-15 10:55:36 +00005299 if (type == Primitive::kPrimNot || type == Primitive::kPrimLong) {
5300 // Potential implicit null checks, in the case of reference or
5301 // long arrays, are handled in the previous switch statement.
5302 } else {
Calin Juravle77520bc2015-01-12 18:45:46 +00005303 codegen_->MaybeRecordImplicitNullCheck(instruction);
5304 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005305}
5306
5307void LocationsBuilderX86::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01005308 Primitive::Type value_type = instruction->GetComponentType();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005309
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005310 bool needs_write_barrier =
5311 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Roland Levillain0d5a2812015-11-13 10:07:31 +00005312 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005313
Nicolas Geoffray39468442014-09-02 15:17:15 +01005314 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
5315 instruction,
Vladimir Marko8d49fd72016-08-25 15:20:47 +01005316 may_need_runtime_call_for_type_check ?
Roland Levillain0d5a2812015-11-13 10:07:31 +00005317 LocationSummary::kCallOnSlowPath :
5318 LocationSummary::kNoCall);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005319
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005320 bool is_byte_type = (value_type == Primitive::kPrimBoolean)
5321 || (value_type == Primitive::kPrimByte);
5322 // We need the inputs to be different than the output in case of long operation.
5323 // In case of a byte operation, the register allocator does not support multiple
5324 // inputs that die at entry with one in a specific register.
5325 locations->SetInAt(0, Location::RequiresRegister());
5326 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
5327 if (is_byte_type) {
5328 // Ensure the value is in a byte register.
5329 locations->SetInAt(2, Location::ByteRegisterOrConstant(EAX, instruction->InputAt(2)));
5330 } else if (Primitive::IsFloatingPointType(value_type)) {
Mark Mendell81489372015-11-04 11:30:41 -05005331 locations->SetInAt(2, Location::FpuRegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005332 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005333 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
5334 }
5335 if (needs_write_barrier) {
5336 // Temporary registers for the write barrier.
5337 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
5338 // Ensure the card is in a byte register.
Roland Levillain4f6b0b52015-11-23 19:29:22 +00005339 locations->AddTemp(Location::RegisterLocation(ECX));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005340 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005341}
5342
5343void InstructionCodeGeneratorX86::VisitArraySet(HArraySet* instruction) {
5344 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005345 Location array_loc = locations->InAt(0);
5346 Register array = array_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005347 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005348 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005349 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005350 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
5351 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
5352 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005353 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005354 bool needs_write_barrier =
5355 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005356
5357 switch (value_type) {
5358 case Primitive::kPrimBoolean:
5359 case Primitive::kPrimByte: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005360 uint32_t offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005361 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_1, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005362 if (value.IsRegister()) {
5363 __ movb(address, value.AsRegister<ByteRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005364 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005365 __ movb(address, Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005366 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005367 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005368 break;
5369 }
5370
5371 case Primitive::kPrimShort:
5372 case Primitive::kPrimChar: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005373 uint32_t offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005374 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_2, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005375 if (value.IsRegister()) {
5376 __ movw(address, value.AsRegister<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005377 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005378 __ movw(address, Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005379 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005380 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005381 break;
5382 }
5383
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005384 case Primitive::kPrimNot: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005385 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005386 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005387
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005388 if (!value.IsRegister()) {
5389 // Just setting null.
5390 DCHECK(instruction->InputAt(2)->IsNullConstant());
5391 DCHECK(value.IsConstant()) << value;
5392 __ movl(address, Immediate(0));
Calin Juravle77520bc2015-01-12 18:45:46 +00005393 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005394 DCHECK(!needs_write_barrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005395 DCHECK(!may_need_runtime_call_for_type_check);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005396 break;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005397 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005398
5399 DCHECK(needs_write_barrier);
5400 Register register_value = value.AsRegister<Register>();
Roland Levillain16d9f942016-08-25 17:27:56 +01005401 // We cannot use a NearLabel for `done`, as its range may be too
5402 // short when Baker read barriers are enabled.
5403 Label done;
5404 NearLabel not_null, do_put;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005405 SlowPathCode* slow_path = nullptr;
Roland Levillain16d9f942016-08-25 17:27:56 +01005406 Location temp_loc = locations->GetTemp(0);
5407 Register temp = temp_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005408 if (may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005409 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathX86(instruction);
5410 codegen_->AddSlowPath(slow_path);
5411 if (instruction->GetValueCanBeNull()) {
5412 __ testl(register_value, register_value);
5413 __ j(kNotEqual, &not_null);
5414 __ movl(address, Immediate(0));
5415 codegen_->MaybeRecordImplicitNullCheck(instruction);
5416 __ jmp(&done);
5417 __ Bind(&not_null);
5418 }
5419
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005420 // Note that when Baker read barriers are enabled, the type
5421 // checks are performed without read barriers. This is fine,
5422 // even in the case where a class object is in the from-space
5423 // after the flip, as a comparison involving such a type would
5424 // not produce a false positive; it may of course produce a
5425 // false negative, in which case we would take the ArraySet
5426 // slow path.
Roland Levillain16d9f942016-08-25 17:27:56 +01005427
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005428 // /* HeapReference<Class> */ temp = array->klass_
5429 __ movl(temp, Address(array, class_offset));
5430 codegen_->MaybeRecordImplicitNullCheck(instruction);
5431 __ MaybeUnpoisonHeapReference(temp);
Roland Levillain16d9f942016-08-25 17:27:56 +01005432
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005433 // /* HeapReference<Class> */ temp = temp->component_type_
5434 __ movl(temp, Address(temp, component_offset));
5435 // If heap poisoning is enabled, no need to unpoison `temp`
5436 // nor the object reference in `register_value->klass`, as
5437 // we are comparing two poisoned references.
5438 __ cmpl(temp, Address(register_value, class_offset));
Roland Levillain16d9f942016-08-25 17:27:56 +01005439
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005440 if (instruction->StaticTypeOfArrayIsObjectArray()) {
5441 __ j(kEqual, &do_put);
5442 // If heap poisoning is enabled, the `temp` reference has
5443 // not been unpoisoned yet; unpoison it now.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005444 __ MaybeUnpoisonHeapReference(temp);
5445
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005446 // If heap poisoning is enabled, no need to unpoison the
5447 // heap reference loaded below, as it is only used for a
5448 // comparison with null.
5449 __ cmpl(Address(temp, super_offset), Immediate(0));
5450 __ j(kNotEqual, slow_path->GetEntryLabel());
5451 __ Bind(&do_put);
5452 } else {
5453 __ j(kNotEqual, slow_path->GetEntryLabel());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005454 }
5455 }
5456
5457 if (kPoisonHeapReferences) {
5458 __ movl(temp, register_value);
5459 __ PoisonHeapReference(temp);
5460 __ movl(address, temp);
5461 } else {
5462 __ movl(address, register_value);
5463 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005464 if (!may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005465 codegen_->MaybeRecordImplicitNullCheck(instruction);
5466 }
5467
5468 Register card = locations->GetTemp(1).AsRegister<Register>();
5469 codegen_->MarkGCCard(
5470 temp, card, array, value.AsRegister<Register>(), instruction->GetValueCanBeNull());
5471 __ Bind(&done);
5472
5473 if (slow_path != nullptr) {
5474 __ Bind(slow_path->GetExitLabel());
5475 }
5476
5477 break;
5478 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005479
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005480 case Primitive::kPrimInt: {
5481 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005482 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005483 if (value.IsRegister()) {
5484 __ movl(address, value.AsRegister<Register>());
5485 } else {
5486 DCHECK(value.IsConstant()) << value;
5487 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
5488 __ movl(address, Immediate(v));
5489 }
5490 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005491 break;
5492 }
5493
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005494 case Primitive::kPrimLong: {
5495 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005496 if (value.IsRegisterPair()) {
5497 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset),
5498 value.AsRegisterPairLow<Register>());
5499 codegen_->MaybeRecordImplicitNullCheck(instruction);
5500 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset + kX86WordSize),
5501 value.AsRegisterPairHigh<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005502 } else {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005503 DCHECK(value.IsConstant());
5504 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
5505 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset),
5506 Immediate(Low32Bits(val)));
5507 codegen_->MaybeRecordImplicitNullCheck(instruction);
5508 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset + kX86WordSize),
5509 Immediate(High32Bits(val)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005510 }
5511 break;
5512 }
5513
Mark Mendell7c8d0092015-01-26 11:21:33 -05005514 case Primitive::kPrimFloat: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005515 uint32_t offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005516 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Mark Mendell81489372015-11-04 11:30:41 -05005517 if (value.IsFpuRegister()) {
5518 __ movss(address, value.AsFpuRegister<XmmRegister>());
5519 } else {
5520 DCHECK(value.IsConstant());
5521 int32_t v = bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue());
5522 __ movl(address, Immediate(v));
5523 }
5524 codegen_->MaybeRecordImplicitNullCheck(instruction);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005525 break;
5526 }
5527
5528 case Primitive::kPrimDouble: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005529 uint32_t offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005530 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, offset);
Mark Mendell81489372015-11-04 11:30:41 -05005531 if (value.IsFpuRegister()) {
5532 __ movsd(address, value.AsFpuRegister<XmmRegister>());
5533 } else {
5534 DCHECK(value.IsConstant());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005535 Address address_hi =
5536 CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, offset + kX86WordSize);
Mark Mendell81489372015-11-04 11:30:41 -05005537 int64_t v = bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue());
5538 __ movl(address, Immediate(Low32Bits(v)));
5539 codegen_->MaybeRecordImplicitNullCheck(instruction);
5540 __ movl(address_hi, Immediate(High32Bits(v)));
5541 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005542 break;
5543 }
5544
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005545 case Primitive::kPrimVoid:
5546 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07005547 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005548 }
5549}
5550
5551void LocationsBuilderX86::VisitArrayLength(HArrayLength* instruction) {
5552 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01005553 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendellee8d9712016-07-12 11:13:15 -04005554 if (!instruction->IsEmittedAtUseSite()) {
5555 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
5556 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005557}
5558
5559void InstructionCodeGeneratorX86::VisitArrayLength(HArrayLength* instruction) {
Mark Mendellee8d9712016-07-12 11:13:15 -04005560 if (instruction->IsEmittedAtUseSite()) {
5561 return;
5562 }
5563
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005564 LocationSummary* locations = instruction->GetLocations();
Vladimir Markodce016e2016-04-28 13:10:02 +01005565 uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00005566 Register obj = locations->InAt(0).AsRegister<Register>();
5567 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005568 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00005569 codegen_->MaybeRecordImplicitNullCheck(instruction);
jessicahandojo4877b792016-09-08 19:49:13 -07005570 // Mask out most significant bit in case the array is String's array of char.
5571 if (mirror::kUseStringCompression && instruction->IsStringLength()) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005572 __ shrl(out, Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005573 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005574}
5575
5576void LocationsBuilderX86::VisitBoundsCheck(HBoundsCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005577 RegisterSet caller_saves = RegisterSet::Empty();
5578 InvokeRuntimeCallingConvention calling_convention;
5579 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5580 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
5581 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction, caller_saves);
Mark Mendellf60c90b2015-03-04 15:12:59 -05005582 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Mark Mendellee8d9712016-07-12 11:13:15 -04005583 HInstruction* length = instruction->InputAt(1);
5584 if (!length->IsEmittedAtUseSite()) {
5585 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
5586 }
jessicahandojo4877b792016-09-08 19:49:13 -07005587 // Need register to see array's length.
5588 if (mirror::kUseStringCompression && instruction->IsStringCharAt()) {
5589 locations->AddTemp(Location::RequiresRegister());
5590 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005591}
5592
5593void InstructionCodeGeneratorX86::VisitBoundsCheck(HBoundsCheck* instruction) {
jessicahandojo4877b792016-09-08 19:49:13 -07005594 const bool is_string_compressed_char_at =
5595 mirror::kUseStringCompression && instruction->IsStringCharAt();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005596 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05005597 Location index_loc = locations->InAt(0);
5598 Location length_loc = locations->InAt(1);
Andreas Gampe85b62f22015-09-09 13:15:38 -07005599 SlowPathCode* slow_path =
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01005600 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005601
Mark Mendell99dbd682015-04-22 16:18:52 -04005602 if (length_loc.IsConstant()) {
5603 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant());
5604 if (index_loc.IsConstant()) {
5605 // BCE will remove the bounds check if we are guarenteed to pass.
5606 int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5607 if (index < 0 || index >= length) {
5608 codegen_->AddSlowPath(slow_path);
5609 __ jmp(slow_path->GetEntryLabel());
5610 } else {
5611 // Some optimization after BCE may have generated this, and we should not
5612 // generate a bounds check if it is a valid range.
5613 }
5614 return;
5615 }
5616
5617 // We have to reverse the jump condition because the length is the constant.
5618 Register index_reg = index_loc.AsRegister<Register>();
5619 __ cmpl(index_reg, Immediate(length));
5620 codegen_->AddSlowPath(slow_path);
5621 __ j(kAboveEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005622 } else {
Mark Mendellee8d9712016-07-12 11:13:15 -04005623 HInstruction* array_length = instruction->InputAt(1);
5624 if (array_length->IsEmittedAtUseSite()) {
5625 // Address the length field in the array.
5626 DCHECK(array_length->IsArrayLength());
5627 uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(array_length->AsArrayLength());
5628 Location array_loc = array_length->GetLocations()->InAt(0);
5629 Address array_len(array_loc.AsRegister<Register>(), len_offset);
jessicahandojo4877b792016-09-08 19:49:13 -07005630 if (is_string_compressed_char_at) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005631 // TODO: if index_loc.IsConstant(), compare twice the index (to compensate for
5632 // the string compression flag) with the in-memory length and avoid the temporary.
jessicahandojo4877b792016-09-08 19:49:13 -07005633 Register length_reg = locations->GetTemp(0).AsRegister<Register>();
5634 __ movl(length_reg, array_len);
5635 codegen_->MaybeRecordImplicitNullCheck(array_length);
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005636 __ shrl(length_reg, Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005637 codegen_->GenerateIntCompare(length_reg, index_loc);
Mark Mendellee8d9712016-07-12 11:13:15 -04005638 } else {
jessicahandojo4877b792016-09-08 19:49:13 -07005639 // Checking bounds for general case:
5640 // Array of char or string's array with feature compression off.
5641 if (index_loc.IsConstant()) {
5642 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5643 __ cmpl(array_len, Immediate(value));
5644 } else {
5645 __ cmpl(array_len, index_loc.AsRegister<Register>());
5646 }
5647 codegen_->MaybeRecordImplicitNullCheck(array_length);
Mark Mendellee8d9712016-07-12 11:13:15 -04005648 }
Mark Mendell99dbd682015-04-22 16:18:52 -04005649 } else {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005650 codegen_->GenerateIntCompare(length_loc, index_loc);
Mark Mendell99dbd682015-04-22 16:18:52 -04005651 }
5652 codegen_->AddSlowPath(slow_path);
5653 __ j(kBelowEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005654 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005655}
5656
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005657void LocationsBuilderX86::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005658 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01005659}
5660
5661void InstructionCodeGeneratorX86::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005662 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
5663}
5664
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005665void LocationsBuilderX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Vladimir Marko70e97462016-08-09 11:04:26 +01005666 LocationSummary* locations =
5667 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
Vladimir Marko804b03f2016-09-14 16:26:36 +01005668 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005669}
5670
5671void InstructionCodeGeneratorX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005672 HBasicBlock* block = instruction->GetBlock();
5673 if (block->GetLoopInformation() != nullptr) {
5674 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
5675 // The back edge will generate the suspend check.
5676 return;
5677 }
5678 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
5679 // The goto will generate the suspend check.
5680 return;
5681 }
5682 GenerateSuspendCheck(instruction, nullptr);
5683}
5684
5685void InstructionCodeGeneratorX86::GenerateSuspendCheck(HSuspendCheck* instruction,
5686 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005687 SuspendCheckSlowPathX86* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005688 down_cast<SuspendCheckSlowPathX86*>(instruction->GetSlowPath());
5689 if (slow_path == nullptr) {
5690 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathX86(instruction, successor);
5691 instruction->SetSlowPath(slow_path);
5692 codegen_->AddSlowPath(slow_path);
5693 if (successor != nullptr) {
5694 DCHECK(successor->IsLoopHeader());
5695 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
5696 }
5697 } else {
5698 DCHECK_EQ(slow_path->GetSuccessor(), successor);
5699 }
5700
Andreas Gampe542451c2016-07-26 09:02:02 -07005701 __ fs()->cmpw(Address::Absolute(Thread::ThreadFlagsOffset<kX86PointerSize>().Int32Value()),
Roland Levillain7c1559a2015-12-15 10:55:36 +00005702 Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005703 if (successor == nullptr) {
5704 __ j(kNotEqual, slow_path->GetEntryLabel());
5705 __ Bind(slow_path->GetReturnLabel());
5706 } else {
5707 __ j(kEqual, codegen_->GetLabelOf(successor));
5708 __ jmp(slow_path->GetEntryLabel());
5709 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005710}
5711
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005712X86Assembler* ParallelMoveResolverX86::GetAssembler() const {
5713 return codegen_->GetAssembler();
5714}
5715
Mark Mendell7c8d0092015-01-26 11:21:33 -05005716void ParallelMoveResolverX86::MoveMemoryToMemory32(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005717 ScratchRegisterScope ensure_scratch(
5718 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5719 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
5720 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5721 __ movl(temp_reg, Address(ESP, src + stack_offset));
5722 __ movl(Address(ESP, dst + stack_offset), temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005723}
5724
5725void ParallelMoveResolverX86::MoveMemoryToMemory64(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005726 ScratchRegisterScope ensure_scratch(
5727 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5728 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
5729 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5730 __ movl(temp_reg, Address(ESP, src + stack_offset));
5731 __ movl(Address(ESP, dst + stack_offset), temp_reg);
5732 __ movl(temp_reg, Address(ESP, src + stack_offset + kX86WordSize));
5733 __ movl(Address(ESP, dst + stack_offset + kX86WordSize), temp_reg);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005734}
5735
5736void ParallelMoveResolverX86::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005737 MoveOperands* move = moves_[index];
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005738 Location source = move->GetSource();
5739 Location destination = move->GetDestination();
5740
5741 if (source.IsRegister()) {
5742 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005743 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005744 } else if (destination.IsFpuRegister()) {
5745 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005746 } else {
5747 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00005748 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005749 }
David Brazdil74eb1b22015-12-14 11:44:01 +00005750 } else if (source.IsRegisterPair()) {
5751 size_t elem_size = Primitive::ComponentSize(Primitive::kPrimInt);
5752 // Create stack space for 2 elements.
5753 __ subl(ESP, Immediate(2 * elem_size));
5754 __ movl(Address(ESP, 0), source.AsRegisterPairLow<Register>());
5755 __ movl(Address(ESP, elem_size), source.AsRegisterPairHigh<Register>());
5756 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
5757 // And remove the temporary stack space we allocated.
5758 __ addl(ESP, Immediate(2 * elem_size));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005759 } else if (source.IsFpuRegister()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005760 if (destination.IsRegister()) {
5761 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
5762 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005763 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005764 } else if (destination.IsRegisterPair()) {
5765 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>();
5766 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
5767 __ psrlq(src_reg, Immediate(32));
5768 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005769 } else if (destination.IsStackSlot()) {
5770 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
5771 } else {
5772 DCHECK(destination.IsDoubleStackSlot());
5773 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
5774 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005775 } else if (source.IsStackSlot()) {
5776 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005777 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005778 } else if (destination.IsFpuRegister()) {
5779 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005780 } else {
5781 DCHECK(destination.IsStackSlot());
Mark Mendell7c8d0092015-01-26 11:21:33 -05005782 MoveMemoryToMemory32(destination.GetStackIndex(), source.GetStackIndex());
5783 }
5784 } else if (source.IsDoubleStackSlot()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005785 if (destination.IsRegisterPair()) {
5786 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
5787 __ movl(destination.AsRegisterPairHigh<Register>(),
5788 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
5789 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005790 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
5791 } else {
5792 DCHECK(destination.IsDoubleStackSlot()) << destination;
5793 MoveMemoryToMemory64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005794 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005795 } else if (source.IsConstant()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005796 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00005797 if (constant->IsIntConstant() || constant->IsNullConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05005798 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005799 if (destination.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05005800 if (value == 0) {
5801 __ xorl(destination.AsRegister<Register>(), destination.AsRegister<Register>());
5802 } else {
5803 __ movl(destination.AsRegister<Register>(), Immediate(value));
5804 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005805 } else {
5806 DCHECK(destination.IsStackSlot()) << destination;
Mark Mendell09b84632015-02-13 17:48:38 -05005807 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005808 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005809 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005810 float fp_value = constant->AsFloatConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00005811 int32_t value = bit_cast<int32_t, float>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005812 Immediate imm(value);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005813 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005814 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
5815 if (value == 0) {
5816 // Easy handling of 0.0.
5817 __ xorps(dest, dest);
5818 } else {
5819 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005820 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5821 Register temp = static_cast<Register>(ensure_scratch.GetRegister());
5822 __ movl(temp, Immediate(value));
5823 __ movd(dest, temp);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005824 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005825 } else {
5826 DCHECK(destination.IsStackSlot()) << destination;
5827 __ movl(Address(ESP, destination.GetStackIndex()), imm);
5828 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005829 } else if (constant->IsLongConstant()) {
5830 int64_t value = constant->AsLongConstant()->GetValue();
5831 int32_t low_value = Low32Bits(value);
5832 int32_t high_value = High32Bits(value);
5833 Immediate low(low_value);
5834 Immediate high(high_value);
5835 if (destination.IsDoubleStackSlot()) {
5836 __ movl(Address(ESP, destination.GetStackIndex()), low);
5837 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5838 } else {
5839 __ movl(destination.AsRegisterPairLow<Register>(), low);
5840 __ movl(destination.AsRegisterPairHigh<Register>(), high);
5841 }
5842 } else {
5843 DCHECK(constant->IsDoubleConstant());
5844 double dbl_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00005845 int64_t value = bit_cast<int64_t, double>(dbl_value);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005846 int32_t low_value = Low32Bits(value);
5847 int32_t high_value = High32Bits(value);
5848 Immediate low(low_value);
5849 Immediate high(high_value);
5850 if (destination.IsFpuRegister()) {
5851 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
5852 if (value == 0) {
5853 // Easy handling of 0.0.
5854 __ xorpd(dest, dest);
5855 } else {
5856 __ pushl(high);
5857 __ pushl(low);
5858 __ movsd(dest, Address(ESP, 0));
5859 __ addl(ESP, Immediate(8));
5860 }
5861 } else {
5862 DCHECK(destination.IsDoubleStackSlot()) << destination;
5863 __ movl(Address(ESP, destination.GetStackIndex()), low);
5864 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5865 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005866 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005867 } else {
Nicolas Geoffray42d1f5f2015-01-16 09:14:18 +00005868 LOG(FATAL) << "Unimplemented move: " << destination << " <- " << source;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005869 }
5870}
5871
Mark Mendella5c19ce2015-04-01 12:51:05 -04005872void ParallelMoveResolverX86::Exchange(Register reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005873 Register suggested_scratch = reg == EAX ? EBX : EAX;
5874 ScratchRegisterScope ensure_scratch(
5875 this, reg, suggested_scratch, codegen_->GetNumberOfCoreRegisters());
5876
5877 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5878 __ movl(static_cast<Register>(ensure_scratch.GetRegister()), Address(ESP, mem + stack_offset));
5879 __ movl(Address(ESP, mem + stack_offset), reg);
5880 __ movl(reg, static_cast<Register>(ensure_scratch.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005881}
5882
Mark Mendell7c8d0092015-01-26 11:21:33 -05005883void ParallelMoveResolverX86::Exchange32(XmmRegister reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005884 ScratchRegisterScope ensure_scratch(
5885 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5886
5887 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
5888 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5889 __ movl(temp_reg, Address(ESP, mem + stack_offset));
5890 __ movss(Address(ESP, mem + stack_offset), reg);
5891 __ movd(reg, temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005892}
5893
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005894void ParallelMoveResolverX86::Exchange(int mem1, int mem2) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005895 ScratchRegisterScope ensure_scratch1(
5896 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005897
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005898 Register suggested_scratch = ensure_scratch1.GetRegister() == EAX ? EBX : EAX;
5899 ScratchRegisterScope ensure_scratch2(
5900 this, ensure_scratch1.GetRegister(), suggested_scratch, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005901
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005902 int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0;
5903 stack_offset += ensure_scratch2.IsSpilled() ? kX86WordSize : 0;
5904 __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset));
5905 __ movl(static_cast<Register>(ensure_scratch2.GetRegister()), Address(ESP, mem2 + stack_offset));
5906 __ movl(Address(ESP, mem2 + stack_offset), static_cast<Register>(ensure_scratch1.GetRegister()));
5907 __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005908}
5909
5910void ParallelMoveResolverX86::EmitSwap(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005911 MoveOperands* move = moves_[index];
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005912 Location source = move->GetSource();
5913 Location destination = move->GetDestination();
5914
5915 if (source.IsRegister() && destination.IsRegister()) {
Mark Mendell90979812015-07-28 16:41:21 -04005916 // Use XOR swap algorithm to avoid serializing XCHG instruction or using a temporary.
5917 DCHECK_NE(destination.AsRegister<Register>(), source.AsRegister<Register>());
5918 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
5919 __ xorl(source.AsRegister<Register>(), destination.AsRegister<Register>());
5920 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005921 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005922 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005923 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005924 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005925 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
5926 Exchange(destination.GetStackIndex(), source.GetStackIndex());
Mark Mendell7c8d0092015-01-26 11:21:33 -05005927 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
5928 // Use XOR Swap algorithm to avoid a temporary.
5929 DCHECK_NE(source.reg(), destination.reg());
5930 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
5931 __ xorpd(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
5932 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
5933 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
5934 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
5935 } else if (destination.IsFpuRegister() && source.IsStackSlot()) {
5936 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005937 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
5938 // Take advantage of the 16 bytes in the XMM register.
5939 XmmRegister reg = source.AsFpuRegister<XmmRegister>();
5940 Address stack(ESP, destination.GetStackIndex());
5941 // Load the double into the high doubleword.
5942 __ movhpd(reg, stack);
5943
5944 // Store the low double into the destination.
5945 __ movsd(stack, reg);
5946
5947 // Move the high double to the low double.
5948 __ psrldq(reg, Immediate(8));
5949 } else if (destination.IsFpuRegister() && source.IsDoubleStackSlot()) {
5950 // Take advantage of the 16 bytes in the XMM register.
5951 XmmRegister reg = destination.AsFpuRegister<XmmRegister>();
5952 Address stack(ESP, source.GetStackIndex());
5953 // Load the double into the high doubleword.
5954 __ movhpd(reg, stack);
5955
5956 // Store the low double into the destination.
5957 __ movsd(stack, reg);
5958
5959 // Move the high double to the low double.
5960 __ psrldq(reg, Immediate(8));
5961 } else if (destination.IsDoubleStackSlot() && source.IsDoubleStackSlot()) {
5962 Exchange(destination.GetStackIndex(), source.GetStackIndex());
5963 Exchange(destination.GetHighStackIndex(kX86WordSize), source.GetHighStackIndex(kX86WordSize));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005964 } else {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005965 LOG(FATAL) << "Unimplemented: source: " << source << ", destination: " << destination;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005966 }
5967}
5968
5969void ParallelMoveResolverX86::SpillScratch(int reg) {
5970 __ pushl(static_cast<Register>(reg));
5971}
5972
5973void ParallelMoveResolverX86::RestoreScratch(int reg) {
5974 __ popl(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01005975}
5976
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005977HLoadClass::LoadKind CodeGeneratorX86::GetSupportedLoadClassKind(
5978 HLoadClass::LoadKind desired_class_load_kind) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005979 switch (desired_class_load_kind) {
5980 case HLoadClass::LoadKind::kReferrersClass:
5981 break;
5982 case HLoadClass::LoadKind::kBootImageLinkTimeAddress:
5983 DCHECK(!GetCompilerOptions().GetCompilePic());
5984 break;
5985 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
5986 DCHECK(GetCompilerOptions().GetCompilePic());
Vladimir Marko48886c22017-01-06 11:45:47 +00005987 DCHECK(!Runtime::Current()->UseJitCompilation());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005988 // We disable pc-relative load when there is an irreducible loop, as the optimization
5989 // is incompatible with it.
5990 // TODO: Create as many X86ComputeBaseMethodAddress instructions as needed for methods
5991 // with irreducible loops.
5992 if (GetGraph()->HasIrreducibleLoops()) {
5993 return HLoadClass::LoadKind::kDexCacheViaMethod;
5994 }
5995 break;
5996 case HLoadClass::LoadKind::kBootImageAddress:
5997 break;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00005998 case HLoadClass::LoadKind::kJitTableAddress:
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005999 DCHECK(Runtime::Current()->UseJitCompilation());
6000 break;
6001 case HLoadClass::LoadKind::kDexCacheViaMethod:
6002 break;
6003 }
6004 return desired_class_load_kind;
6005}
6006
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006007void LocationsBuilderX86::VisitLoadClass(HLoadClass* cls) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006008 if (cls->NeedsAccessCheck()) {
6009 InvokeRuntimeCallingConvention calling_convention;
6010 CodeGenerator::CreateLoadClassLocationSummary(
6011 cls,
6012 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
6013 Location::RegisterLocation(EAX),
6014 /* code_generator_supports_read_barrier */ true);
6015 return;
6016 }
6017
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006018 const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage();
6019 LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier)
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006020 ? LocationSummary::kCallOnSlowPath
6021 : LocationSummary::kNoCall;
6022 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006023 if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01006024 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01006025 }
6026
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006027 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
6028 if (load_kind == HLoadClass::LoadKind::kReferrersClass ||
6029 load_kind == HLoadClass::LoadKind::kDexCacheViaMethod ||
Vladimir Marko48886c22017-01-06 11:45:47 +00006030 load_kind == HLoadClass::LoadKind::kBootImageLinkTimePcRelative) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006031 locations->SetInAt(0, Location::RequiresRegister());
6032 }
6033 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006034}
6035
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006036Label* CodeGeneratorX86::NewJitRootClassPatch(const DexFile& dex_file,
6037 dex::TypeIndex dex_index,
6038 uint64_t address) {
6039 jit_class_roots_.Overwrite(TypeReference(&dex_file, dex_index), address);
6040 // Add a patch entry and return the label.
6041 jit_class_patches_.emplace_back(dex_file, dex_index.index_);
6042 PatchInfo<Label>* info = &jit_class_patches_.back();
6043 return &info->label;
6044}
6045
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006046void InstructionCodeGeneratorX86::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01006047 LocationSummary* locations = cls->GetLocations();
Calin Juravle98893e12015-10-02 21:05:03 +01006048 if (cls->NeedsAccessCheck()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08006049 codegen_->MoveConstant(locations->GetTemp(0), cls->GetTypeIndex().index_);
Serban Constantinescuba45db02016-07-12 22:53:02 +01006050 codegen_->InvokeRuntime(kQuickInitializeTypeAndVerifyAccess, cls, cls->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006051 CheckEntrypointTypes<kQuickInitializeTypeAndVerifyAccess, void*, uint32_t>();
Calin Juravle580b6092015-10-06 17:35:58 +01006052 return;
6053 }
6054
Roland Levillain0d5a2812015-11-13 10:07:31 +00006055 Location out_loc = locations->Out();
6056 Register out = out_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006057
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006058 bool generate_null_check = false;
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006059 const ReadBarrierOption read_barrier_option = cls->IsInBootImage()
6060 ? kWithoutReadBarrier
6061 : kCompilerReadBarrierOption;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006062 switch (cls->GetLoadKind()) {
6063 case HLoadClass::LoadKind::kReferrersClass: {
6064 DCHECK(!cls->CanCallRuntime());
6065 DCHECK(!cls->MustGenerateClinitCheck());
6066 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6067 Register current_method = locations->InAt(0).AsRegister<Register>();
6068 GenerateGcRootFieldLoad(
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006069 cls,
6070 out_loc,
6071 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),
Roland Levillain00468f32016-10-27 18:02:48 +01006072 /* fixup_label */ nullptr,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006073 read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006074 break;
6075 }
6076 case HLoadClass::LoadKind::kBootImageLinkTimeAddress: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006077 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006078 __ movl(out, Immediate(/* placeholder */ 0));
6079 codegen_->RecordTypePatch(cls);
6080 break;
6081 }
6082 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006083 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006084 Register method_address = locations->InAt(0).AsRegister<Register>();
6085 __ leal(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
6086 codegen_->RecordTypePatch(cls);
6087 break;
6088 }
6089 case HLoadClass::LoadKind::kBootImageAddress: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006090 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006091 DCHECK_NE(cls->GetAddress(), 0u);
6092 uint32_t address = dchecked_integral_cast<uint32_t>(cls->GetAddress());
6093 __ movl(out, Immediate(address));
6094 codegen_->RecordSimplePatch();
6095 break;
6096 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006097 case HLoadClass::LoadKind::kJitTableAddress: {
6098 Address address = Address::Absolute(CodeGeneratorX86::kDummy32BitOffset);
6099 Label* fixup_label = codegen_->NewJitRootClassPatch(
6100 cls->GetDexFile(), cls->GetTypeIndex(), cls->GetAddress());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006101 // /* GcRoot<mirror::Class> */ out = *address
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006102 GenerateGcRootFieldLoad(cls, out_loc, address, fixup_label, kCompilerReadBarrierOption);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006103 break;
6104 }
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006105 case HLoadClass::LoadKind::kDexCacheViaMethod: {
6106 // /* GcRoot<mirror::Class>[] */ out =
6107 // current_method.ptr_sized_fields_->dex_cache_resolved_types_
6108 Register current_method = locations->InAt(0).AsRegister<Register>();
6109 __ movl(out, Address(current_method,
6110 ArtMethod::DexCacheResolvedTypesOffset(kX86PointerSize).Int32Value()));
6111 // /* GcRoot<mirror::Class> */ out = out[type_index]
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006112 GenerateGcRootFieldLoad(cls,
6113 out_loc,
Andreas Gampea5b09a62016-11-17 15:21:22 -08006114 Address(out,
6115 CodeGenerator::GetCacheOffset(cls->GetTypeIndex().index_)),
Roland Levillain00468f32016-10-27 18:02:48 +01006116 /* fixup_label */ nullptr,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006117 read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006118 generate_null_check = !cls->IsInDexCache();
6119 break;
6120 }
6121 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006122
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006123 if (generate_null_check || cls->MustGenerateClinitCheck()) {
6124 DCHECK(cls->CanCallRuntime());
6125 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
6126 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
6127 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00006128
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006129 if (generate_null_check) {
6130 __ testl(out, out);
6131 __ j(kEqual, slow_path->GetEntryLabel());
6132 }
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00006133
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006134 if (cls->MustGenerateClinitCheck()) {
6135 GenerateClassInitializationCheck(slow_path, out);
6136 } else {
6137 __ Bind(slow_path->GetExitLabel());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006138 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006139 }
6140}
6141
6142void LocationsBuilderX86::VisitClinitCheck(HClinitCheck* check) {
6143 LocationSummary* locations =
6144 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
6145 locations->SetInAt(0, Location::RequiresRegister());
6146 if (check->HasUses()) {
6147 locations->SetOut(Location::SameAsFirstInput());
6148 }
6149}
6150
6151void InstructionCodeGeneratorX86::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006152 // We assume the class to not be null.
Andreas Gampe85b62f22015-09-09 13:15:38 -07006153 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006154 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006155 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00006156 GenerateClassInitializationCheck(slow_path,
6157 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006158}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006159
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006160void InstructionCodeGeneratorX86::GenerateClassInitializationCheck(
Andreas Gampe85b62f22015-09-09 13:15:38 -07006161 SlowPathCode* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006162 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
6163 Immediate(mirror::Class::kStatusInitialized));
6164 __ j(kLess, slow_path->GetEntryLabel());
6165 __ Bind(slow_path->GetExitLabel());
6166 // No need for memory fence, thanks to the X86 memory model.
6167}
6168
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006169HLoadString::LoadKind CodeGeneratorX86::GetSupportedLoadStringKind(
6170 HLoadString::LoadKind desired_string_load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006171 switch (desired_string_load_kind) {
6172 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
6173 DCHECK(!GetCompilerOptions().GetCompilePic());
6174 break;
6175 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
6176 DCHECK(GetCompilerOptions().GetCompilePic());
6177 FALLTHROUGH_INTENDED;
Vladimir Markoaad75c62016-10-03 08:46:48 +00006178 case HLoadString::LoadKind::kBssEntry:
Calin Juravleffc87072016-04-20 14:22:09 +01006179 DCHECK(!Runtime::Current()->UseJitCompilation()); // Note: boot image is also non-JIT.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006180 // We disable pc-relative load when there is an irreducible loop, as the optimization
6181 // is incompatible with it.
6182 // TODO: Create as many X86ComputeBaseMethodAddress instructions as needed for methods
6183 // with irreducible loops.
6184 if (GetGraph()->HasIrreducibleLoops()) {
6185 return HLoadString::LoadKind::kDexCacheViaMethod;
6186 }
6187 break;
6188 case HLoadString::LoadKind::kBootImageAddress:
6189 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006190 case HLoadString::LoadKind::kDexCacheViaMethod:
6191 break;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006192 case HLoadString::LoadKind::kJitTableAddress:
6193 DCHECK(Runtime::Current()->UseJitCompilation());
6194 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006195 }
6196 return desired_string_load_kind;
6197}
6198
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006199void LocationsBuilderX86::VisitLoadString(HLoadString* load) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006200 LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load);
Nicolas Geoffray917d0162015-11-24 18:25:35 +00006201 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(load, call_kind);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006202 HLoadString::LoadKind load_kind = load->GetLoadKind();
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006203 if (load_kind == HLoadString::LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Markoaad75c62016-10-03 08:46:48 +00006204 load_kind == HLoadString::LoadKind::kBssEntry) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006205 locations->SetInAt(0, Location::RequiresRegister());
6206 }
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006207 if (load_kind == HLoadString::LoadKind::kDexCacheViaMethod) {
6208 locations->SetOut(Location::RegisterLocation(EAX));
6209 } else {
6210 locations->SetOut(Location::RequiresRegister());
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006211 if (load_kind == HLoadString::LoadKind::kBssEntry) {
6212 if (!kUseReadBarrier || kUseBakerReadBarrier) {
6213 // Rely on the pResolveString and/or marking to save everything.
6214 RegisterSet caller_saves = RegisterSet::Empty();
6215 InvokeRuntimeCallingConvention calling_convention;
6216 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6217 locations->SetCustomSlowPathCallerSaves(caller_saves);
6218 } else {
6219 // For non-Baker read barrier we have a temp-clobbering call.
6220 }
6221 }
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006222 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006223}
6224
Andreas Gampe8a0128a2016-11-28 07:38:35 -08006225Label* CodeGeneratorX86::NewJitRootStringPatch(const DexFile& dex_file,
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006226 dex::StringIndex dex_index,
6227 Handle<mirror::String> handle) {
6228 jit_string_roots_.Overwrite(
6229 StringReference(&dex_file, dex_index), reinterpret_cast64<uint64_t>(handle.GetReference()));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006230 // Add a patch entry and return the label.
Andreas Gampe8a0128a2016-11-28 07:38:35 -08006231 jit_string_patches_.emplace_back(dex_file, dex_index.index_);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006232 PatchInfo<Label>* info = &jit_string_patches_.back();
6233 return &info->label;
6234}
6235
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006236// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
6237// move.
6238void InstructionCodeGeneratorX86::VisitLoadString(HLoadString* load) NO_THREAD_SAFETY_ANALYSIS {
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01006239 LocationSummary* locations = load->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006240 Location out_loc = locations->Out();
6241 Register out = out_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006242
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006243 switch (load->GetLoadKind()) {
6244 case HLoadString::LoadKind::kBootImageLinkTimeAddress: {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006245 __ movl(out, Immediate(/* placeholder */ 0));
Vladimir Markoaad75c62016-10-03 08:46:48 +00006246 codegen_->RecordBootStringPatch(load);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006247 return; // No dex cache slow path.
6248 }
6249 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006250 Register method_address = locations->InAt(0).AsRegister<Register>();
6251 __ leal(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
Vladimir Markoaad75c62016-10-03 08:46:48 +00006252 codegen_->RecordBootStringPatch(load);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006253 return; // No dex cache slow path.
6254 }
6255 case HLoadString::LoadKind::kBootImageAddress: {
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006256 uint32_t address = dchecked_integral_cast<uint32_t>(
6257 reinterpret_cast<uintptr_t>(load->GetString().Get()));
6258 DCHECK_NE(address, 0u);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006259 __ movl(out, Immediate(address));
6260 codegen_->RecordSimplePatch();
6261 return; // No dex cache slow path.
6262 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00006263 case HLoadString::LoadKind::kBssEntry: {
6264 Register method_address = locations->InAt(0).AsRegister<Register>();
6265 Address address = Address(method_address, CodeGeneratorX86::kDummy32BitOffset);
6266 Label* fixup_label = codegen_->NewStringBssEntryPatch(load);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006267 // /* GcRoot<mirror::String> */ out = *address /* PC-relative */
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006268 GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption);
Vladimir Markoaad75c62016-10-03 08:46:48 +00006269 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86(load);
6270 codegen_->AddSlowPath(slow_path);
6271 __ testl(out, out);
6272 __ j(kEqual, slow_path->GetEntryLabel());
6273 __ Bind(slow_path->GetExitLabel());
6274 return;
6275 }
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006276 case HLoadString::LoadKind::kJitTableAddress: {
6277 Address address = Address::Absolute(CodeGeneratorX86::kDummy32BitOffset);
6278 Label* fixup_label = codegen_->NewJitRootStringPatch(
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006279 load->GetDexFile(), load->GetStringIndex(), load->GetString());
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006280 // /* GcRoot<mirror::String> */ out = *address
6281 GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption);
6282 return;
6283 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006284 default:
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07006285 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006286 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006287
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07006288 // TODO: Re-add the compiler code to do string dex cache lookup again.
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006289 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006290 DCHECK_EQ(calling_convention.GetRegisterAt(0), out);
Andreas Gampe8a0128a2016-11-28 07:38:35 -08006291 __ movl(calling_convention.GetRegisterAt(0), Immediate(load->GetStringIndex().index_));
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006292 codegen_->InvokeRuntime(kQuickResolveString, load, load->GetDexPc());
6293 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006294}
6295
David Brazdilcb1c0552015-08-04 16:22:25 +01006296static Address GetExceptionTlsAddress() {
Andreas Gampe542451c2016-07-26 09:02:02 -07006297 return Address::Absolute(Thread::ExceptionOffset<kX86PointerSize>().Int32Value());
David Brazdilcb1c0552015-08-04 16:22:25 +01006298}
6299
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006300void LocationsBuilderX86::VisitLoadException(HLoadException* load) {
6301 LocationSummary* locations =
6302 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
6303 locations->SetOut(Location::RequiresRegister());
6304}
6305
6306void InstructionCodeGeneratorX86::VisitLoadException(HLoadException* load) {
David Brazdilcb1c0552015-08-04 16:22:25 +01006307 __ fs()->movl(load->GetLocations()->Out().AsRegister<Register>(), GetExceptionTlsAddress());
6308}
6309
6310void LocationsBuilderX86::VisitClearException(HClearException* clear) {
6311 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
6312}
6313
6314void InstructionCodeGeneratorX86::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
6315 __ fs()->movl(GetExceptionTlsAddress(), Immediate(0));
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006316}
6317
6318void LocationsBuilderX86::VisitThrow(HThrow* instruction) {
6319 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006320 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006321 InvokeRuntimeCallingConvention calling_convention;
6322 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6323}
6324
6325void InstructionCodeGeneratorX86::VisitThrow(HThrow* instruction) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01006326 codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006327 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006328}
6329
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006330// Temp is used for read barrier.
6331static size_t NumberOfInstanceOfTemps(TypeCheckKind type_check_kind) {
6332 if (kEmitCompilerReadBarrier &&
Vladimir Marko953437b2016-08-24 08:30:46 +00006333 !kUseBakerReadBarrier &&
6334 (type_check_kind == TypeCheckKind::kAbstractClassCheck ||
Roland Levillain7c1559a2015-12-15 10:55:36 +00006335 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006336 type_check_kind == TypeCheckKind::kArrayObjectCheck)) {
6337 return 1;
6338 }
6339 return 0;
6340}
6341
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006342// Interface case has 3 temps, one for holding the number of interfaces, one for the current
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006343// interface pointer, one for loading the current interface.
6344// The other checks have one temp for loading the object's class.
6345static size_t NumberOfCheckCastTemps(TypeCheckKind type_check_kind) {
6346 if (type_check_kind == TypeCheckKind::kInterfaceCheck && !kPoisonHeapReferences) {
6347 return 2;
6348 }
6349 return 1 + NumberOfInstanceOfTemps(type_check_kind);
Roland Levillain7c1559a2015-12-15 10:55:36 +00006350}
6351
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006352void LocationsBuilderX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006353 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006354 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Vladimir Marko70e97462016-08-09 11:04:26 +01006355 bool baker_read_barrier_slow_path = false;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006356 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006357 case TypeCheckKind::kExactCheck:
6358 case TypeCheckKind::kAbstractClassCheck:
6359 case TypeCheckKind::kClassHierarchyCheck:
6360 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00006361 call_kind =
6362 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Vladimir Marko70e97462016-08-09 11:04:26 +01006363 baker_read_barrier_slow_path = kUseBakerReadBarrier;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006364 break;
6365 case TypeCheckKind::kArrayCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00006366 case TypeCheckKind::kUnresolvedCheck:
6367 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006368 call_kind = LocationSummary::kCallOnSlowPath;
6369 break;
6370 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006371
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006372 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Vladimir Marko70e97462016-08-09 11:04:26 +01006373 if (baker_read_barrier_slow_path) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01006374 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01006375 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006376 locations->SetInAt(0, Location::RequiresRegister());
6377 locations->SetInAt(1, Location::Any());
6378 // Note that TypeCheckSlowPathX86 uses this "out" register too.
6379 locations->SetOut(Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006380 // When read barriers are enabled, we need a temporary register for some cases.
6381 locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006382}
6383
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006384void InstructionCodeGeneratorX86::VisitInstanceOf(HInstanceOf* instruction) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00006385 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006386 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006387 Location obj_loc = locations->InAt(0);
6388 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006389 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006390 Location out_loc = locations->Out();
6391 Register out = out_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006392 const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind);
6393 DCHECK_LE(num_temps, 1u);
6394 Location maybe_temp_loc = (num_temps >= 1) ? locations->GetTemp(0) : Location::NoLocation();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006395 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006396 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6397 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6398 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Andreas Gampe85b62f22015-09-09 13:15:38 -07006399 SlowPathCode* slow_path = nullptr;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006400 NearLabel done, zero;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006401
6402 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006403 // Avoid null check if we know obj is not null.
6404 if (instruction->MustDoNullCheck()) {
6405 __ testl(obj, obj);
6406 __ j(kEqual, &zero);
6407 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006408
Roland Levillain7c1559a2015-12-15 10:55:36 +00006409 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006410 case TypeCheckKind::kExactCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006411 // /* HeapReference<Class> */ out = obj->klass_
6412 GenerateReferenceLoadTwoRegisters(instruction,
6413 out_loc,
6414 obj_loc,
6415 class_offset,
6416 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006417 if (cls.IsRegister()) {
6418 __ cmpl(out, cls.AsRegister<Register>());
6419 } else {
6420 DCHECK(cls.IsStackSlot()) << cls;
6421 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6422 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006423
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006424 // Classes must be equal for the instanceof to succeed.
6425 __ j(kNotEqual, &zero);
6426 __ movl(out, Immediate(1));
6427 __ jmp(&done);
6428 break;
6429 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006430
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006431 case TypeCheckKind::kAbstractClassCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006432 // /* HeapReference<Class> */ out = obj->klass_
6433 GenerateReferenceLoadTwoRegisters(instruction,
6434 out_loc,
6435 obj_loc,
6436 class_offset,
6437 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006438 // If the class is abstract, we eagerly fetch the super class of the
6439 // object to avoid doing a comparison we know will fail.
6440 NearLabel loop;
6441 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006442 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006443 GenerateReferenceLoadOneRegister(instruction,
6444 out_loc,
6445 super_offset,
6446 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006447 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006448 __ testl(out, out);
6449 // If `out` is null, we use it for the result, and jump to `done`.
6450 __ j(kEqual, &done);
6451 if (cls.IsRegister()) {
6452 __ cmpl(out, cls.AsRegister<Register>());
6453 } else {
6454 DCHECK(cls.IsStackSlot()) << cls;
6455 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6456 }
6457 __ j(kNotEqual, &loop);
6458 __ movl(out, Immediate(1));
6459 if (zero.IsLinked()) {
6460 __ jmp(&done);
6461 }
6462 break;
6463 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006464
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006465 case TypeCheckKind::kClassHierarchyCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006466 // /* HeapReference<Class> */ out = obj->klass_
6467 GenerateReferenceLoadTwoRegisters(instruction,
6468 out_loc,
6469 obj_loc,
6470 class_offset,
6471 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006472 // Walk over the class hierarchy to find a match.
6473 NearLabel loop, success;
6474 __ Bind(&loop);
6475 if (cls.IsRegister()) {
6476 __ cmpl(out, cls.AsRegister<Register>());
6477 } else {
6478 DCHECK(cls.IsStackSlot()) << cls;
6479 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6480 }
6481 __ j(kEqual, &success);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006482 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006483 GenerateReferenceLoadOneRegister(instruction,
6484 out_loc,
6485 super_offset,
6486 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006487 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006488 __ testl(out, out);
6489 __ j(kNotEqual, &loop);
6490 // If `out` is null, we use it for the result, and jump to `done`.
6491 __ jmp(&done);
6492 __ Bind(&success);
6493 __ movl(out, Immediate(1));
6494 if (zero.IsLinked()) {
6495 __ jmp(&done);
6496 }
6497 break;
6498 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006499
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006500 case TypeCheckKind::kArrayObjectCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006501 // /* HeapReference<Class> */ out = obj->klass_
6502 GenerateReferenceLoadTwoRegisters(instruction,
6503 out_loc,
6504 obj_loc,
6505 class_offset,
6506 kCompilerReadBarrierOption);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006507 // Do an exact check.
6508 NearLabel exact_check;
6509 if (cls.IsRegister()) {
6510 __ cmpl(out, cls.AsRegister<Register>());
6511 } else {
6512 DCHECK(cls.IsStackSlot()) << cls;
6513 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6514 }
6515 __ j(kEqual, &exact_check);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006516 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006517 // /* HeapReference<Class> */ out = out->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006518 GenerateReferenceLoadOneRegister(instruction,
6519 out_loc,
6520 component_offset,
6521 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006522 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006523 __ testl(out, out);
6524 // If `out` is null, we use it for the result, and jump to `done`.
6525 __ j(kEqual, &done);
6526 __ cmpw(Address(out, primitive_offset), Immediate(Primitive::kPrimNot));
6527 __ j(kNotEqual, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006528 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006529 __ movl(out, Immediate(1));
6530 __ jmp(&done);
6531 break;
6532 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006533
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006534 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006535 // No read barrier since the slow path will retry upon failure.
6536 // /* HeapReference<Class> */ out = obj->klass_
6537 GenerateReferenceLoadTwoRegisters(instruction,
6538 out_loc,
6539 obj_loc,
6540 class_offset,
6541 kWithoutReadBarrier);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006542 if (cls.IsRegister()) {
6543 __ cmpl(out, cls.AsRegister<Register>());
6544 } else {
6545 DCHECK(cls.IsStackSlot()) << cls;
6546 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6547 }
6548 DCHECK(locations->OnlyCallsOnSlowPath());
Roland Levillain0d5a2812015-11-13 10:07:31 +00006549 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(instruction,
6550 /* is_fatal */ false);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006551 codegen_->AddSlowPath(slow_path);
6552 __ j(kNotEqual, slow_path->GetEntryLabel());
6553 __ movl(out, Immediate(1));
6554 if (zero.IsLinked()) {
6555 __ jmp(&done);
6556 }
6557 break;
6558 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006559
Calin Juravle98893e12015-10-02 21:05:03 +01006560 case TypeCheckKind::kUnresolvedCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00006561 case TypeCheckKind::kInterfaceCheck: {
6562 // Note that we indeed only call on slow path, but we always go
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006563 // into the slow path for the unresolved and interface check
Roland Levillain0d5a2812015-11-13 10:07:31 +00006564 // cases.
6565 //
6566 // We cannot directly call the InstanceofNonTrivial runtime
6567 // entry point without resorting to a type checking slow path
6568 // here (i.e. by calling InvokeRuntime directly), as it would
6569 // require to assign fixed registers for the inputs of this
6570 // HInstanceOf instruction (following the runtime calling
6571 // convention), which might be cluttered by the potential first
6572 // read barrier emission at the beginning of this method.
Roland Levillain7c1559a2015-12-15 10:55:36 +00006573 //
6574 // TODO: Introduce a new runtime entry point taking the object
6575 // to test (instead of its class) as argument, and let it deal
6576 // with the read barrier issues. This will let us refactor this
6577 // case of the `switch` code as it was previously (with a direct
6578 // call to the runtime not using a type checking slow path).
6579 // This should also be beneficial for the other cases above.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006580 DCHECK(locations->OnlyCallsOnSlowPath());
6581 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(instruction,
6582 /* is_fatal */ false);
6583 codegen_->AddSlowPath(slow_path);
6584 __ jmp(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006585 if (zero.IsLinked()) {
6586 __ jmp(&done);
6587 }
6588 break;
6589 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006590 }
6591
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006592 if (zero.IsLinked()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006593 __ Bind(&zero);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006594 __ xorl(out, out);
6595 }
6596
6597 if (done.IsLinked()) {
6598 __ Bind(&done);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006599 }
6600
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006601 if (slow_path != nullptr) {
6602 __ Bind(slow_path->GetExitLabel());
6603 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006604}
6605
Mathieu Chartier5ac321b2016-11-09 16:33:54 -08006606static bool IsTypeCheckSlowPathFatal(TypeCheckKind type_check_kind, bool throws_into_catch) {
6607 switch (type_check_kind) {
6608 case TypeCheckKind::kExactCheck:
6609 case TypeCheckKind::kAbstractClassCheck:
6610 case TypeCheckKind::kClassHierarchyCheck:
6611 case TypeCheckKind::kArrayObjectCheck:
6612 return !throws_into_catch && !kEmitCompilerReadBarrier;
6613 case TypeCheckKind::kInterfaceCheck:
6614 return !throws_into_catch && !kEmitCompilerReadBarrier && !kPoisonHeapReferences;
6615 case TypeCheckKind::kArrayCheck:
6616 case TypeCheckKind::kUnresolvedCheck:
6617 return false;
6618 }
6619 LOG(FATAL) << "Unreachable";
6620 UNREACHABLE();
6621}
6622
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006623void LocationsBuilderX86::VisitCheckCast(HCheckCast* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006624 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006625 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Mathieu Chartier5ac321b2016-11-09 16:33:54 -08006626 LocationSummary::CallKind call_kind =
6627 IsTypeCheckSlowPathFatal(type_check_kind, throws_into_catch)
6628 ? LocationSummary::kNoCall
6629 : LocationSummary::kCallOnSlowPath;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006630 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
6631 locations->SetInAt(0, Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006632 if (type_check_kind == TypeCheckKind::kInterfaceCheck) {
6633 // Require a register for the interface check since there is a loop that compares the class to
6634 // a memory address.
6635 locations->SetInAt(1, Location::RequiresRegister());
6636 } else {
6637 locations->SetInAt(1, Location::Any());
6638 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006639 // Note that TypeCheckSlowPathX86 uses this "temp" register too.
6640 locations->AddTemp(Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006641 // When read barriers are enabled, we need an additional temporary register for some cases.
6642 locations->AddRegisterTemps(NumberOfCheckCastTemps(type_check_kind));
6643}
6644
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006645void InstructionCodeGeneratorX86::VisitCheckCast(HCheckCast* instruction) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00006646 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006647 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006648 Location obj_loc = locations->InAt(0);
6649 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006650 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006651 Location temp_loc = locations->GetTemp(0);
6652 Register temp = temp_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006653 const size_t num_temps = NumberOfCheckCastTemps(type_check_kind);
6654 DCHECK_GE(num_temps, 1u);
6655 DCHECK_LE(num_temps, 2u);
6656 Location maybe_temp2_loc = (num_temps >= 2) ? locations->GetTemp(1) : Location::NoLocation();
6657 const uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
6658 const uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6659 const uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6660 const uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
6661 const uint32_t iftable_offset = mirror::Class::IfTableOffset().Uint32Value();
6662 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value();
6663 const uint32_t object_array_data_offset =
6664 mirror::Array::DataOffset(kHeapReferenceSize).Uint32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006665
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006666 // Always false for read barriers since we may need to go to the entrypoint for non-fatal cases
6667 // from false negatives. The false negatives may come from avoiding read barriers below. Avoiding
6668 // read barriers is done for performance and code size reasons.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006669 bool is_type_check_slow_path_fatal =
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006670 IsTypeCheckSlowPathFatal(type_check_kind, instruction->CanThrowIntoCatchBlock());
6671
Roland Levillain0d5a2812015-11-13 10:07:31 +00006672 SlowPathCode* type_check_slow_path =
6673 new (GetGraph()->GetArena()) TypeCheckSlowPathX86(instruction,
6674 is_type_check_slow_path_fatal);
6675 codegen_->AddSlowPath(type_check_slow_path);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006676
Roland Levillain0d5a2812015-11-13 10:07:31 +00006677 NearLabel done;
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006678 // Avoid null check if we know obj is not null.
6679 if (instruction->MustDoNullCheck()) {
6680 __ testl(obj, obj);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006681 __ j(kEqual, &done);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006682 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006683
Roland Levillain0d5a2812015-11-13 10:07:31 +00006684 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006685 case TypeCheckKind::kExactCheck:
6686 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006687 // /* HeapReference<Class> */ temp = obj->klass_
6688 GenerateReferenceLoadTwoRegisters(instruction,
6689 temp_loc,
6690 obj_loc,
6691 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006692 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006693
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006694 if (cls.IsRegister()) {
6695 __ cmpl(temp, cls.AsRegister<Register>());
6696 } else {
6697 DCHECK(cls.IsStackSlot()) << cls;
6698 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6699 }
6700 // Jump to slow path for throwing the exception or doing a
6701 // more involved array check.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006702 __ j(kNotEqual, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006703 break;
6704 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006705
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006706 case TypeCheckKind::kAbstractClassCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006707 // /* HeapReference<Class> */ temp = obj->klass_
6708 GenerateReferenceLoadTwoRegisters(instruction,
6709 temp_loc,
6710 obj_loc,
6711 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006712 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006713
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006714 // If the class is abstract, we eagerly fetch the super class of the
6715 // object to avoid doing a comparison we know will fail.
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006716 NearLabel loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006717 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006718 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006719 GenerateReferenceLoadOneRegister(instruction,
6720 temp_loc,
6721 super_offset,
6722 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006723 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006724
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006725 // If the class reference currently in `temp` is null, jump to the slow path to throw the
6726 // exception.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006727 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006728 __ j(kZero, type_check_slow_path->GetEntryLabel());
Roland Levillain0d5a2812015-11-13 10:07:31 +00006729
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006730 // Otherwise, compare the classes
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006731 if (cls.IsRegister()) {
6732 __ cmpl(temp, cls.AsRegister<Register>());
6733 } else {
6734 DCHECK(cls.IsStackSlot()) << cls;
6735 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6736 }
6737 __ j(kNotEqual, &loop);
6738 break;
6739 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006740
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006741 case TypeCheckKind::kClassHierarchyCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006742 // /* HeapReference<Class> */ temp = obj->klass_
6743 GenerateReferenceLoadTwoRegisters(instruction,
6744 temp_loc,
6745 obj_loc,
6746 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006747 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006748
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006749 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006750 NearLabel loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006751 __ Bind(&loop);
6752 if (cls.IsRegister()) {
6753 __ cmpl(temp, cls.AsRegister<Register>());
6754 } else {
6755 DCHECK(cls.IsStackSlot()) << cls;
6756 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6757 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006758 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006759
Roland Levillain0d5a2812015-11-13 10:07:31 +00006760 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006761 GenerateReferenceLoadOneRegister(instruction,
6762 temp_loc,
6763 super_offset,
6764 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006765 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006766
6767 // If the class reference currently in `temp` is not null, jump
6768 // back at the beginning of the loop.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006769 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006770 __ j(kNotZero, &loop);
6771 // Otherwise, jump to the slow path to throw the exception.;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006772 __ jmp(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006773 break;
6774 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006775
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006776 case TypeCheckKind::kArrayObjectCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006777 // /* HeapReference<Class> */ temp = obj->klass_
6778 GenerateReferenceLoadTwoRegisters(instruction,
6779 temp_loc,
6780 obj_loc,
6781 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006782 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006783
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006784 // Do an exact check.
6785 if (cls.IsRegister()) {
6786 __ cmpl(temp, cls.AsRegister<Register>());
6787 } else {
6788 DCHECK(cls.IsStackSlot()) << cls;
6789 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6790 }
6791 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006792
6793 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006794 // /* HeapReference<Class> */ temp = temp->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006795 GenerateReferenceLoadOneRegister(instruction,
6796 temp_loc,
6797 component_offset,
6798 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006799 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006800
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006801 // If the component type is null (i.e. the object not an array), jump to the slow path to
6802 // throw the exception. Otherwise proceed with the check.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006803 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006804 __ j(kZero, type_check_slow_path->GetEntryLabel());
Roland Levillain0d5a2812015-11-13 10:07:31 +00006805
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006806 __ cmpw(Address(temp, primitive_offset), Immediate(Primitive::kPrimNot));
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006807 __ j(kNotEqual, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006808 break;
6809 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006810
Calin Juravle98893e12015-10-02 21:05:03 +01006811 case TypeCheckKind::kUnresolvedCheck:
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006812 // We always go into the type check slow path for the unresolved check case.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006813 // We cannot directly call the CheckCast runtime entry point
6814 // without resorting to a type checking slow path here (i.e. by
6815 // calling InvokeRuntime directly), as it would require to
6816 // assign fixed registers for the inputs of this HInstanceOf
6817 // instruction (following the runtime calling convention), which
6818 // might be cluttered by the potential first read barrier
6819 // emission at the beginning of this method.
6820 __ jmp(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006821 break;
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006822
6823 case TypeCheckKind::kInterfaceCheck: {
6824 // Fast path for the interface check. Since we compare with a memory location in the inner
6825 // loop we would need to have cls poisoned. However unpoisoning cls would reset the
6826 // conditional flags and cause the conditional jump to be incorrect. Therefore we just jump
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006827 // to the slow path if we are running under poisoning.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006828 if (!kPoisonHeapReferences) {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006829 // Try to avoid read barriers to improve the fast path. We can not get false positives by
6830 // doing this.
6831 // /* HeapReference<Class> */ temp = obj->klass_
6832 GenerateReferenceLoadTwoRegisters(instruction,
6833 temp_loc,
6834 obj_loc,
6835 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006836 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006837
6838 // /* HeapReference<Class> */ temp = temp->iftable_
6839 GenerateReferenceLoadTwoRegisters(instruction,
6840 temp_loc,
6841 temp_loc,
6842 iftable_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006843 kWithoutReadBarrier);
Mathieu Chartier6beced42016-11-15 15:51:31 -08006844 // Iftable is never null.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006845 __ movl(maybe_temp2_loc.AsRegister<Register>(), Address(temp, array_length_offset));
Mathieu Chartier6beced42016-11-15 15:51:31 -08006846 // Loop through the iftable and check if any class matches.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006847 NearLabel start_loop;
6848 __ Bind(&start_loop);
Mathieu Chartier6beced42016-11-15 15:51:31 -08006849 // Need to subtract first to handle the empty array case.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006850 __ subl(maybe_temp2_loc.AsRegister<Register>(), Immediate(2));
Mathieu Chartier6beced42016-11-15 15:51:31 -08006851 __ j(kNegative, type_check_slow_path->GetEntryLabel());
6852 // Go to next interface if the classes do not match.
6853 __ cmpl(cls.AsRegister<Register>(),
6854 CodeGeneratorX86::ArrayAddress(temp,
6855 maybe_temp2_loc,
6856 TIMES_4,
6857 object_array_data_offset));
6858 __ j(kNotEqual, &start_loop);
6859 } else {
6860 __ jmp(type_check_slow_path->GetEntryLabel());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006861 }
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006862 break;
6863 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006864 }
6865 __ Bind(&done);
6866
Roland Levillain0d5a2812015-11-13 10:07:31 +00006867 __ Bind(type_check_slow_path->GetExitLabel());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006868}
6869
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006870void LocationsBuilderX86::VisitMonitorOperation(HMonitorOperation* instruction) {
6871 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006872 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006873 InvokeRuntimeCallingConvention calling_convention;
6874 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6875}
6876
6877void InstructionCodeGeneratorX86::VisitMonitorOperation(HMonitorOperation* instruction) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01006878 codegen_->InvokeRuntime(instruction->IsEnter() ? kQuickLockObject
6879 : kQuickUnlockObject,
Alexandre Rames8158f282015-08-07 10:26:17 +01006880 instruction,
Serban Constantinescuba45db02016-07-12 22:53:02 +01006881 instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006882 if (instruction->IsEnter()) {
6883 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
6884 } else {
6885 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
6886 }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006887}
6888
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006889void LocationsBuilderX86::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
6890void LocationsBuilderX86::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
6891void LocationsBuilderX86::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
6892
6893void LocationsBuilderX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
6894 LocationSummary* locations =
6895 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
6896 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
6897 || instruction->GetResultType() == Primitive::kPrimLong);
6898 locations->SetInAt(0, Location::RequiresRegister());
6899 locations->SetInAt(1, Location::Any());
6900 locations->SetOut(Location::SameAsFirstInput());
6901}
6902
6903void InstructionCodeGeneratorX86::VisitAnd(HAnd* instruction) {
6904 HandleBitwiseOperation(instruction);
6905}
6906
6907void InstructionCodeGeneratorX86::VisitOr(HOr* instruction) {
6908 HandleBitwiseOperation(instruction);
6909}
6910
6911void InstructionCodeGeneratorX86::VisitXor(HXor* instruction) {
6912 HandleBitwiseOperation(instruction);
6913}
6914
6915void InstructionCodeGeneratorX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
6916 LocationSummary* locations = instruction->GetLocations();
6917 Location first = locations->InAt(0);
6918 Location second = locations->InAt(1);
6919 DCHECK(first.Equals(locations->Out()));
6920
6921 if (instruction->GetResultType() == Primitive::kPrimInt) {
6922 if (second.IsRegister()) {
6923 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006924 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006925 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006926 __ orl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006927 } else {
6928 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006929 __ xorl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006930 }
6931 } else if (second.IsConstant()) {
6932 if (instruction->IsAnd()) {
Roland Levillain199f3362014-11-27 17:15:16 +00006933 __ andl(first.AsRegister<Register>(),
6934 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006935 } else if (instruction->IsOr()) {
Roland Levillain199f3362014-11-27 17:15:16 +00006936 __ orl(first.AsRegister<Register>(),
6937 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006938 } else {
6939 DCHECK(instruction->IsXor());
Roland Levillain199f3362014-11-27 17:15:16 +00006940 __ xorl(first.AsRegister<Register>(),
6941 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006942 }
6943 } else {
6944 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006945 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006946 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006947 __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006948 } else {
6949 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006950 __ xorl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006951 }
6952 }
6953 } else {
6954 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
6955 if (second.IsRegisterPair()) {
6956 if (instruction->IsAnd()) {
6957 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
6958 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
6959 } else if (instruction->IsOr()) {
6960 __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
6961 __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
6962 } else {
6963 DCHECK(instruction->IsXor());
6964 __ xorl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
6965 __ xorl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
6966 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00006967 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006968 if (instruction->IsAnd()) {
6969 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
6970 __ andl(first.AsRegisterPairHigh<Register>(),
6971 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
6972 } else if (instruction->IsOr()) {
6973 __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
6974 __ orl(first.AsRegisterPairHigh<Register>(),
6975 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
6976 } else {
6977 DCHECK(instruction->IsXor());
6978 __ xorl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
6979 __ xorl(first.AsRegisterPairHigh<Register>(),
6980 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
6981 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00006982 } else {
6983 DCHECK(second.IsConstant()) << second;
6984 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006985 int32_t low_value = Low32Bits(value);
6986 int32_t high_value = High32Bits(value);
6987 Immediate low(low_value);
6988 Immediate high(high_value);
6989 Register first_low = first.AsRegisterPairLow<Register>();
6990 Register first_high = first.AsRegisterPairHigh<Register>();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00006991 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04006992 if (low_value == 0) {
6993 __ xorl(first_low, first_low);
6994 } else if (low_value != -1) {
6995 __ andl(first_low, low);
6996 }
6997 if (high_value == 0) {
6998 __ xorl(first_high, first_high);
6999 } else if (high_value != -1) {
7000 __ andl(first_high, high);
7001 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007002 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007003 if (low_value != 0) {
7004 __ orl(first_low, low);
7005 }
7006 if (high_value != 0) {
7007 __ orl(first_high, high);
7008 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007009 } else {
7010 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007011 if (low_value != 0) {
7012 __ xorl(first_low, low);
7013 }
7014 if (high_value != 0) {
7015 __ xorl(first_high, high);
7016 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007017 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00007018 }
7019 }
7020}
7021
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007022void InstructionCodeGeneratorX86::GenerateReferenceLoadOneRegister(
7023 HInstruction* instruction,
7024 Location out,
7025 uint32_t offset,
7026 Location maybe_temp,
7027 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007028 Register out_reg = out.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007029 if (read_barrier_option == kWithReadBarrier) {
7030 CHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007031 if (kUseBakerReadBarrier) {
7032 // Load with fast path based Baker's read barrier.
7033 // /* HeapReference<Object> */ out = *(out + offset)
7034 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00007035 instruction, out, out_reg, offset, /* needs_null_check */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007036 } else {
7037 // Load with slow path based read barrier.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007038 // Save the value of `out` into `maybe_temp` before overwriting it
Roland Levillain7c1559a2015-12-15 10:55:36 +00007039 // in the following move operation, as we will need it for the
7040 // read barrier below.
Vladimir Marko953437b2016-08-24 08:30:46 +00007041 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007042 __ movl(maybe_temp.AsRegister<Register>(), out_reg);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007043 // /* HeapReference<Object> */ out = *(out + offset)
7044 __ movl(out_reg, Address(out_reg, offset));
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007045 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007046 }
7047 } else {
7048 // Plain load with no read barrier.
7049 // /* HeapReference<Object> */ out = *(out + offset)
7050 __ movl(out_reg, Address(out_reg, offset));
7051 __ MaybeUnpoisonHeapReference(out_reg);
7052 }
7053}
7054
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007055void InstructionCodeGeneratorX86::GenerateReferenceLoadTwoRegisters(
7056 HInstruction* instruction,
7057 Location out,
7058 Location obj,
7059 uint32_t offset,
7060 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007061 Register out_reg = out.AsRegister<Register>();
7062 Register obj_reg = obj.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007063 if (read_barrier_option == kWithReadBarrier) {
7064 CHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007065 if (kUseBakerReadBarrier) {
7066 // Load with fast path based Baker's read barrier.
7067 // /* HeapReference<Object> */ out = *(obj + offset)
7068 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00007069 instruction, out, obj_reg, offset, /* needs_null_check */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007070 } else {
7071 // Load with slow path based read barrier.
7072 // /* HeapReference<Object> */ out = *(obj + offset)
7073 __ movl(out_reg, Address(obj_reg, offset));
7074 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
7075 }
7076 } else {
7077 // Plain load with no read barrier.
7078 // /* HeapReference<Object> */ out = *(obj + offset)
7079 __ movl(out_reg, Address(obj_reg, offset));
7080 __ MaybeUnpoisonHeapReference(out_reg);
7081 }
7082}
7083
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007084void InstructionCodeGeneratorX86::GenerateGcRootFieldLoad(
7085 HInstruction* instruction,
7086 Location root,
7087 const Address& address,
7088 Label* fixup_label,
7089 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007090 Register root_reg = root.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007091 if (read_barrier_option == kWithReadBarrier) {
Mathieu Chartier31b12e32016-09-02 17:11:57 -07007092 DCHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007093 if (kUseBakerReadBarrier) {
7094 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
7095 // Baker's read barrier are used:
7096 //
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007097 // root = *address;
Roland Levillain7c1559a2015-12-15 10:55:36 +00007098 // if (Thread::Current()->GetIsGcMarking()) {
7099 // root = ReadBarrier::Mark(root)
7100 // }
7101
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007102 // /* GcRoot<mirror::Object> */ root = *address
7103 __ movl(root_reg, address);
7104 if (fixup_label != nullptr) {
7105 __ Bind(fixup_label);
7106 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007107 static_assert(
7108 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
7109 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
7110 "have different sizes.");
7111 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
7112 "art::mirror::CompressedReference<mirror::Object> and int32_t "
7113 "have different sizes.");
7114
Vladimir Marko953437b2016-08-24 08:30:46 +00007115 // Slow path marking the GC root `root`.
7116 SlowPathCode* slow_path = new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathX86(
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007117 instruction, root, /* unpoison_ref_before_marking */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007118 codegen_->AddSlowPath(slow_path);
7119
Andreas Gampe542451c2016-07-26 09:02:02 -07007120 __ fs()->cmpl(Address::Absolute(Thread::IsGcMarkingOffset<kX86PointerSize>().Int32Value()),
Roland Levillain7c1559a2015-12-15 10:55:36 +00007121 Immediate(0));
7122 __ j(kNotEqual, slow_path->GetEntryLabel());
7123 __ Bind(slow_path->GetExitLabel());
7124 } else {
7125 // GC root loaded through a slow path for read barriers other
7126 // than Baker's.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007127 // /* GcRoot<mirror::Object>* */ root = address
7128 __ leal(root_reg, address);
7129 if (fixup_label != nullptr) {
7130 __ Bind(fixup_label);
7131 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007132 // /* mirror::Object* */ root = root->Read()
7133 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
7134 }
7135 } else {
7136 // Plain GC root load with no read barrier.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007137 // /* GcRoot<mirror::Object> */ root = *address
7138 __ movl(root_reg, address);
7139 if (fixup_label != nullptr) {
7140 __ Bind(fixup_label);
7141 }
Roland Levillaine3f43ac2016-01-19 15:07:47 +00007142 // Note that GC roots are not affected by heap poisoning, thus we
7143 // do not have to unpoison `root_reg` here.
Roland Levillain7c1559a2015-12-15 10:55:36 +00007144 }
7145}
7146
7147void CodeGeneratorX86::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
7148 Location ref,
7149 Register obj,
7150 uint32_t offset,
Roland Levillain7c1559a2015-12-15 10:55:36 +00007151 bool needs_null_check) {
7152 DCHECK(kEmitCompilerReadBarrier);
7153 DCHECK(kUseBakerReadBarrier);
7154
7155 // /* HeapReference<Object> */ ref = *(obj + offset)
7156 Address src(obj, offset);
Vladimir Marko953437b2016-08-24 08:30:46 +00007157 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007158}
7159
7160void CodeGeneratorX86::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
7161 Location ref,
7162 Register obj,
7163 uint32_t data_offset,
7164 Location index,
Roland Levillain7c1559a2015-12-15 10:55:36 +00007165 bool needs_null_check) {
7166 DCHECK(kEmitCompilerReadBarrier);
7167 DCHECK(kUseBakerReadBarrier);
7168
Roland Levillain3d312422016-06-23 13:53:42 +01007169 static_assert(
7170 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
7171 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillain7c1559a2015-12-15 10:55:36 +00007172 // /* HeapReference<Object> */ ref =
7173 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007174 Address src = CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset);
Vladimir Marko953437b2016-08-24 08:30:46 +00007175 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007176}
7177
7178void CodeGeneratorX86::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
7179 Location ref,
7180 Register obj,
7181 const Address& src,
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007182 bool needs_null_check,
7183 bool always_update_field,
7184 Register* temp) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007185 DCHECK(kEmitCompilerReadBarrier);
7186 DCHECK(kUseBakerReadBarrier);
7187
7188 // In slow path based read barriers, the read barrier call is
7189 // inserted after the original load. However, in fast path based
7190 // Baker's read barriers, we need to perform the load of
7191 // mirror::Object::monitor_ *before* the original reference load.
7192 // This load-load ordering is required by the read barrier.
7193 // The fast path/slow path (for Baker's algorithm) should look like:
7194 //
7195 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
7196 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
7197 // HeapReference<Object> ref = *src; // Original reference load.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007198 // bool is_gray = (rb_state == ReadBarrier::GrayState());
Roland Levillain7c1559a2015-12-15 10:55:36 +00007199 // if (is_gray) {
7200 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
7201 // }
7202 //
7203 // Note: the original implementation in ReadBarrier::Barrier is
7204 // slightly more complex as:
7205 // - it implements the load-load fence using a data dependency on
Roland Levillaine3f43ac2016-01-19 15:07:47 +00007206 // the high-bits of rb_state, which are expected to be all zeroes
7207 // (we use CodeGeneratorX86::GenerateMemoryBarrier instead here,
7208 // which is a no-op thanks to the x86 memory model);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007209 // - it performs additional checks that we do not do here for
7210 // performance reasons.
7211
7212 Register ref_reg = ref.AsRegister<Register>();
Roland Levillain7c1559a2015-12-15 10:55:36 +00007213 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
7214
Vladimir Marko953437b2016-08-24 08:30:46 +00007215 // Given the numeric representation, it's enough to check the low bit of the rb_state.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007216 static_assert(ReadBarrier::WhiteState() == 0, "Expecting white to have value 0");
7217 static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1");
Vladimir Marko953437b2016-08-24 08:30:46 +00007218 constexpr uint32_t gray_byte_position = LockWord::kReadBarrierStateShift / kBitsPerByte;
7219 constexpr uint32_t gray_bit_position = LockWord::kReadBarrierStateShift % kBitsPerByte;
7220 constexpr int32_t test_value = static_cast<int8_t>(1 << gray_bit_position);
7221
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007222 // if (rb_state == ReadBarrier::GrayState())
Vladimir Marko953437b2016-08-24 08:30:46 +00007223 // ref = ReadBarrier::Mark(ref);
7224 // At this point, just do the "if" and make sure that flags are preserved until the branch.
7225 __ testb(Address(obj, monitor_offset + gray_byte_position), Immediate(test_value));
Roland Levillain7c1559a2015-12-15 10:55:36 +00007226 if (needs_null_check) {
7227 MaybeRecordImplicitNullCheck(instruction);
7228 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007229
7230 // Load fence to prevent load-load reordering.
7231 // Note that this is a no-op, thanks to the x86 memory model.
7232 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
7233
7234 // The actual reference load.
7235 // /* HeapReference<Object> */ ref = *src
Vladimir Marko953437b2016-08-24 08:30:46 +00007236 __ movl(ref_reg, src); // Flags are unaffected.
7237
7238 // Note: Reference unpoisoning modifies the flags, so we need to delay it after the branch.
7239 // Slow path marking the object `ref` when it is gray.
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007240 SlowPathCode* slow_path;
7241 if (always_update_field) {
7242 DCHECK(temp != nullptr);
7243 slow_path = new (GetGraph()->GetArena()) ReadBarrierMarkAndUpdateFieldSlowPathX86(
7244 instruction, ref, obj, src, /* unpoison_ref_before_marking */ true, *temp);
7245 } else {
7246 slow_path = new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathX86(
7247 instruction, ref, /* unpoison_ref_before_marking */ true);
7248 }
Vladimir Marko953437b2016-08-24 08:30:46 +00007249 AddSlowPath(slow_path);
7250
7251 // We have done the "if" of the gray bit check above, now branch based on the flags.
7252 __ j(kNotZero, slow_path->GetEntryLabel());
Roland Levillain7c1559a2015-12-15 10:55:36 +00007253
7254 // Object* ref = ref_addr->AsMirrorPtr()
7255 __ MaybeUnpoisonHeapReference(ref_reg);
7256
Roland Levillain7c1559a2015-12-15 10:55:36 +00007257 __ Bind(slow_path->GetExitLabel());
7258}
7259
7260void CodeGeneratorX86::GenerateReadBarrierSlow(HInstruction* instruction,
7261 Location out,
7262 Location ref,
7263 Location obj,
7264 uint32_t offset,
7265 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007266 DCHECK(kEmitCompilerReadBarrier);
7267
Roland Levillain7c1559a2015-12-15 10:55:36 +00007268 // Insert a slow path based read barrier *after* the reference load.
7269 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00007270 // If heap poisoning is enabled, the unpoisoning of the loaded
7271 // reference will be carried out by the runtime within the slow
7272 // path.
7273 //
7274 // Note that `ref` currently does not get unpoisoned (when heap
7275 // poisoning is enabled), which is alright as the `ref` argument is
7276 // not used by the artReadBarrierSlow entry point.
7277 //
7278 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
7279 SlowPathCode* slow_path = new (GetGraph()->GetArena())
7280 ReadBarrierForHeapReferenceSlowPathX86(instruction, out, ref, obj, offset, index);
7281 AddSlowPath(slow_path);
7282
Roland Levillain0d5a2812015-11-13 10:07:31 +00007283 __ jmp(slow_path->GetEntryLabel());
7284 __ Bind(slow_path->GetExitLabel());
7285}
7286
Roland Levillain7c1559a2015-12-15 10:55:36 +00007287void CodeGeneratorX86::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
7288 Location out,
7289 Location ref,
7290 Location obj,
7291 uint32_t offset,
7292 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007293 if (kEmitCompilerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007294 // Baker's read barriers shall be handled by the fast path
7295 // (CodeGeneratorX86::GenerateReferenceLoadWithBakerReadBarrier).
7296 DCHECK(!kUseBakerReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00007297 // If heap poisoning is enabled, unpoisoning will be taken care of
7298 // by the runtime within the slow path.
Roland Levillain7c1559a2015-12-15 10:55:36 +00007299 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
Roland Levillain0d5a2812015-11-13 10:07:31 +00007300 } else if (kPoisonHeapReferences) {
7301 __ UnpoisonHeapReference(out.AsRegister<Register>());
7302 }
7303}
7304
Roland Levillain7c1559a2015-12-15 10:55:36 +00007305void CodeGeneratorX86::GenerateReadBarrierForRootSlow(HInstruction* instruction,
7306 Location out,
7307 Location root) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007308 DCHECK(kEmitCompilerReadBarrier);
7309
Roland Levillain7c1559a2015-12-15 10:55:36 +00007310 // Insert a slow path based read barrier *after* the GC root load.
7311 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00007312 // Note that GC roots are not affected by heap poisoning, so we do
7313 // not need to do anything special for this here.
7314 SlowPathCode* slow_path =
7315 new (GetGraph()->GetArena()) ReadBarrierForRootSlowPathX86(instruction, out, root);
7316 AddSlowPath(slow_path);
7317
Roland Levillain0d5a2812015-11-13 10:07:31 +00007318 __ jmp(slow_path->GetEntryLabel());
7319 __ Bind(slow_path->GetExitLabel());
7320}
7321
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007322void LocationsBuilderX86::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007323 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007324 LOG(FATAL) << "Unreachable";
7325}
7326
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007327void InstructionCodeGeneratorX86::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007328 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007329 LOG(FATAL) << "Unreachable";
7330}
7331
Mark Mendellfe57faa2015-09-18 09:26:15 -04007332// Simple implementation of packed switch - generate cascaded compare/jumps.
7333void LocationsBuilderX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7334 LocationSummary* locations =
7335 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
7336 locations->SetInAt(0, Location::RequiresRegister());
7337}
7338
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007339void InstructionCodeGeneratorX86::GenPackedSwitchWithCompares(Register value_reg,
7340 int32_t lower_bound,
7341 uint32_t num_entries,
7342 HBasicBlock* switch_block,
7343 HBasicBlock* default_block) {
7344 // Figure out the correct compare values and jump conditions.
7345 // Handle the first compare/branch as a special case because it might
7346 // jump to the default case.
7347 DCHECK_GT(num_entries, 2u);
7348 Condition first_condition;
7349 uint32_t index;
7350 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
7351 if (lower_bound != 0) {
7352 first_condition = kLess;
7353 __ cmpl(value_reg, Immediate(lower_bound));
7354 __ j(first_condition, codegen_->GetLabelOf(default_block));
7355 __ j(kEqual, codegen_->GetLabelOf(successors[0]));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007356
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007357 index = 1;
7358 } else {
7359 // Handle all the compare/jumps below.
7360 first_condition = kBelow;
7361 index = 0;
7362 }
7363
7364 // Handle the rest of the compare/jumps.
7365 for (; index + 1 < num_entries; index += 2) {
7366 int32_t compare_to_value = lower_bound + index + 1;
7367 __ cmpl(value_reg, Immediate(compare_to_value));
7368 // Jump to successors[index] if value < case_value[index].
7369 __ j(first_condition, codegen_->GetLabelOf(successors[index]));
7370 // Jump to successors[index + 1] if value == case_value[index + 1].
7371 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1]));
7372 }
7373
7374 if (index != num_entries) {
7375 // There are an odd number of entries. Handle the last one.
7376 DCHECK_EQ(index + 1, num_entries);
7377 __ cmpl(value_reg, Immediate(lower_bound + index));
7378 __ j(kEqual, codegen_->GetLabelOf(successors[index]));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007379 }
7380
7381 // And the default for any other value.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007382 if (!codegen_->GoesToNextBlock(switch_block, default_block)) {
7383 __ jmp(codegen_->GetLabelOf(default_block));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007384 }
7385}
7386
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007387void InstructionCodeGeneratorX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7388 int32_t lower_bound = switch_instr->GetStartValue();
7389 uint32_t num_entries = switch_instr->GetNumEntries();
7390 LocationSummary* locations = switch_instr->GetLocations();
7391 Register value_reg = locations->InAt(0).AsRegister<Register>();
7392
7393 GenPackedSwitchWithCompares(value_reg,
7394 lower_bound,
7395 num_entries,
7396 switch_instr->GetBlock(),
7397 switch_instr->GetDefaultBlock());
7398}
7399
Mark Mendell805b3b52015-09-18 14:10:29 -04007400void LocationsBuilderX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) {
7401 LocationSummary* locations =
7402 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
7403 locations->SetInAt(0, Location::RequiresRegister());
7404
7405 // Constant area pointer.
7406 locations->SetInAt(1, Location::RequiresRegister());
7407
7408 // And the temporary we need.
7409 locations->AddTemp(Location::RequiresRegister());
7410}
7411
7412void InstructionCodeGeneratorX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) {
7413 int32_t lower_bound = switch_instr->GetStartValue();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007414 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendell805b3b52015-09-18 14:10:29 -04007415 LocationSummary* locations = switch_instr->GetLocations();
7416 Register value_reg = locations->InAt(0).AsRegister<Register>();
7417 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
7418
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007419 if (num_entries <= kPackedSwitchJumpTableThreshold) {
7420 GenPackedSwitchWithCompares(value_reg,
7421 lower_bound,
7422 num_entries,
7423 switch_instr->GetBlock(),
7424 default_block);
7425 return;
7426 }
7427
Mark Mendell805b3b52015-09-18 14:10:29 -04007428 // Optimizing has a jump area.
7429 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
7430 Register constant_area = locations->InAt(1).AsRegister<Register>();
7431
7432 // Remove the bias, if needed.
7433 if (lower_bound != 0) {
7434 __ leal(temp_reg, Address(value_reg, -lower_bound));
7435 value_reg = temp_reg;
7436 }
7437
7438 // Is the value in range?
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007439 DCHECK_GE(num_entries, 1u);
Mark Mendell805b3b52015-09-18 14:10:29 -04007440 __ cmpl(value_reg, Immediate(num_entries - 1));
7441 __ j(kAbove, codegen_->GetLabelOf(default_block));
7442
7443 // We are in the range of the table.
7444 // Load (target-constant_area) from the jump table, indexing by the value.
7445 __ movl(temp_reg, codegen_->LiteralCaseTable(switch_instr, constant_area, value_reg));
7446
7447 // Compute the actual target address by adding in constant_area.
7448 __ addl(temp_reg, constant_area);
7449
7450 // And jump.
7451 __ jmp(temp_reg);
7452}
7453
Mark Mendell0616ae02015-04-17 12:49:27 -04007454void LocationsBuilderX86::VisitX86ComputeBaseMethodAddress(
7455 HX86ComputeBaseMethodAddress* insn) {
7456 LocationSummary* locations =
7457 new (GetGraph()->GetArena()) LocationSummary(insn, LocationSummary::kNoCall);
7458 locations->SetOut(Location::RequiresRegister());
7459}
7460
7461void InstructionCodeGeneratorX86::VisitX86ComputeBaseMethodAddress(
7462 HX86ComputeBaseMethodAddress* insn) {
7463 LocationSummary* locations = insn->GetLocations();
7464 Register reg = locations->Out().AsRegister<Register>();
7465
7466 // Generate call to next instruction.
7467 Label next_instruction;
7468 __ call(&next_instruction);
7469 __ Bind(&next_instruction);
7470
7471 // Remember this offset for later use with constant area.
7472 codegen_->SetMethodAddressOffset(GetAssembler()->CodeSize());
7473
7474 // Grab the return address off the stack.
7475 __ popl(reg);
7476}
7477
7478void LocationsBuilderX86::VisitX86LoadFromConstantTable(
7479 HX86LoadFromConstantTable* insn) {
7480 LocationSummary* locations =
7481 new (GetGraph()->GetArena()) LocationSummary(insn, LocationSummary::kNoCall);
7482
7483 locations->SetInAt(0, Location::RequiresRegister());
7484 locations->SetInAt(1, Location::ConstantLocation(insn->GetConstant()));
7485
7486 // If we don't need to be materialized, we only need the inputs to be set.
David Brazdilb3e773e2016-01-26 11:28:37 +00007487 if (insn->IsEmittedAtUseSite()) {
Mark Mendell0616ae02015-04-17 12:49:27 -04007488 return;
7489 }
7490
7491 switch (insn->GetType()) {
7492 case Primitive::kPrimFloat:
7493 case Primitive::kPrimDouble:
7494 locations->SetOut(Location::RequiresFpuRegister());
7495 break;
7496
7497 case Primitive::kPrimInt:
7498 locations->SetOut(Location::RequiresRegister());
7499 break;
7500
7501 default:
7502 LOG(FATAL) << "Unsupported x86 constant area type " << insn->GetType();
7503 }
7504}
7505
7506void InstructionCodeGeneratorX86::VisitX86LoadFromConstantTable(HX86LoadFromConstantTable* insn) {
David Brazdilb3e773e2016-01-26 11:28:37 +00007507 if (insn->IsEmittedAtUseSite()) {
Mark Mendell0616ae02015-04-17 12:49:27 -04007508 return;
7509 }
7510
7511 LocationSummary* locations = insn->GetLocations();
7512 Location out = locations->Out();
7513 Register const_area = locations->InAt(0).AsRegister<Register>();
7514 HConstant *value = insn->GetConstant();
7515
7516 switch (insn->GetType()) {
7517 case Primitive::kPrimFloat:
7518 __ movss(out.AsFpuRegister<XmmRegister>(),
7519 codegen_->LiteralFloatAddress(value->AsFloatConstant()->GetValue(), const_area));
7520 break;
7521
7522 case Primitive::kPrimDouble:
7523 __ movsd(out.AsFpuRegister<XmmRegister>(),
7524 codegen_->LiteralDoubleAddress(value->AsDoubleConstant()->GetValue(), const_area));
7525 break;
7526
7527 case Primitive::kPrimInt:
7528 __ movl(out.AsRegister<Register>(),
7529 codegen_->LiteralInt32Address(value->AsIntConstant()->GetValue(), const_area));
7530 break;
7531
7532 default:
7533 LOG(FATAL) << "Unsupported x86 constant area type " << insn->GetType();
7534 }
7535}
7536
Mark Mendell0616ae02015-04-17 12:49:27 -04007537/**
7538 * Class to handle late fixup of offsets into constant area.
7539 */
Vladimir Marko5233f932015-09-29 19:01:15 +01007540class RIPFixup : public AssemblerFixup, public ArenaObject<kArenaAllocCodeGenerator> {
Mark Mendell0616ae02015-04-17 12:49:27 -04007541 public:
Mark Mendell805b3b52015-09-18 14:10:29 -04007542 RIPFixup(CodeGeneratorX86& codegen, size_t offset)
7543 : codegen_(&codegen), offset_into_constant_area_(offset) {}
7544
7545 protected:
7546 void SetOffset(size_t offset) { offset_into_constant_area_ = offset; }
7547
7548 CodeGeneratorX86* codegen_;
Mark Mendell0616ae02015-04-17 12:49:27 -04007549
7550 private:
7551 void Process(const MemoryRegion& region, int pos) OVERRIDE {
7552 // Patch the correct offset for the instruction. The place to patch is the
7553 // last 4 bytes of the instruction.
7554 // The value to patch is the distance from the offset in the constant area
7555 // from the address computed by the HX86ComputeBaseMethodAddress instruction.
Mark Mendell805b3b52015-09-18 14:10:29 -04007556 int32_t constant_offset = codegen_->ConstantAreaStart() + offset_into_constant_area_;
Mathieu Chartier6beced42016-11-15 15:51:31 -08007557 int32_t relative_position = constant_offset - codegen_->GetMethodAddressOffset();
Mark Mendell0616ae02015-04-17 12:49:27 -04007558
7559 // Patch in the right value.
7560 region.StoreUnaligned<int32_t>(pos - 4, relative_position);
7561 }
7562
Mark Mendell0616ae02015-04-17 12:49:27 -04007563 // Location in constant area that the fixup refers to.
Mark Mendell805b3b52015-09-18 14:10:29 -04007564 int32_t offset_into_constant_area_;
Mark Mendell0616ae02015-04-17 12:49:27 -04007565};
7566
Mark Mendell805b3b52015-09-18 14:10:29 -04007567/**
7568 * Class to handle late fixup of offsets to a jump table that will be created in the
7569 * constant area.
7570 */
7571class JumpTableRIPFixup : public RIPFixup {
7572 public:
7573 JumpTableRIPFixup(CodeGeneratorX86& codegen, HX86PackedSwitch* switch_instr)
7574 : RIPFixup(codegen, static_cast<size_t>(-1)), switch_instr_(switch_instr) {}
7575
7576 void CreateJumpTable() {
7577 X86Assembler* assembler = codegen_->GetAssembler();
7578
7579 // Ensure that the reference to the jump table has the correct offset.
7580 const int32_t offset_in_constant_table = assembler->ConstantAreaSize();
7581 SetOffset(offset_in_constant_table);
7582
7583 // The label values in the jump table are computed relative to the
7584 // instruction addressing the constant area.
7585 const int32_t relative_offset = codegen_->GetMethodAddressOffset();
7586
7587 // Populate the jump table with the correct values for the jump table.
7588 int32_t num_entries = switch_instr_->GetNumEntries();
7589 HBasicBlock* block = switch_instr_->GetBlock();
7590 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors();
7591 // The value that we want is the target offset - the position of the table.
7592 for (int32_t i = 0; i < num_entries; i++) {
7593 HBasicBlock* b = successors[i];
7594 Label* l = codegen_->GetLabelOf(b);
7595 DCHECK(l->IsBound());
7596 int32_t offset_to_block = l->Position() - relative_offset;
7597 assembler->AppendInt32(offset_to_block);
7598 }
7599 }
7600
7601 private:
7602 const HX86PackedSwitch* switch_instr_;
7603};
7604
7605void CodeGeneratorX86::Finalize(CodeAllocator* allocator) {
7606 // Generate the constant area if needed.
7607 X86Assembler* assembler = GetAssembler();
7608 if (!assembler->IsConstantAreaEmpty() || !fixups_to_jump_tables_.empty()) {
7609 // Align to 4 byte boundary to reduce cache misses, as the data is 4 and 8
7610 // byte values.
7611 assembler->Align(4, 0);
7612 constant_area_start_ = assembler->CodeSize();
7613
7614 // Populate any jump tables.
7615 for (auto jump_table : fixups_to_jump_tables_) {
7616 jump_table->CreateJumpTable();
7617 }
7618
7619 // And now add the constant area to the generated code.
7620 assembler->AddConstantArea();
7621 }
7622
7623 // And finish up.
7624 CodeGenerator::Finalize(allocator);
7625}
7626
Mark Mendell0616ae02015-04-17 12:49:27 -04007627Address CodeGeneratorX86::LiteralDoubleAddress(double v, Register reg) {
7628 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddDouble(v));
7629 return Address(reg, kDummy32BitOffset, fixup);
7630}
7631
7632Address CodeGeneratorX86::LiteralFloatAddress(float v, Register reg) {
7633 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddFloat(v));
7634 return Address(reg, kDummy32BitOffset, fixup);
7635}
7636
7637Address CodeGeneratorX86::LiteralInt32Address(int32_t v, Register reg) {
7638 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt32(v));
7639 return Address(reg, kDummy32BitOffset, fixup);
7640}
7641
7642Address CodeGeneratorX86::LiteralInt64Address(int64_t v, Register reg) {
7643 AssemblerFixup* fixup = new (GetGraph()->GetArena()) RIPFixup(*this, __ AddInt64(v));
7644 return Address(reg, kDummy32BitOffset, fixup);
7645}
7646
Aart Bika19616e2016-02-01 18:57:58 -08007647void CodeGeneratorX86::Load32BitValue(Register dest, int32_t value) {
7648 if (value == 0) {
7649 __ xorl(dest, dest);
7650 } else {
7651 __ movl(dest, Immediate(value));
7652 }
7653}
7654
7655void CodeGeneratorX86::Compare32BitValue(Register dest, int32_t value) {
7656 if (value == 0) {
7657 __ testl(dest, dest);
7658 } else {
7659 __ cmpl(dest, Immediate(value));
7660 }
7661}
7662
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007663void CodeGeneratorX86::GenerateIntCompare(Location lhs, Location rhs) {
7664 Register lhs_reg = lhs.AsRegister<Register>();
jessicahandojo4877b792016-09-08 19:49:13 -07007665 GenerateIntCompare(lhs_reg, rhs);
7666}
7667
7668void CodeGeneratorX86::GenerateIntCompare(Register lhs, Location rhs) {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007669 if (rhs.IsConstant()) {
7670 int32_t value = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
jessicahandojo4877b792016-09-08 19:49:13 -07007671 Compare32BitValue(lhs, value);
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007672 } else if (rhs.IsStackSlot()) {
jessicahandojo4877b792016-09-08 19:49:13 -07007673 __ cmpl(lhs, Address(ESP, rhs.GetStackIndex()));
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007674 } else {
jessicahandojo4877b792016-09-08 19:49:13 -07007675 __ cmpl(lhs, rhs.AsRegister<Register>());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007676 }
7677}
7678
7679Address CodeGeneratorX86::ArrayAddress(Register obj,
7680 Location index,
7681 ScaleFactor scale,
7682 uint32_t data_offset) {
7683 return index.IsConstant() ?
7684 Address(obj, (index.GetConstant()->AsIntConstant()->GetValue() << scale) + data_offset) :
7685 Address(obj, index.AsRegister<Register>(), scale, data_offset);
7686}
7687
Mark Mendell805b3b52015-09-18 14:10:29 -04007688Address CodeGeneratorX86::LiteralCaseTable(HX86PackedSwitch* switch_instr,
7689 Register reg,
7690 Register value) {
7691 // Create a fixup to be used to create and address the jump table.
7692 JumpTableRIPFixup* table_fixup =
7693 new (GetGraph()->GetArena()) JumpTableRIPFixup(*this, switch_instr);
7694
7695 // We have to populate the jump tables.
7696 fixups_to_jump_tables_.push_back(table_fixup);
7697
7698 // We want a scaled address, as we are extracting the correct offset from the table.
7699 return Address(reg, value, TIMES_4, kDummy32BitOffset, table_fixup);
7700}
7701
Andreas Gampe85b62f22015-09-09 13:15:38 -07007702// TODO: target as memory.
7703void CodeGeneratorX86::MoveFromReturnRegister(Location target, Primitive::Type type) {
7704 if (!target.IsValid()) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007705 DCHECK_EQ(type, Primitive::kPrimVoid);
Andreas Gampe85b62f22015-09-09 13:15:38 -07007706 return;
7707 }
7708
7709 DCHECK_NE(type, Primitive::kPrimVoid);
7710
7711 Location return_loc = InvokeDexCallingConventionVisitorX86().GetReturnLocation(type);
7712 if (target.Equals(return_loc)) {
7713 return;
7714 }
7715
7716 // TODO: Consider pairs in the parallel move resolver, then this could be nicely merged
7717 // with the else branch.
7718 if (type == Primitive::kPrimLong) {
7719 HParallelMove parallel_move(GetGraph()->GetArena());
7720 parallel_move.AddMove(return_loc.ToLow(), target.ToLow(), Primitive::kPrimInt, nullptr);
7721 parallel_move.AddMove(return_loc.ToHigh(), target.ToHigh(), Primitive::kPrimInt, nullptr);
7722 GetMoveResolver()->EmitNativeCode(&parallel_move);
7723 } else {
7724 // Let the parallel move resolver take care of all of this.
7725 HParallelMove parallel_move(GetGraph()->GetArena());
7726 parallel_move.AddMove(return_loc, target, type, nullptr);
7727 GetMoveResolver()->EmitNativeCode(&parallel_move);
7728 }
7729}
7730
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007731void CodeGeneratorX86::PatchJitRootUse(uint8_t* code,
7732 const uint8_t* roots_data,
7733 const PatchInfo<Label>& info,
7734 uint64_t index_in_table) const {
7735 uint32_t code_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
7736 uintptr_t address =
7737 reinterpret_cast<uintptr_t>(roots_data) + index_in_table * sizeof(GcRoot<mirror::Object>);
7738 typedef __attribute__((__aligned__(1))) uint32_t unaligned_uint32_t;
7739 reinterpret_cast<unaligned_uint32_t*>(code + code_offset)[0] =
7740 dchecked_integral_cast<uint32_t>(address);
7741}
7742
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007743void CodeGeneratorX86::EmitJitRootPatches(uint8_t* code, const uint8_t* roots_data) {
7744 for (const PatchInfo<Label>& info : jit_string_patches_) {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007745 const auto& it = jit_string_roots_.find(
7746 StringReference(&info.dex_file, dex::StringIndex(info.index)));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007747 DCHECK(it != jit_string_roots_.end());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007748 PatchJitRootUse(code, roots_data, info, it->second);
7749 }
7750
7751 for (const PatchInfo<Label>& info : jit_class_patches_) {
7752 const auto& it = jit_class_roots_.find(
7753 TypeReference(&info.dex_file, dex::TypeIndex(info.index)));
7754 DCHECK(it != jit_class_roots_.end());
7755 PatchJitRootUse(code, roots_data, info, it->second);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007756 }
7757}
7758
Roland Levillain4d027112015-07-01 15:41:14 +01007759#undef __
7760
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00007761} // namespace x86
7762} // namespace art