blob: 537e97aacf7f78bfbbcd3ef8fc1c6fada2fa9384 [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"
Vladimir Marko94ec2db2017-09-06 17:21:03 +010020#include "class_table.h"
Guillaume Sanchez0f88e872015-03-30 17:55:45 +010021#include "code_generator_utils.h"
Vladimir Marko58155012015-08-19 12:49:41 +000022#include "compiled_method.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010023#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +000024#include "entrypoints/quick/quick_entrypoints_enum.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010025#include "gc/accounting/card_table.h"
Andreas Gampe09659c22017-09-18 18:23:32 -070026#include "heap_poisoning.h"
Mark Mendell09ed1a32015-03-25 08:30:06 -040027#include "intrinsics.h"
28#include "intrinsics_x86.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010029#include "linker/linker_patch.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070030#include "lock_word.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070031#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070032#include "mirror/class-inl.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010033#include "thread.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000034#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010035#include "utils/stack_checks.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000036#include "utils/x86/assembler_x86.h"
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010037#include "utils/x86/managed_register_x86.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000038
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000039namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010040
Roland Levillain0d5a2812015-11-13 10:07:31 +000041template<class MirrorType>
42class GcRoot;
43
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000044namespace x86 {
45
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010046static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010047static constexpr Register kMethodRegisterArgument = EAX;
Mark Mendell5f874182015-03-04 15:42:45 -050048static constexpr Register kCoreCalleeSaves[] = { EBP, ESI, EDI };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010049
Mark Mendell24f2dfa2015-01-14 19:51:45 -050050static constexpr int kC2ConditionMask = 0x400;
51
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000052static constexpr int kFakeReturnRegister = Register(8);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +000053
Roland Levillain7cbd27f2016-08-11 23:53:33 +010054// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
55#define __ down_cast<X86Assembler*>(codegen->GetAssembler())-> // NOLINT
Andreas Gampe542451c2016-07-26 09:02:02 -070056#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kX86PointerSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010057
Andreas Gampe85b62f22015-09-09 13:15:38 -070058class NullCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010059 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000060 explicit NullCheckSlowPathX86(HNullCheck* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010061
Alexandre Rames2ed20af2015-03-06 13:55:35 +000062 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +010063 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010064 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000065 if (instruction_->CanThrowIntoCatchBlock()) {
66 // Live registers will be restored in the catch block if caught.
67 SaveLiveRegisters(codegen, instruction_->GetLocations());
68 }
Serban Constantinescuba45db02016-07-12 22:53:02 +010069 x86_codegen->InvokeRuntime(kQuickThrowNullPointer,
Alexandre Rames8158f282015-08-07 10:26:17 +010070 instruction_,
71 instruction_->GetDexPc(),
72 this);
Roland Levillain888d0672015-11-23 18:53:50 +000073 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +010074 }
75
Alexandre Rames8158f282015-08-07 10:26:17 +010076 bool IsFatal() const OVERRIDE { return true; }
77
Alexandre Rames9931f312015-06-19 14:47:01 +010078 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathX86"; }
79
Nicolas Geoffraye5038322014-07-04 09:41:32 +010080 private:
Nicolas Geoffraye5038322014-07-04 09:41:32 +010081 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86);
82};
83
Andreas Gampe85b62f22015-09-09 13:15:38 -070084class DivZeroCheckSlowPathX86 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +000085 public:
David Srbecky9cd6d372016-02-09 15:24:47 +000086 explicit DivZeroCheckSlowPathX86(HDivZeroCheck* instruction) : SlowPathCode(instruction) {}
Calin Juravled0d48522014-11-04 16:40:20 +000087
Alexandre Rames2ed20af2015-03-06 13:55:35 +000088 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +010089 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Calin Juravled0d48522014-11-04 16:40:20 +000090 __ Bind(GetEntryLabel());
Serban Constantinescuba45db02016-07-12 22:53:02 +010091 x86_codegen->InvokeRuntime(kQuickThrowDivZero, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +000092 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Calin Juravled0d48522014-11-04 16:40:20 +000093 }
94
Alexandre Rames8158f282015-08-07 10:26:17 +010095 bool IsFatal() const OVERRIDE { return true; }
96
Alexandre Rames9931f312015-06-19 14:47:01 +010097 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathX86"; }
98
Calin Juravled0d48522014-11-04 16:40:20 +000099 private:
Calin Juravled0d48522014-11-04 16:40:20 +0000100 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86);
101};
102
Andreas Gampe85b62f22015-09-09 13:15:38 -0700103class DivRemMinusOneSlowPathX86 : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +0000104 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000105 DivRemMinusOneSlowPathX86(HInstruction* instruction, Register reg, bool is_div)
106 : SlowPathCode(instruction), reg_(reg), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +0000107
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000108 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +0000109 __ Bind(GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +0000110 if (is_div_) {
111 __ negl(reg_);
112 } else {
113 __ movl(reg_, Immediate(0));
114 }
Calin Juravled0d48522014-11-04 16:40:20 +0000115 __ jmp(GetExitLabel());
116 }
117
Alexandre Rames9931f312015-06-19 14:47:01 +0100118 const char* GetDescription() const OVERRIDE { return "DivRemMinusOneSlowPathX86"; }
119
Calin Juravled0d48522014-11-04 16:40:20 +0000120 private:
121 Register reg_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000122 bool is_div_;
123 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86);
Calin Juravled0d48522014-11-04 16:40:20 +0000124};
125
Andreas Gampe85b62f22015-09-09 13:15:38 -0700126class BoundsCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100127 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000128 explicit BoundsCheckSlowPathX86(HBoundsCheck* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100129
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000130 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100131 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100132 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100133 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000134 // We're moving two locations to locations that could overlap, so we need a parallel
135 // move resolver.
David Brazdil77a48ae2015-09-15 12:34:04 +0000136 if (instruction_->CanThrowIntoCatchBlock()) {
137 // Live registers will be restored in the catch block if caught.
138 SaveLiveRegisters(codegen, instruction_->GetLocations());
139 }
Mark Mendellee8d9712016-07-12 11:13:15 -0400140
141 // Are we using an array length from memory?
142 HInstruction* array_length = instruction_->InputAt(1);
143 Location length_loc = locations->InAt(1);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100144 InvokeRuntimeCallingConvention calling_convention;
Mark Mendellee8d9712016-07-12 11:13:15 -0400145 if (array_length->IsArrayLength() && array_length->IsEmittedAtUseSite()) {
146 // Load the array length into our temporary.
Nicolas Geoffray0aff3a82017-10-13 13:12:36 +0100147 HArrayLength* length = array_length->AsArrayLength();
148 uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(length);
Mark Mendellee8d9712016-07-12 11:13:15 -0400149 Location array_loc = array_length->GetLocations()->InAt(0);
150 Address array_len(array_loc.AsRegister<Register>(), len_offset);
151 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1));
152 // Check for conflicts with index.
153 if (length_loc.Equals(locations->InAt(0))) {
154 // We know we aren't using parameter 2.
155 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2));
156 }
157 __ movl(length_loc.AsRegister<Register>(), array_len);
Nicolas Geoffray0aff3a82017-10-13 13:12:36 +0100158 if (mirror::kUseStringCompression && length->IsStringLength()) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +0100159 __ shrl(length_loc.AsRegister<Register>(), Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -0700160 }
Mark Mendellee8d9712016-07-12 11:13:15 -0400161 }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000162 x86_codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100163 locations->InAt(0),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000164 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100165 DataType::Type::kInt32,
Mark Mendellee8d9712016-07-12 11:13:15 -0400166 length_loc,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100167 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100168 DataType::Type::kInt32);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100169 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt()
170 ? kQuickThrowStringBounds
171 : kQuickThrowArrayBounds;
172 x86_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this);
Vladimir Marko87f3fcb2016-04-28 15:52:11 +0100173 CheckEntrypointTypes<kQuickThrowStringBounds, void, int32_t, int32_t>();
Roland Levillain888d0672015-11-23 18:53:50 +0000174 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100175 }
176
Alexandre Rames8158f282015-08-07 10:26:17 +0100177 bool IsFatal() const OVERRIDE { return true; }
178
Alexandre Rames9931f312015-06-19 14:47:01 +0100179 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathX86"; }
180
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100181 private:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100182 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86);
183};
184
Andreas Gampe85b62f22015-09-09 13:15:38 -0700185class SuspendCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000186 public:
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000187 SuspendCheckSlowPathX86(HSuspendCheck* instruction, HBasicBlock* successor)
David Srbecky9cd6d372016-02-09 15:24:47 +0000188 : SlowPathCode(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000189
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000190 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Aart Bikb13c65b2017-03-21 20:14:07 -0700191 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100192 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000193 __ Bind(GetEntryLabel());
Aart Bik24b905f2017-04-06 09:59:06 -0700194 SaveLiveRegisters(codegen, locations); // Only saves full width XMM for SIMD.
Serban Constantinescuba45db02016-07-12 22:53:02 +0100195 x86_codegen->InvokeRuntime(kQuickTestSuspend, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000196 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Aart Bik24b905f2017-04-06 09:59:06 -0700197 RestoreLiveRegisters(codegen, locations); // Only restores full width XMM for SIMD.
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100198 if (successor_ == nullptr) {
199 __ jmp(GetReturnLabel());
200 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100201 __ jmp(x86_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100202 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000203 }
204
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100205 Label* GetReturnLabel() {
206 DCHECK(successor_ == nullptr);
207 return &return_label_;
208 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000209
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100210 HBasicBlock* GetSuccessor() const {
211 return successor_;
212 }
213
Alexandre Rames9931f312015-06-19 14:47:01 +0100214 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathX86"; }
215
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000216 private:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100217 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000218 Label return_label_;
219
220 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86);
221};
222
Vladimir Markoaad75c62016-10-03 08:46:48 +0000223class LoadStringSlowPathX86 : public SlowPathCode {
224 public:
225 explicit LoadStringSlowPathX86(HLoadString* instruction): SlowPathCode(instruction) {}
226
227 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
228 LocationSummary* locations = instruction_->GetLocations();
229 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
230
231 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
232 __ Bind(GetEntryLabel());
233 SaveLiveRegisters(codegen, locations);
234
235 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000236 const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex();
237 __ movl(calling_convention.GetRegisterAt(0), Immediate(string_index.index_));
Vladimir Markoaad75c62016-10-03 08:46:48 +0000238 x86_codegen->InvokeRuntime(kQuickResolveString, instruction_, instruction_->GetDexPc(), this);
239 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
240 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
241 RestoreLiveRegisters(codegen, locations);
242
Vladimir Markoaad75c62016-10-03 08:46:48 +0000243 __ jmp(GetExitLabel());
244 }
245
246 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathX86"; }
247
248 private:
249 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86);
250};
251
Andreas Gampe85b62f22015-09-09 13:15:38 -0700252class LoadClassSlowPathX86 : public SlowPathCode {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000253 public:
254 LoadClassSlowPathX86(HLoadClass* cls,
255 HInstruction* at,
256 uint32_t dex_pc,
257 bool do_clinit)
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000258 : SlowPathCode(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000259 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
260 }
261
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000262 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000263 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000264 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
265 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000266 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000267
268 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000269 dex::TypeIndex type_index = cls_->GetTypeIndex();
270 __ movl(calling_convention.GetRegisterAt(0), Immediate(type_index.index_));
Serban Constantinescuba45db02016-07-12 22:53:02 +0100271 x86_codegen->InvokeRuntime(do_clinit_ ? kQuickInitializeStaticStorage
272 : kQuickInitializeType,
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000273 instruction_,
274 dex_pc_,
275 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000276 if (do_clinit_) {
277 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
278 } else {
279 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
280 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000281
282 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000283 Location out = locations->Out();
284 if (out.IsValid()) {
285 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
286 x86_codegen->Move32(out, Location::RegisterLocation(EAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000287 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000288 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000289 __ jmp(GetExitLabel());
290 }
291
Alexandre Rames9931f312015-06-19 14:47:01 +0100292 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathX86"; }
293
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000294 private:
295 // The class this slow path will load.
296 HLoadClass* const cls_;
297
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000298 // The dex PC of `at_`.
299 const uint32_t dex_pc_;
300
301 // Whether to initialize the class.
302 const bool do_clinit_;
303
304 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86);
305};
306
Andreas Gampe85b62f22015-09-09 13:15:38 -0700307class TypeCheckSlowPathX86 : public SlowPathCode {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000308 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000309 TypeCheckSlowPathX86(HInstruction* instruction, bool is_fatal)
David Srbecky9cd6d372016-02-09 15:24:47 +0000310 : SlowPathCode(instruction), is_fatal_(is_fatal) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000311
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000312 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000313 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000314 DCHECK(instruction_->IsCheckCast()
315 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000316
317 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
318 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000319
Vladimir Markoe619f6c2017-12-12 16:00:01 +0000320 if (kPoisonHeapReferences &&
321 instruction_->IsCheckCast() &&
322 instruction_->AsCheckCast()->GetTypeCheckKind() == TypeCheckKind::kInterfaceCheck) {
323 // First, unpoison the `cls` reference that was poisoned for direct memory comparison.
324 __ UnpoisonHeapReference(locations->InAt(1).AsRegister<Register>());
325 }
326
Vladimir Marko87584542017-12-12 17:47:52 +0000327 if (!is_fatal_ || instruction_->CanThrowIntoCatchBlock()) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000328 SaveLiveRegisters(codegen, locations);
329 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000330
331 // We're moving two locations to locations that could overlap, so we need a parallel
332 // move resolver.
333 InvokeRuntimeCallingConvention calling_convention;
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800334 x86_codegen->EmitParallelMoves(locations->InAt(0),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800335 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100336 DataType::Type::kReference,
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800337 locations->InAt(1),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800338 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100339 DataType::Type::kReference);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000340 if (instruction_->IsInstanceOf()) {
Serban Constantinescuba45db02016-07-12 22:53:02 +0100341 x86_codegen->InvokeRuntime(kQuickInstanceofNonTrivial,
Alexandre Rames8158f282015-08-07 10:26:17 +0100342 instruction_,
343 instruction_->GetDexPc(),
344 this);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800345 CheckEntrypointTypes<kQuickInstanceofNonTrivial, size_t, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000346 } else {
347 DCHECK(instruction_->IsCheckCast());
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800348 x86_codegen->InvokeRuntime(kQuickCheckInstanceOf,
349 instruction_,
350 instruction_->GetDexPc(),
351 this);
352 CheckEntrypointTypes<kQuickCheckInstanceOf, void, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000353 }
354
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000355 if (!is_fatal_) {
356 if (instruction_->IsInstanceOf()) {
357 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
358 }
359 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray75374372015-09-17 17:12:19 +0000360
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000361 __ jmp(GetExitLabel());
362 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000363 }
364
Alexandre Rames9931f312015-06-19 14:47:01 +0100365 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathX86"; }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000366 bool IsFatal() const OVERRIDE { return is_fatal_; }
Alexandre Rames9931f312015-06-19 14:47:01 +0100367
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000368 private:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000369 const bool is_fatal_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000370
371 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86);
372};
373
Andreas Gampe85b62f22015-09-09 13:15:38 -0700374class DeoptimizationSlowPathX86 : public SlowPathCode {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700375 public:
Aart Bik42249c32016-01-07 15:33:50 -0800376 explicit DeoptimizationSlowPathX86(HDeoptimize* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000377 : SlowPathCode(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700378
379 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames8158f282015-08-07 10:26:17 +0100380 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700381 __ Bind(GetEntryLabel());
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100382 LocationSummary* locations = instruction_->GetLocations();
383 SaveLiveRegisters(codegen, locations);
384 InvokeRuntimeCallingConvention calling_convention;
385 x86_codegen->Load32BitValue(
386 calling_convention.GetRegisterAt(0),
387 static_cast<uint32_t>(instruction_->AsDeoptimize()->GetDeoptimizationKind()));
Serban Constantinescuba45db02016-07-12 22:53:02 +0100388 x86_codegen->InvokeRuntime(kQuickDeoptimize, instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100389 CheckEntrypointTypes<kQuickDeoptimize, void, DeoptimizationKind>();
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700390 }
391
Alexandre Rames9931f312015-06-19 14:47:01 +0100392 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathX86"; }
393
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700394 private:
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700395 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86);
396};
397
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100398class ArraySetSlowPathX86 : public SlowPathCode {
399 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000400 explicit ArraySetSlowPathX86(HInstruction* instruction) : SlowPathCode(instruction) {}
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100401
402 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
403 LocationSummary* locations = instruction_->GetLocations();
404 __ Bind(GetEntryLabel());
405 SaveLiveRegisters(codegen, locations);
406
407 InvokeRuntimeCallingConvention calling_convention;
Vladimir Markoca6fff82017-10-03 14:49:14 +0100408 HParallelMove parallel_move(codegen->GetGraph()->GetAllocator());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100409 parallel_move.AddMove(
410 locations->InAt(0),
411 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100412 DataType::Type::kReference,
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100413 nullptr);
414 parallel_move.AddMove(
415 locations->InAt(1),
416 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100417 DataType::Type::kInt32,
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100418 nullptr);
419 parallel_move.AddMove(
420 locations->InAt(2),
421 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100422 DataType::Type::kReference,
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100423 nullptr);
424 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
425
426 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100427 x86_codegen->InvokeRuntime(kQuickAputObject, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000428 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100429 RestoreLiveRegisters(codegen, locations);
430 __ jmp(GetExitLabel());
431 }
432
433 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathX86"; }
434
435 private:
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100436 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathX86);
437};
438
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100439// Slow path marking an object reference `ref` during a read
440// barrier. The field `obj.field` in the object `obj` holding this
441// reference does not get updated by this slow path after marking (see
442// ReadBarrierMarkAndUpdateFieldSlowPathX86 below for that).
443//
444// This means that after the execution of this slow path, `ref` will
445// always be up-to-date, but `obj.field` may not; i.e., after the
446// flip, `ref` will be a to-space reference, but `obj.field` will
447// probably still be a from-space reference (unless it gets updated by
448// another thread, or if another thread installed another object
449// reference (different from `ref`) in `obj.field`).
Roland Levillain7c1559a2015-12-15 10:55:36 +0000450class ReadBarrierMarkSlowPathX86 : public SlowPathCode {
451 public:
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100452 ReadBarrierMarkSlowPathX86(HInstruction* instruction,
453 Location ref,
454 bool unpoison_ref_before_marking)
455 : SlowPathCode(instruction),
456 ref_(ref),
457 unpoison_ref_before_marking_(unpoison_ref_before_marking) {
Roland Levillain7c1559a2015-12-15 10:55:36 +0000458 DCHECK(kEmitCompilerReadBarrier);
459 }
460
461 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathX86"; }
462
463 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
464 LocationSummary* locations = instruction_->GetLocations();
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100465 Register ref_reg = ref_.AsRegister<Register>();
Roland Levillain7c1559a2015-12-15 10:55:36 +0000466 DCHECK(locations->CanCall());
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100467 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
Roland Levillain7c1559a2015-12-15 10:55:36 +0000468 DCHECK(instruction_->IsInstanceFieldGet() ||
469 instruction_->IsStaticFieldGet() ||
470 instruction_->IsArrayGet() ||
Roland Levillain16d9f942016-08-25 17:27:56 +0100471 instruction_->IsArraySet() ||
Roland Levillain7c1559a2015-12-15 10:55:36 +0000472 instruction_->IsLoadClass() ||
473 instruction_->IsLoadString() ||
474 instruction_->IsInstanceOf() ||
Roland Levillain3d312422016-06-23 13:53:42 +0100475 instruction_->IsCheckCast() ||
Roland Levillain0b671c02016-08-19 12:02:34 +0100476 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()) ||
477 (instruction_->IsInvokeStaticOrDirect() && instruction_->GetLocations()->Intrinsified()))
Roland Levillain7c1559a2015-12-15 10:55:36 +0000478 << "Unexpected instruction in read barrier marking slow path: "
479 << instruction_->DebugName();
480
481 __ Bind(GetEntryLabel());
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100482 if (unpoison_ref_before_marking_) {
Vladimir Marko953437b2016-08-24 08:30:46 +0000483 // Object* ref = ref_addr->AsMirrorPtr()
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100484 __ MaybeUnpoisonHeapReference(ref_reg);
Vladimir Marko953437b2016-08-24 08:30:46 +0000485 }
Roland Levillain4359e612016-07-20 11:32:19 +0100486 // No need to save live registers; it's taken care of by the
487 // entrypoint. Also, there is no need to update the stack mask,
488 // as this runtime call will not trigger a garbage collection.
Roland Levillain7c1559a2015-12-15 10:55:36 +0000489 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100490 DCHECK_NE(ref_reg, ESP);
491 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg;
Roland Levillain02b75802016-07-13 11:54:35 +0100492 // "Compact" slow path, saving two moves.
493 //
494 // Instead of using the standard runtime calling convention (input
495 // and output in EAX):
496 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100497 // EAX <- ref
Roland Levillain02b75802016-07-13 11:54:35 +0100498 // EAX <- ReadBarrierMark(EAX)
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100499 // ref <- EAX
Roland Levillain02b75802016-07-13 11:54:35 +0100500 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100501 // we just use rX (the register containing `ref`) as input and output
Roland Levillain02b75802016-07-13 11:54:35 +0100502 // of a dedicated entrypoint:
503 //
504 // rX <- ReadBarrierMarkRegX(rX)
505 //
Roland Levillain97c46462017-05-11 14:04:03 +0100506 int32_t entry_point_offset = Thread::ReadBarrierMarkEntryPointsOffset<kX86PointerSize>(ref_reg);
Roland Levillaindec8f632016-07-22 17:10:06 +0100507 // This runtime call does not require a stack map.
508 x86_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
Roland Levillain7c1559a2015-12-15 10:55:36 +0000509 __ jmp(GetExitLabel());
510 }
511
512 private:
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100513 // The location (register) of the marked object reference.
514 const Location ref_;
515 // Should the reference in `ref_` be unpoisoned prior to marking it?
516 const bool unpoison_ref_before_marking_;
Roland Levillain7c1559a2015-12-15 10:55:36 +0000517
518 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathX86);
519};
520
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100521// Slow path marking an object reference `ref` during a read barrier,
522// and if needed, atomically updating the field `obj.field` in the
523// object `obj` holding this reference after marking (contrary to
524// ReadBarrierMarkSlowPathX86 above, which never tries to update
525// `obj.field`).
526//
527// This means that after the execution of this slow path, both `ref`
528// and `obj.field` will be up-to-date; i.e., after the flip, both will
529// hold the same to-space reference (unless another thread installed
530// another object reference (different from `ref`) in `obj.field`).
531class ReadBarrierMarkAndUpdateFieldSlowPathX86 : public SlowPathCode {
532 public:
533 ReadBarrierMarkAndUpdateFieldSlowPathX86(HInstruction* instruction,
534 Location ref,
535 Register obj,
536 const Address& field_addr,
537 bool unpoison_ref_before_marking,
538 Register temp)
539 : SlowPathCode(instruction),
540 ref_(ref),
541 obj_(obj),
542 field_addr_(field_addr),
543 unpoison_ref_before_marking_(unpoison_ref_before_marking),
544 temp_(temp) {
545 DCHECK(kEmitCompilerReadBarrier);
546 }
547
548 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkAndUpdateFieldSlowPathX86"; }
549
550 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
551 LocationSummary* locations = instruction_->GetLocations();
552 Register ref_reg = ref_.AsRegister<Register>();
553 DCHECK(locations->CanCall());
554 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
555 // This slow path is only used by the UnsafeCASObject intrinsic.
556 DCHECK((instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
557 << "Unexpected instruction in read barrier marking and field updating slow path: "
558 << instruction_->DebugName();
559 DCHECK(instruction_->GetLocations()->Intrinsified());
560 DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kUnsafeCASObject);
561
562 __ Bind(GetEntryLabel());
563 if (unpoison_ref_before_marking_) {
564 // Object* ref = ref_addr->AsMirrorPtr()
565 __ MaybeUnpoisonHeapReference(ref_reg);
566 }
567
568 // Save the old (unpoisoned) reference.
569 __ movl(temp_, ref_reg);
570
571 // No need to save live registers; it's taken care of by the
572 // entrypoint. Also, there is no need to update the stack mask,
573 // as this runtime call will not trigger a garbage collection.
574 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
575 DCHECK_NE(ref_reg, ESP);
576 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCpuRegisters) << ref_reg;
577 // "Compact" slow path, saving two moves.
578 //
579 // Instead of using the standard runtime calling convention (input
580 // and output in EAX):
581 //
582 // EAX <- ref
583 // EAX <- ReadBarrierMark(EAX)
584 // ref <- EAX
585 //
586 // we just use rX (the register containing `ref`) as input and output
587 // of a dedicated entrypoint:
588 //
589 // rX <- ReadBarrierMarkRegX(rX)
590 //
Roland Levillain97c46462017-05-11 14:04:03 +0100591 int32_t entry_point_offset = Thread::ReadBarrierMarkEntryPointsOffset<kX86PointerSize>(ref_reg);
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100592 // This runtime call does not require a stack map.
593 x86_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
594
595 // If the new reference is different from the old reference,
596 // update the field in the holder (`*field_addr`).
597 //
598 // Note that this field could also hold a different object, if
599 // another thread had concurrently changed it. In that case, the
600 // LOCK CMPXCHGL instruction in the compare-and-set (CAS)
601 // operation below would abort the CAS, leaving the field as-is.
602 NearLabel done;
603 __ cmpl(temp_, ref_reg);
604 __ j(kEqual, &done);
605
606 // Update the the holder's field atomically. This may fail if
607 // mutator updates before us, but it's OK. This is achieved
608 // using a strong compare-and-set (CAS) operation with relaxed
609 // memory synchronization ordering, where the expected value is
610 // the old reference and the desired value is the new reference.
611 // This operation is implemented with a 32-bit LOCK CMPXLCHG
612 // instruction, which requires the expected value (the old
613 // reference) to be in EAX. Save EAX beforehand, and move the
614 // expected value (stored in `temp_`) into EAX.
615 __ pushl(EAX);
616 __ movl(EAX, temp_);
617
618 // Convenience aliases.
619 Register base = obj_;
620 Register expected = EAX;
621 Register value = ref_reg;
622
623 bool base_equals_value = (base == value);
624 if (kPoisonHeapReferences) {
625 if (base_equals_value) {
626 // If `base` and `value` are the same register location, move
627 // `value` to a temporary register. This way, poisoning
628 // `value` won't invalidate `base`.
629 value = temp_;
630 __ movl(value, base);
631 }
632
633 // Check that the register allocator did not assign the location
634 // of `expected` (EAX) to `value` nor to `base`, so that heap
635 // poisoning (when enabled) works as intended below.
636 // - If `value` were equal to `expected`, both references would
637 // be poisoned twice, meaning they would not be poisoned at
638 // all, as heap poisoning uses address negation.
639 // - If `base` were equal to `expected`, poisoning `expected`
640 // would invalidate `base`.
641 DCHECK_NE(value, expected);
642 DCHECK_NE(base, expected);
643
644 __ PoisonHeapReference(expected);
645 __ PoisonHeapReference(value);
646 }
647
648 __ LockCmpxchgl(field_addr_, value);
649
650 // If heap poisoning is enabled, we need to unpoison the values
651 // that were poisoned earlier.
652 if (kPoisonHeapReferences) {
653 if (base_equals_value) {
654 // `value` has been moved to a temporary register, no need
655 // to unpoison it.
656 } else {
657 __ UnpoisonHeapReference(value);
658 }
659 // No need to unpoison `expected` (EAX), as it is be overwritten below.
660 }
661
662 // Restore EAX.
663 __ popl(EAX);
664
665 __ Bind(&done);
666 __ jmp(GetExitLabel());
667 }
668
669 private:
670 // The location (register) of the marked object reference.
671 const Location ref_;
672 // The register containing the object holding the marked object reference field.
673 const Register obj_;
674 // The address of the marked reference field. The base of this address must be `obj_`.
675 const Address field_addr_;
676
677 // Should the reference in `ref_` be unpoisoned prior to marking it?
678 const bool unpoison_ref_before_marking_;
679
680 const Register temp_;
681
682 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkAndUpdateFieldSlowPathX86);
683};
684
Roland Levillain0d5a2812015-11-13 10:07:31 +0000685// Slow path generating a read barrier for a heap reference.
686class ReadBarrierForHeapReferenceSlowPathX86 : public SlowPathCode {
687 public:
688 ReadBarrierForHeapReferenceSlowPathX86(HInstruction* instruction,
689 Location out,
690 Location ref,
691 Location obj,
692 uint32_t offset,
693 Location index)
David Srbecky9cd6d372016-02-09 15:24:47 +0000694 : SlowPathCode(instruction),
Roland Levillain0d5a2812015-11-13 10:07:31 +0000695 out_(out),
696 ref_(ref),
697 obj_(obj),
698 offset_(offset),
699 index_(index) {
700 DCHECK(kEmitCompilerReadBarrier);
701 // If `obj` is equal to `out` or `ref`, it means the initial object
702 // has been overwritten by (or after) the heap object reference load
703 // to be instrumented, e.g.:
704 //
705 // __ movl(out, Address(out, offset));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000706 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000707 //
708 // In that case, we have lost the information about the original
709 // object, and the emitted read barrier cannot work properly.
710 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
711 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
712 }
713
714 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
715 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
716 LocationSummary* locations = instruction_->GetLocations();
717 Register reg_out = out_.AsRegister<Register>();
718 DCHECK(locations->CanCall());
719 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillain3d312422016-06-23 13:53:42 +0100720 DCHECK(instruction_->IsInstanceFieldGet() ||
721 instruction_->IsStaticFieldGet() ||
722 instruction_->IsArrayGet() ||
723 instruction_->IsInstanceOf() ||
724 instruction_->IsCheckCast() ||
Andreas Gamped9911ee2017-03-27 13:27:24 -0700725 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
Roland Levillain7c1559a2015-12-15 10:55:36 +0000726 << "Unexpected instruction in read barrier for heap reference slow path: "
727 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000728
729 __ Bind(GetEntryLabel());
730 SaveLiveRegisters(codegen, locations);
731
732 // We may have to change the index's value, but as `index_` is a
733 // constant member (like other "inputs" of this slow path),
734 // introduce a copy of it, `index`.
735 Location index = index_;
736 if (index_.IsValid()) {
Roland Levillain3d312422016-06-23 13:53:42 +0100737 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
Roland Levillain0d5a2812015-11-13 10:07:31 +0000738 if (instruction_->IsArrayGet()) {
739 // Compute the actual memory offset and store it in `index`.
740 Register index_reg = index_.AsRegister<Register>();
741 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg));
742 if (codegen->IsCoreCalleeSaveRegister(index_reg)) {
743 // We are about to change the value of `index_reg` (see the
744 // calls to art::x86::X86Assembler::shll and
745 // art::x86::X86Assembler::AddImmediate below), but it has
746 // not been saved by the previous call to
747 // art::SlowPathCode::SaveLiveRegisters, as it is a
748 // callee-save register --
749 // art::SlowPathCode::SaveLiveRegisters does not consider
750 // callee-save registers, as it has been designed with the
751 // assumption that callee-save registers are supposed to be
752 // handled by the called function. So, as a callee-save
753 // register, `index_reg` _would_ eventually be saved onto
754 // the stack, but it would be too late: we would have
755 // changed its value earlier. Therefore, we manually save
756 // it here into another freely available register,
757 // `free_reg`, chosen of course among the caller-save
758 // registers (as a callee-save `free_reg` register would
759 // exhibit the same problem).
760 //
761 // Note we could have requested a temporary register from
762 // the register allocator instead; but we prefer not to, as
763 // this is a slow path, and we know we can find a
764 // caller-save register that is available.
765 Register free_reg = FindAvailableCallerSaveRegister(codegen);
766 __ movl(free_reg, index_reg);
767 index_reg = free_reg;
768 index = Location::RegisterLocation(index_reg);
769 } else {
770 // The initial register stored in `index_` has already been
771 // saved in the call to art::SlowPathCode::SaveLiveRegisters
772 // (as it is not a callee-save register), so we can freely
773 // use it.
774 }
775 // Shifting the index value contained in `index_reg` by the scale
776 // factor (2) cannot overflow in practice, as the runtime is
777 // unable to allocate object arrays with a size larger than
778 // 2^26 - 1 (that is, 2^28 - 4 bytes).
779 __ shll(index_reg, Immediate(TIMES_4));
780 static_assert(
781 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
782 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
783 __ AddImmediate(index_reg, Immediate(offset_));
784 } else {
Roland Levillain3d312422016-06-23 13:53:42 +0100785 // In the case of the UnsafeGetObject/UnsafeGetObjectVolatile
786 // intrinsics, `index_` is not shifted by a scale factor of 2
787 // (as in the case of ArrayGet), as it is actually an offset
788 // to an object field within an object.
789 DCHECK(instruction_->IsInvoke()) << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000790 DCHECK(instruction_->GetLocations()->Intrinsified());
791 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
792 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
793 << instruction_->AsInvoke()->GetIntrinsic();
794 DCHECK_EQ(offset_, 0U);
795 DCHECK(index_.IsRegisterPair());
796 // UnsafeGet's offset location is a register pair, the low
797 // part contains the correct offset.
798 index = index_.ToLow();
799 }
800 }
801
802 // We're moving two or three locations to locations that could
803 // overlap, so we need a parallel move resolver.
804 InvokeRuntimeCallingConvention calling_convention;
Vladimir Markoca6fff82017-10-03 14:49:14 +0100805 HParallelMove parallel_move(codegen->GetGraph()->GetAllocator());
Roland Levillain0d5a2812015-11-13 10:07:31 +0000806 parallel_move.AddMove(ref_,
807 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100808 DataType::Type::kReference,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000809 nullptr);
810 parallel_move.AddMove(obj_,
811 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100812 DataType::Type::kReference,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000813 nullptr);
814 if (index.IsValid()) {
815 parallel_move.AddMove(index,
816 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100817 DataType::Type::kInt32,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000818 nullptr);
819 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
820 } else {
821 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
822 __ movl(calling_convention.GetRegisterAt(2), Immediate(offset_));
823 }
Serban Constantinescuba45db02016-07-12 22:53:02 +0100824 x86_codegen->InvokeRuntime(kQuickReadBarrierSlow, instruction_, instruction_->GetDexPc(), this);
Roland Levillain0d5a2812015-11-13 10:07:31 +0000825 CheckEntrypointTypes<
826 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
827 x86_codegen->Move32(out_, Location::RegisterLocation(EAX));
828
829 RestoreLiveRegisters(codegen, locations);
830 __ jmp(GetExitLabel());
831 }
832
833 const char* GetDescription() const OVERRIDE { return "ReadBarrierForHeapReferenceSlowPathX86"; }
834
835 private:
836 Register FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
837 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
838 size_t obj = static_cast<int>(obj_.AsRegister<Register>());
839 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
840 if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) {
841 return static_cast<Register>(i);
842 }
843 }
844 // We shall never fail to find a free caller-save register, as
845 // there are more than two core caller-save registers on x86
846 // (meaning it is possible to find one which is different from
847 // `ref` and `obj`).
848 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
849 LOG(FATAL) << "Could not find a free caller-save register";
850 UNREACHABLE();
851 }
852
Roland Levillain0d5a2812015-11-13 10:07:31 +0000853 const Location out_;
854 const Location ref_;
855 const Location obj_;
856 const uint32_t offset_;
857 // An additional location containing an index to an array.
858 // Only used for HArrayGet and the UnsafeGetObject &
859 // UnsafeGetObjectVolatile intrinsics.
860 const Location index_;
861
862 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathX86);
863};
864
865// Slow path generating a read barrier for a GC root.
866class ReadBarrierForRootSlowPathX86 : public SlowPathCode {
867 public:
868 ReadBarrierForRootSlowPathX86(HInstruction* instruction, Location out, Location root)
David Srbecky9cd6d372016-02-09 15:24:47 +0000869 : SlowPathCode(instruction), out_(out), root_(root) {
Roland Levillain7c1559a2015-12-15 10:55:36 +0000870 DCHECK(kEmitCompilerReadBarrier);
871 }
Roland Levillain0d5a2812015-11-13 10:07:31 +0000872
873 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
874 LocationSummary* locations = instruction_->GetLocations();
875 Register reg_out = out_.AsRegister<Register>();
876 DCHECK(locations->CanCall());
877 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000878 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
879 << "Unexpected instruction in read barrier for GC root slow path: "
880 << instruction_->DebugName();
Roland Levillain0d5a2812015-11-13 10:07:31 +0000881
882 __ Bind(GetEntryLabel());
883 SaveLiveRegisters(codegen, locations);
884
885 InvokeRuntimeCallingConvention calling_convention;
886 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
887 x86_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100888 x86_codegen->InvokeRuntime(kQuickReadBarrierForRootSlow,
Roland Levillain0d5a2812015-11-13 10:07:31 +0000889 instruction_,
890 instruction_->GetDexPc(),
891 this);
892 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
893 x86_codegen->Move32(out_, Location::RegisterLocation(EAX));
894
895 RestoreLiveRegisters(codegen, locations);
896 __ jmp(GetExitLabel());
897 }
898
899 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathX86"; }
900
901 private:
Roland Levillain0d5a2812015-11-13 10:07:31 +0000902 const Location out_;
903 const Location root_;
904
905 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathX86);
906};
907
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100908#undef __
Roland Levillain7cbd27f2016-08-11 23:53:33 +0100909// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
910#define __ down_cast<X86Assembler*>(GetAssembler())-> // NOLINT
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100911
Aart Bike9f37602015-10-09 11:15:55 -0700912inline Condition X86Condition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700913 switch (cond) {
914 case kCondEQ: return kEqual;
915 case kCondNE: return kNotEqual;
916 case kCondLT: return kLess;
917 case kCondLE: return kLessEqual;
918 case kCondGT: return kGreater;
919 case kCondGE: return kGreaterEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700920 case kCondB: return kBelow;
921 case kCondBE: return kBelowEqual;
922 case kCondA: return kAbove;
923 case kCondAE: return kAboveEqual;
Dave Allison20dfc792014-06-16 20:44:29 -0700924 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100925 LOG(FATAL) << "Unreachable";
926 UNREACHABLE();
927}
928
Aart Bike9f37602015-10-09 11:15:55 -0700929// Maps signed condition to unsigned condition and FP condition to x86 name.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100930inline Condition X86UnsignedOrFPCondition(IfCondition cond) {
931 switch (cond) {
932 case kCondEQ: return kEqual;
933 case kCondNE: return kNotEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700934 // Signed to unsigned, and FP to x86 name.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100935 case kCondLT: return kBelow;
936 case kCondLE: return kBelowEqual;
937 case kCondGT: return kAbove;
938 case kCondGE: return kAboveEqual;
Aart Bike9f37602015-10-09 11:15:55 -0700939 // Unsigned remain unchanged.
940 case kCondB: return kBelow;
941 case kCondBE: return kBelowEqual;
942 case kCondA: return kAbove;
943 case kCondAE: return kAboveEqual;
Roland Levillain4fa13f62015-07-06 18:11:54 +0100944 }
945 LOG(FATAL) << "Unreachable";
946 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700947}
948
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100949void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100950 stream << Register(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100951}
952
953void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100954 stream << XmmRegister(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100955}
956
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100957size_t CodeGeneratorX86::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
958 __ movl(Address(ESP, stack_index), static_cast<Register>(reg_id));
959 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100960}
961
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100962size_t CodeGeneratorX86::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
963 __ movl(static_cast<Register>(reg_id), Address(ESP, stack_index));
964 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100965}
966
Mark Mendell7c8d0092015-01-26 11:21:33 -0500967size_t CodeGeneratorX86::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
Aart Bikb13c65b2017-03-21 20:14:07 -0700968 if (GetGraph()->HasSIMD()) {
Aart Bik5576f372017-03-23 16:17:37 -0700969 __ movups(Address(ESP, stack_index), XmmRegister(reg_id));
Aart Bikb13c65b2017-03-21 20:14:07 -0700970 } else {
971 __ movsd(Address(ESP, stack_index), XmmRegister(reg_id));
972 }
Mark Mendell7c8d0092015-01-26 11:21:33 -0500973 return GetFloatingPointSpillSlotSize();
974}
975
976size_t CodeGeneratorX86::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
Aart Bikb13c65b2017-03-21 20:14:07 -0700977 if (GetGraph()->HasSIMD()) {
Aart Bik5576f372017-03-23 16:17:37 -0700978 __ movups(XmmRegister(reg_id), Address(ESP, stack_index));
Aart Bikb13c65b2017-03-21 20:14:07 -0700979 } else {
980 __ movsd(XmmRegister(reg_id), Address(ESP, stack_index));
981 }
Mark Mendell7c8d0092015-01-26 11:21:33 -0500982 return GetFloatingPointSpillSlotSize();
983}
984
Calin Juravle175dc732015-08-25 15:42:32 +0100985void CodeGeneratorX86::InvokeRuntime(QuickEntrypointEnum entrypoint,
986 HInstruction* instruction,
987 uint32_t dex_pc,
988 SlowPathCode* slow_path) {
Alexandre Rames91a65162016-09-19 13:54:30 +0100989 ValidateInvokeRuntime(entrypoint, instruction, slow_path);
Serban Constantinescuba45db02016-07-12 22:53:02 +0100990 GenerateInvokeRuntime(GetThreadOffset<kX86PointerSize>(entrypoint).Int32Value());
991 if (EntrypointRequiresStackMap(entrypoint)) {
992 RecordPcInfo(instruction, dex_pc, slow_path);
993 }
Alexandre Rames8158f282015-08-07 10:26:17 +0100994}
995
Roland Levillaindec8f632016-07-22 17:10:06 +0100996void CodeGeneratorX86::InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset,
997 HInstruction* instruction,
998 SlowPathCode* slow_path) {
999 ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction, slow_path);
Serban Constantinescuba45db02016-07-12 22:53:02 +01001000 GenerateInvokeRuntime(entry_point_offset);
1001}
1002
1003void CodeGeneratorX86::GenerateInvokeRuntime(int32_t entry_point_offset) {
Roland Levillaindec8f632016-07-22 17:10:06 +01001004 __ fs()->call(Address::Absolute(entry_point_offset));
1005}
1006
Mark Mendellfb8d2792015-03-31 22:16:59 -04001007CodeGeneratorX86::CodeGeneratorX86(HGraph* graph,
Roland Levillain0d5a2812015-11-13 10:07:31 +00001008 const X86InstructionSetFeatures& isa_features,
1009 const CompilerOptions& compiler_options,
1010 OptimizingCompilerStats* stats)
Mark Mendell5f874182015-03-04 15:42:45 -05001011 : CodeGenerator(graph,
1012 kNumberOfCpuRegisters,
1013 kNumberOfXmmRegisters,
1014 kNumberOfRegisterPairs,
1015 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
1016 arraysize(kCoreCalleeSaves))
1017 | (1 << kFakeReturnRegister),
Serban Constantinescuecc43662015-08-13 13:33:12 +01001018 0,
1019 compiler_options,
1020 stats),
Vladimir Marko225b6462015-09-28 12:17:40 +01001021 block_labels_(nullptr),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001022 location_builder_(graph, this),
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001023 instruction_visitor_(graph, this),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001024 move_resolver_(graph->GetAllocator(), this),
1025 assembler_(graph->GetAllocator()),
Vladimir Marko58155012015-08-19 12:49:41 +00001026 isa_features_(isa_features),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001027 boot_image_method_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1028 method_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1029 boot_image_type_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1030 type_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1031 string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1032 string_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1033 jit_string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1034 jit_class_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Marko93205e32016-04-13 11:59:46 +01001035 constant_area_start_(-1),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001036 fixups_to_jump_tables_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00001037 method_address_offset_(std::less<uint32_t>(),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001038 graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001039 // Use a fake return address register to mimic Quick.
1040 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001041}
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001042
David Brazdil58282f42016-01-14 12:45:10 +00001043void CodeGeneratorX86::SetupBlockedRegisters() const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001044 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +01001045 blocked_core_registers_[ESP] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001046}
1047
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001048InstructionCodeGeneratorX86::InstructionCodeGeneratorX86(HGraph* graph, CodeGeneratorX86* codegen)
Aart Bik42249c32016-01-07 15:33:50 -08001049 : InstructionCodeGenerator(graph, codegen),
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001050 assembler_(codegen->GetAssembler()),
1051 codegen_(codegen) {}
1052
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001053static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001054 return dwarf::Reg::X86Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001055}
1056
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001057void CodeGeneratorX86::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001058 __ cfi().SetCurrentCFAOffset(kX86WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001059 __ Bind(&frame_entry_label_);
Roland Levillain199f3362014-11-27 17:15:16 +00001060 bool skip_overflow_check =
1061 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001062 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Calin Juravle93edf732015-01-20 20:14:07 +00001063
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001064 if (!skip_overflow_check) {
Vladimir Marko33bff252017-11-01 14:35:42 +00001065 size_t reserved_bytes = GetStackOverflowReservedBytes(InstructionSet::kX86);
1066 __ testl(EAX, Address(ESP, -static_cast<int32_t>(reserved_bytes)));
Nicolas Geoffray39468442014-09-02 15:17:15 +01001067 RecordPcInfo(nullptr, 0);
Nicolas Geoffray397f2e42014-07-23 12:57:19 +01001068 }
1069
Mark Mendell5f874182015-03-04 15:42:45 -05001070 if (HasEmptyFrame()) {
1071 return;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001072 }
Mark Mendell5f874182015-03-04 15:42:45 -05001073
1074 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
1075 Register reg = kCoreCalleeSaves[i];
1076 if (allocated_registers_.ContainsCoreRegister(reg)) {
1077 __ pushl(reg);
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001078 __ cfi().AdjustCFAOffset(kX86WordSize);
1079 __ cfi().RelOffset(DWARFReg(reg), 0);
Mark Mendell5f874182015-03-04 15:42:45 -05001080 }
1081 }
1082
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001083 int adjust = GetFrameSize() - FrameEntrySpillSize();
1084 __ subl(ESP, Immediate(adjust));
1085 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01001086 // Save the current method if we need it. Note that we do not
1087 // do this in HCurrentMethod, as the instruction might have been removed
1088 // in the SSA graph.
1089 if (RequiresCurrentMethod()) {
1090 __ movl(Address(ESP, kCurrentMethodStackOffset), kMethodRegisterArgument);
1091 }
Nicolas Geoffrayf7893532017-06-15 12:34:36 +01001092
1093 if (GetGraph()->HasShouldDeoptimizeFlag()) {
1094 // Initialize should_deoptimize flag to 0.
1095 __ movl(Address(ESP, GetStackOffsetOfShouldDeoptimizeFlag()), Immediate(0));
1096 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001097}
1098
1099void CodeGeneratorX86::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +01001100 __ cfi().RememberState();
1101 if (!HasEmptyFrame()) {
1102 int adjust = GetFrameSize() - FrameEntrySpillSize();
1103 __ addl(ESP, Immediate(adjust));
1104 __ cfi().AdjustCFAOffset(-adjust);
Mark Mendell5f874182015-03-04 15:42:45 -05001105
David Srbeckyc34dc932015-04-12 09:27:43 +01001106 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
1107 Register reg = kCoreCalleeSaves[i];
1108 if (allocated_registers_.ContainsCoreRegister(reg)) {
1109 __ popl(reg);
1110 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86WordSize));
1111 __ cfi().Restore(DWARFReg(reg));
1112 }
Mark Mendell5f874182015-03-04 15:42:45 -05001113 }
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001114 }
David Srbeckyc34dc932015-04-12 09:27:43 +01001115 __ ret();
1116 __ cfi().RestoreState();
1117 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001118}
1119
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001120void CodeGeneratorX86::Bind(HBasicBlock* block) {
1121 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001122}
1123
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001124Location InvokeDexCallingConventionVisitorX86::GetReturnLocation(DataType::Type type) const {
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001125 switch (type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01001126 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001127 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01001128 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001129 case DataType::Type::kInt8:
1130 case DataType::Type::kUint16:
1131 case DataType::Type::kInt16:
1132 case DataType::Type::kInt32:
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001133 return Location::RegisterLocation(EAX);
1134
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001135 case DataType::Type::kInt64:
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001136 return Location::RegisterPairLocation(EAX, EDX);
1137
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001138 case DataType::Type::kVoid:
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001139 return Location::NoLocation();
1140
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001141 case DataType::Type::kFloat64:
1142 case DataType::Type::kFloat32:
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001143 return Location::FpuRegisterLocation(XMM0);
1144 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +01001145
1146 UNREACHABLE();
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001147}
1148
1149Location InvokeDexCallingConventionVisitorX86::GetMethodLocation() const {
1150 return Location::RegisterLocation(kMethodRegisterArgument);
1151}
1152
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001153Location InvokeDexCallingConventionVisitorX86::GetNextLocation(DataType::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001154 switch (type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01001155 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001156 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01001157 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001158 case DataType::Type::kInt8:
1159 case DataType::Type::kUint16:
1160 case DataType::Type::kInt16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01001161 case DataType::Type::kInt32: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001162 uint32_t index = gp_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001163 stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001164 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001165 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001166 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001167 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001168 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001169 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001170
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001171 case DataType::Type::kInt64: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001172 uint32_t index = gp_index_;
1173 gp_index_ += 2;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001174 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001175 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001176 X86ManagedRegister pair = X86ManagedRegister::FromRegisterPair(
1177 calling_convention.GetRegisterPairAt(index));
1178 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001179 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001180 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
1181 }
1182 }
1183
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001184 case DataType::Type::kFloat32: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001185 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001186 stack_index_++;
1187 if (index < calling_convention.GetNumberOfFpuRegisters()) {
1188 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
1189 } else {
1190 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
1191 }
1192 }
1193
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001194 case DataType::Type::kFloat64: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001195 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001196 stack_index_ += 2;
1197 if (index < calling_convention.GetNumberOfFpuRegisters()) {
1198 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
1199 } else {
1200 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001201 }
1202 }
1203
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001204 case DataType::Type::kVoid:
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001205 LOG(FATAL) << "Unexpected parameter type " << type;
1206 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001207 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00001208 return Location::NoLocation();
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001209}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001210
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001211void CodeGeneratorX86::Move32(Location destination, Location source) {
1212 if (source.Equals(destination)) {
1213 return;
1214 }
1215 if (destination.IsRegister()) {
1216 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001217 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001218 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001219 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001220 } else {
1221 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001222 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001223 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001224 } else if (destination.IsFpuRegister()) {
1225 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001226 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001227 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001228 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001229 } else {
1230 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001231 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001232 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001233 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001234 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001235 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001236 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001237 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001238 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Mark Mendell7c8d0092015-01-26 11:21:33 -05001239 } else if (source.IsConstant()) {
1240 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001241 int32_t value = GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05001242 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001243 } else {
1244 DCHECK(source.IsStackSlot());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01001245 __ pushl(Address(ESP, source.GetStackIndex()));
1246 __ popl(Address(ESP, destination.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001247 }
1248 }
1249}
1250
1251void CodeGeneratorX86::Move64(Location destination, Location source) {
1252 if (source.Equals(destination)) {
1253 return;
1254 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001255 if (destination.IsRegisterPair()) {
1256 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001257 EmitParallelMoves(
1258 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
1259 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001260 DataType::Type::kInt32,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001261 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001262 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001263 DataType::Type::kInt32);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001264 } else if (source.IsFpuRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001265 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>();
1266 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
1267 __ psrlq(src_reg, Immediate(32));
1268 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001269 } else {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001270 // No conflict possible, so just do the moves.
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001271 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001272 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
1273 __ movl(destination.AsRegisterPairHigh<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001274 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
1275 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001276 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05001277 if (source.IsFpuRegister()) {
1278 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
1279 } else if (source.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001280 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Calin Juravlee460d1d2015-09-29 04:52:17 +01001281 } else if (source.IsRegisterPair()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001282 size_t elem_size = DataType::Size(DataType::Type::kInt32);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001283 // Create stack space for 2 elements.
1284 __ subl(ESP, Immediate(2 * elem_size));
1285 __ movl(Address(ESP, 0), source.AsRegisterPairLow<Register>());
1286 __ movl(Address(ESP, elem_size), source.AsRegisterPairHigh<Register>());
1287 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
1288 // And remove the temporary stack space we allocated.
1289 __ addl(ESP, Immediate(2 * elem_size));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001290 } else {
1291 LOG(FATAL) << "Unimplemented";
1292 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001293 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001294 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001295 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001296 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001297 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegisterPairLow<Register>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001298 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001299 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001300 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001301 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001302 } else if (source.IsConstant()) {
1303 HConstant* constant = source.GetConstant();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001304 DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant());
1305 int64_t value = GetInt64ValueOf(constant);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001306 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(Low32Bits(value)));
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001307 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
1308 Immediate(High32Bits(value)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001309 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001310 DCHECK(source.IsDoubleStackSlot()) << source;
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001311 EmitParallelMoves(
1312 Location::StackSlot(source.GetStackIndex()),
1313 Location::StackSlot(destination.GetStackIndex()),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001314 DataType::Type::kInt32,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001315 Location::StackSlot(source.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001316 Location::StackSlot(destination.GetHighStackIndex(kX86WordSize)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001317 DataType::Type::kInt32);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001318 }
1319 }
1320}
1321
Calin Juravle175dc732015-08-25 15:42:32 +01001322void CodeGeneratorX86::MoveConstant(Location location, int32_t value) {
1323 DCHECK(location.IsRegister());
1324 __ movl(location.AsRegister<Register>(), Immediate(value));
1325}
1326
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001327void CodeGeneratorX86::MoveLocation(Location dst, Location src, DataType::Type dst_type) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001328 HParallelMove move(GetGraph()->GetAllocator());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001329 if (dst_type == DataType::Type::kInt64 && !src.IsConstant() && !src.IsFpuRegister()) {
1330 move.AddMove(src.ToLow(), dst.ToLow(), DataType::Type::kInt32, nullptr);
1331 move.AddMove(src.ToHigh(), dst.ToHigh(), DataType::Type::kInt32, nullptr);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001332 } else {
David Brazdil74eb1b22015-12-14 11:44:01 +00001333 move.AddMove(src, dst, dst_type, nullptr);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001334 }
David Brazdil74eb1b22015-12-14 11:44:01 +00001335 GetMoveResolver()->EmitNativeCode(&move);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001336}
1337
1338void CodeGeneratorX86::AddLocationAsTemp(Location location, LocationSummary* locations) {
1339 if (location.IsRegister()) {
1340 locations->AddTemp(location);
1341 } else if (location.IsRegisterPair()) {
1342 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1343 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
1344 } else {
1345 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1346 }
1347}
1348
David Brazdilfc6a86a2015-06-26 10:33:45 +00001349void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001350 DCHECK(!successor->IsExitBlock());
1351
1352 HBasicBlock* block = got->GetBlock();
1353 HInstruction* previous = got->GetPrevious();
1354
1355 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +00001356 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001357 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1358 return;
1359 }
1360
1361 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1362 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1363 }
1364 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001365 __ jmp(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001366 }
1367}
1368
David Brazdilfc6a86a2015-06-26 10:33:45 +00001369void LocationsBuilderX86::VisitGoto(HGoto* got) {
1370 got->SetLocations(nullptr);
1371}
1372
1373void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) {
1374 HandleGoto(got, got->GetSuccessor());
1375}
1376
1377void LocationsBuilderX86::VisitTryBoundary(HTryBoundary* try_boundary) {
1378 try_boundary->SetLocations(nullptr);
1379}
1380
1381void InstructionCodeGeneratorX86::VisitTryBoundary(HTryBoundary* try_boundary) {
1382 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
1383 if (!successor->IsExitBlock()) {
1384 HandleGoto(try_boundary, successor);
1385 }
1386}
1387
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001388void LocationsBuilderX86::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001389 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001390}
1391
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001392void InstructionCodeGeneratorX86::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001393}
1394
Mark Mendell152408f2015-12-31 12:28:50 -05001395template<class LabelType>
Mark Mendellc4701932015-04-10 13:18:51 -04001396void InstructionCodeGeneratorX86::GenerateFPJumps(HCondition* cond,
Mark Mendell152408f2015-12-31 12:28:50 -05001397 LabelType* true_label,
1398 LabelType* false_label) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001399 if (cond->IsFPConditionTrueIfNaN()) {
1400 __ j(kUnordered, true_label);
1401 } else if (cond->IsFPConditionFalseIfNaN()) {
1402 __ j(kUnordered, false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001403 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001404 __ j(X86UnsignedOrFPCondition(cond->GetCondition()), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001405}
1406
Mark Mendell152408f2015-12-31 12:28:50 -05001407template<class LabelType>
Mark Mendellc4701932015-04-10 13:18:51 -04001408void InstructionCodeGeneratorX86::GenerateLongComparesAndJumps(HCondition* cond,
Mark Mendell152408f2015-12-31 12:28:50 -05001409 LabelType* true_label,
1410 LabelType* false_label) {
Mark Mendellc4701932015-04-10 13:18:51 -04001411 LocationSummary* locations = cond->GetLocations();
1412 Location left = locations->InAt(0);
1413 Location right = locations->InAt(1);
1414 IfCondition if_cond = cond->GetCondition();
1415
Mark Mendellc4701932015-04-10 13:18:51 -04001416 Register left_high = left.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +01001417 Register left_low = left.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -04001418 IfCondition true_high_cond = if_cond;
1419 IfCondition false_high_cond = cond->GetOppositeCondition();
Aart Bike9f37602015-10-09 11:15:55 -07001420 Condition final_condition = X86UnsignedOrFPCondition(if_cond); // unsigned on lower part
Mark Mendellc4701932015-04-10 13:18:51 -04001421
1422 // Set the conditions for the test, remembering that == needs to be
1423 // decided using the low words.
1424 switch (if_cond) {
1425 case kCondEQ:
Mark Mendellc4701932015-04-10 13:18:51 -04001426 case kCondNE:
Roland Levillain4fa13f62015-07-06 18:11:54 +01001427 // Nothing to do.
Mark Mendellc4701932015-04-10 13:18:51 -04001428 break;
1429 case kCondLT:
1430 false_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -04001431 break;
1432 case kCondLE:
1433 true_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -04001434 break;
1435 case kCondGT:
1436 false_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -04001437 break;
1438 case kCondGE:
1439 true_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -04001440 break;
Aart Bike9f37602015-10-09 11:15:55 -07001441 case kCondB:
1442 false_high_cond = kCondA;
1443 break;
1444 case kCondBE:
1445 true_high_cond = kCondB;
1446 break;
1447 case kCondA:
1448 false_high_cond = kCondB;
1449 break;
1450 case kCondAE:
1451 true_high_cond = kCondA;
1452 break;
Mark Mendellc4701932015-04-10 13:18:51 -04001453 }
1454
1455 if (right.IsConstant()) {
1456 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
Mark Mendellc4701932015-04-10 13:18:51 -04001457 int32_t val_high = High32Bits(value);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001458 int32_t val_low = Low32Bits(value);
Mark Mendellc4701932015-04-10 13:18:51 -04001459
Aart Bika19616e2016-02-01 18:57:58 -08001460 codegen_->Compare32BitValue(left_high, val_high);
Mark Mendellc4701932015-04-10 13:18:51 -04001461 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001462 __ j(X86Condition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001463 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001464 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001465 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001466 __ j(X86Condition(true_high_cond), true_label);
1467 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001468 }
1469 // Must be equal high, so compare the lows.
Aart Bika19616e2016-02-01 18:57:58 -08001470 codegen_->Compare32BitValue(left_low, val_low);
Mark Mendell8659e842016-02-16 10:41:46 -05001471 } else if (right.IsRegisterPair()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001472 Register right_high = right.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +01001473 Register right_low = right.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -04001474
1475 __ cmpl(left_high, right_high);
1476 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001477 __ j(X86Condition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001478 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001479 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001480 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001481 __ j(X86Condition(true_high_cond), true_label);
1482 __ j(X86Condition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -04001483 }
1484 // Must be equal high, so compare the lows.
1485 __ cmpl(left_low, right_low);
Mark Mendell8659e842016-02-16 10:41:46 -05001486 } else {
1487 DCHECK(right.IsDoubleStackSlot());
1488 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
1489 if (if_cond == kCondNE) {
1490 __ j(X86Condition(true_high_cond), true_label);
1491 } else if (if_cond == kCondEQ) {
1492 __ j(X86Condition(false_high_cond), false_label);
1493 } else {
1494 __ j(X86Condition(true_high_cond), true_label);
1495 __ j(X86Condition(false_high_cond), false_label);
1496 }
1497 // Must be equal high, so compare the lows.
1498 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Mark Mendellc4701932015-04-10 13:18:51 -04001499 }
1500 // The last comparison might be unsigned.
1501 __ j(final_condition, true_label);
1502}
1503
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001504void InstructionCodeGeneratorX86::GenerateFPCompare(Location lhs,
1505 Location rhs,
1506 HInstruction* insn,
1507 bool is_double) {
1508 HX86LoadFromConstantTable* const_area = insn->InputAt(1)->AsX86LoadFromConstantTable();
1509 if (is_double) {
1510 if (rhs.IsFpuRegister()) {
1511 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1512 } else if (const_area != nullptr) {
1513 DCHECK(const_area->IsEmittedAtUseSite());
1514 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(),
1515 codegen_->LiteralDoubleAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00001516 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
1517 const_area->GetBaseMethodAddress(),
1518 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001519 } else {
1520 DCHECK(rhs.IsDoubleStackSlot());
1521 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex()));
1522 }
1523 } else {
1524 if (rhs.IsFpuRegister()) {
1525 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1526 } else if (const_area != nullptr) {
1527 DCHECK(const_area->IsEmittedAtUseSite());
1528 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(),
1529 codegen_->LiteralFloatAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00001530 const_area->GetConstant()->AsFloatConstant()->GetValue(),
1531 const_area->GetBaseMethodAddress(),
1532 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001533 } else {
1534 DCHECK(rhs.IsStackSlot());
1535 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex()));
1536 }
1537 }
1538}
1539
Mark Mendell152408f2015-12-31 12:28:50 -05001540template<class LabelType>
David Brazdil0debae72015-11-12 18:37:00 +00001541void InstructionCodeGeneratorX86::GenerateCompareTestAndBranch(HCondition* condition,
Mark Mendell152408f2015-12-31 12:28:50 -05001542 LabelType* true_target_in,
1543 LabelType* false_target_in) {
David Brazdil0debae72015-11-12 18:37:00 +00001544 // Generated branching requires both targets to be explicit. If either of the
1545 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
Mark Mendell152408f2015-12-31 12:28:50 -05001546 LabelType fallthrough_target;
1547 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1548 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
David Brazdil0debae72015-11-12 18:37:00 +00001549
Mark Mendellc4701932015-04-10 13:18:51 -04001550 LocationSummary* locations = condition->GetLocations();
1551 Location left = locations->InAt(0);
1552 Location right = locations->InAt(1);
1553
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001554 DataType::Type type = condition->InputAt(0)->GetType();
Mark Mendellc4701932015-04-10 13:18:51 -04001555 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001556 case DataType::Type::kInt64:
Mark Mendellc4701932015-04-10 13:18:51 -04001557 GenerateLongComparesAndJumps(condition, true_target, false_target);
1558 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001559 case DataType::Type::kFloat32:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001560 GenerateFPCompare(left, right, condition, false);
Mark Mendellc4701932015-04-10 13:18:51 -04001561 GenerateFPJumps(condition, true_target, false_target);
1562 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001563 case DataType::Type::kFloat64:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001564 GenerateFPCompare(left, right, condition, true);
Mark Mendellc4701932015-04-10 13:18:51 -04001565 GenerateFPJumps(condition, true_target, false_target);
1566 break;
1567 default:
1568 LOG(FATAL) << "Unexpected compare type " << type;
1569 }
1570
David Brazdil0debae72015-11-12 18:37:00 +00001571 if (false_target != &fallthrough_target) {
Mark Mendellc4701932015-04-10 13:18:51 -04001572 __ jmp(false_target);
1573 }
David Brazdil0debae72015-11-12 18:37:00 +00001574
1575 if (fallthrough_target.IsLinked()) {
1576 __ Bind(&fallthrough_target);
1577 }
Mark Mendellc4701932015-04-10 13:18:51 -04001578}
1579
David Brazdil0debae72015-11-12 18:37:00 +00001580static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) {
1581 // Moves may affect the eflags register (move zero uses xorl), so the EFLAGS
1582 // are set only strictly before `branch`. We can't use the eflags on long/FP
1583 // conditions if they are materialized due to the complex branching.
1584 return cond->IsCondition() &&
1585 cond->GetNext() == branch &&
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001586 cond->InputAt(0)->GetType() != DataType::Type::kInt64 &&
1587 !DataType::IsFloatingPointType(cond->InputAt(0)->GetType());
David Brazdil0debae72015-11-12 18:37:00 +00001588}
1589
Mark Mendell152408f2015-12-31 12:28:50 -05001590template<class LabelType>
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001591void InstructionCodeGeneratorX86::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00001592 size_t condition_input_index,
Mark Mendell152408f2015-12-31 12:28:50 -05001593 LabelType* true_target,
1594 LabelType* false_target) {
David Brazdil0debae72015-11-12 18:37:00 +00001595 HInstruction* cond = instruction->InputAt(condition_input_index);
1596
1597 if (true_target == nullptr && false_target == nullptr) {
1598 // Nothing to do. The code always falls through.
1599 return;
1600 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00001601 // Constant condition, statically compared against "true" (integer value 1).
1602 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00001603 if (true_target != nullptr) {
1604 __ jmp(true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001605 }
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001606 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00001607 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00001608 if (false_target != nullptr) {
1609 __ jmp(false_target);
1610 }
1611 }
1612 return;
1613 }
1614
1615 // The following code generates these patterns:
1616 // (1) true_target == nullptr && false_target != nullptr
1617 // - opposite condition true => branch to false_target
1618 // (2) true_target != nullptr && false_target == nullptr
1619 // - condition true => branch to true_target
1620 // (3) true_target != nullptr && false_target != nullptr
1621 // - condition true => branch to true_target
1622 // - branch to false_target
1623 if (IsBooleanValueOrMaterializedCondition(cond)) {
1624 if (AreEflagsSetFrom(cond, instruction)) {
1625 if (true_target == nullptr) {
1626 __ j(X86Condition(cond->AsCondition()->GetOppositeCondition()), false_target);
1627 } else {
1628 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target);
1629 }
1630 } else {
1631 // Materialized condition, compare against 0.
1632 Location lhs = instruction->GetLocations()->InAt(condition_input_index);
1633 if (lhs.IsRegister()) {
1634 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
1635 } else {
1636 __ cmpl(Address(ESP, lhs.GetStackIndex()), Immediate(0));
1637 }
1638 if (true_target == nullptr) {
1639 __ j(kEqual, false_target);
1640 } else {
1641 __ j(kNotEqual, true_target);
1642 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001643 }
1644 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001645 // Condition has not been materialized, use its inputs as the comparison and
1646 // its condition as the branch condition.
Mark Mendellb8b97692015-05-22 16:58:19 -04001647 HCondition* condition = cond->AsCondition();
David Brazdil0debae72015-11-12 18:37:00 +00001648
1649 // If this is a long or FP comparison that has been folded into
1650 // the HCondition, generate the comparison directly.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001651 DataType::Type type = condition->InputAt(0)->GetType();
1652 if (type == DataType::Type::kInt64 || DataType::IsFloatingPointType(type)) {
David Brazdil0debae72015-11-12 18:37:00 +00001653 GenerateCompareTestAndBranch(condition, true_target, false_target);
1654 return;
1655 }
1656
1657 Location lhs = condition->GetLocations()->InAt(0);
1658 Location rhs = condition->GetLocations()->InAt(1);
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001659 // LHS is guaranteed to be in a register (see LocationsBuilderX86::HandleCondition).
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01001660 codegen_->GenerateIntCompare(lhs, rhs);
David Brazdil0debae72015-11-12 18:37:00 +00001661 if (true_target == nullptr) {
1662 __ j(X86Condition(condition->GetOppositeCondition()), false_target);
1663 } else {
Mark Mendellb8b97692015-05-22 16:58:19 -04001664 __ j(X86Condition(condition->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -07001665 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001666 }
David Brazdil0debae72015-11-12 18:37:00 +00001667
1668 // If neither branch falls through (case 3), the conditional branch to `true_target`
1669 // was already emitted (case 2) and we need to emit a jump to `false_target`.
1670 if (true_target != nullptr && false_target != nullptr) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001671 __ jmp(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001672 }
1673}
1674
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001675void LocationsBuilderX86::VisitIf(HIf* if_instr) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001676 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(if_instr);
David Brazdil0debae72015-11-12 18:37:00 +00001677 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001678 locations->SetInAt(0, Location::Any());
1679 }
1680}
1681
1682void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001683 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
1684 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
1685 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
1686 nullptr : codegen_->GetLabelOf(true_successor);
1687 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
1688 nullptr : codegen_->GetLabelOf(false_successor);
1689 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001690}
1691
1692void LocationsBuilderX86::VisitDeoptimize(HDeoptimize* deoptimize) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001693 LocationSummary* locations = new (GetGraph()->GetAllocator())
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001694 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01001695 InvokeRuntimeCallingConvention calling_convention;
1696 RegisterSet caller_saves = RegisterSet::Empty();
1697 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1698 locations->SetCustomSlowPathCallerSaves(caller_saves);
David Brazdil0debae72015-11-12 18:37:00 +00001699 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001700 locations->SetInAt(0, Location::Any());
1701 }
1702}
1703
1704void InstructionCodeGeneratorX86::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08001705 SlowPathCode* slow_path = deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathX86>(deoptimize);
David Brazdil74eb1b22015-12-14 11:44:01 +00001706 GenerateTestAndBranch<Label>(deoptimize,
1707 /* condition_input_index */ 0,
1708 slow_path->GetEntryLabel(),
1709 /* false_target */ nullptr);
1710}
1711
Mingyao Yang063fc772016-08-02 11:02:54 -07001712void LocationsBuilderX86::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001713 LocationSummary* locations = new (GetGraph()->GetAllocator())
Mingyao Yang063fc772016-08-02 11:02:54 -07001714 LocationSummary(flag, LocationSummary::kNoCall);
1715 locations->SetOut(Location::RequiresRegister());
1716}
1717
1718void InstructionCodeGeneratorX86::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
1719 __ movl(flag->GetLocations()->Out().AsRegister<Register>(),
1720 Address(ESP, codegen_->GetStackOffsetOfShouldDeoptimizeFlag()));
1721}
1722
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001723static bool SelectCanUseCMOV(HSelect* select) {
1724 // There are no conditional move instructions for XMMs.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001725 if (DataType::IsFloatingPointType(select->GetType())) {
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001726 return false;
1727 }
1728
1729 // A FP condition doesn't generate the single CC that we need.
1730 // In 32 bit mode, a long condition doesn't generate a single CC either.
1731 HInstruction* condition = select->GetCondition();
1732 if (condition->IsCondition()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001733 DataType::Type compare_type = condition->InputAt(0)->GetType();
1734 if (compare_type == DataType::Type::kInt64 ||
1735 DataType::IsFloatingPointType(compare_type)) {
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001736 return false;
1737 }
1738 }
1739
1740 // We can generate a CMOV for this Select.
1741 return true;
1742}
1743
David Brazdil74eb1b22015-12-14 11:44:01 +00001744void LocationsBuilderX86::VisitSelect(HSelect* select) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001745 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(select);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001746 if (DataType::IsFloatingPointType(select->GetType())) {
David Brazdil74eb1b22015-12-14 11:44:01 +00001747 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001748 locations->SetInAt(1, Location::Any());
David Brazdil74eb1b22015-12-14 11:44:01 +00001749 } else {
1750 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001751 if (SelectCanUseCMOV(select)) {
1752 if (select->InputAt(1)->IsConstant()) {
1753 // Cmov can't handle a constant value.
1754 locations->SetInAt(1, Location::RequiresRegister());
1755 } else {
1756 locations->SetInAt(1, Location::Any());
1757 }
1758 } else {
1759 locations->SetInAt(1, Location::Any());
1760 }
David Brazdil74eb1b22015-12-14 11:44:01 +00001761 }
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001762 if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) {
1763 locations->SetInAt(2, Location::RequiresRegister());
David Brazdil74eb1b22015-12-14 11:44:01 +00001764 }
1765 locations->SetOut(Location::SameAsFirstInput());
1766}
1767
1768void InstructionCodeGeneratorX86::VisitSelect(HSelect* select) {
1769 LocationSummary* locations = select->GetLocations();
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001770 DCHECK(locations->InAt(0).Equals(locations->Out()));
1771 if (SelectCanUseCMOV(select)) {
1772 // If both the condition and the source types are integer, we can generate
1773 // a CMOV to implement Select.
1774
1775 HInstruction* select_condition = select->GetCondition();
1776 Condition cond = kNotEqual;
1777
1778 // Figure out how to test the 'condition'.
1779 if (select_condition->IsCondition()) {
1780 HCondition* condition = select_condition->AsCondition();
1781 if (!condition->IsEmittedAtUseSite()) {
1782 // This was a previously materialized condition.
1783 // Can we use the existing condition code?
1784 if (AreEflagsSetFrom(condition, select)) {
1785 // Materialization was the previous instruction. Condition codes are right.
1786 cond = X86Condition(condition->GetCondition());
1787 } else {
1788 // No, we have to recreate the condition code.
1789 Register cond_reg = locations->InAt(2).AsRegister<Register>();
1790 __ testl(cond_reg, cond_reg);
1791 }
1792 } else {
1793 // We can't handle FP or long here.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001794 DCHECK_NE(condition->InputAt(0)->GetType(), DataType::Type::kInt64);
1795 DCHECK(!DataType::IsFloatingPointType(condition->InputAt(0)->GetType()));
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001796 LocationSummary* cond_locations = condition->GetLocations();
Roland Levillain0b671c02016-08-19 12:02:34 +01001797 codegen_->GenerateIntCompare(cond_locations->InAt(0), cond_locations->InAt(1));
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001798 cond = X86Condition(condition->GetCondition());
1799 }
1800 } else {
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001801 // Must be a Boolean condition, which needs to be compared to 0.
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001802 Register cond_reg = locations->InAt(2).AsRegister<Register>();
1803 __ testl(cond_reg, cond_reg);
1804 }
1805
1806 // If the condition is true, overwrite the output, which already contains false.
1807 Location false_loc = locations->InAt(0);
1808 Location true_loc = locations->InAt(1);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001809 if (select->GetType() == DataType::Type::kInt64) {
Mark Mendell0c5b18e2016-02-06 13:58:35 -05001810 // 64 bit conditional move.
1811 Register false_high = false_loc.AsRegisterPairHigh<Register>();
1812 Register false_low = false_loc.AsRegisterPairLow<Register>();
1813 if (true_loc.IsRegisterPair()) {
1814 __ cmovl(cond, false_high, true_loc.AsRegisterPairHigh<Register>());
1815 __ cmovl(cond, false_low, true_loc.AsRegisterPairLow<Register>());
1816 } else {
1817 __ cmovl(cond, false_high, Address(ESP, true_loc.GetHighStackIndex(kX86WordSize)));
1818 __ cmovl(cond, false_low, Address(ESP, true_loc.GetStackIndex()));
1819 }
1820 } else {
1821 // 32 bit conditional move.
1822 Register false_reg = false_loc.AsRegister<Register>();
1823 if (true_loc.IsRegister()) {
1824 __ cmovl(cond, false_reg, true_loc.AsRegister<Register>());
1825 } else {
1826 __ cmovl(cond, false_reg, Address(ESP, true_loc.GetStackIndex()));
1827 }
1828 }
1829 } else {
1830 NearLabel false_target;
1831 GenerateTestAndBranch<NearLabel>(
1832 select, /* condition_input_index */ 2, /* true_target */ nullptr, &false_target);
1833 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
1834 __ Bind(&false_target);
1835 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001836}
1837
David Srbecky0cf44932015-12-09 14:09:59 +00001838void LocationsBuilderX86::VisitNativeDebugInfo(HNativeDebugInfo* info) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01001839 new (GetGraph()->GetAllocator()) LocationSummary(info);
David Srbecky0cf44932015-12-09 14:09:59 +00001840}
1841
David Srbeckyd28f4a02016-03-14 17:14:24 +00001842void InstructionCodeGeneratorX86::VisitNativeDebugInfo(HNativeDebugInfo*) {
1843 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00001844}
1845
1846void CodeGeneratorX86::GenerateNop() {
1847 __ nop();
David Srbecky0cf44932015-12-09 14:09:59 +00001848}
1849
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001850void LocationsBuilderX86::HandleCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001851 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01001852 new (GetGraph()->GetAllocator()) LocationSummary(cond, LocationSummary::kNoCall);
Mark Mendellc4701932015-04-10 13:18:51 -04001853 // Handle the long/FP comparisons made in instruction simplification.
1854 switch (cond->InputAt(0)->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001855 case DataType::Type::kInt64: {
Mark Mendellc4701932015-04-10 13:18:51 -04001856 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendell8659e842016-02-16 10:41:46 -05001857 locations->SetInAt(1, Location::Any());
David Brazdilb3e773e2016-01-26 11:28:37 +00001858 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001859 locations->SetOut(Location::RequiresRegister());
1860 }
1861 break;
1862 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001863 case DataType::Type::kFloat32:
1864 case DataType::Type::kFloat64: {
Mark Mendellc4701932015-04-10 13:18:51 -04001865 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001866 if (cond->InputAt(1)->IsX86LoadFromConstantTable()) {
1867 DCHECK(cond->InputAt(1)->IsEmittedAtUseSite());
1868 } else if (cond->InputAt(1)->IsConstant()) {
1869 locations->SetInAt(1, Location::RequiresFpuRegister());
1870 } else {
1871 locations->SetInAt(1, Location::Any());
1872 }
David Brazdilb3e773e2016-01-26 11:28:37 +00001873 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001874 locations->SetOut(Location::RequiresRegister());
1875 }
1876 break;
1877 }
1878 default:
1879 locations->SetInAt(0, Location::RequiresRegister());
1880 locations->SetInAt(1, Location::Any());
David Brazdilb3e773e2016-01-26 11:28:37 +00001881 if (!cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001882 // We need a byte register.
1883 locations->SetOut(Location::RegisterLocation(ECX));
1884 }
1885 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001886 }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001887}
1888
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001889void InstructionCodeGeneratorX86::HandleCondition(HCondition* cond) {
David Brazdilb3e773e2016-01-26 11:28:37 +00001890 if (cond->IsEmittedAtUseSite()) {
Mark Mendellc4701932015-04-10 13:18:51 -04001891 return;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001892 }
Mark Mendellc4701932015-04-10 13:18:51 -04001893
1894 LocationSummary* locations = cond->GetLocations();
1895 Location lhs = locations->InAt(0);
1896 Location rhs = locations->InAt(1);
1897 Register reg = locations->Out().AsRegister<Register>();
Mark Mendell152408f2015-12-31 12:28:50 -05001898 NearLabel true_label, false_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001899
1900 switch (cond->InputAt(0)->GetType()) {
1901 default: {
1902 // Integer case.
1903
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01001904 // Clear output register: setb only sets the low byte.
Mark Mendellc4701932015-04-10 13:18:51 -04001905 __ xorl(reg, reg);
Roland Levillain0b671c02016-08-19 12:02:34 +01001906 codegen_->GenerateIntCompare(lhs, rhs);
Aart Bike9f37602015-10-09 11:15:55 -07001907 __ setb(X86Condition(cond->GetCondition()), reg);
Mark Mendellc4701932015-04-10 13:18:51 -04001908 return;
1909 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001910 case DataType::Type::kInt64:
Mark Mendellc4701932015-04-10 13:18:51 -04001911 GenerateLongComparesAndJumps(cond, &true_label, &false_label);
1912 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001913 case DataType::Type::kFloat32:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001914 GenerateFPCompare(lhs, rhs, cond, false);
Mark Mendellc4701932015-04-10 13:18:51 -04001915 GenerateFPJumps(cond, &true_label, &false_label);
1916 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001917 case DataType::Type::kFloat64:
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00001918 GenerateFPCompare(lhs, rhs, cond, true);
Mark Mendellc4701932015-04-10 13:18:51 -04001919 GenerateFPJumps(cond, &true_label, &false_label);
1920 break;
1921 }
1922
1923 // Convert the jumps into the result.
Mark Mendell0c9497d2015-08-21 09:30:05 -04001924 NearLabel done_label;
Mark Mendellc4701932015-04-10 13:18:51 -04001925
Roland Levillain4fa13f62015-07-06 18:11:54 +01001926 // False case: result = 0.
Mark Mendellc4701932015-04-10 13:18:51 -04001927 __ Bind(&false_label);
1928 __ xorl(reg, reg);
1929 __ jmp(&done_label);
1930
Roland Levillain4fa13f62015-07-06 18:11:54 +01001931 // True case: result = 1.
Mark Mendellc4701932015-04-10 13:18:51 -04001932 __ Bind(&true_label);
1933 __ movl(reg, Immediate(1));
1934 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07001935}
1936
1937void LocationsBuilderX86::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001938 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001939}
1940
1941void InstructionCodeGeneratorX86::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001942 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001943}
1944
1945void LocationsBuilderX86::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001946 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001947}
1948
1949void InstructionCodeGeneratorX86::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001950 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001951}
1952
1953void LocationsBuilderX86::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001954 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001955}
1956
1957void InstructionCodeGeneratorX86::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001958 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001959}
1960
1961void LocationsBuilderX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001962 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001963}
1964
1965void InstructionCodeGeneratorX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001966 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001967}
1968
1969void LocationsBuilderX86::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001970 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001971}
1972
1973void InstructionCodeGeneratorX86::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001974 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001975}
1976
1977void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001978 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07001979}
1980
1981void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001982 HandleCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001983}
1984
Aart Bike9f37602015-10-09 11:15:55 -07001985void LocationsBuilderX86::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001986 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001987}
1988
1989void InstructionCodeGeneratorX86::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001990 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001991}
1992
1993void LocationsBuilderX86::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001994 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001995}
1996
1997void InstructionCodeGeneratorX86::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001998 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07001999}
2000
2001void LocationsBuilderX86::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002002 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002003}
2004
2005void InstructionCodeGeneratorX86::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002006 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002007}
2008
2009void LocationsBuilderX86::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002010 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002011}
2012
2013void InstructionCodeGeneratorX86::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002014 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002015}
2016
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002017void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002018 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002019 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002020 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002021}
2022
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002023void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01002024 // Will be generated at use site.
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002025}
2026
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002027void LocationsBuilderX86::VisitNullConstant(HNullConstant* constant) {
2028 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002029 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002030 locations->SetOut(Location::ConstantLocation(constant));
2031}
2032
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002033void InstructionCodeGeneratorX86::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002034 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002035}
2036
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002037void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002038 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002039 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002040 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002041}
2042
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002043void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002044 // Will be generated at use site.
2045}
2046
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002047void LocationsBuilderX86::VisitFloatConstant(HFloatConstant* constant) {
2048 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002049 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002050 locations->SetOut(Location::ConstantLocation(constant));
2051}
2052
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002053void InstructionCodeGeneratorX86::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002054 // Will be generated at use site.
2055}
2056
2057void LocationsBuilderX86::VisitDoubleConstant(HDoubleConstant* constant) {
2058 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002059 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002060 locations->SetOut(Location::ConstantLocation(constant));
2061}
2062
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002063void InstructionCodeGeneratorX86::VisitDoubleConstant(HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002064 // Will be generated at use site.
2065}
2066
Igor Murashkind01745e2017-04-05 16:40:31 -07002067void LocationsBuilderX86::VisitConstructorFence(HConstructorFence* constructor_fence) {
2068 constructor_fence->SetLocations(nullptr);
2069}
2070
2071void InstructionCodeGeneratorX86::VisitConstructorFence(
2072 HConstructorFence* constructor_fence ATTRIBUTE_UNUSED) {
2073 codegen_->GenerateMemoryBarrier(MemBarrierKind::kStoreStore);
2074}
2075
Calin Juravle27df7582015-04-17 19:12:31 +01002076void LocationsBuilderX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
2077 memory_barrier->SetLocations(nullptr);
2078}
2079
2080void InstructionCodeGeneratorX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00002081 codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
Calin Juravle27df7582015-04-17 19:12:31 +01002082}
2083
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002084void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002085 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002086}
2087
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002088void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002089 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002090}
2091
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002092void LocationsBuilderX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002093 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002094 new (GetGraph()->GetAllocator()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002095 switch (ret->InputAt(0)->GetType()) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002096 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002097 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002098 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002099 case DataType::Type::kInt8:
2100 case DataType::Type::kUint16:
2101 case DataType::Type::kInt16:
2102 case DataType::Type::kInt32:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002103 locations->SetInAt(0, Location::RegisterLocation(EAX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002104 break;
2105
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002106 case DataType::Type::kInt64:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002107 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002108 0, Location::RegisterPairLocation(EAX, EDX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002109 break;
2110
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002111 case DataType::Type::kFloat32:
2112 case DataType::Type::kFloat64:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002113 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002114 0, Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002115 break;
2116
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002117 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002118 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002119 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002120}
2121
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002122void InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002123 if (kIsDebugBuild) {
2124 switch (ret->InputAt(0)->GetType()) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002125 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002126 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002127 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002128 case DataType::Type::kInt8:
2129 case DataType::Type::kUint16:
2130 case DataType::Type::kInt16:
2131 case DataType::Type::kInt32:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002132 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<Register>(), EAX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002133 break;
2134
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002135 case DataType::Type::kInt64:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002136 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairLow<Register>(), EAX);
2137 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairHigh<Register>(), EDX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002138 break;
2139
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002140 case DataType::Type::kFloat32:
2141 case DataType::Type::kFloat64:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002142 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>(), XMM0);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002143 break;
2144
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002145 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002146 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002147 }
2148 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002149 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002150}
2151
Calin Juravle175dc732015-08-25 15:42:32 +01002152void LocationsBuilderX86::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2153 // The trampoline uses the same calling convention as dex calling conventions,
2154 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2155 // the method_idx.
2156 HandleInvoke(invoke);
2157}
2158
2159void InstructionCodeGeneratorX86::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2160 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2161}
2162
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002163void LocationsBuilderX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002164 // Explicit clinit checks triggered by static invokes must have been pruned by
2165 // art::PrepareForRegisterAllocation.
2166 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002167
Mark Mendellfb8d2792015-03-31 22:16:59 -04002168 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
Mark Mendell09ed1a32015-03-25 08:30:06 -04002169 if (intrinsic.TryDispatch(invoke)) {
Vladimir Marko65979462017-05-19 17:25:12 +01002170 if (invoke->GetLocations()->CanCall() && invoke->HasPcRelativeMethodLoadKind()) {
Vladimir Markoc53c0792015-11-19 15:48:33 +00002171 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::Any());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002172 }
Mark Mendell09ed1a32015-03-25 08:30:06 -04002173 return;
2174 }
2175
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002176 HandleInvoke(invoke);
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002177
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002178 // For PC-relative dex cache the invoke has an extra input, the PC-relative address base.
Vladimir Marko65979462017-05-19 17:25:12 +01002179 if (invoke->HasPcRelativeMethodLoadKind()) {
Vladimir Markob4536b72015-11-24 13:45:23 +00002180 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::RequiresRegister());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002181 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002182}
2183
Mark Mendell09ed1a32015-03-25 08:30:06 -04002184static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86* codegen) {
2185 if (invoke->GetLocations()->Intrinsified()) {
2186 IntrinsicCodeGeneratorX86 intrinsic(codegen);
2187 intrinsic.Dispatch(invoke);
2188 return true;
2189 }
2190 return false;
2191}
2192
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002193void InstructionCodeGeneratorX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002194 // Explicit clinit checks triggered by static invokes must have been pruned by
2195 // art::PrepareForRegisterAllocation.
2196 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002197
Mark Mendell09ed1a32015-03-25 08:30:06 -04002198 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2199 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002200 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002201
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002202 LocationSummary* locations = invoke->GetLocations();
Mark Mendell09ed1a32015-03-25 08:30:06 -04002203 codegen_->GenerateStaticOrDirectCall(
Nicolas Geoffray94015b92015-06-04 18:21:04 +01002204 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002205}
2206
2207void LocationsBuilderX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Nicolas Geoffraye5234232015-12-02 09:06:11 +00002208 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
2209 if (intrinsic.TryDispatch(invoke)) {
2210 return;
2211 }
2212
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002213 HandleInvoke(invoke);
2214}
2215
2216void LocationsBuilderX86::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002217 InvokeDexCallingConventionVisitorX86 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002218 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002219}
2220
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002221void InstructionCodeGeneratorX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002222 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2223 return;
2224 }
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002225
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002226 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002227 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002228}
2229
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002230void LocationsBuilderX86::VisitInvokeInterface(HInvokeInterface* invoke) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00002231 // This call to HandleInvoke allocates a temporary (core) register
2232 // which is also used to transfer the hidden argument from FP to
2233 // core register.
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002234 HandleInvoke(invoke);
2235 // Add the hidden argument.
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002236 invoke->GetLocations()->AddTemp(Location::FpuRegisterLocation(XMM7));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002237}
2238
2239void InstructionCodeGeneratorX86::VisitInvokeInterface(HInvokeInterface* invoke) {
2240 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain0d5a2812015-11-13 10:07:31 +00002241 LocationSummary* locations = invoke->GetLocations();
2242 Register temp = locations->GetTemp(0).AsRegister<Register>();
2243 XmmRegister hidden_reg = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002244 Location receiver = locations->InAt(0);
2245 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2246
Roland Levillain0d5a2812015-11-13 10:07:31 +00002247 // Set the hidden argument. This is safe to do this here, as XMM7
2248 // won't be modified thereafter, before the `call` instruction.
2249 DCHECK_EQ(XMM7, hidden_reg);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002250 __ movl(temp, Immediate(invoke->GetDexMethodIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00002251 __ movd(hidden_reg, temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002252
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002253 if (receiver.IsStackSlot()) {
2254 __ movl(temp, Address(ESP, receiver.GetStackIndex()));
Roland Levillain0d5a2812015-11-13 10:07:31 +00002255 // /* HeapReference<Class> */ temp = temp->klass_
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002256 __ movl(temp, Address(temp, class_offset));
2257 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00002258 // /* HeapReference<Class> */ temp = receiver->klass_
Roland Levillain271ab9c2014-11-27 15:23:57 +00002259 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002260 }
Roland Levillain4d027112015-07-01 15:41:14 +01002261 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +00002262 // Instead of simply (possibly) unpoisoning `temp` here, we should
2263 // emit a read barrier for the previous class reference load.
2264 // However this is not required in practice, as this is an
2265 // intermediate/temporary reference and because the current
2266 // concurrent copying collector keeps the from-space memory
2267 // intact/accessible until the end of the marking phase (the
2268 // concurrent copying collector may not in the future).
Roland Levillain4d027112015-07-01 15:41:14 +01002269 __ MaybeUnpoisonHeapReference(temp);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002270 // temp = temp->GetAddressOfIMT()
2271 __ movl(temp,
2272 Address(temp, mirror::Class::ImtPtrOffset(kX86PointerSize).Uint32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002273 // temp = temp->GetImtEntryAt(method_offset);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002274 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00002275 invoke->GetImtIndex(), kX86PointerSize));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002276 __ movl(temp, Address(temp, method_offset));
2277 // call temp->GetEntryPoint();
Roland Levillain0d5a2812015-11-13 10:07:31 +00002278 __ call(Address(temp,
Andreas Gampe542451c2016-07-26 09:02:02 -07002279 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize).Int32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002280
2281 DCHECK(!codegen_->IsLeafMethod());
2282 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2283}
2284
Orion Hodsonac141392017-01-13 11:53:47 +00002285void LocationsBuilderX86::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
2286 HandleInvoke(invoke);
2287}
2288
2289void InstructionCodeGeneratorX86::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
2290 codegen_->GenerateInvokePolymorphicCall(invoke);
2291}
2292
Roland Levillain88cb1752014-10-20 16:36:47 +01002293void LocationsBuilderX86::VisitNeg(HNeg* neg) {
2294 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002295 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall);
Roland Levillain88cb1752014-10-20 16:36:47 +01002296 switch (neg->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002297 case DataType::Type::kInt32:
2298 case DataType::Type::kInt64:
Roland Levillain88cb1752014-10-20 16:36:47 +01002299 locations->SetInAt(0, Location::RequiresRegister());
2300 locations->SetOut(Location::SameAsFirstInput());
2301 break;
2302
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002303 case DataType::Type::kFloat32:
Roland Levillain5368c212014-11-27 15:03:41 +00002304 locations->SetInAt(0, Location::RequiresFpuRegister());
2305 locations->SetOut(Location::SameAsFirstInput());
2306 locations->AddTemp(Location::RequiresRegister());
2307 locations->AddTemp(Location::RequiresFpuRegister());
2308 break;
2309
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002310 case DataType::Type::kFloat64:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002311 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00002312 locations->SetOut(Location::SameAsFirstInput());
2313 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01002314 break;
2315
2316 default:
2317 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2318 }
2319}
2320
2321void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) {
2322 LocationSummary* locations = neg->GetLocations();
2323 Location out = locations->Out();
2324 Location in = locations->InAt(0);
2325 switch (neg->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002326 case DataType::Type::kInt32:
Roland Levillain88cb1752014-10-20 16:36:47 +01002327 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002328 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002329 __ negl(out.AsRegister<Register>());
Roland Levillain88cb1752014-10-20 16:36:47 +01002330 break;
2331
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002332 case DataType::Type::kInt64:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002333 DCHECK(in.IsRegisterPair());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002334 DCHECK(in.Equals(out));
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002335 __ negl(out.AsRegisterPairLow<Register>());
2336 // Negation is similar to subtraction from zero. The least
2337 // significant byte triggers a borrow when it is different from
2338 // zero; to take it into account, add 1 to the most significant
2339 // byte if the carry flag (CF) is set to 1 after the first NEGL
2340 // operation.
2341 __ adcl(out.AsRegisterPairHigh<Register>(), Immediate(0));
2342 __ negl(out.AsRegisterPairHigh<Register>());
2343 break;
2344
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002345 case DataType::Type::kFloat32: {
Roland Levillain5368c212014-11-27 15:03:41 +00002346 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002347 Register constant = locations->GetTemp(0).AsRegister<Register>();
2348 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002349 // Implement float negation with an exclusive or with value
2350 // 0x80000000 (mask for bit 31, representing the sign of a
2351 // single-precision floating-point number).
2352 __ movl(constant, Immediate(INT32_C(0x80000000)));
2353 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002354 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00002355 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002356 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00002357
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002358 case DataType::Type::kFloat64: {
Roland Levillain5368c212014-11-27 15:03:41 +00002359 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002360 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00002361 // Implement double negation with an exclusive or with value
2362 // 0x8000000000000000 (mask for bit 63, representing the sign of
2363 // a double-precision floating-point number).
2364 __ LoadLongConstant(mask, INT64_C(0x8000000000000000));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002365 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01002366 break;
Roland Levillain5368c212014-11-27 15:03:41 +00002367 }
Roland Levillain88cb1752014-10-20 16:36:47 +01002368
2369 default:
2370 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2371 }
2372}
2373
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00002374void LocationsBuilderX86::VisitX86FPNeg(HX86FPNeg* neg) {
2375 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002376 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002377 DCHECK(DataType::IsFloatingPointType(neg->GetType()));
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00002378 locations->SetInAt(0, Location::RequiresFpuRegister());
2379 locations->SetInAt(1, Location::RequiresRegister());
2380 locations->SetOut(Location::SameAsFirstInput());
2381 locations->AddTemp(Location::RequiresFpuRegister());
2382}
2383
2384void InstructionCodeGeneratorX86::VisitX86FPNeg(HX86FPNeg* neg) {
2385 LocationSummary* locations = neg->GetLocations();
2386 Location out = locations->Out();
2387 DCHECK(locations->InAt(0).Equals(out));
2388
2389 Register constant_area = locations->InAt(1).AsRegister<Register>();
2390 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002391 if (neg->GetType() == DataType::Type::kFloat32) {
Nicolas Geoffray133719e2017-01-22 15:44:39 +00002392 __ movss(mask, codegen_->LiteralInt32Address(INT32_C(0x80000000),
2393 neg->GetBaseMethodAddress(),
2394 constant_area));
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00002395 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
2396 } else {
Nicolas Geoffray133719e2017-01-22 15:44:39 +00002397 __ movsd(mask, codegen_->LiteralInt64Address(INT64_C(0x8000000000000000),
2398 neg->GetBaseMethodAddress(),
2399 constant_area));
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00002400 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
2401 }
2402}
2403
Roland Levillaindff1f282014-11-05 14:15:05 +00002404void LocationsBuilderX86::VisitTypeConversion(HTypeConversion* conversion) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002405 DataType::Type result_type = conversion->GetResultType();
2406 DataType::Type input_type = conversion->GetInputType();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002407 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
2408 << input_type << " -> " << result_type;
Roland Levillain624279f2014-12-04 11:54:28 +00002409
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002410 // The float-to-long and double-to-long type conversions rely on a
2411 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00002412 LocationSummary::CallKind call_kind =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002413 ((input_type == DataType::Type::kFloat32 || input_type == DataType::Type::kFloat64)
2414 && result_type == DataType::Type::kInt64)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01002415 ? LocationSummary::kCallOnMainOnly
Roland Levillain624279f2014-12-04 11:54:28 +00002416 : LocationSummary::kNoCall;
2417 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002418 new (GetGraph()->GetAllocator()) LocationSummary(conversion, call_kind);
Roland Levillain624279f2014-12-04 11:54:28 +00002419
Roland Levillaindff1f282014-11-05 14:15:05 +00002420 switch (result_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002421 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002422 case DataType::Type::kInt8:
Roland Levillain51d3fc42014-11-13 14:11:42 +00002423 switch (input_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002424 case DataType::Type::kUint8:
2425 case DataType::Type::kInt8:
2426 case DataType::Type::kUint16:
2427 case DataType::Type::kInt16:
2428 case DataType::Type::kInt32:
2429 locations->SetInAt(0, Location::ByteRegisterOrConstant(ECX, conversion->InputAt(0)));
2430 // Make the output overlap to please the register allocator. This greatly simplifies
2431 // the validation of the linear scan implementation
2432 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2433 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002434 case DataType::Type::kInt64: {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002435 HInstruction* input = conversion->InputAt(0);
2436 Location input_location = input->IsConstant()
2437 ? Location::ConstantLocation(input->AsConstant())
2438 : Location::RegisterPairLocation(EAX, EDX);
2439 locations->SetInAt(0, input_location);
2440 // Make the output overlap to please the register allocator. This greatly simplifies
2441 // the validation of the linear scan implementation
2442 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2443 break;
2444 }
Roland Levillain51d3fc42014-11-13 14:11:42 +00002445
2446 default:
2447 LOG(FATAL) << "Unexpected type conversion from " << input_type
2448 << " to " << result_type;
2449 }
2450 break;
2451
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002452 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002453 case DataType::Type::kInt16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002454 DCHECK(DataType::IsIntegralType(input_type)) << input_type;
2455 locations->SetInAt(0, Location::Any());
2456 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Roland Levillain01a8d712014-11-14 16:27:39 +00002457 break;
2458
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002459 case DataType::Type::kInt32:
Roland Levillain946e1432014-11-11 17:35:19 +00002460 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002461 case DataType::Type::kInt64:
Roland Levillain946e1432014-11-11 17:35:19 +00002462 locations->SetInAt(0, Location::Any());
2463 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2464 break;
2465
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002466 case DataType::Type::kFloat32:
Roland Levillain3f8f9362014-12-02 17:45:01 +00002467 locations->SetInAt(0, Location::RequiresFpuRegister());
2468 locations->SetOut(Location::RequiresRegister());
2469 locations->AddTemp(Location::RequiresFpuRegister());
2470 break;
2471
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002472 case DataType::Type::kFloat64:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002473 locations->SetInAt(0, Location::RequiresFpuRegister());
2474 locations->SetOut(Location::RequiresRegister());
2475 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00002476 break;
2477
2478 default:
2479 LOG(FATAL) << "Unexpected type conversion from " << input_type
2480 << " to " << result_type;
2481 }
2482 break;
2483
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002484 case DataType::Type::kInt64:
Roland Levillaindff1f282014-11-05 14:15:05 +00002485 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002486 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002487 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002488 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002489 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002490 case DataType::Type::kInt16:
2491 case DataType::Type::kInt32:
Roland Levillaindff1f282014-11-05 14:15:05 +00002492 locations->SetInAt(0, Location::RegisterLocation(EAX));
2493 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
2494 break;
2495
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002496 case DataType::Type::kFloat32:
2497 case DataType::Type::kFloat64: {
Vladimir Marko949c91f2015-01-27 10:48:44 +00002498 InvokeRuntimeCallingConvention calling_convention;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002499 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0);
2500 locations->SetInAt(0, Location::FpuRegisterLocation(parameter));
2501
Vladimir Marko949c91f2015-01-27 10:48:44 +00002502 // The runtime helper puts the result in EAX, EDX.
2503 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Vladimir Marko949c91f2015-01-27 10:48:44 +00002504 }
Mark P Mendell966c3ae2015-01-27 15:45:27 +00002505 break;
Roland Levillaindff1f282014-11-05 14:15:05 +00002506
2507 default:
2508 LOG(FATAL) << "Unexpected type conversion from " << input_type
2509 << " to " << result_type;
2510 }
2511 break;
2512
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002513 case DataType::Type::kFloat32:
Roland Levillaincff13742014-11-17 14:32:17 +00002514 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002515 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002516 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002517 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002518 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002519 case DataType::Type::kInt16:
2520 case DataType::Type::kInt32:
Roland Levillaincff13742014-11-17 14:32:17 +00002521 locations->SetInAt(0, Location::RequiresRegister());
2522 locations->SetOut(Location::RequiresFpuRegister());
2523 break;
2524
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002525 case DataType::Type::kInt64:
Roland Levillain232ade02015-04-20 15:14:36 +01002526 locations->SetInAt(0, Location::Any());
2527 locations->SetOut(Location::Any());
Roland Levillain6d0e4832014-11-27 18:31:21 +00002528 break;
2529
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002530 case DataType::Type::kFloat64:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002531 locations->SetInAt(0, Location::RequiresFpuRegister());
2532 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002533 break;
2534
2535 default:
2536 LOG(FATAL) << "Unexpected type conversion from " << input_type
2537 << " to " << result_type;
Igor Murashkin2ffb7032017-11-08 13:35:21 -08002538 }
Roland Levillaincff13742014-11-17 14:32:17 +00002539 break;
2540
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002541 case DataType::Type::kFloat64:
Roland Levillaincff13742014-11-17 14:32:17 +00002542 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002543 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002544 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002545 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002546 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002547 case DataType::Type::kInt16:
2548 case DataType::Type::kInt32:
Roland Levillaincff13742014-11-17 14:32:17 +00002549 locations->SetInAt(0, Location::RequiresRegister());
2550 locations->SetOut(Location::RequiresFpuRegister());
2551 break;
2552
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002553 case DataType::Type::kInt64:
Roland Levillain232ade02015-04-20 15:14:36 +01002554 locations->SetInAt(0, Location::Any());
2555 locations->SetOut(Location::Any());
Roland Levillain647b9ed2014-11-27 12:06:00 +00002556 break;
2557
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002558 case DataType::Type::kFloat32:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002559 locations->SetInAt(0, Location::RequiresFpuRegister());
2560 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002561 break;
2562
2563 default:
2564 LOG(FATAL) << "Unexpected type conversion from " << input_type
2565 << " to " << result_type;
2566 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002567 break;
2568
2569 default:
2570 LOG(FATAL) << "Unexpected type conversion from " << input_type
2571 << " to " << result_type;
2572 }
2573}
2574
2575void InstructionCodeGeneratorX86::VisitTypeConversion(HTypeConversion* conversion) {
2576 LocationSummary* locations = conversion->GetLocations();
2577 Location out = locations->Out();
2578 Location in = locations->InAt(0);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002579 DataType::Type result_type = conversion->GetResultType();
2580 DataType::Type input_type = conversion->GetInputType();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002581 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
2582 << input_type << " -> " << result_type;
Roland Levillaindff1f282014-11-05 14:15:05 +00002583 switch (result_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002584 case DataType::Type::kUint8:
2585 switch (input_type) {
2586 case DataType::Type::kInt8:
2587 case DataType::Type::kUint16:
2588 case DataType::Type::kInt16:
2589 case DataType::Type::kInt32:
2590 if (in.IsRegister()) {
2591 __ movzxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>());
2592 } else {
2593 DCHECK(in.GetConstant()->IsIntConstant());
2594 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
2595 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint8_t>(value)));
2596 }
2597 break;
2598 case DataType::Type::kInt64:
2599 if (in.IsRegisterPair()) {
2600 __ movzxb(out.AsRegister<Register>(), in.AsRegisterPairLow<ByteRegister>());
2601 } else {
2602 DCHECK(in.GetConstant()->IsLongConstant());
2603 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2604 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint8_t>(value)));
2605 }
2606 break;
2607
2608 default:
2609 LOG(FATAL) << "Unexpected type conversion from " << input_type
2610 << " to " << result_type;
2611 }
2612 break;
2613
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002614 case DataType::Type::kInt8:
Roland Levillain51d3fc42014-11-13 14:11:42 +00002615 switch (input_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002616 case DataType::Type::kUint8:
2617 case DataType::Type::kUint16:
2618 case DataType::Type::kInt16:
2619 case DataType::Type::kInt32:
2620 if (in.IsRegister()) {
2621 __ movsxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>());
2622 } else {
2623 DCHECK(in.GetConstant()->IsIntConstant());
2624 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
2625 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
2626 }
2627 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002628 case DataType::Type::kInt64:
Vladimir Markob52bbde2016-02-12 12:06:05 +00002629 if (in.IsRegisterPair()) {
2630 __ movsxb(out.AsRegister<Register>(), in.AsRegisterPairLow<ByteRegister>());
2631 } else {
2632 DCHECK(in.GetConstant()->IsLongConstant());
2633 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2634 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
2635 }
2636 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002637
2638 default:
2639 LOG(FATAL) << "Unexpected type conversion from " << input_type
2640 << " to " << result_type;
2641 }
2642 break;
2643
2644 case DataType::Type::kUint16:
2645 switch (input_type) {
2646 case DataType::Type::kInt8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002647 case DataType::Type::kInt16:
2648 case DataType::Type::kInt32:
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00002649 if (in.IsRegister()) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002650 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
2651 } else if (in.IsStackSlot()) {
2652 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00002653 } else {
2654 DCHECK(in.GetConstant()->IsIntConstant());
2655 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002656 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
2657 }
2658 break;
2659 case DataType::Type::kInt64:
2660 if (in.IsRegisterPair()) {
2661 __ movzxw(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
2662 } else if (in.IsDoubleStackSlot()) {
2663 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
2664 } else {
2665 DCHECK(in.GetConstant()->IsLongConstant());
2666 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2667 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00002668 }
Roland Levillain51d3fc42014-11-13 14:11:42 +00002669 break;
2670
2671 default:
2672 LOG(FATAL) << "Unexpected type conversion from " << input_type
2673 << " to " << result_type;
2674 }
2675 break;
2676
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002677 case DataType::Type::kInt16:
Roland Levillain01a8d712014-11-14 16:27:39 +00002678 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002679 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002680 case DataType::Type::kInt32:
Roland Levillain01a8d712014-11-14 16:27:39 +00002681 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002682 __ movsxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain01a8d712014-11-14 16:27:39 +00002683 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002684 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain01a8d712014-11-14 16:27:39 +00002685 } else {
2686 DCHECK(in.GetConstant()->IsIntConstant());
2687 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002688 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
Roland Levillain01a8d712014-11-14 16:27:39 +00002689 }
2690 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002691 case DataType::Type::kInt64:
2692 if (in.IsRegisterPair()) {
2693 __ movsxw(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
2694 } else if (in.IsDoubleStackSlot()) {
2695 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
2696 } else {
2697 DCHECK(in.GetConstant()->IsLongConstant());
2698 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
2699 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
2700 }
2701 break;
Roland Levillain01a8d712014-11-14 16:27:39 +00002702
2703 default:
2704 LOG(FATAL) << "Unexpected type conversion from " << input_type
2705 << " to " << result_type;
2706 }
2707 break;
2708
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002709 case DataType::Type::kInt32:
Roland Levillain946e1432014-11-11 17:35:19 +00002710 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002711 case DataType::Type::kInt64:
Roland Levillain946e1432014-11-11 17:35:19 +00002712 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002713 __ movl(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00002714 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002715 __ movl(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain946e1432014-11-11 17:35:19 +00002716 } else {
2717 DCHECK(in.IsConstant());
2718 DCHECK(in.GetConstant()->IsLongConstant());
2719 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002720 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00002721 }
2722 break;
2723
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002724 case DataType::Type::kFloat32: {
Roland Levillain3f8f9362014-12-02 17:45:01 +00002725 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2726 Register output = out.AsRegister<Register>();
2727 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002728 NearLabel done, nan;
Roland Levillain3f8f9362014-12-02 17:45:01 +00002729
2730 __ movl(output, Immediate(kPrimIntMax));
2731 // temp = int-to-float(output)
2732 __ cvtsi2ss(temp, output);
2733 // if input >= temp goto done
2734 __ comiss(input, temp);
2735 __ j(kAboveEqual, &done);
2736 // if input == NaN goto nan
2737 __ j(kUnordered, &nan);
2738 // output = float-to-int-truncate(input)
2739 __ cvttss2si(output, input);
2740 __ jmp(&done);
2741 __ Bind(&nan);
2742 // output = 0
2743 __ xorl(output, output);
2744 __ Bind(&done);
2745 break;
2746 }
2747
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002748 case DataType::Type::kFloat64: {
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002749 XmmRegister input = in.AsFpuRegister<XmmRegister>();
2750 Register output = out.AsRegister<Register>();
2751 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Mark Mendell0c9497d2015-08-21 09:30:05 -04002752 NearLabel done, nan;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002753
2754 __ movl(output, Immediate(kPrimIntMax));
2755 // temp = int-to-double(output)
2756 __ cvtsi2sd(temp, output);
2757 // if input >= temp goto done
2758 __ comisd(input, temp);
2759 __ j(kAboveEqual, &done);
2760 // if input == NaN goto nan
2761 __ j(kUnordered, &nan);
2762 // output = double-to-int-truncate(input)
2763 __ cvttsd2si(output, input);
2764 __ jmp(&done);
2765 __ Bind(&nan);
2766 // output = 0
2767 __ xorl(output, output);
2768 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00002769 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002770 }
Roland Levillain946e1432014-11-11 17:35:19 +00002771
2772 default:
2773 LOG(FATAL) << "Unexpected type conversion from " << input_type
2774 << " to " << result_type;
2775 }
2776 break;
2777
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002778 case DataType::Type::kInt64:
Roland Levillaindff1f282014-11-05 14:15:05 +00002779 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002780 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002781 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002782 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002783 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002784 case DataType::Type::kInt16:
2785 case DataType::Type::kInt32:
Roland Levillaindff1f282014-11-05 14:15:05 +00002786 DCHECK_EQ(out.AsRegisterPairLow<Register>(), EAX);
2787 DCHECK_EQ(out.AsRegisterPairHigh<Register>(), EDX);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002788 DCHECK_EQ(in.AsRegister<Register>(), EAX);
Roland Levillaindff1f282014-11-05 14:15:05 +00002789 __ cdq();
2790 break;
2791
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002792 case DataType::Type::kFloat32:
Serban Constantinescuba45db02016-07-12 22:53:02 +01002793 codegen_->InvokeRuntime(kQuickF2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002794 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
Roland Levillain624279f2014-12-04 11:54:28 +00002795 break;
2796
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002797 case DataType::Type::kFloat64:
Serban Constantinescuba45db02016-07-12 22:53:02 +01002798 codegen_->InvokeRuntime(kQuickD2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002799 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
Roland Levillaindff1f282014-11-05 14:15:05 +00002800 break;
2801
2802 default:
2803 LOG(FATAL) << "Unexpected type conversion from " << input_type
2804 << " to " << result_type;
2805 }
2806 break;
2807
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002808 case DataType::Type::kFloat32:
Roland Levillaincff13742014-11-17 14:32:17 +00002809 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002810 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002811 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002812 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002813 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002814 case DataType::Type::kInt16:
2815 case DataType::Type::kInt32:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002816 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002817 break;
2818
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002819 case DataType::Type::kInt64: {
Roland Levillain232ade02015-04-20 15:14:36 +01002820 size_t adjustment = 0;
Roland Levillain6d0e4832014-11-27 18:31:21 +00002821
Roland Levillain232ade02015-04-20 15:14:36 +01002822 // Create stack space for the call to
2823 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstps below.
2824 // TODO: enhance register allocator to ask for stack temporaries.
2825 if (!in.IsDoubleStackSlot() || !out.IsStackSlot()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002826 adjustment = DataType::Size(DataType::Type::kInt64);
Roland Levillain232ade02015-04-20 15:14:36 +01002827 __ subl(ESP, Immediate(adjustment));
2828 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002829
Roland Levillain232ade02015-04-20 15:14:36 +01002830 // Load the value to the FP stack, using temporaries if needed.
2831 PushOntoFPStack(in, 0, adjustment, false, true);
2832
2833 if (out.IsStackSlot()) {
2834 __ fstps(Address(ESP, out.GetStackIndex() + adjustment));
2835 } else {
2836 __ fstps(Address(ESP, 0));
2837 Location stack_temp = Location::StackSlot(0);
2838 codegen_->Move32(out, stack_temp);
2839 }
2840
2841 // Remove the temporary stack space we allocated.
2842 if (adjustment != 0) {
2843 __ addl(ESP, Immediate(adjustment));
2844 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002845 break;
2846 }
2847
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002848 case DataType::Type::kFloat64:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002849 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002850 break;
2851
2852 default:
2853 LOG(FATAL) << "Unexpected type conversion from " << input_type
2854 << " to " << result_type;
Igor Murashkin2ffb7032017-11-08 13:35:21 -08002855 }
Roland Levillaincff13742014-11-17 14:32:17 +00002856 break;
2857
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002858 case DataType::Type::kFloat64:
Roland Levillaincff13742014-11-17 14:32:17 +00002859 switch (input_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002860 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002861 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002862 case DataType::Type::kInt8:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002863 case DataType::Type::kUint16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002864 case DataType::Type::kInt16:
2865 case DataType::Type::kInt32:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002866 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002867 break;
2868
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002869 case DataType::Type::kInt64: {
Roland Levillain232ade02015-04-20 15:14:36 +01002870 size_t adjustment = 0;
Roland Levillain647b9ed2014-11-27 12:06:00 +00002871
Roland Levillain232ade02015-04-20 15:14:36 +01002872 // Create stack space for the call to
2873 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstpl below.
2874 // TODO: enhance register allocator to ask for stack temporaries.
2875 if (!in.IsDoubleStackSlot() || !out.IsDoubleStackSlot()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002876 adjustment = DataType::Size(DataType::Type::kInt64);
Roland Levillain232ade02015-04-20 15:14:36 +01002877 __ subl(ESP, Immediate(adjustment));
2878 }
2879
2880 // Load the value to the FP stack, using temporaries if needed.
2881 PushOntoFPStack(in, 0, adjustment, false, true);
2882
2883 if (out.IsDoubleStackSlot()) {
2884 __ fstpl(Address(ESP, out.GetStackIndex() + adjustment));
2885 } else {
2886 __ fstpl(Address(ESP, 0));
2887 Location stack_temp = Location::DoubleStackSlot(0);
2888 codegen_->Move64(out, stack_temp);
2889 }
2890
2891 // Remove the temporary stack space we allocated.
2892 if (adjustment != 0) {
2893 __ addl(ESP, Immediate(adjustment));
2894 }
Roland Levillain647b9ed2014-11-27 12:06:00 +00002895 break;
2896 }
2897
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002898 case DataType::Type::kFloat32:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002899 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002900 break;
2901
2902 default:
2903 LOG(FATAL) << "Unexpected type conversion from " << input_type
2904 << " to " << result_type;
Igor Murashkin2ffb7032017-11-08 13:35:21 -08002905 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002906 break;
2907
2908 default:
2909 LOG(FATAL) << "Unexpected type conversion from " << input_type
2910 << " to " << result_type;
2911 }
2912}
2913
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002914void LocationsBuilderX86::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002915 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002916 new (GetGraph()->GetAllocator()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002917 switch (add->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002918 case DataType::Type::kInt32: {
Mark Mendell09b84632015-02-13 17:48:38 -05002919 locations->SetInAt(0, Location::RequiresRegister());
2920 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
2921 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2922 break;
2923 }
2924
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002925 case DataType::Type::kInt64: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002926 locations->SetInAt(0, Location::RequiresRegister());
2927 locations->SetInAt(1, Location::Any());
2928 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002929 break;
2930 }
2931
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002932 case DataType::Type::kFloat32:
2933 case DataType::Type::kFloat64: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002934 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00002935 if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
2936 DCHECK(add->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00002937 } else if (add->InputAt(1)->IsConstant()) {
2938 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00002939 } else {
2940 locations->SetInAt(1, Location::Any());
2941 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002942 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002943 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002944 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002945
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002946 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002947 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
2948 break;
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002949 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002950}
2951
2952void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) {
2953 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002954 Location first = locations->InAt(0);
2955 Location second = locations->InAt(1);
Mark Mendell09b84632015-02-13 17:48:38 -05002956 Location out = locations->Out();
2957
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002958 switch (add->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002959 case DataType::Type::kInt32: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002960 if (second.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002961 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2962 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
Mark Mendell33bf2452015-05-27 10:08:24 -04002963 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2964 __ addl(out.AsRegister<Register>(), first.AsRegister<Register>());
Mark Mendell09b84632015-02-13 17:48:38 -05002965 } else {
2966 __ leal(out.AsRegister<Register>(), Address(
2967 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2968 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002969 } else if (second.IsConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002970 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2971 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2972 __ addl(out.AsRegister<Register>(), Immediate(value));
2973 } else {
2974 __ leal(out.AsRegister<Register>(), Address(first.AsRegister<Register>(), value));
2975 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002976 } else {
Mark Mendell09b84632015-02-13 17:48:38 -05002977 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002978 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002979 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002980 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002981 }
2982
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002983 case DataType::Type::kInt64: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00002984 if (second.IsRegisterPair()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002985 __ addl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
2986 __ adcl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002987 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002988 __ addl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
2989 __ adcl(first.AsRegisterPairHigh<Register>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002990 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002991 } else {
2992 DCHECK(second.IsConstant()) << second;
2993 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2994 __ addl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
2995 __ adcl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002996 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002997 break;
2998 }
2999
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003000 case DataType::Type::kFloat32: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003001 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003002 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Mark Mendell0616ae02015-04-17 12:49:27 -04003003 } else if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
3004 HX86LoadFromConstantTable* const_area = add->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003005 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003006 __ addss(first.AsFpuRegister<XmmRegister>(),
3007 codegen_->LiteralFloatAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003008 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3009 const_area->GetBaseMethodAddress(),
3010 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark Mendell0616ae02015-04-17 12:49:27 -04003011 } else {
3012 DCHECK(second.IsStackSlot());
3013 __ addss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003014 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003015 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003016 }
3017
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003018 case DataType::Type::kFloat64: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003019 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003020 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Mark Mendell0616ae02015-04-17 12:49:27 -04003021 } else if (add->InputAt(1)->IsX86LoadFromConstantTable()) {
3022 HX86LoadFromConstantTable* const_area = add->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003023 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003024 __ addsd(first.AsFpuRegister<XmmRegister>(),
3025 codegen_->LiteralDoubleAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003026 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3027 const_area->GetBaseMethodAddress(),
3028 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark Mendell0616ae02015-04-17 12:49:27 -04003029 } else {
3030 DCHECK(second.IsDoubleStackSlot());
3031 __ addsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003032 }
3033 break;
3034 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003035
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003036 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01003037 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00003038 }
3039}
3040
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003041void LocationsBuilderX86::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003042 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003043 new (GetGraph()->GetAllocator()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003044 switch (sub->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003045 case DataType::Type::kInt32:
3046 case DataType::Type::kInt64: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003047 locations->SetInAt(0, Location::RequiresRegister());
3048 locations->SetInAt(1, Location::Any());
3049 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003050 break;
3051 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003052 case DataType::Type::kFloat32:
3053 case DataType::Type::kFloat64: {
Calin Juravle11351682014-10-23 15:38:15 +01003054 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003055 if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3056 DCHECK(sub->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003057 } else if (sub->InputAt(1)->IsConstant()) {
3058 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003059 } else {
3060 locations->SetInAt(1, Location::Any());
3061 }
Calin Juravle11351682014-10-23 15:38:15 +01003062 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003063 break;
Calin Juravle11351682014-10-23 15:38:15 +01003064 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003065
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003066 default:
Calin Juravle11351682014-10-23 15:38:15 +01003067 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003068 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003069}
3070
3071void InstructionCodeGeneratorX86::VisitSub(HSub* sub) {
3072 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003073 Location first = locations->InAt(0);
3074 Location second = locations->InAt(1);
Calin Juravle11351682014-10-23 15:38:15 +01003075 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003076 switch (sub->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003077 case DataType::Type::kInt32: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003078 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003079 __ subl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003080 } else if (second.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003081 __ subl(first.AsRegister<Register>(),
3082 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003083 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003084 __ subl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003085 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003086 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003087 }
3088
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003089 case DataType::Type::kInt64: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003090 if (second.IsRegisterPair()) {
Calin Juravle11351682014-10-23 15:38:15 +01003091 __ subl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
3092 __ sbbl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003093 } else if (second.IsDoubleStackSlot()) {
Calin Juravle11351682014-10-23 15:38:15 +01003094 __ subl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003095 __ sbbl(first.AsRegisterPairHigh<Register>(),
3096 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003097 } else {
3098 DCHECK(second.IsConstant()) << second;
3099 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
3100 __ subl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
3101 __ sbbl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003102 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003103 break;
3104 }
3105
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003106 case DataType::Type::kFloat32: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003107 if (second.IsFpuRegister()) {
3108 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3109 } else if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3110 HX86LoadFromConstantTable* const_area = sub->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003111 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003112 __ subss(first.AsFpuRegister<XmmRegister>(),
3113 codegen_->LiteralFloatAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003114 const_area->GetConstant()->AsFloatConstant()->GetValue(),
3115 const_area->GetBaseMethodAddress(),
3116 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark Mendell0616ae02015-04-17 12:49:27 -04003117 } else {
3118 DCHECK(second.IsStackSlot());
3119 __ subss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3120 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003121 break;
Calin Juravle11351682014-10-23 15:38:15 +01003122 }
3123
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003124 case DataType::Type::kFloat64: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003125 if (second.IsFpuRegister()) {
3126 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3127 } else if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
3128 HX86LoadFromConstantTable* const_area = sub->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003129 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003130 __ subsd(first.AsFpuRegister<XmmRegister>(),
3131 codegen_->LiteralDoubleAddress(
3132 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003133 const_area->GetBaseMethodAddress(),
Mark Mendell0616ae02015-04-17 12:49:27 -04003134 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3135 } else {
3136 DCHECK(second.IsDoubleStackSlot());
3137 __ subsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3138 }
Calin Juravle11351682014-10-23 15:38:15 +01003139 break;
3140 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003141
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003142 default:
Calin Juravle11351682014-10-23 15:38:15 +01003143 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003144 }
3145}
3146
Calin Juravle34bacdf2014-10-07 20:23:36 +01003147void LocationsBuilderX86::VisitMul(HMul* mul) {
3148 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003149 new (GetGraph()->GetAllocator()) LocationSummary(mul, LocationSummary::kNoCall);
Calin Juravle34bacdf2014-10-07 20:23:36 +01003150 switch (mul->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003151 case DataType::Type::kInt32:
Calin Juravle34bacdf2014-10-07 20:23:36 +01003152 locations->SetInAt(0, Location::RequiresRegister());
3153 locations->SetInAt(1, Location::Any());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003154 if (mul->InputAt(1)->IsIntConstant()) {
3155 // Can use 3 operand multiply.
3156 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3157 } else {
3158 locations->SetOut(Location::SameAsFirstInput());
3159 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003160 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003161 case DataType::Type::kInt64: {
Calin Juravle34bacdf2014-10-07 20:23:36 +01003162 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003163 locations->SetInAt(1, Location::Any());
3164 locations->SetOut(Location::SameAsFirstInput());
3165 // Needed for imul on 32bits with 64bits output.
3166 locations->AddTemp(Location::RegisterLocation(EAX));
3167 locations->AddTemp(Location::RegisterLocation(EDX));
3168 break;
3169 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003170 case DataType::Type::kFloat32:
3171 case DataType::Type::kFloat64: {
Calin Juravleb5bfa962014-10-21 18:02:24 +01003172 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003173 if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3174 DCHECK(mul->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003175 } else if (mul->InputAt(1)->IsConstant()) {
3176 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003177 } else {
3178 locations->SetInAt(1, Location::Any());
3179 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003180 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003181 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003182 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003183
3184 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003185 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003186 }
3187}
3188
3189void InstructionCodeGeneratorX86::VisitMul(HMul* mul) {
3190 LocationSummary* locations = mul->GetLocations();
3191 Location first = locations->InAt(0);
3192 Location second = locations->InAt(1);
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003193 Location out = locations->Out();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003194
3195 switch (mul->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003196 case DataType::Type::kInt32:
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003197 // The constant may have ended up in a register, so test explicitly to avoid
3198 // problems where the output may not be the same as the first operand.
3199 if (mul->InputAt(1)->IsIntConstant()) {
3200 Immediate imm(mul->InputAt(1)->AsIntConstant()->GetValue());
3201 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm);
3202 } else if (second.IsRegister()) {
3203 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00003204 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003205 } else {
3206 DCHECK(second.IsStackSlot());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04003207 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00003208 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01003209 }
3210 break;
Calin Juravle34bacdf2014-10-07 20:23:36 +01003211
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003212 case DataType::Type::kInt64: {
Calin Juravle34bacdf2014-10-07 20:23:36 +01003213 Register in1_hi = first.AsRegisterPairHigh<Register>();
3214 Register in1_lo = first.AsRegisterPairLow<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003215 Register eax = locations->GetTemp(0).AsRegister<Register>();
3216 Register edx = locations->GetTemp(1).AsRegister<Register>();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003217
3218 DCHECK_EQ(EAX, eax);
3219 DCHECK_EQ(EDX, edx);
3220
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003221 // input: in1 - 64 bits, in2 - 64 bits.
Calin Juravle34bacdf2014-10-07 20:23:36 +01003222 // output: in1
3223 // formula: in1.hi : in1.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
3224 // parts: in1.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
3225 // parts: in1.lo = (in1.lo * in2.lo)[31:0]
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003226 if (second.IsConstant()) {
3227 DCHECK(second.GetConstant()->IsLongConstant());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003228
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003229 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
3230 int32_t low_value = Low32Bits(value);
3231 int32_t high_value = High32Bits(value);
3232 Immediate low(low_value);
3233 Immediate high(high_value);
3234
3235 __ movl(eax, high);
3236 // eax <- in1.lo * in2.hi
3237 __ imull(eax, in1_lo);
3238 // in1.hi <- in1.hi * in2.lo
3239 __ imull(in1_hi, low);
3240 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3241 __ addl(in1_hi, eax);
3242 // move in2_lo to eax to prepare for double precision
3243 __ movl(eax, low);
3244 // edx:eax <- in1.lo * in2.lo
3245 __ mull(in1_lo);
3246 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3247 __ addl(in1_hi, edx);
3248 // in1.lo <- (in1.lo * in2.lo)[31:0];
3249 __ movl(in1_lo, eax);
3250 } else if (second.IsRegisterPair()) {
3251 Register in2_hi = second.AsRegisterPairHigh<Register>();
3252 Register in2_lo = second.AsRegisterPairLow<Register>();
3253
3254 __ movl(eax, in2_hi);
3255 // eax <- in1.lo * in2.hi
3256 __ imull(eax, in1_lo);
3257 // in1.hi <- in1.hi * in2.lo
3258 __ imull(in1_hi, in2_lo);
3259 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3260 __ addl(in1_hi, eax);
3261 // move in1_lo to eax to prepare for double precision
3262 __ movl(eax, in1_lo);
3263 // edx:eax <- in1.lo * in2.lo
3264 __ mull(in2_lo);
3265 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3266 __ addl(in1_hi, edx);
3267 // in1.lo <- (in1.lo * in2.lo)[31:0];
3268 __ movl(in1_lo, eax);
3269 } else {
3270 DCHECK(second.IsDoubleStackSlot()) << second;
3271 Address in2_hi(ESP, second.GetHighStackIndex(kX86WordSize));
3272 Address in2_lo(ESP, second.GetStackIndex());
3273
3274 __ movl(eax, in2_hi);
3275 // eax <- in1.lo * in2.hi
3276 __ imull(eax, in1_lo);
3277 // in1.hi <- in1.hi * in2.lo
3278 __ imull(in1_hi, in2_lo);
3279 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3280 __ addl(in1_hi, eax);
3281 // move in1_lo to eax to prepare for double precision
3282 __ movl(eax, in1_lo);
3283 // edx:eax <- in1.lo * in2.lo
3284 __ mull(in2_lo);
3285 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3286 __ addl(in1_hi, edx);
3287 // in1.lo <- (in1.lo * in2.lo)[31:0];
3288 __ movl(in1_lo, eax);
3289 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003290
3291 break;
3292 }
3293
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003294 case DataType::Type::kFloat32: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003295 DCHECK(first.Equals(locations->Out()));
3296 if (second.IsFpuRegister()) {
3297 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3298 } else if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3299 HX86LoadFromConstantTable* const_area = mul->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003300 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003301 __ mulss(first.AsFpuRegister<XmmRegister>(),
3302 codegen_->LiteralFloatAddress(
3303 const_area->GetConstant()->AsFloatConstant()->GetValue(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003304 const_area->GetBaseMethodAddress(),
Mark Mendell0616ae02015-04-17 12:49:27 -04003305 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3306 } else {
3307 DCHECK(second.IsStackSlot());
3308 __ mulss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3309 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003310 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003311 }
3312
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003313 case DataType::Type::kFloat64: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003314 DCHECK(first.Equals(locations->Out()));
3315 if (second.IsFpuRegister()) {
3316 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3317 } else if (mul->InputAt(1)->IsX86LoadFromConstantTable()) {
3318 HX86LoadFromConstantTable* const_area = mul->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003319 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003320 __ mulsd(first.AsFpuRegister<XmmRegister>(),
3321 codegen_->LiteralDoubleAddress(
3322 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003323 const_area->GetBaseMethodAddress(),
Mark Mendell0616ae02015-04-17 12:49:27 -04003324 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3325 } else {
3326 DCHECK(second.IsDoubleStackSlot());
3327 __ mulsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3328 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003329 break;
3330 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003331
3332 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003333 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003334 }
3335}
3336
Roland Levillain232ade02015-04-20 15:14:36 +01003337void InstructionCodeGeneratorX86::PushOntoFPStack(Location source,
3338 uint32_t temp_offset,
3339 uint32_t stack_adjustment,
3340 bool is_fp,
3341 bool is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003342 if (source.IsStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01003343 DCHECK(!is_wide);
3344 if (is_fp) {
3345 __ flds(Address(ESP, source.GetStackIndex() + stack_adjustment));
3346 } else {
3347 __ filds(Address(ESP, source.GetStackIndex() + stack_adjustment));
3348 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003349 } else if (source.IsDoubleStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01003350 DCHECK(is_wide);
3351 if (is_fp) {
3352 __ fldl(Address(ESP, source.GetStackIndex() + stack_adjustment));
3353 } else {
3354 __ fildl(Address(ESP, source.GetStackIndex() + stack_adjustment));
3355 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003356 } else {
3357 // Write the value to the temporary location on the stack and load to FP stack.
Roland Levillain232ade02015-04-20 15:14:36 +01003358 if (!is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003359 Location stack_temp = Location::StackSlot(temp_offset);
3360 codegen_->Move32(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01003361 if (is_fp) {
3362 __ flds(Address(ESP, temp_offset));
3363 } else {
3364 __ filds(Address(ESP, temp_offset));
3365 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003366 } else {
3367 Location stack_temp = Location::DoubleStackSlot(temp_offset);
3368 codegen_->Move64(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01003369 if (is_fp) {
3370 __ fldl(Address(ESP, temp_offset));
3371 } else {
3372 __ fildl(Address(ESP, temp_offset));
3373 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003374 }
3375 }
3376}
3377
3378void InstructionCodeGeneratorX86::GenerateRemFP(HRem *rem) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003379 DataType::Type type = rem->GetResultType();
3380 bool is_float = type == DataType::Type::kFloat32;
3381 size_t elem_size = DataType::Size(type);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003382 LocationSummary* locations = rem->GetLocations();
3383 Location first = locations->InAt(0);
3384 Location second = locations->InAt(1);
3385 Location out = locations->Out();
3386
3387 // Create stack space for 2 elements.
3388 // TODO: enhance register allocator to ask for stack temporaries.
3389 __ subl(ESP, Immediate(2 * elem_size));
3390
3391 // Load the values to the FP stack in reverse order, using temporaries if needed.
Roland Levillain232ade02015-04-20 15:14:36 +01003392 const bool is_wide = !is_float;
3393 PushOntoFPStack(second, elem_size, 2 * elem_size, /* is_fp */ true, is_wide);
3394 PushOntoFPStack(first, 0, 2 * elem_size, /* is_fp */ true, is_wide);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003395
3396 // Loop doing FPREM until we stabilize.
Mark Mendell0c9497d2015-08-21 09:30:05 -04003397 NearLabel retry;
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003398 __ Bind(&retry);
3399 __ fprem();
3400
3401 // Move FP status to AX.
3402 __ fstsw();
3403
3404 // And see if the argument reduction is complete. This is signaled by the
3405 // C2 FPU flag bit set to 0.
3406 __ andl(EAX, Immediate(kC2ConditionMask));
3407 __ j(kNotEqual, &retry);
3408
3409 // We have settled on the final value. Retrieve it into an XMM register.
3410 // Store FP top of stack to real stack.
3411 if (is_float) {
3412 __ fsts(Address(ESP, 0));
3413 } else {
3414 __ fstl(Address(ESP, 0));
3415 }
3416
3417 // Pop the 2 items from the FP stack.
3418 __ fucompp();
3419
3420 // Load the value from the stack into an XMM register.
3421 DCHECK(out.IsFpuRegister()) << out;
3422 if (is_float) {
3423 __ movss(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
3424 } else {
3425 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
3426 }
3427
3428 // And remove the temporary stack space we allocated.
3429 __ addl(ESP, Immediate(2 * elem_size));
3430}
3431
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003432
3433void InstructionCodeGeneratorX86::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
3434 DCHECK(instruction->IsDiv() || instruction->IsRem());
3435
3436 LocationSummary* locations = instruction->GetLocations();
3437 DCHECK(locations->InAt(1).IsConstant());
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003438 DCHECK(locations->InAt(1).GetConstant()->IsIntConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003439
3440 Register out_register = locations->Out().AsRegister<Register>();
3441 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003442 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003443
3444 DCHECK(imm == 1 || imm == -1);
3445
3446 if (instruction->IsRem()) {
3447 __ xorl(out_register, out_register);
3448 } else {
3449 __ movl(out_register, input_register);
3450 if (imm == -1) {
3451 __ negl(out_register);
3452 }
3453 }
3454}
3455
3456
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003457void InstructionCodeGeneratorX86::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003458 LocationSummary* locations = instruction->GetLocations();
3459
3460 Register out_register = locations->Out().AsRegister<Register>();
3461 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003462 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003463 DCHECK(IsPowerOfTwo(AbsOrMin(imm)));
3464 uint32_t abs_imm = static_cast<uint32_t>(AbsOrMin(imm));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003465
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003466 Register num = locations->GetTemp(0).AsRegister<Register>();
3467
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003468 __ leal(num, Address(input_register, abs_imm - 1));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003469 __ testl(input_register, input_register);
3470 __ cmovl(kGreaterEqual, num, input_register);
3471 int shift = CTZ(imm);
3472 __ sarl(num, Immediate(shift));
3473
3474 if (imm < 0) {
3475 __ negl(num);
3476 }
3477
3478 __ movl(out_register, num);
3479}
3480
3481void InstructionCodeGeneratorX86::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
3482 DCHECK(instruction->IsDiv() || instruction->IsRem());
3483
3484 LocationSummary* locations = instruction->GetLocations();
3485 int imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
3486
3487 Register eax = locations->InAt(0).AsRegister<Register>();
3488 Register out = locations->Out().AsRegister<Register>();
3489 Register num;
3490 Register edx;
3491
3492 if (instruction->IsDiv()) {
3493 edx = locations->GetTemp(0).AsRegister<Register>();
3494 num = locations->GetTemp(1).AsRegister<Register>();
3495 } else {
3496 edx = locations->Out().AsRegister<Register>();
3497 num = locations->GetTemp(0).AsRegister<Register>();
3498 }
3499
3500 DCHECK_EQ(EAX, eax);
3501 DCHECK_EQ(EDX, edx);
3502 if (instruction->IsDiv()) {
3503 DCHECK_EQ(EAX, out);
3504 } else {
3505 DCHECK_EQ(EDX, out);
3506 }
3507
3508 int64_t magic;
3509 int shift;
3510 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
3511
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003512 // Save the numerator.
3513 __ movl(num, eax);
3514
3515 // EAX = magic
3516 __ movl(eax, Immediate(magic));
3517
3518 // EDX:EAX = magic * numerator
3519 __ imull(num);
3520
3521 if (imm > 0 && magic < 0) {
3522 // EDX += num
3523 __ addl(edx, num);
3524 } else if (imm < 0 && magic > 0) {
3525 __ subl(edx, num);
3526 }
3527
3528 // Shift if needed.
3529 if (shift != 0) {
3530 __ sarl(edx, Immediate(shift));
3531 }
3532
3533 // EDX += 1 if EDX < 0
3534 __ movl(eax, edx);
3535 __ shrl(edx, Immediate(31));
3536 __ addl(edx, eax);
3537
3538 if (instruction->IsRem()) {
3539 __ movl(eax, num);
3540 __ imull(edx, Immediate(imm));
3541 __ subl(eax, edx);
3542 __ movl(edx, eax);
3543 } else {
3544 __ movl(eax, edx);
3545 }
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003546}
3547
Calin Juravlebacfec32014-11-14 15:54:36 +00003548void InstructionCodeGeneratorX86::GenerateDivRemIntegral(HBinaryOperation* instruction) {
3549 DCHECK(instruction->IsDiv() || instruction->IsRem());
3550
3551 LocationSummary* locations = instruction->GetLocations();
3552 Location out = locations->Out();
3553 Location first = locations->InAt(0);
3554 Location second = locations->InAt(1);
3555 bool is_div = instruction->IsDiv();
3556
3557 switch (instruction->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003558 case DataType::Type::kInt32: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003559 DCHECK_EQ(EAX, first.AsRegister<Register>());
3560 DCHECK_EQ(is_div ? EAX : EDX, out.AsRegister<Register>());
Calin Juravlebacfec32014-11-14 15:54:36 +00003561
Vladimir Marko13c86fd2015-11-11 12:37:46 +00003562 if (second.IsConstant()) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003563 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003564
3565 if (imm == 0) {
3566 // Do not generate anything for 0. DivZeroCheck would forbid any generated code.
3567 } else if (imm == 1 || imm == -1) {
3568 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003569 } else if (is_div && IsPowerOfTwo(AbsOrMin(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003570 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003571 } else {
3572 DCHECK(imm <= -2 || imm >= 2);
3573 GenerateDivRemWithAnyConstant(instruction);
3574 }
3575 } else {
Vladimir Marko174b2e22017-10-12 13:34:49 +01003576 SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) DivRemMinusOneSlowPathX86(
David Srbecky9cd6d372016-02-09 15:24:47 +00003577 instruction, out.AsRegister<Register>(), is_div);
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003578 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00003579
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003580 Register second_reg = second.AsRegister<Register>();
3581 // 0x80000000/-1 triggers an arithmetic exception!
3582 // Dividing by -1 is actually negation and -0x800000000 = 0x80000000 so
3583 // it's safe to just use negl instead of more complex comparisons.
Calin Juravlebacfec32014-11-14 15:54:36 +00003584
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003585 __ cmpl(second_reg, Immediate(-1));
3586 __ j(kEqual, slow_path->GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +00003587
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003588 // edx:eax <- sign-extended of eax
3589 __ cdq();
3590 // eax = quotient, edx = remainder
3591 __ idivl(second_reg);
3592 __ Bind(slow_path->GetExitLabel());
3593 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003594 break;
3595 }
3596
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003597 case DataType::Type::kInt64: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003598 InvokeRuntimeCallingConvention calling_convention;
3599 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
3600 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
3601 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
3602 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
3603 DCHECK_EQ(EAX, out.AsRegisterPairLow<Register>());
3604 DCHECK_EQ(EDX, out.AsRegisterPairHigh<Register>());
3605
3606 if (is_div) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01003607 codegen_->InvokeRuntime(kQuickLdiv, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003608 CheckEntrypointTypes<kQuickLdiv, int64_t, int64_t, int64_t>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003609 } else {
Serban Constantinescuba45db02016-07-12 22:53:02 +01003610 codegen_->InvokeRuntime(kQuickLmod, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003611 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003612 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003613 break;
3614 }
3615
3616 default:
3617 LOG(FATAL) << "Unexpected type for GenerateDivRemIntegral " << instruction->GetResultType();
3618 }
3619}
3620
Calin Juravle7c4954d2014-10-28 16:57:40 +00003621void LocationsBuilderX86::VisitDiv(HDiv* div) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003622 LocationSummary::CallKind call_kind = (div->GetResultType() == DataType::Type::kInt64)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003623 ? LocationSummary::kCallOnMainOnly
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003624 : LocationSummary::kNoCall;
Vladimir Markoca6fff82017-10-03 14:49:14 +01003625 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(div, call_kind);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003626
Calin Juravle7c4954d2014-10-28 16:57:40 +00003627 switch (div->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003628 case DataType::Type::kInt32: {
Calin Juravled0d48522014-11-04 16:40:20 +00003629 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003630 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00003631 locations->SetOut(Location::SameAsFirstInput());
3632 // Intel uses edx:eax as the dividend.
3633 locations->AddTemp(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003634 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
3635 // which enforces results to be in EAX and EDX, things are simpler if we use EAX also as
3636 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003637 if (div->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003638 locations->AddTemp(Location::RequiresRegister());
3639 }
Calin Juravled0d48522014-11-04 16:40:20 +00003640 break;
3641 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003642 case DataType::Type::kInt64: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003643 InvokeRuntimeCallingConvention calling_convention;
3644 locations->SetInAt(0, Location::RegisterPairLocation(
3645 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3646 locations->SetInAt(1, Location::RegisterPairLocation(
3647 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3648 // Runtime helper puts the result in EAX, EDX.
3649 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Calin Juravle7c4954d2014-10-28 16:57:40 +00003650 break;
3651 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003652 case DataType::Type::kFloat32:
3653 case DataType::Type::kFloat64: {
Calin Juravle7c4954d2014-10-28 16:57:40 +00003654 locations->SetInAt(0, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003655 if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3656 DCHECK(div->InputAt(1)->IsEmittedAtUseSite());
Nicolas Geoffray7770a3e2016-02-03 10:13:41 +00003657 } else if (div->InputAt(1)->IsConstant()) {
3658 locations->SetInAt(1, Location::RequiresFpuRegister());
David Brazdilb3e773e2016-01-26 11:28:37 +00003659 } else {
3660 locations->SetInAt(1, Location::Any());
3661 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003662 locations->SetOut(Location::SameAsFirstInput());
3663 break;
3664 }
3665
3666 default:
3667 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3668 }
3669}
3670
3671void InstructionCodeGeneratorX86::VisitDiv(HDiv* div) {
3672 LocationSummary* locations = div->GetLocations();
3673 Location first = locations->InAt(0);
3674 Location second = locations->InAt(1);
Calin Juravle7c4954d2014-10-28 16:57:40 +00003675
3676 switch (div->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003677 case DataType::Type::kInt32:
3678 case DataType::Type::kInt64: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003679 GenerateDivRemIntegral(div);
Calin Juravle7c4954d2014-10-28 16:57:40 +00003680 break;
3681 }
3682
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003683 case DataType::Type::kFloat32: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003684 if (second.IsFpuRegister()) {
3685 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3686 } else if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3687 HX86LoadFromConstantTable* const_area = div->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003688 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003689 __ divss(first.AsFpuRegister<XmmRegister>(),
3690 codegen_->LiteralFloatAddress(
3691 const_area->GetConstant()->AsFloatConstant()->GetValue(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003692 const_area->GetBaseMethodAddress(),
Mark Mendell0616ae02015-04-17 12:49:27 -04003693 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
3694 } else {
3695 DCHECK(second.IsStackSlot());
3696 __ divss(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3697 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003698 break;
3699 }
3700
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003701 case DataType::Type::kFloat64: {
Mark Mendell0616ae02015-04-17 12:49:27 -04003702 if (second.IsFpuRegister()) {
3703 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
3704 } else if (div->InputAt(1)->IsX86LoadFromConstantTable()) {
3705 HX86LoadFromConstantTable* const_area = div->InputAt(1)->AsX86LoadFromConstantTable();
David Brazdilb3e773e2016-01-26 11:28:37 +00003706 DCHECK(const_area->IsEmittedAtUseSite());
Mark Mendell0616ae02015-04-17 12:49:27 -04003707 __ divsd(first.AsFpuRegister<XmmRegister>(),
3708 codegen_->LiteralDoubleAddress(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00003709 const_area->GetConstant()->AsDoubleConstant()->GetValue(),
3710 const_area->GetBaseMethodAddress(),
3711 const_area->GetLocations()->InAt(0).AsRegister<Register>()));
Mark Mendell0616ae02015-04-17 12:49:27 -04003712 } else {
3713 DCHECK(second.IsDoubleStackSlot());
3714 __ divsd(first.AsFpuRegister<XmmRegister>(), Address(ESP, second.GetStackIndex()));
3715 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003716 break;
3717 }
3718
3719 default:
3720 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3721 }
3722}
3723
Calin Juravlebacfec32014-11-14 15:54:36 +00003724void LocationsBuilderX86::VisitRem(HRem* rem) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003725 DataType::Type type = rem->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003726
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003727 LocationSummary::CallKind call_kind = (rem->GetResultType() == DataType::Type::kInt64)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003728 ? LocationSummary::kCallOnMainOnly
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003729 : LocationSummary::kNoCall;
Vladimir Markoca6fff82017-10-03 14:49:14 +01003730 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(rem, call_kind);
Calin Juravlebacfec32014-11-14 15:54:36 +00003731
Calin Juravled2ec87d2014-12-08 14:24:46 +00003732 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003733 case DataType::Type::kInt32: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003734 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003735 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00003736 locations->SetOut(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003737 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
3738 // which enforces results to be in EAX and EDX, things are simpler if we use EDX also as
3739 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01003740 if (rem->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01003741 locations->AddTemp(Location::RequiresRegister());
3742 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003743 break;
3744 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003745 case DataType::Type::kInt64: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003746 InvokeRuntimeCallingConvention calling_convention;
3747 locations->SetInAt(0, Location::RegisterPairLocation(
3748 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3749 locations->SetInAt(1, Location::RegisterPairLocation(
3750 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3751 // Runtime helper puts the result in EAX, EDX.
3752 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
3753 break;
3754 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003755 case DataType::Type::kFloat64:
3756 case DataType::Type::kFloat32: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003757 locations->SetInAt(0, Location::Any());
3758 locations->SetInAt(1, Location::Any());
3759 locations->SetOut(Location::RequiresFpuRegister());
3760 locations->AddTemp(Location::RegisterLocation(EAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00003761 break;
3762 }
3763
3764 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003765 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00003766 }
3767}
3768
3769void InstructionCodeGeneratorX86::VisitRem(HRem* rem) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003770 DataType::Type type = rem->GetResultType();
Calin Juravlebacfec32014-11-14 15:54:36 +00003771 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003772 case DataType::Type::kInt32:
3773 case DataType::Type::kInt64: {
Calin Juravlebacfec32014-11-14 15:54:36 +00003774 GenerateDivRemIntegral(rem);
3775 break;
3776 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003777 case DataType::Type::kFloat32:
3778 case DataType::Type::kFloat64: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05003779 GenerateRemFP(rem);
Calin Juravlebacfec32014-11-14 15:54:36 +00003780 break;
3781 }
3782 default:
3783 LOG(FATAL) << "Unexpected rem type " << type;
3784 }
3785}
3786
Calin Juravled0d48522014-11-04 16:40:20 +00003787void LocationsBuilderX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01003788 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003789 switch (instruction->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003790 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003791 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003792 case DataType::Type::kInt8:
3793 case DataType::Type::kUint16:
3794 case DataType::Type::kInt16:
3795 case DataType::Type::kInt32: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003796 locations->SetInAt(0, Location::Any());
3797 break;
3798 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003799 case DataType::Type::kInt64: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003800 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
3801 if (!instruction->IsConstant()) {
3802 locations->AddTemp(Location::RequiresRegister());
3803 }
3804 break;
3805 }
3806 default:
3807 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
3808 }
Calin Juravled0d48522014-11-04 16:40:20 +00003809}
3810
3811void InstructionCodeGeneratorX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01003812 SlowPathCode* slow_path =
3813 new (codegen_->GetScopedAllocator()) DivZeroCheckSlowPathX86(instruction);
Calin Juravled0d48522014-11-04 16:40:20 +00003814 codegen_->AddSlowPath(slow_path);
3815
3816 LocationSummary* locations = instruction->GetLocations();
3817 Location value = locations->InAt(0);
3818
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003819 switch (instruction->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003820 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003821 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003822 case DataType::Type::kInt8:
3823 case DataType::Type::kUint16:
3824 case DataType::Type::kInt16:
3825 case DataType::Type::kInt32: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003826 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003827 __ testl(value.AsRegister<Register>(), value.AsRegister<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003828 __ j(kEqual, slow_path->GetEntryLabel());
3829 } else if (value.IsStackSlot()) {
3830 __ cmpl(Address(ESP, value.GetStackIndex()), Immediate(0));
3831 __ j(kEqual, slow_path->GetEntryLabel());
3832 } else {
3833 DCHECK(value.IsConstant()) << value;
3834 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01003835 __ jmp(slow_path->GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003836 }
3837 }
3838 break;
Calin Juravled0d48522014-11-04 16:40:20 +00003839 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003840 case DataType::Type::kInt64: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003841 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003842 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003843 __ movl(temp, value.AsRegisterPairLow<Register>());
3844 __ orl(temp, value.AsRegisterPairHigh<Register>());
3845 __ j(kEqual, slow_path->GetEntryLabel());
3846 } else {
3847 DCHECK(value.IsConstant()) << value;
3848 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
3849 __ jmp(slow_path->GetEntryLabel());
3850 }
3851 }
3852 break;
3853 }
3854 default:
3855 LOG(FATAL) << "Unexpected type for HDivZeroCheck" << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00003856 }
Calin Juravled0d48522014-11-04 16:40:20 +00003857}
3858
Calin Juravle9aec02f2014-11-18 23:06:35 +00003859void LocationsBuilderX86::HandleShift(HBinaryOperation* op) {
3860 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3861
3862 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003863 new (GetGraph()->GetAllocator()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003864
3865 switch (op->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003866 case DataType::Type::kInt32:
3867 case DataType::Type::kInt64: {
Mark P Mendell73945692015-04-29 14:56:17 +00003868 // Can't have Location::Any() and output SameAsFirstInput()
Calin Juravle9aec02f2014-11-18 23:06:35 +00003869 locations->SetInAt(0, Location::RequiresRegister());
Mark P Mendell73945692015-04-29 14:56:17 +00003870 // The shift count needs to be in CL or a constant.
3871 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, op->InputAt(1)));
Calin Juravle9aec02f2014-11-18 23:06:35 +00003872 locations->SetOut(Location::SameAsFirstInput());
3873 break;
3874 }
3875 default:
3876 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3877 }
3878}
3879
3880void InstructionCodeGeneratorX86::HandleShift(HBinaryOperation* op) {
3881 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3882
3883 LocationSummary* locations = op->GetLocations();
3884 Location first = locations->InAt(0);
3885 Location second = locations->InAt(1);
3886 DCHECK(first.Equals(locations->Out()));
3887
3888 switch (op->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003889 case DataType::Type::kInt32: {
Mark P Mendell73945692015-04-29 14:56:17 +00003890 DCHECK(first.IsRegister());
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003891 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003892 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003893 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003894 DCHECK_EQ(ECX, second_reg);
3895 if (op->IsShl()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003896 __ shll(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003897 } else if (op->IsShr()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003898 __ sarl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003899 } else {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003900 __ shrl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003901 }
3902 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00003903 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance;
Mark P Mendell73945692015-04-29 14:56:17 +00003904 if (shift == 0) {
3905 return;
3906 }
3907 Immediate imm(shift);
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003908 if (op->IsShl()) {
3909 __ shll(first_reg, imm);
3910 } else if (op->IsShr()) {
3911 __ sarl(first_reg, imm);
3912 } else {
3913 __ shrl(first_reg, imm);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003914 }
3915 }
3916 break;
3917 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003918 case DataType::Type::kInt64: {
Mark P Mendell73945692015-04-29 14:56:17 +00003919 if (second.IsRegister()) {
3920 Register second_reg = second.AsRegister<Register>();
3921 DCHECK_EQ(ECX, second_reg);
3922 if (op->IsShl()) {
3923 GenerateShlLong(first, second_reg);
3924 } else if (op->IsShr()) {
3925 GenerateShrLong(first, second_reg);
3926 } else {
3927 GenerateUShrLong(first, second_reg);
3928 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003929 } else {
Mark P Mendell73945692015-04-29 14:56:17 +00003930 // Shift by a constant.
Roland Levillain5b5b9312016-03-22 14:57:31 +00003931 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
Mark P Mendell73945692015-04-29 14:56:17 +00003932 // Nothing to do if the shift is 0, as the input is already the output.
3933 if (shift != 0) {
3934 if (op->IsShl()) {
3935 GenerateShlLong(first, shift);
3936 } else if (op->IsShr()) {
3937 GenerateShrLong(first, shift);
3938 } else {
3939 GenerateUShrLong(first, shift);
3940 }
3941 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003942 }
3943 break;
3944 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003945 default:
3946 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3947 }
3948}
3949
Mark P Mendell73945692015-04-29 14:56:17 +00003950void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, int shift) {
3951 Register low = loc.AsRegisterPairLow<Register>();
3952 Register high = loc.AsRegisterPairHigh<Register>();
Mark Mendellba56d062015-05-05 21:34:03 -04003953 if (shift == 1) {
3954 // This is just an addition.
3955 __ addl(low, low);
3956 __ adcl(high, high);
3957 } else if (shift == 32) {
Mark P Mendell73945692015-04-29 14:56:17 +00003958 // Shift by 32 is easy. High gets low, and low gets 0.
3959 codegen_->EmitParallelMoves(
3960 loc.ToLow(),
3961 loc.ToHigh(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003962 DataType::Type::kInt32,
Mark P Mendell73945692015-04-29 14:56:17 +00003963 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
3964 loc.ToLow(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003965 DataType::Type::kInt32);
Mark P Mendell73945692015-04-29 14:56:17 +00003966 } else if (shift > 32) {
3967 // Low part becomes 0. High part is low part << (shift-32).
3968 __ movl(high, low);
3969 __ shll(high, Immediate(shift - 32));
3970 __ xorl(low, low);
3971 } else {
3972 // Between 1 and 31.
3973 __ shld(high, low, Immediate(shift));
3974 __ shll(low, Immediate(shift));
3975 }
3976}
3977
Calin Juravle9aec02f2014-11-18 23:06:35 +00003978void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04003979 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00003980 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter);
3981 __ shll(loc.AsRegisterPairLow<Register>(), shifter);
3982 __ testl(shifter, Immediate(32));
3983 __ j(kEqual, &done);
3984 __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>());
3985 __ movl(loc.AsRegisterPairLow<Register>(), Immediate(0));
3986 __ Bind(&done);
3987}
3988
Mark P Mendell73945692015-04-29 14:56:17 +00003989void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, int shift) {
3990 Register low = loc.AsRegisterPairLow<Register>();
3991 Register high = loc.AsRegisterPairHigh<Register>();
3992 if (shift == 32) {
3993 // Need to copy the sign.
3994 DCHECK_NE(low, high);
3995 __ movl(low, high);
3996 __ sarl(high, Immediate(31));
3997 } else if (shift > 32) {
3998 DCHECK_NE(low, high);
3999 // High part becomes sign. Low part is shifted by shift - 32.
4000 __ movl(low, high);
4001 __ sarl(high, Immediate(31));
4002 __ sarl(low, Immediate(shift - 32));
4003 } else {
4004 // Between 1 and 31.
4005 __ shrd(low, high, Immediate(shift));
4006 __ sarl(high, Immediate(shift));
4007 }
4008}
4009
Calin Juravle9aec02f2014-11-18 23:06:35 +00004010void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04004011 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00004012 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
4013 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter);
4014 __ testl(shifter, Immediate(32));
4015 __ j(kEqual, &done);
4016 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
4017 __ sarl(loc.AsRegisterPairHigh<Register>(), Immediate(31));
4018 __ Bind(&done);
4019}
4020
Mark P Mendell73945692015-04-29 14:56:17 +00004021void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, int shift) {
4022 Register low = loc.AsRegisterPairLow<Register>();
4023 Register high = loc.AsRegisterPairHigh<Register>();
4024 if (shift == 32) {
4025 // Shift by 32 is easy. Low gets high, and high gets 0.
4026 codegen_->EmitParallelMoves(
4027 loc.ToHigh(),
4028 loc.ToLow(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004029 DataType::Type::kInt32,
Mark P Mendell73945692015-04-29 14:56:17 +00004030 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
4031 loc.ToHigh(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004032 DataType::Type::kInt32);
Mark P Mendell73945692015-04-29 14:56:17 +00004033 } else if (shift > 32) {
4034 // Low part is high >> (shift - 32). High part becomes 0.
4035 __ movl(low, high);
4036 __ shrl(low, Immediate(shift - 32));
4037 __ xorl(high, high);
4038 } else {
4039 // Between 1 and 31.
4040 __ shrd(low, high, Immediate(shift));
4041 __ shrl(high, Immediate(shift));
4042 }
4043}
4044
Calin Juravle9aec02f2014-11-18 23:06:35 +00004045void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04004046 NearLabel done;
Calin Juravle9aec02f2014-11-18 23:06:35 +00004047 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
4048 __ shrl(loc.AsRegisterPairHigh<Register>(), shifter);
4049 __ testl(shifter, Immediate(32));
4050 __ j(kEqual, &done);
4051 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
4052 __ movl(loc.AsRegisterPairHigh<Register>(), Immediate(0));
4053 __ Bind(&done);
4054}
4055
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004056void LocationsBuilderX86::VisitRor(HRor* ror) {
4057 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004058 new (GetGraph()->GetAllocator()) LocationSummary(ror, LocationSummary::kNoCall);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004059
4060 switch (ror->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004061 case DataType::Type::kInt64:
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004062 // Add the temporary needed.
4063 locations->AddTemp(Location::RequiresRegister());
4064 FALLTHROUGH_INTENDED;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004065 case DataType::Type::kInt32:
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004066 locations->SetInAt(0, Location::RequiresRegister());
4067 // The shift count needs to be in CL (unless it is a constant).
4068 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, ror->InputAt(1)));
4069 locations->SetOut(Location::SameAsFirstInput());
4070 break;
4071 default:
4072 LOG(FATAL) << "Unexpected operation type " << ror->GetResultType();
4073 UNREACHABLE();
4074 }
4075}
4076
4077void InstructionCodeGeneratorX86::VisitRor(HRor* ror) {
4078 LocationSummary* locations = ror->GetLocations();
4079 Location first = locations->InAt(0);
4080 Location second = locations->InAt(1);
4081
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004082 if (ror->GetResultType() == DataType::Type::kInt32) {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004083 Register first_reg = first.AsRegister<Register>();
4084 if (second.IsRegister()) {
4085 Register second_reg = second.AsRegister<Register>();
4086 __ rorl(first_reg, second_reg);
4087 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004088 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004089 __ rorl(first_reg, imm);
4090 }
4091 return;
4092 }
4093
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004094 DCHECK_EQ(ror->GetResultType(), DataType::Type::kInt64);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004095 Register first_reg_lo = first.AsRegisterPairLow<Register>();
4096 Register first_reg_hi = first.AsRegisterPairHigh<Register>();
4097 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
4098 if (second.IsRegister()) {
4099 Register second_reg = second.AsRegister<Register>();
4100 DCHECK_EQ(second_reg, ECX);
4101 __ movl(temp_reg, first_reg_hi);
4102 __ shrd(first_reg_hi, first_reg_lo, second_reg);
4103 __ shrd(first_reg_lo, temp_reg, second_reg);
4104 __ movl(temp_reg, first_reg_hi);
4105 __ testl(second_reg, Immediate(32));
4106 __ cmovl(kNotEqual, first_reg_hi, first_reg_lo);
4107 __ cmovl(kNotEqual, first_reg_lo, temp_reg);
4108 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00004109 int32_t shift_amt = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004110 if (shift_amt == 0) {
4111 // Already fine.
4112 return;
4113 }
4114 if (shift_amt == 32) {
4115 // Just swap.
4116 __ movl(temp_reg, first_reg_lo);
4117 __ movl(first_reg_lo, first_reg_hi);
4118 __ movl(first_reg_hi, temp_reg);
4119 return;
4120 }
4121
4122 Immediate imm(shift_amt);
4123 // Save the constents of the low value.
4124 __ movl(temp_reg, first_reg_lo);
4125
4126 // Shift right into low, feeding bits from high.
4127 __ shrd(first_reg_lo, first_reg_hi, imm);
4128
4129 // Shift right into high, feeding bits from the original low.
4130 __ shrd(first_reg_hi, temp_reg, imm);
4131
4132 // Swap if needed.
4133 if (shift_amt > 32) {
4134 __ movl(temp_reg, first_reg_lo);
4135 __ movl(first_reg_lo, first_reg_hi);
4136 __ movl(first_reg_hi, temp_reg);
4137 }
4138 }
4139}
4140
Calin Juravle9aec02f2014-11-18 23:06:35 +00004141void LocationsBuilderX86::VisitShl(HShl* shl) {
4142 HandleShift(shl);
4143}
4144
4145void InstructionCodeGeneratorX86::VisitShl(HShl* shl) {
4146 HandleShift(shl);
4147}
4148
4149void LocationsBuilderX86::VisitShr(HShr* shr) {
4150 HandleShift(shr);
4151}
4152
4153void InstructionCodeGeneratorX86::VisitShr(HShr* shr) {
4154 HandleShift(shr);
4155}
4156
4157void LocationsBuilderX86::VisitUShr(HUShr* ushr) {
4158 HandleShift(ushr);
4159}
4160
4161void InstructionCodeGeneratorX86::VisitUShr(HUShr* ushr) {
4162 HandleShift(ushr);
4163}
4164
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004165void LocationsBuilderX86::VisitNewInstance(HNewInstance* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01004166 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
4167 instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004168 locations->SetOut(Location::RegisterLocation(EAX));
David Brazdil6de19382016-01-08 17:37:10 +00004169 if (instruction->IsStringAlloc()) {
4170 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
4171 } else {
4172 InvokeRuntimeCallingConvention calling_convention;
4173 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
David Brazdil6de19382016-01-08 17:37:10 +00004174 }
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004175}
4176
4177void InstructionCodeGeneratorX86::VisitNewInstance(HNewInstance* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01004178 // Note: if heap poisoning is enabled, the entry point takes cares
4179 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00004180 if (instruction->IsStringAlloc()) {
4181 // String is allocated through StringFactory. Call NewEmptyString entry point.
4182 Register temp = instruction->GetLocations()->GetTemp(0).AsRegister<Register>();
Andreas Gampe542451c2016-07-26 09:02:02 -07004183 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize);
David Brazdil6de19382016-01-08 17:37:10 +00004184 __ fs()->movl(temp, Address::Absolute(QUICK_ENTRY_POINT(pNewEmptyString)));
4185 __ call(Address(temp, code_offset.Int32Value()));
4186 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4187 } else {
Serban Constantinescuba45db02016-07-12 22:53:02 +01004188 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Nicolas Geoffray0d3998b2017-01-12 15:35:12 +00004189 CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>();
David Brazdil6de19382016-01-08 17:37:10 +00004190 DCHECK(!codegen_->IsLeafMethod());
4191 }
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01004192}
4193
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004194void LocationsBuilderX86::VisitNewArray(HNewArray* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01004195 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
4196 instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004197 locations->SetOut(Location::RegisterLocation(EAX));
4198 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00004199 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4200 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004201}
4202
4203void InstructionCodeGeneratorX86::VisitNewArray(HNewArray* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01004204 // Note: if heap poisoning is enabled, the entry point takes cares
4205 // of poisoning the reference.
Nicolas Geoffrayd0958442017-01-30 14:57:16 +00004206 QuickEntrypointEnum entrypoint =
4207 CodeGenerator::GetArrayAllocationEntrypoint(instruction->GetLoadClass()->GetClass());
4208 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc());
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00004209 CheckEntrypointTypes<kQuickAllocArrayResolved, void*, mirror::Class*, int32_t>();
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01004210 DCHECK(!codegen_->IsLeafMethod());
4211}
4212
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004213void LocationsBuilderX86::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004214 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004215 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01004216 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
4217 if (location.IsStackSlot()) {
4218 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4219 } else if (location.IsDoubleStackSlot()) {
4220 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004221 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01004222 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004223}
4224
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004225void InstructionCodeGeneratorX86::VisitParameterValue(
4226 HParameterValue* instruction ATTRIBUTE_UNUSED) {
4227}
4228
4229void LocationsBuilderX86::VisitCurrentMethod(HCurrentMethod* instruction) {
4230 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004231 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004232 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
4233}
4234
4235void InstructionCodeGeneratorX86::VisitCurrentMethod(HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01004236}
4237
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004238void LocationsBuilderX86::VisitClassTableGet(HClassTableGet* instruction) {
4239 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004240 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004241 locations->SetInAt(0, Location::RequiresRegister());
4242 locations->SetOut(Location::RequiresRegister());
4243}
4244
4245void InstructionCodeGeneratorX86::VisitClassTableGet(HClassTableGet* instruction) {
4246 LocationSummary* locations = instruction->GetLocations();
Vladimir Markoa1de9182016-02-25 11:37:38 +00004247 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004248 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004249 instruction->GetIndex(), kX86PointerSize).SizeValue();
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004250 __ movl(locations->Out().AsRegister<Register>(),
4251 Address(locations->InAt(0).AsRegister<Register>(), method_offset));
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004252 } else {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004253 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00004254 instruction->GetIndex(), kX86PointerSize));
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01004255 __ movl(locations->Out().AsRegister<Register>(),
4256 Address(locations->InAt(0).AsRegister<Register>(),
4257 mirror::Class::ImtPtrOffset(kX86PointerSize).Uint32Value()));
4258 // temp = temp->GetImtEntryAt(method_offset);
4259 __ movl(locations->Out().AsRegister<Register>(),
4260 Address(locations->Out().AsRegister<Register>(), method_offset));
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004261 }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00004262}
4263
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004264void LocationsBuilderX86::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004265 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004266 new (GetGraph()->GetAllocator()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01004267 locations->SetInAt(0, Location::RequiresRegister());
4268 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01004269}
4270
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004271void InstructionCodeGeneratorX86::VisitNot(HNot* not_) {
4272 LocationSummary* locations = not_->GetLocations();
Roland Levillain70566432014-10-24 16:20:17 +01004273 Location in = locations->InAt(0);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01004274 Location out = locations->Out();
Roland Levillain70566432014-10-24 16:20:17 +01004275 DCHECK(in.Equals(out));
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00004276 switch (not_->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004277 case DataType::Type::kInt32:
Roland Levillain271ab9c2014-11-27 15:23:57 +00004278 __ notl(out.AsRegister<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004279 break;
4280
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004281 case DataType::Type::kInt64:
Roland Levillain70566432014-10-24 16:20:17 +01004282 __ notl(out.AsRegisterPairLow<Register>());
4283 __ notl(out.AsRegisterPairHigh<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004284 break;
4285
4286 default:
4287 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
4288 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01004289}
4290
David Brazdil66d126e2015-04-03 16:02:44 +01004291void LocationsBuilderX86::VisitBooleanNot(HBooleanNot* bool_not) {
4292 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004293 new (GetGraph()->GetAllocator()) LocationSummary(bool_not, LocationSummary::kNoCall);
David Brazdil66d126e2015-04-03 16:02:44 +01004294 locations->SetInAt(0, Location::RequiresRegister());
4295 locations->SetOut(Location::SameAsFirstInput());
4296}
4297
4298void InstructionCodeGeneratorX86::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01004299 LocationSummary* locations = bool_not->GetLocations();
4300 Location in = locations->InAt(0);
4301 Location out = locations->Out();
4302 DCHECK(in.Equals(out));
4303 __ xorl(out.AsRegister<Register>(), Immediate(1));
4304}
4305
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004306void LocationsBuilderX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004307 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004308 new (GetGraph()->GetAllocator()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00004309 switch (compare->InputAt(0)->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004310 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004311 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004312 case DataType::Type::kInt8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004313 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004314 case DataType::Type::kInt16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004315 case DataType::Type::kInt32:
4316 case DataType::Type::kInt64: {
Calin Juravleddb7df22014-11-25 20:56:51 +00004317 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravleddb7df22014-11-25 20:56:51 +00004318 locations->SetInAt(1, Location::Any());
4319 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4320 break;
4321 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004322 case DataType::Type::kFloat32:
4323 case DataType::Type::kFloat64: {
Calin Juravleddb7df22014-11-25 20:56:51 +00004324 locations->SetInAt(0, Location::RequiresFpuRegister());
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004325 if (compare->InputAt(1)->IsX86LoadFromConstantTable()) {
4326 DCHECK(compare->InputAt(1)->IsEmittedAtUseSite());
4327 } else if (compare->InputAt(1)->IsConstant()) {
4328 locations->SetInAt(1, Location::RequiresFpuRegister());
4329 } else {
4330 locations->SetInAt(1, Location::Any());
4331 }
Calin Juravleddb7df22014-11-25 20:56:51 +00004332 locations->SetOut(Location::RequiresRegister());
4333 break;
4334 }
4335 default:
4336 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
4337 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004338}
4339
4340void InstructionCodeGeneratorX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004341 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004342 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00004343 Location left = locations->InAt(0);
4344 Location right = locations->InAt(1);
4345
Mark Mendell0c9497d2015-08-21 09:30:05 -04004346 NearLabel less, greater, done;
Aart Bika19616e2016-02-01 18:57:58 -08004347 Condition less_cond = kLess;
4348
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004349 switch (compare->InputAt(0)->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004350 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004351 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004352 case DataType::Type::kInt8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004353 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004354 case DataType::Type::kInt16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004355 case DataType::Type::kInt32: {
Roland Levillain0b671c02016-08-19 12:02:34 +01004356 codegen_->GenerateIntCompare(left, right);
Aart Bika19616e2016-02-01 18:57:58 -08004357 break;
4358 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004359 case DataType::Type::kInt64: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004360 Register left_low = left.AsRegisterPairLow<Register>();
4361 Register left_high = left.AsRegisterPairHigh<Register>();
4362 int32_t val_low = 0;
4363 int32_t val_high = 0;
4364 bool right_is_const = false;
4365
4366 if (right.IsConstant()) {
4367 DCHECK(right.GetConstant()->IsLongConstant());
4368 right_is_const = true;
4369 int64_t val = right.GetConstant()->AsLongConstant()->GetValue();
4370 val_low = Low32Bits(val);
4371 val_high = High32Bits(val);
4372 }
4373
Calin Juravleddb7df22014-11-25 20:56:51 +00004374 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004375 __ cmpl(left_high, right.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004376 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004377 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004378 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004379 DCHECK(right_is_const) << right;
Aart Bika19616e2016-02-01 18:57:58 -08004380 codegen_->Compare32BitValue(left_high, val_high);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004381 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004382 __ j(kLess, &less); // Signed compare.
4383 __ j(kGreater, &greater); // Signed compare.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004384 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004385 __ cmpl(left_low, right.AsRegisterPairLow<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004386 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004387 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004388 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004389 DCHECK(right_is_const) << right;
Aart Bika19616e2016-02-01 18:57:58 -08004390 codegen_->Compare32BitValue(left_low, val_low);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004391 }
Aart Bika19616e2016-02-01 18:57:58 -08004392 less_cond = kBelow; // for CF (unsigned).
Calin Juravleddb7df22014-11-25 20:56:51 +00004393 break;
4394 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004395 case DataType::Type::kFloat32: {
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004396 GenerateFPCompare(left, right, compare, false);
Calin Juravleddb7df22014-11-25 20:56:51 +00004397 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08004398 less_cond = kBelow; // for CF (floats).
Calin Juravleddb7df22014-11-25 20:56:51 +00004399 break;
4400 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004401 case DataType::Type::kFloat64: {
Mark P Mendell2f10a5f2016-01-25 14:47:50 +00004402 GenerateFPCompare(left, right, compare, true);
Calin Juravleddb7df22014-11-25 20:56:51 +00004403 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Aart Bika19616e2016-02-01 18:57:58 -08004404 less_cond = kBelow; // for CF (floats).
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004405 break;
4406 }
4407 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00004408 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004409 }
Aart Bika19616e2016-02-01 18:57:58 -08004410
Calin Juravleddb7df22014-11-25 20:56:51 +00004411 __ movl(out, Immediate(0));
4412 __ j(kEqual, &done);
Aart Bika19616e2016-02-01 18:57:58 -08004413 __ j(less_cond, &less);
Calin Juravleddb7df22014-11-25 20:56:51 +00004414
4415 __ Bind(&greater);
4416 __ movl(out, Immediate(1));
4417 __ jmp(&done);
4418
4419 __ Bind(&less);
4420 __ movl(out, Immediate(-1));
4421
4422 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004423}
4424
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004425void LocationsBuilderX86::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004426 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004427 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Vladimir Marko372f10e2016-05-17 16:30:10 +01004428 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01004429 locations->SetInAt(i, Location::Any());
4430 }
4431 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004432}
4433
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004434void InstructionCodeGeneratorX86::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004435 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004436}
4437
Roland Levillain7c1559a2015-12-15 10:55:36 +00004438void CodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) {
Calin Juravle52c48962014-12-16 17:02:57 +00004439 /*
4440 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
4441 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model.
4442 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
4443 */
4444 switch (kind) {
4445 case MemBarrierKind::kAnyAny: {
Mark P Mendell17077d82015-12-16 19:15:59 +00004446 MemoryFence();
Calin Juravle52c48962014-12-16 17:02:57 +00004447 break;
4448 }
4449 case MemBarrierKind::kAnyStore:
4450 case MemBarrierKind::kLoadAny:
4451 case MemBarrierKind::kStoreStore: {
4452 // nop
4453 break;
4454 }
Mark Mendell7aa04a12016-01-27 22:39:07 -05004455 case MemBarrierKind::kNTStoreStore:
4456 // Non-Temporal Store/Store needs an explicit fence.
4457 MemoryFence(/* non-temporal */ true);
4458 break;
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004459 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004460}
4461
Vladimir Markodc151b22015-10-15 18:02:30 +01004462HInvokeStaticOrDirect::DispatchInfo CodeGeneratorX86::GetSupportedInvokeStaticOrDirectDispatch(
4463 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01004464 HInvokeStaticOrDirect* invoke ATTRIBUTE_UNUSED) {
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004465 return desired_dispatch_info;
Vladimir Markodc151b22015-10-15 18:02:30 +01004466}
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004467
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004468Register CodeGeneratorX86::GetInvokeStaticOrDirectExtraParameter(HInvokeStaticOrDirect* invoke,
4469 Register temp) {
4470 DCHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
Vladimir Markoc53c0792015-11-19 15:48:33 +00004471 Location location = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004472 if (!invoke->GetLocations()->Intrinsified()) {
4473 return location.AsRegister<Register>();
4474 }
4475 // For intrinsics we allow any location, so it may be on the stack.
4476 if (!location.IsRegister()) {
4477 __ movl(temp, Address(ESP, location.GetStackIndex()));
4478 return temp;
4479 }
4480 // For register locations, check if the register was saved. If so, get it from the stack.
4481 // Note: There is a chance that the register was saved but not overwritten, so we could
4482 // save one load. However, since this is just an intrinsic slow path we prefer this
4483 // simple and more robust approach rather that trying to determine if that's the case.
4484 SlowPathCode* slow_path = GetCurrentSlowPath();
Vladimir Marko4ee8e292017-06-02 15:39:30 +00004485 DCHECK(slow_path != nullptr); // For intrinsified invokes the call is emitted on the slow path.
4486 if (slow_path->IsCoreRegisterSaved(location.AsRegister<Register>())) {
4487 int stack_offset = slow_path->GetStackOffsetOfCoreRegister(location.AsRegister<Register>());
4488 __ movl(temp, Address(ESP, stack_offset));
4489 return temp;
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004490 }
4491 return location.AsRegister<Register>();
4492}
4493
Vladimir Markoe7197bf2017-06-02 17:00:23 +01004494void CodeGeneratorX86::GenerateStaticOrDirectCall(
4495 HInvokeStaticOrDirect* invoke, Location temp, SlowPathCode* slow_path) {
Vladimir Marko58155012015-08-19 12:49:41 +00004496 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
4497 switch (invoke->GetMethodLoadKind()) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004498 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: {
Vladimir Marko58155012015-08-19 12:49:41 +00004499 // temp = thread->string_init_entrypoint
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004500 uint32_t offset =
4501 GetThreadOffset<kX86PointerSize>(invoke->GetStringInitEntryPoint()).Int32Value();
4502 __ fs()->movl(temp.AsRegister<Register>(), Address::Absolute(offset));
Vladimir Marko58155012015-08-19 12:49:41 +00004503 break;
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01004504 }
Vladimir Marko58155012015-08-19 12:49:41 +00004505 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00004506 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00004507 break;
Vladimir Marko65979462017-05-19 17:25:12 +01004508 case HInvokeStaticOrDirect::MethodLoadKind::kBootImageLinkTimePcRelative: {
4509 DCHECK(GetCompilerOptions().IsBootImage());
4510 Register base_reg = GetInvokeStaticOrDirectExtraParameter(invoke,
4511 temp.AsRegister<Register>());
4512 __ leal(temp.AsRegister<Register>(), Address(base_reg, CodeGeneratorX86::kDummy32BitOffset));
4513 RecordBootMethodPatch(invoke);
4514 break;
4515 }
Vladimir Marko58155012015-08-19 12:49:41 +00004516 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
4517 __ movl(temp.AsRegister<Register>(), Immediate(invoke->GetMethodAddress()));
4518 break;
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004519 case HInvokeStaticOrDirect::MethodLoadKind::kBssEntry: {
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004520 Register base_reg = GetInvokeStaticOrDirectExtraParameter(invoke,
4521 temp.AsRegister<Register>());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004522 __ movl(temp.AsRegister<Register>(), Address(base_reg, kDummy32BitOffset));
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004523 // Bind a new fixup label at the end of the "movl" insn.
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004524 __ Bind(NewMethodBssEntryPatch(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004525 invoke->InputAt(invoke->GetSpecialInputIndex())->AsX86ComputeBaseMethodAddress(),
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004526 MethodReference(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex())));
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004527 break;
4528 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01004529 case HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall: {
4530 GenerateInvokeStaticOrDirectRuntimeCall(invoke, temp, slow_path);
4531 return; // No code pointer retrieval; the runtime performs the call directly.
Vladimir Marko9b688a02015-05-06 14:12:42 +01004532 }
Vladimir Marko58155012015-08-19 12:49:41 +00004533 }
4534
4535 switch (invoke->GetCodePtrLocation()) {
4536 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
4537 __ call(GetFrameEntryLabel());
4538 break;
Vladimir Marko58155012015-08-19 12:49:41 +00004539 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
4540 // (callee_method + offset_of_quick_compiled_code)()
4541 __ call(Address(callee_method.AsRegister<Register>(),
4542 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07004543 kX86PointerSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00004544 break;
Mark Mendell09ed1a32015-03-25 08:30:06 -04004545 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01004546 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
Mark Mendell09ed1a32015-03-25 08:30:06 -04004547
4548 DCHECK(!IsLeafMethod());
Mark Mendell09ed1a32015-03-25 08:30:06 -04004549}
4550
Vladimir Markoe7197bf2017-06-02 17:00:23 +01004551void CodeGeneratorX86::GenerateVirtualCall(
4552 HInvokeVirtual* invoke, Location temp_in, SlowPathCode* slow_path) {
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004553 Register temp = temp_in.AsRegister<Register>();
4554 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
4555 invoke->GetVTableIndex(), kX86PointerSize).Uint32Value();
Nicolas Geoffraye5234232015-12-02 09:06:11 +00004556
4557 // Use the calling convention instead of the location of the receiver, as
4558 // intrinsics may have put the receiver in a different register. In the intrinsics
4559 // slow path, the arguments have been moved to the right place, so here we are
4560 // guaranteed that the receiver is the first register of the calling convention.
4561 InvokeDexCallingConvention calling_convention;
4562 Register receiver = calling_convention.GetRegisterAt(0);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004563 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004564 // /* HeapReference<Class> */ temp = receiver->klass_
Nicolas Geoffraye5234232015-12-02 09:06:11 +00004565 __ movl(temp, Address(receiver, class_offset));
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004566 MaybeRecordImplicitNullCheck(invoke);
Roland Levillain0d5a2812015-11-13 10:07:31 +00004567 // Instead of simply (possibly) unpoisoning `temp` here, we should
4568 // emit a read barrier for the previous class reference load.
4569 // However this is not required in practice, as this is an
4570 // intermediate/temporary reference and because the current
4571 // concurrent copying collector keeps the from-space memory
4572 // intact/accessible until the end of the marking phase (the
4573 // concurrent copying collector may not in the future).
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004574 __ MaybeUnpoisonHeapReference(temp);
4575 // temp = temp->GetMethodAt(method_offset);
4576 __ movl(temp, Address(temp, method_offset));
4577 // call temp->GetEntryPoint();
4578 __ call(Address(
Andreas Gampe542451c2016-07-26 09:02:02 -07004579 temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86PointerSize).Int32Value()));
Vladimir Markoe7197bf2017-06-02 17:00:23 +01004580 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00004581}
4582
Vladimir Marko65979462017-05-19 17:25:12 +01004583void CodeGeneratorX86::RecordBootMethodPatch(HInvokeStaticOrDirect* invoke) {
4584 DCHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
4585 HX86ComputeBaseMethodAddress* address =
4586 invoke->InputAt(invoke->GetSpecialInputIndex())->AsX86ComputeBaseMethodAddress();
4587 boot_image_method_patches_.emplace_back(address,
4588 *invoke->GetTargetMethod().dex_file,
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07004589 invoke->GetTargetMethod().index);
Vladimir Marko65979462017-05-19 17:25:12 +01004590 __ Bind(&boot_image_method_patches_.back().label);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004591}
4592
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004593Label* CodeGeneratorX86::NewMethodBssEntryPatch(
4594 HX86ComputeBaseMethodAddress* method_address,
4595 MethodReference target_method) {
4596 // Add the patch entry and bind its label at the end of the instruction.
4597 method_bss_entry_patches_.emplace_back(method_address,
4598 *target_method.dex_file,
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07004599 target_method.index);
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004600 return &method_bss_entry_patches_.back().label;
4601}
4602
Vladimir Marko1998cd02017-01-13 13:02:58 +00004603void CodeGeneratorX86::RecordBootTypePatch(HLoadClass* load_class) {
Vladimir Marko00916b92017-05-17 17:45:45 +01004604 HX86ComputeBaseMethodAddress* address = load_class->InputAt(0)->AsX86ComputeBaseMethodAddress();
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004605 boot_image_type_patches_.emplace_back(address,
4606 load_class->GetDexFile(),
Vladimir Marko1998cd02017-01-13 13:02:58 +00004607 load_class->GetTypeIndex().index_);
4608 __ Bind(&boot_image_type_patches_.back().label);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01004609}
4610
Vladimir Marko6bec91c2017-01-09 15:03:12 +00004611Label* CodeGeneratorX86::NewTypeBssEntryPatch(HLoadClass* load_class) {
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004612 HX86ComputeBaseMethodAddress* address =
4613 load_class->InputAt(0)->AsX86ComputeBaseMethodAddress();
4614 type_bss_entry_patches_.emplace_back(
4615 address, load_class->GetDexFile(), load_class->GetTypeIndex().index_);
Vladimir Marko1998cd02017-01-13 13:02:58 +00004616 return &type_bss_entry_patches_.back().label;
Vladimir Marko6bec91c2017-01-09 15:03:12 +00004617}
4618
Vladimir Marko65979462017-05-19 17:25:12 +01004619void CodeGeneratorX86::RecordBootStringPatch(HLoadString* load_string) {
Vladimir Marko65979462017-05-19 17:25:12 +01004620 HX86ComputeBaseMethodAddress* address = load_string->InputAt(0)->AsX86ComputeBaseMethodAddress();
4621 string_patches_.emplace_back(address,
4622 load_string->GetDexFile(),
4623 load_string->GetStringIndex().index_);
4624 __ Bind(&string_patches_.back().label);
4625}
4626
Vladimir Markoaad75c62016-10-03 08:46:48 +00004627Label* CodeGeneratorX86::NewStringBssEntryPatch(HLoadString* load_string) {
4628 DCHECK(!GetCompilerOptions().IsBootImage());
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004629 HX86ComputeBaseMethodAddress* address =
4630 load_string->InputAt(0)->AsX86ComputeBaseMethodAddress();
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01004631 string_bss_entry_patches_.emplace_back(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004632 address, load_string->GetDexFile(), load_string->GetStringIndex().index_);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01004633 return &string_bss_entry_patches_.back().label;
Vladimir Markoaad75c62016-10-03 08:46:48 +00004634}
4635
Vladimir Markoaad75c62016-10-03 08:46:48 +00004636// The label points to the end of the "movl" or another instruction but the literal offset
4637// for method patch needs to point to the embedded constant which occupies the last 4 bytes.
4638constexpr uint32_t kLabelPositionToLiteralOffsetAdjustment = 4u;
4639
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004640template <linker::LinkerPatch (*Factory)(size_t, const DexFile*, uint32_t, uint32_t)>
Vladimir Markoaad75c62016-10-03 08:46:48 +00004641inline void CodeGeneratorX86::EmitPcRelativeLinkerPatches(
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004642 const ArenaDeque<X86PcRelativePatchInfo>& infos,
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004643 ArenaVector<linker::LinkerPatch>* linker_patches) {
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004644 for (const X86PcRelativePatchInfo& info : infos) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00004645 uint32_t literal_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
Nicolas Geoffray133719e2017-01-22 15:44:39 +00004646 linker_patches->push_back(Factory(
4647 literal_offset, &info.dex_file, GetMethodAddressOffset(info.method_address), info.index));
Vladimir Markoaad75c62016-10-03 08:46:48 +00004648 }
4649}
4650
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004651void CodeGeneratorX86::EmitLinkerPatches(ArenaVector<linker::LinkerPatch>* linker_patches) {
Vladimir Marko58155012015-08-19 12:49:41 +00004652 DCHECK(linker_patches->empty());
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004653 size_t size =
Vladimir Marko65979462017-05-19 17:25:12 +01004654 boot_image_method_patches_.size() +
Vladimir Marko0eb882b2017-05-15 13:39:18 +01004655 method_bss_entry_patches_.size() +
Vladimir Marko1998cd02017-01-13 13:02:58 +00004656 boot_image_type_patches_.size() +
Vladimir Marko65979462017-05-19 17:25:12 +01004657 type_bss_entry_patches_.size() +
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01004658 string_patches_.size() +
4659 string_bss_entry_patches_.size();
Vladimir Marko0f7dca42015-11-02 14:36:43 +00004660 linker_patches->reserve(size);
Vladimir Marko764d4542017-05-16 10:31:41 +01004661 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004662 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeMethodPatch>(
4663 boot_image_method_patches_, linker_patches);
4664 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeTypePatch>(
4665 boot_image_type_patches_, linker_patches);
4666 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeStringPatch>(
4667 string_patches_, linker_patches);
Vladimir Markoaad75c62016-10-03 08:46:48 +00004668 } else {
Vladimir Marko65979462017-05-19 17:25:12 +01004669 DCHECK(boot_image_method_patches_.empty());
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004670 EmitPcRelativeLinkerPatches<linker::LinkerPatch::TypeClassTablePatch>(
4671 boot_image_type_patches_, linker_patches);
4672 EmitPcRelativeLinkerPatches<linker::LinkerPatch::StringInternTablePatch>(
4673 string_patches_, linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004674 }
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01004675 EmitPcRelativeLinkerPatches<linker::LinkerPatch::MethodBssEntryPatch>(
4676 method_bss_entry_patches_, linker_patches);
4677 EmitPcRelativeLinkerPatches<linker::LinkerPatch::TypeBssEntryPatch>(
4678 type_bss_entry_patches_, linker_patches);
4679 EmitPcRelativeLinkerPatches<linker::LinkerPatch::StringBssEntryPatch>(
4680 string_bss_entry_patches_, linker_patches);
Vladimir Marko1998cd02017-01-13 13:02:58 +00004681 DCHECK_EQ(size, linker_patches->size());
Vladimir Marko58155012015-08-19 12:49:41 +00004682}
4683
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004684void CodeGeneratorX86::MarkGCCard(Register temp,
4685 Register card,
4686 Register object,
4687 Register value,
4688 bool value_can_be_null) {
Mark Mendell0c9497d2015-08-21 09:30:05 -04004689 NearLabel is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004690 if (value_can_be_null) {
4691 __ testl(value, value);
4692 __ j(kEqual, &is_null);
4693 }
Andreas Gampe542451c2016-07-26 09:02:02 -07004694 __ fs()->movl(card, Address::Absolute(Thread::CardTableOffset<kX86PointerSize>().Int32Value()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004695 __ movl(temp, object);
4696 __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004697 __ movb(Address(temp, card, TIMES_1, 0),
4698 X86ManagedRegister::FromCpuRegister(card).AsByteRegister());
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004699 if (value_can_be_null) {
4700 __ Bind(&is_null);
4701 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004702}
4703
Calin Juravle52c48962014-12-16 17:02:57 +00004704void LocationsBuilderX86::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
4705 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain0d5a2812015-11-13 10:07:31 +00004706
4707 bool object_field_get_with_read_barrier =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004708 kEmitCompilerReadBarrier && (instruction->GetType() == DataType::Type::kReference);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004709 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004710 new (GetGraph()->GetAllocator()) LocationSummary(instruction,
4711 kEmitCompilerReadBarrier
4712 ? LocationSummary::kCallOnSlowPath
4713 : LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01004714 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01004715 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01004716 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004717 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004718
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004719 if (DataType::IsFloatingPointType(instruction->GetType())) {
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004720 locations->SetOut(Location::RequiresFpuRegister());
4721 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00004722 // The output overlaps in case of long: we don't want the low move
4723 // to overwrite the object's location. Likewise, in the case of
4724 // an object field get with read barriers enabled, we do not want
4725 // the move to overwrite the object's location, as we need it to emit
4726 // the read barrier.
4727 locations->SetOut(
4728 Location::RequiresRegister(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004729 (object_field_get_with_read_barrier || instruction->GetType() == DataType::Type::kInt64) ?
Roland Levillain0d5a2812015-11-13 10:07:31 +00004730 Location::kOutputOverlap :
4731 Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004732 }
Calin Juravle52c48962014-12-16 17:02:57 +00004733
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004734 if (field_info.IsVolatile() && (field_info.GetFieldType() == DataType::Type::kInt64)) {
Calin Juravle52c48962014-12-16 17:02:57 +00004735 // Long values can be loaded atomically into an XMM using movsd.
Roland Levillain7c1559a2015-12-15 10:55:36 +00004736 // So we use an XMM register as a temp to achieve atomicity (first
4737 // load the temp into the XMM and then copy the XMM into the
4738 // output, 32 bits at a time).
Calin Juravle52c48962014-12-16 17:02:57 +00004739 locations->AddTemp(Location::RequiresFpuRegister());
4740 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004741}
4742
Calin Juravle52c48962014-12-16 17:02:57 +00004743void InstructionCodeGeneratorX86::HandleFieldGet(HInstruction* instruction,
4744 const FieldInfo& field_info) {
4745 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004746
Calin Juravle52c48962014-12-16 17:02:57 +00004747 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00004748 Location base_loc = locations->InAt(0);
4749 Register base = base_loc.AsRegister<Register>();
Calin Juravle52c48962014-12-16 17:02:57 +00004750 Location out = locations->Out();
4751 bool is_volatile = field_info.IsVolatile();
Vladimir Marko61b92282017-10-11 13:23:17 +01004752 DCHECK_EQ(DataType::Size(field_info.GetFieldType()), DataType::Size(instruction->GetType()));
4753 DataType::Type load_type = instruction->GetType();
Calin Juravle52c48962014-12-16 17:02:57 +00004754 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
4755
Vladimir Marko61b92282017-10-11 13:23:17 +01004756 switch (load_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004757 case DataType::Type::kBool:
4758 case DataType::Type::kUint8: {
Calin Juravle52c48962014-12-16 17:02:57 +00004759 __ movzxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004760 break;
4761 }
4762
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004763 case DataType::Type::kInt8: {
Calin Juravle52c48962014-12-16 17:02:57 +00004764 __ movsxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004765 break;
4766 }
4767
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004768 case DataType::Type::kUint16: {
4769 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004770 break;
4771 }
4772
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004773 case DataType::Type::kInt16: {
4774 __ movsxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004775 break;
4776 }
4777
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004778 case DataType::Type::kInt32:
Calin Juravle52c48962014-12-16 17:02:57 +00004779 __ movl(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004780 break;
Roland Levillain7c1559a2015-12-15 10:55:36 +00004781
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004782 case DataType::Type::kReference: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004783 // /* HeapReference<Object> */ out = *(base + offset)
4784 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004785 // Note that a potential implicit null check is handled in this
4786 // CodeGeneratorX86::GenerateFieldLoadWithBakerReadBarrier call.
4787 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00004788 instruction, out, base, offset, /* needs_null_check */ true);
Roland Levillain7c1559a2015-12-15 10:55:36 +00004789 if (is_volatile) {
4790 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4791 }
4792 } else {
4793 __ movl(out.AsRegister<Register>(), Address(base, offset));
4794 codegen_->MaybeRecordImplicitNullCheck(instruction);
4795 if (is_volatile) {
4796 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4797 }
4798 // If read barriers are enabled, emit read barriers other than
4799 // Baker's using a slow path (and also unpoison the loaded
4800 // reference, if heap poisoning is enabled).
4801 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset);
4802 }
4803 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004804 }
4805
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004806 case DataType::Type::kInt64: {
Calin Juravle52c48962014-12-16 17:02:57 +00004807 if (is_volatile) {
4808 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
4809 __ movsd(temp, Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004810 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004811 __ movd(out.AsRegisterPairLow<Register>(), temp);
4812 __ psrlq(temp, Immediate(32));
4813 __ movd(out.AsRegisterPairHigh<Register>(), temp);
4814 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004815 DCHECK_NE(base, out.AsRegisterPairLow<Register>());
Calin Juravle52c48962014-12-16 17:02:57 +00004816 __ movl(out.AsRegisterPairLow<Register>(), Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004817 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004818 __ movl(out.AsRegisterPairHigh<Register>(), Address(base, kX86WordSize + offset));
4819 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004820 break;
4821 }
4822
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004823 case DataType::Type::kFloat32: {
Calin Juravle52c48962014-12-16 17:02:57 +00004824 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004825 break;
4826 }
4827
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004828 case DataType::Type::kFloat64: {
Calin Juravle52c48962014-12-16 17:02:57 +00004829 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004830 break;
4831 }
4832
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004833 case DataType::Type::kVoid:
Vladimir Marko61b92282017-10-11 13:23:17 +01004834 LOG(FATAL) << "Unreachable type " << load_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004835 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004836 }
Calin Juravle52c48962014-12-16 17:02:57 +00004837
Vladimir Marko61b92282017-10-11 13:23:17 +01004838 if (load_type == DataType::Type::kReference || load_type == DataType::Type::kInt64) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004839 // Potential implicit null checks, in the case of reference or
4840 // long fields, are handled in the previous switch statement.
4841 } else {
Calin Juravle77520bc2015-01-12 18:45:46 +00004842 codegen_->MaybeRecordImplicitNullCheck(instruction);
4843 }
4844
Calin Juravle52c48962014-12-16 17:02:57 +00004845 if (is_volatile) {
Vladimir Marko61b92282017-10-11 13:23:17 +01004846 if (load_type == DataType::Type::kReference) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004847 // Memory barriers, in the case of references, are also handled
4848 // in the previous switch statement.
4849 } else {
4850 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4851 }
Roland Levillain4d027112015-07-01 15:41:14 +01004852 }
Calin Juravle52c48962014-12-16 17:02:57 +00004853}
4854
4855void LocationsBuilderX86::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
4856 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4857
4858 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004859 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle52c48962014-12-16 17:02:57 +00004860 locations->SetInAt(0, Location::RequiresRegister());
4861 bool is_volatile = field_info.IsVolatile();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004862 DataType::Type field_type = field_info.GetFieldType();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004863 bool is_byte_type = DataType::Size(field_type) == 1u;
Calin Juravle52c48962014-12-16 17:02:57 +00004864
4865 // The register allocator does not support multiple
4866 // inputs that die at entry with one in a specific register.
4867 if (is_byte_type) {
4868 // Ensure the value is in a byte register.
4869 locations->SetInAt(1, Location::RegisterLocation(EAX));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004870 } else if (DataType::IsFloatingPointType(field_type)) {
4871 if (is_volatile && field_type == DataType::Type::kFloat64) {
Mark Mendell81489372015-11-04 11:30:41 -05004872 // In order to satisfy the semantics of volatile, this must be a single instruction store.
4873 locations->SetInAt(1, Location::RequiresFpuRegister());
4874 } else {
4875 locations->SetInAt(1, Location::FpuRegisterOrConstant(instruction->InputAt(1)));
4876 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004877 } else if (is_volatile && field_type == DataType::Type::kInt64) {
Mark Mendell81489372015-11-04 11:30:41 -05004878 // In order to satisfy the semantics of volatile, this must be a single instruction store.
Calin Juravle52c48962014-12-16 17:02:57 +00004879 locations->SetInAt(1, Location::RequiresRegister());
Mark Mendell81489372015-11-04 11:30:41 -05004880
Calin Juravle52c48962014-12-16 17:02:57 +00004881 // 64bits value can be atomically written to an address with movsd and an XMM register.
4882 // We need two XMM registers because there's no easier way to (bit) copy a register pair
4883 // into a single XMM register (we copy each pair part into the XMMs and then interleave them).
4884 // NB: We could make the register allocator understand fp_reg <-> core_reg moves but given the
4885 // isolated cases when we need this it isn't worth adding the extra complexity.
4886 locations->AddTemp(Location::RequiresFpuRegister());
4887 locations->AddTemp(Location::RequiresFpuRegister());
Mark Mendell81489372015-11-04 11:30:41 -05004888 } else {
4889 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
4890
4891 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
4892 // Temporary registers for the write barrier.
4893 locations->AddTemp(Location::RequiresRegister()); // May be used for reference poisoning too.
4894 // Ensure the card is in a byte register.
4895 locations->AddTemp(Location::RegisterLocation(ECX));
4896 }
Calin Juravle52c48962014-12-16 17:02:57 +00004897 }
4898}
4899
4900void InstructionCodeGeneratorX86::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004901 const FieldInfo& field_info,
4902 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00004903 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4904
4905 LocationSummary* locations = instruction->GetLocations();
4906 Register base = locations->InAt(0).AsRegister<Register>();
4907 Location value = locations->InAt(1);
4908 bool is_volatile = field_info.IsVolatile();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004909 DataType::Type field_type = field_info.GetFieldType();
Calin Juravle52c48962014-12-16 17:02:57 +00004910 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01004911 bool needs_write_barrier =
4912 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00004913
4914 if (is_volatile) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00004915 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
Calin Juravle52c48962014-12-16 17:02:57 +00004916 }
4917
Mark Mendell81489372015-11-04 11:30:41 -05004918 bool maybe_record_implicit_null_check_done = false;
4919
Calin Juravle52c48962014-12-16 17:02:57 +00004920 switch (field_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004921 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004922 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004923 case DataType::Type::kInt8: {
Calin Juravle52c48962014-12-16 17:02:57 +00004924 __ movb(Address(base, offset), value.AsRegister<ByteRegister>());
4925 break;
4926 }
4927
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01004928 case DataType::Type::kUint16:
4929 case DataType::Type::kInt16: {
Mark Mendell81489372015-11-04 11:30:41 -05004930 if (value.IsConstant()) {
Nicolas Geoffray78612082017-07-24 14:18:53 +01004931 __ movw(Address(base, offset),
4932 Immediate(CodeGenerator::GetInt16ValueOf(value.GetConstant())));
Mark Mendell81489372015-11-04 11:30:41 -05004933 } else {
4934 __ movw(Address(base, offset), value.AsRegister<Register>());
4935 }
Calin Juravle52c48962014-12-16 17:02:57 +00004936 break;
4937 }
4938
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004939 case DataType::Type::kInt32:
4940 case DataType::Type::kReference: {
Roland Levillain4d027112015-07-01 15:41:14 +01004941 if (kPoisonHeapReferences && needs_write_barrier) {
4942 // Note that in the case where `value` is a null reference,
4943 // we do not enter this block, as the reference does not
4944 // need poisoning.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004945 DCHECK_EQ(field_type, DataType::Type::kReference);
Roland Levillain4d027112015-07-01 15:41:14 +01004946 Register temp = locations->GetTemp(0).AsRegister<Register>();
4947 __ movl(temp, value.AsRegister<Register>());
4948 __ PoisonHeapReference(temp);
4949 __ movl(Address(base, offset), temp);
Mark Mendell81489372015-11-04 11:30:41 -05004950 } else if (value.IsConstant()) {
4951 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4952 __ movl(Address(base, offset), Immediate(v));
Roland Levillain4d027112015-07-01 15:41:14 +01004953 } else {
Nicolas Geoffray03971632016-03-17 10:44:24 +00004954 DCHECK(value.IsRegister()) << value;
Roland Levillain4d027112015-07-01 15:41:14 +01004955 __ movl(Address(base, offset), value.AsRegister<Register>());
4956 }
Calin Juravle52c48962014-12-16 17:02:57 +00004957 break;
4958 }
4959
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004960 case DataType::Type::kInt64: {
Calin Juravle52c48962014-12-16 17:02:57 +00004961 if (is_volatile) {
4962 XmmRegister temp1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
4963 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
4964 __ movd(temp1, value.AsRegisterPairLow<Register>());
4965 __ movd(temp2, value.AsRegisterPairHigh<Register>());
4966 __ punpckldq(temp1, temp2);
4967 __ movsd(Address(base, offset), temp1);
Calin Juravle77520bc2015-01-12 18:45:46 +00004968 codegen_->MaybeRecordImplicitNullCheck(instruction);
Mark Mendell81489372015-11-04 11:30:41 -05004969 } else if (value.IsConstant()) {
4970 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant());
4971 __ movl(Address(base, offset), Immediate(Low32Bits(v)));
4972 codegen_->MaybeRecordImplicitNullCheck(instruction);
4973 __ movl(Address(base, kX86WordSize + offset), Immediate(High32Bits(v)));
Calin Juravle52c48962014-12-16 17:02:57 +00004974 } else {
4975 __ movl(Address(base, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00004976 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004977 __ movl(Address(base, kX86WordSize + offset), value.AsRegisterPairHigh<Register>());
4978 }
Mark Mendell81489372015-11-04 11:30:41 -05004979 maybe_record_implicit_null_check_done = true;
Calin Juravle52c48962014-12-16 17:02:57 +00004980 break;
4981 }
4982
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004983 case DataType::Type::kFloat32: {
Mark Mendell81489372015-11-04 11:30:41 -05004984 if (value.IsConstant()) {
4985 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4986 __ movl(Address(base, offset), Immediate(v));
4987 } else {
4988 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
4989 }
Calin Juravle52c48962014-12-16 17:02:57 +00004990 break;
4991 }
4992
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004993 case DataType::Type::kFloat64: {
Mark Mendell81489372015-11-04 11:30:41 -05004994 if (value.IsConstant()) {
4995 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant());
4996 __ movl(Address(base, offset), Immediate(Low32Bits(v)));
4997 codegen_->MaybeRecordImplicitNullCheck(instruction);
4998 __ movl(Address(base, kX86WordSize + offset), Immediate(High32Bits(v)));
4999 maybe_record_implicit_null_check_done = true;
5000 } else {
5001 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
5002 }
Calin Juravle52c48962014-12-16 17:02:57 +00005003 break;
5004 }
5005
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005006 case DataType::Type::kVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00005007 LOG(FATAL) << "Unreachable type " << field_type;
5008 UNREACHABLE();
5009 }
5010
Mark Mendell81489372015-11-04 11:30:41 -05005011 if (!maybe_record_implicit_null_check_done) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005012 codegen_->MaybeRecordImplicitNullCheck(instruction);
5013 }
5014
Roland Levillain4d027112015-07-01 15:41:14 +01005015 if (needs_write_barrier) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005016 Register temp = locations->GetTemp(0).AsRegister<Register>();
5017 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005018 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00005019 }
5020
Calin Juravle52c48962014-12-16 17:02:57 +00005021 if (is_volatile) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005022 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
Calin Juravle52c48962014-12-16 17:02:57 +00005023 }
5024}
5025
5026void LocationsBuilderX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
5027 HandleFieldGet(instruction, instruction->GetFieldInfo());
5028}
5029
5030void InstructionCodeGeneratorX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
5031 HandleFieldGet(instruction, instruction->GetFieldInfo());
5032}
5033
5034void LocationsBuilderX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
5035 HandleFieldSet(instruction, instruction->GetFieldInfo());
5036}
5037
5038void InstructionCodeGeneratorX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005039 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00005040}
5041
5042void LocationsBuilderX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
5043 HandleFieldSet(instruction, instruction->GetFieldInfo());
5044}
5045
5046void InstructionCodeGeneratorX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005047 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00005048}
5049
5050void LocationsBuilderX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
5051 HandleFieldGet(instruction, instruction->GetFieldInfo());
5052}
5053
5054void InstructionCodeGeneratorX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
5055 HandleFieldGet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005056}
5057
Calin Juravlee460d1d2015-09-29 04:52:17 +01005058void LocationsBuilderX86::VisitUnresolvedInstanceFieldGet(
5059 HUnresolvedInstanceFieldGet* instruction) {
5060 FieldAccessCallingConventionX86 calling_convention;
5061 codegen_->CreateUnresolvedFieldLocationSummary(
5062 instruction, instruction->GetFieldType(), calling_convention);
5063}
5064
5065void InstructionCodeGeneratorX86::VisitUnresolvedInstanceFieldGet(
5066 HUnresolvedInstanceFieldGet* instruction) {
5067 FieldAccessCallingConventionX86 calling_convention;
5068 codegen_->GenerateUnresolvedFieldAccess(instruction,
5069 instruction->GetFieldType(),
5070 instruction->GetFieldIndex(),
5071 instruction->GetDexPc(),
5072 calling_convention);
5073}
5074
5075void LocationsBuilderX86::VisitUnresolvedInstanceFieldSet(
5076 HUnresolvedInstanceFieldSet* instruction) {
5077 FieldAccessCallingConventionX86 calling_convention;
5078 codegen_->CreateUnresolvedFieldLocationSummary(
5079 instruction, instruction->GetFieldType(), calling_convention);
5080}
5081
5082void InstructionCodeGeneratorX86::VisitUnresolvedInstanceFieldSet(
5083 HUnresolvedInstanceFieldSet* instruction) {
5084 FieldAccessCallingConventionX86 calling_convention;
5085 codegen_->GenerateUnresolvedFieldAccess(instruction,
5086 instruction->GetFieldType(),
5087 instruction->GetFieldIndex(),
5088 instruction->GetDexPc(),
5089 calling_convention);
5090}
5091
5092void LocationsBuilderX86::VisitUnresolvedStaticFieldGet(
5093 HUnresolvedStaticFieldGet* instruction) {
5094 FieldAccessCallingConventionX86 calling_convention;
5095 codegen_->CreateUnresolvedFieldLocationSummary(
5096 instruction, instruction->GetFieldType(), calling_convention);
5097}
5098
5099void InstructionCodeGeneratorX86::VisitUnresolvedStaticFieldGet(
5100 HUnresolvedStaticFieldGet* instruction) {
5101 FieldAccessCallingConventionX86 calling_convention;
5102 codegen_->GenerateUnresolvedFieldAccess(instruction,
5103 instruction->GetFieldType(),
5104 instruction->GetFieldIndex(),
5105 instruction->GetDexPc(),
5106 calling_convention);
5107}
5108
5109void LocationsBuilderX86::VisitUnresolvedStaticFieldSet(
5110 HUnresolvedStaticFieldSet* instruction) {
5111 FieldAccessCallingConventionX86 calling_convention;
5112 codegen_->CreateUnresolvedFieldLocationSummary(
5113 instruction, instruction->GetFieldType(), calling_convention);
5114}
5115
5116void InstructionCodeGeneratorX86::VisitUnresolvedStaticFieldSet(
5117 HUnresolvedStaticFieldSet* instruction) {
5118 FieldAccessCallingConventionX86 calling_convention;
5119 codegen_->GenerateUnresolvedFieldAccess(instruction,
5120 instruction->GetFieldType(),
5121 instruction->GetFieldIndex(),
5122 instruction->GetDexPc(),
5123 calling_convention);
5124}
5125
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005126void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005127 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
5128 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks()
5129 ? Location::RequiresRegister()
5130 : Location::Any();
5131 locations->SetInAt(0, loc);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005132}
5133
Calin Juravle2ae48182016-03-16 14:05:09 +00005134void CodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) {
5135 if (CanMoveNullCheckToUser(instruction)) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005136 return;
5137 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005138 LocationSummary* locations = instruction->GetLocations();
5139 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00005140
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005141 __ testl(EAX, Address(obj.AsRegister<Register>(), 0));
Calin Juravle2ae48182016-03-16 14:05:09 +00005142 RecordPcInfo(instruction, instruction->GetDexPc());
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005143}
5144
Calin Juravle2ae48182016-03-16 14:05:09 +00005145void CodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01005146 SlowPathCode* slow_path = new (GetScopedAllocator()) NullCheckSlowPathX86(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00005147 AddSlowPath(slow_path);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005148
5149 LocationSummary* locations = instruction->GetLocations();
5150 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005151
5152 if (obj.IsRegister()) {
Mark Mendell42514f62015-03-31 11:34:22 -04005153 __ testl(obj.AsRegister<Register>(), obj.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005154 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005155 __ cmpl(Address(ESP, obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005156 } else {
5157 DCHECK(obj.IsConstant()) << obj;
David Brazdil77a48ae2015-09-15 12:34:04 +00005158 DCHECK(obj.GetConstant()->IsNullConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005159 __ jmp(slow_path->GetEntryLabel());
5160 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01005161 }
5162 __ j(kEqual, slow_path->GetEntryLabel());
5163}
5164
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005165void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00005166 codegen_->GenerateNullCheck(instruction);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00005167}
5168
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005169void LocationsBuilderX86::VisitArrayGet(HArrayGet* instruction) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005170 bool object_array_get_with_read_barrier =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005171 kEmitCompilerReadBarrier && (instruction->GetType() == DataType::Type::kReference);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005172 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01005173 new (GetGraph()->GetAllocator()) LocationSummary(instruction,
5174 object_array_get_with_read_barrier
5175 ? LocationSummary::kCallOnSlowPath
5176 : LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01005177 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005178 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01005179 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01005180 locations->SetInAt(0, Location::RequiresRegister());
5181 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005182 if (DataType::IsFloatingPointType(instruction->GetType())) {
Alexandre Rames88c13cd2015-04-14 17:35:39 +01005183 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
5184 } else {
Roland Levillain0d5a2812015-11-13 10:07:31 +00005185 // The output overlaps in case of long: we don't want the low move
5186 // to overwrite the array's location. Likewise, in the case of an
5187 // object array get with read barriers enabled, we do not want the
5188 // move to overwrite the array's location, as we need it to emit
5189 // the read barrier.
5190 locations->SetOut(
5191 Location::RequiresRegister(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005192 (instruction->GetType() == DataType::Type::kInt64 || object_array_get_with_read_barrier)
5193 ? Location::kOutputOverlap
5194 : Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01005195 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005196}
5197
5198void InstructionCodeGeneratorX86::VisitArrayGet(HArrayGet* instruction) {
5199 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005200 Location obj_loc = locations->InAt(0);
5201 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005202 Location index = locations->InAt(1);
Roland Levillain7c1559a2015-12-15 10:55:36 +00005203 Location out_loc = locations->Out();
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01005204 uint32_t data_offset = CodeGenerator::GetArrayDataOffset(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005205
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005206 DataType::Type type = instruction->GetType();
Calin Juravle77520bc2015-01-12 18:45:46 +00005207 switch (type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01005208 case DataType::Type::kBool:
5209 case DataType::Type::kUint8: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005210 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005211 __ movzxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005212 break;
5213 }
5214
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005215 case DataType::Type::kInt8: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005216 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005217 __ movsxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005218 break;
5219 }
5220
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005221 case DataType::Type::kUint16: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005222 Register out = out_loc.AsRegister<Register>();
jessicahandojo4877b792016-09-08 19:49:13 -07005223 if (mirror::kUseStringCompression && instruction->IsStringCharAt()) {
5224 // Branch cases into compressed and uncompressed for each index's type.
5225 uint32_t count_offset = mirror::String::CountOffset().Uint32Value();
5226 NearLabel done, not_compressed;
Vladimir Marko3c89d422017-02-17 11:30:23 +00005227 __ testb(Address(obj, count_offset), Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005228 codegen_->MaybeRecordImplicitNullCheck(instruction);
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005229 static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u,
5230 "Expecting 0=compressed, 1=uncompressed");
5231 __ j(kNotZero, &not_compressed);
jessicahandojo4877b792016-09-08 19:49:13 -07005232 __ movzxb(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_1, data_offset));
5233 __ jmp(&done);
5234 __ Bind(&not_compressed);
5235 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5236 __ Bind(&done);
5237 } else {
5238 // Common case for charAt of array of char or when string compression's
5239 // feature is turned off.
5240 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5241 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005242 break;
5243 }
5244
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01005245 case DataType::Type::kInt16: {
5246 Register out = out_loc.AsRegister<Register>();
5247 __ movsxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5248 break;
5249 }
5250
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005251 case DataType::Type::kInt32: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005252 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005253 __ movl(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005254 break;
5255 }
5256
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005257 case DataType::Type::kReference: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005258 static_assert(
5259 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
5260 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillain7c1559a2015-12-15 10:55:36 +00005261 // /* HeapReference<Object> */ out =
5262 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
5263 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005264 // Note that a potential implicit null check is handled in this
5265 // CodeGeneratorX86::GenerateArrayLoadWithBakerReadBarrier call.
5266 codegen_->GenerateArrayLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00005267 instruction, out_loc, obj, data_offset, index, /* needs_null_check */ true);
Roland Levillain7c1559a2015-12-15 10:55:36 +00005268 } else {
5269 Register out = out_loc.AsRegister<Register>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005270 __ movl(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
5271 codegen_->MaybeRecordImplicitNullCheck(instruction);
5272 // If read barriers are enabled, emit read barriers other than
5273 // Baker's using a slow path (and also unpoison the loaded
5274 // reference, if heap poisoning is enabled).
Roland Levillain7c1559a2015-12-15 10:55:36 +00005275 if (index.IsConstant()) {
5276 uint32_t offset =
5277 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Roland Levillain7c1559a2015-12-15 10:55:36 +00005278 codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset);
5279 } else {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005280 codegen_->MaybeGenerateReadBarrierSlow(
5281 instruction, out_loc, out_loc, obj_loc, data_offset, index);
5282 }
5283 }
5284 break;
5285 }
5286
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005287 case DataType::Type::kInt64: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005288 DCHECK_NE(obj, out_loc.AsRegisterPairLow<Register>());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005289 __ movl(out_loc.AsRegisterPairLow<Register>(),
5290 CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset));
5291 codegen_->MaybeRecordImplicitNullCheck(instruction);
5292 __ movl(out_loc.AsRegisterPairHigh<Register>(),
5293 CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005294 break;
5295 }
5296
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005297 case DataType::Type::kFloat32: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005298 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005299 __ movss(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005300 break;
5301 }
5302
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005303 case DataType::Type::kFloat64: {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005304 XmmRegister out = out_loc.AsFpuRegister<XmmRegister>();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005305 __ movsd(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_8, data_offset));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005306 break;
5307 }
5308
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005309 case DataType::Type::kVoid:
Calin Juravle77520bc2015-01-12 18:45:46 +00005310 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07005311 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005312 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005313
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005314 if (type == DataType::Type::kReference || type == DataType::Type::kInt64) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00005315 // Potential implicit null checks, in the case of reference or
5316 // long arrays, are handled in the previous switch statement.
5317 } else {
Calin Juravle77520bc2015-01-12 18:45:46 +00005318 codegen_->MaybeRecordImplicitNullCheck(instruction);
5319 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005320}
5321
5322void LocationsBuilderX86::VisitArraySet(HArraySet* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005323 DataType::Type value_type = instruction->GetComponentType();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005324
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005325 bool needs_write_barrier =
5326 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Roland Levillain0d5a2812015-11-13 10:07:31 +00005327 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005328
Vladimir Markoca6fff82017-10-03 14:49:14 +01005329 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Nicolas Geoffray39468442014-09-02 15:17:15 +01005330 instruction,
Vladimir Marko8d49fd72016-08-25 15:20:47 +01005331 may_need_runtime_call_for_type_check ?
Roland Levillain0d5a2812015-11-13 10:07:31 +00005332 LocationSummary::kCallOnSlowPath :
5333 LocationSummary::kNoCall);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005334
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01005335 bool is_byte_type = DataType::Size(value_type) == 1u;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005336 // We need the inputs to be different than the output in case of long operation.
5337 // In case of a byte operation, the register allocator does not support multiple
5338 // inputs that die at entry with one in a specific register.
5339 locations->SetInAt(0, Location::RequiresRegister());
5340 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
5341 if (is_byte_type) {
5342 // Ensure the value is in a byte register.
5343 locations->SetInAt(2, Location::ByteRegisterOrConstant(EAX, instruction->InputAt(2)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005344 } else if (DataType::IsFloatingPointType(value_type)) {
Mark Mendell81489372015-11-04 11:30:41 -05005345 locations->SetInAt(2, Location::FpuRegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005346 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005347 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
5348 }
5349 if (needs_write_barrier) {
5350 // Temporary registers for the write barrier.
5351 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
5352 // Ensure the card is in a byte register.
Roland Levillain4f6b0b52015-11-23 19:29:22 +00005353 locations->AddTemp(Location::RegisterLocation(ECX));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005354 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005355}
5356
5357void InstructionCodeGeneratorX86::VisitArraySet(HArraySet* instruction) {
5358 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005359 Location array_loc = locations->InAt(0);
5360 Register array = array_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005361 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01005362 Location value = locations->InAt(2);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005363 DataType::Type value_type = instruction->GetComponentType();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005364 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
5365 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
5366 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005367 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005368 bool needs_write_barrier =
5369 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005370
5371 switch (value_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005372 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01005373 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005374 case DataType::Type::kInt8: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005375 uint32_t offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005376 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_1, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005377 if (value.IsRegister()) {
5378 __ movb(address, value.AsRegister<ByteRegister>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005379 } else {
Nicolas Geoffray78612082017-07-24 14:18:53 +01005380 __ movb(address, Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant())));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005381 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005382 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005383 break;
5384 }
5385
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01005386 case DataType::Type::kUint16:
5387 case DataType::Type::kInt16: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005388 uint32_t offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005389 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_2, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005390 if (value.IsRegister()) {
5391 __ movw(address, value.AsRegister<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005392 } else {
Nicolas Geoffray78612082017-07-24 14:18:53 +01005393 __ movw(address, Immediate(CodeGenerator::GetInt16ValueOf(value.GetConstant())));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005394 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005395 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005396 break;
5397 }
5398
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005399 case DataType::Type::kReference: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005400 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005401 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005402
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005403 if (!value.IsRegister()) {
5404 // Just setting null.
5405 DCHECK(instruction->InputAt(2)->IsNullConstant());
5406 DCHECK(value.IsConstant()) << value;
5407 __ movl(address, Immediate(0));
Calin Juravle77520bc2015-01-12 18:45:46 +00005408 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005409 DCHECK(!needs_write_barrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00005410 DCHECK(!may_need_runtime_call_for_type_check);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005411 break;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005412 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005413
5414 DCHECK(needs_write_barrier);
5415 Register register_value = value.AsRegister<Register>();
Roland Levillain16d9f942016-08-25 17:27:56 +01005416 // We cannot use a NearLabel for `done`, as its range may be too
5417 // short when Baker read barriers are enabled.
5418 Label done;
5419 NearLabel not_null, do_put;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005420 SlowPathCode* slow_path = nullptr;
Roland Levillain16d9f942016-08-25 17:27:56 +01005421 Location temp_loc = locations->GetTemp(0);
5422 Register temp = temp_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00005423 if (may_need_runtime_call_for_type_check) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01005424 slow_path = new (codegen_->GetScopedAllocator()) ArraySetSlowPathX86(instruction);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005425 codegen_->AddSlowPath(slow_path);
5426 if (instruction->GetValueCanBeNull()) {
5427 __ testl(register_value, register_value);
5428 __ j(kNotEqual, &not_null);
5429 __ movl(address, Immediate(0));
5430 codegen_->MaybeRecordImplicitNullCheck(instruction);
5431 __ jmp(&done);
5432 __ Bind(&not_null);
5433 }
5434
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005435 // Note that when Baker read barriers are enabled, the type
5436 // checks are performed without read barriers. This is fine,
5437 // even in the case where a class object is in the from-space
5438 // after the flip, as a comparison involving such a type would
5439 // not produce a false positive; it may of course produce a
5440 // false negative, in which case we would take the ArraySet
5441 // slow path.
Roland Levillain16d9f942016-08-25 17:27:56 +01005442
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005443 // /* HeapReference<Class> */ temp = array->klass_
5444 __ movl(temp, Address(array, class_offset));
5445 codegen_->MaybeRecordImplicitNullCheck(instruction);
5446 __ MaybeUnpoisonHeapReference(temp);
Roland Levillain16d9f942016-08-25 17:27:56 +01005447
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005448 // /* HeapReference<Class> */ temp = temp->component_type_
5449 __ movl(temp, Address(temp, component_offset));
5450 // If heap poisoning is enabled, no need to unpoison `temp`
5451 // nor the object reference in `register_value->klass`, as
5452 // we are comparing two poisoned references.
5453 __ cmpl(temp, Address(register_value, class_offset));
Roland Levillain16d9f942016-08-25 17:27:56 +01005454
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005455 if (instruction->StaticTypeOfArrayIsObjectArray()) {
5456 __ j(kEqual, &do_put);
5457 // If heap poisoning is enabled, the `temp` reference has
5458 // not been unpoisoned yet; unpoison it now.
Roland Levillain0d5a2812015-11-13 10:07:31 +00005459 __ MaybeUnpoisonHeapReference(temp);
5460
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005461 // If heap poisoning is enabled, no need to unpoison the
5462 // heap reference loaded below, as it is only used for a
5463 // comparison with null.
5464 __ cmpl(Address(temp, super_offset), Immediate(0));
5465 __ j(kNotEqual, slow_path->GetEntryLabel());
5466 __ Bind(&do_put);
5467 } else {
5468 __ j(kNotEqual, slow_path->GetEntryLabel());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005469 }
5470 }
5471
5472 if (kPoisonHeapReferences) {
5473 __ movl(temp, register_value);
5474 __ PoisonHeapReference(temp);
5475 __ movl(address, temp);
5476 } else {
5477 __ movl(address, register_value);
5478 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005479 if (!may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005480 codegen_->MaybeRecordImplicitNullCheck(instruction);
5481 }
5482
5483 Register card = locations->GetTemp(1).AsRegister<Register>();
5484 codegen_->MarkGCCard(
5485 temp, card, array, value.AsRegister<Register>(), instruction->GetValueCanBeNull());
5486 __ Bind(&done);
5487
5488 if (slow_path != nullptr) {
5489 __ Bind(slow_path->GetExitLabel());
5490 }
5491
5492 break;
5493 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00005494
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005495 case DataType::Type::kInt32: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005496 uint32_t offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005497 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005498 if (value.IsRegister()) {
5499 __ movl(address, value.AsRegister<Register>());
5500 } else {
5501 DCHECK(value.IsConstant()) << value;
5502 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
5503 __ movl(address, Immediate(v));
5504 }
5505 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005506 break;
5507 }
5508
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005509 case DataType::Type::kInt64: {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005510 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005511 if (value.IsRegisterPair()) {
5512 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset),
5513 value.AsRegisterPairLow<Register>());
5514 codegen_->MaybeRecordImplicitNullCheck(instruction);
5515 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset + kX86WordSize),
5516 value.AsRegisterPairHigh<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005517 } else {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005518 DCHECK(value.IsConstant());
5519 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
5520 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset),
5521 Immediate(Low32Bits(val)));
5522 codegen_->MaybeRecordImplicitNullCheck(instruction);
5523 __ movl(CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, data_offset + kX86WordSize),
5524 Immediate(High32Bits(val)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005525 }
5526 break;
5527 }
5528
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005529 case DataType::Type::kFloat32: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005530 uint32_t offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005531 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_4, offset);
Mark Mendell81489372015-11-04 11:30:41 -05005532 if (value.IsFpuRegister()) {
5533 __ movss(address, value.AsFpuRegister<XmmRegister>());
5534 } else {
5535 DCHECK(value.IsConstant());
5536 int32_t v = bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue());
5537 __ movl(address, Immediate(v));
5538 }
5539 codegen_->MaybeRecordImplicitNullCheck(instruction);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005540 break;
5541 }
5542
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005543 case DataType::Type::kFloat64: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005544 uint32_t offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005545 Address address = CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, offset);
Mark Mendell81489372015-11-04 11:30:41 -05005546 if (value.IsFpuRegister()) {
5547 __ movsd(address, value.AsFpuRegister<XmmRegister>());
5548 } else {
5549 DCHECK(value.IsConstant());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005550 Address address_hi =
5551 CodeGeneratorX86::ArrayAddress(array, index, TIMES_8, offset + kX86WordSize);
Mark Mendell81489372015-11-04 11:30:41 -05005552 int64_t v = bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue());
5553 __ movl(address, Immediate(Low32Bits(v)));
5554 codegen_->MaybeRecordImplicitNullCheck(instruction);
5555 __ movl(address_hi, Immediate(High32Bits(v)));
5556 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005557 break;
5558 }
5559
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005560 case DataType::Type::kVoid:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005561 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07005562 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005563 }
5564}
5565
5566void LocationsBuilderX86::VisitArrayLength(HArrayLength* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005567 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01005568 locations->SetInAt(0, Location::RequiresRegister());
Mark Mendellee8d9712016-07-12 11:13:15 -04005569 if (!instruction->IsEmittedAtUseSite()) {
5570 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
5571 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005572}
5573
5574void InstructionCodeGeneratorX86::VisitArrayLength(HArrayLength* instruction) {
Mark Mendellee8d9712016-07-12 11:13:15 -04005575 if (instruction->IsEmittedAtUseSite()) {
5576 return;
5577 }
5578
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005579 LocationSummary* locations = instruction->GetLocations();
Vladimir Markodce016e2016-04-28 13:10:02 +01005580 uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00005581 Register obj = locations->InAt(0).AsRegister<Register>();
5582 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005583 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00005584 codegen_->MaybeRecordImplicitNullCheck(instruction);
jessicahandojo4877b792016-09-08 19:49:13 -07005585 // Mask out most significant bit in case the array is String's array of char.
5586 if (mirror::kUseStringCompression && instruction->IsStringLength()) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005587 __ shrl(out, Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005588 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005589}
5590
5591void LocationsBuilderX86::VisitBoundsCheck(HBoundsCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005592 RegisterSet caller_saves = RegisterSet::Empty();
5593 InvokeRuntimeCallingConvention calling_convention;
5594 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5595 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
5596 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction, caller_saves);
Mark Mendellf60c90b2015-03-04 15:12:59 -05005597 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Mark Mendellee8d9712016-07-12 11:13:15 -04005598 HInstruction* length = instruction->InputAt(1);
5599 if (!length->IsEmittedAtUseSite()) {
5600 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
5601 }
jessicahandojo4877b792016-09-08 19:49:13 -07005602 // Need register to see array's length.
5603 if (mirror::kUseStringCompression && instruction->IsStringCharAt()) {
5604 locations->AddTemp(Location::RequiresRegister());
5605 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005606}
5607
5608void InstructionCodeGeneratorX86::VisitBoundsCheck(HBoundsCheck* instruction) {
jessicahandojo4877b792016-09-08 19:49:13 -07005609 const bool is_string_compressed_char_at =
5610 mirror::kUseStringCompression && instruction->IsStringCharAt();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005611 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05005612 Location index_loc = locations->InAt(0);
5613 Location length_loc = locations->InAt(1);
Andreas Gampe85b62f22015-09-09 13:15:38 -07005614 SlowPathCode* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01005615 new (codegen_->GetScopedAllocator()) BoundsCheckSlowPathX86(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005616
Mark Mendell99dbd682015-04-22 16:18:52 -04005617 if (length_loc.IsConstant()) {
5618 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant());
5619 if (index_loc.IsConstant()) {
5620 // BCE will remove the bounds check if we are guarenteed to pass.
5621 int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5622 if (index < 0 || index >= length) {
5623 codegen_->AddSlowPath(slow_path);
5624 __ jmp(slow_path->GetEntryLabel());
5625 } else {
5626 // Some optimization after BCE may have generated this, and we should not
5627 // generate a bounds check if it is a valid range.
5628 }
5629 return;
5630 }
5631
5632 // We have to reverse the jump condition because the length is the constant.
5633 Register index_reg = index_loc.AsRegister<Register>();
5634 __ cmpl(index_reg, Immediate(length));
5635 codegen_->AddSlowPath(slow_path);
5636 __ j(kAboveEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005637 } else {
Mark Mendellee8d9712016-07-12 11:13:15 -04005638 HInstruction* array_length = instruction->InputAt(1);
5639 if (array_length->IsEmittedAtUseSite()) {
5640 // Address the length field in the array.
5641 DCHECK(array_length->IsArrayLength());
5642 uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(array_length->AsArrayLength());
5643 Location array_loc = array_length->GetLocations()->InAt(0);
5644 Address array_len(array_loc.AsRegister<Register>(), len_offset);
jessicahandojo4877b792016-09-08 19:49:13 -07005645 if (is_string_compressed_char_at) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005646 // TODO: if index_loc.IsConstant(), compare twice the index (to compensate for
5647 // the string compression flag) with the in-memory length and avoid the temporary.
jessicahandojo4877b792016-09-08 19:49:13 -07005648 Register length_reg = locations->GetTemp(0).AsRegister<Register>();
5649 __ movl(length_reg, array_len);
5650 codegen_->MaybeRecordImplicitNullCheck(array_length);
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005651 __ shrl(length_reg, Immediate(1));
jessicahandojo4877b792016-09-08 19:49:13 -07005652 codegen_->GenerateIntCompare(length_reg, index_loc);
Mark Mendellee8d9712016-07-12 11:13:15 -04005653 } else {
jessicahandojo4877b792016-09-08 19:49:13 -07005654 // Checking bounds for general case:
5655 // Array of char or string's array with feature compression off.
5656 if (index_loc.IsConstant()) {
5657 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
5658 __ cmpl(array_len, Immediate(value));
5659 } else {
5660 __ cmpl(array_len, index_loc.AsRegister<Register>());
5661 }
5662 codegen_->MaybeRecordImplicitNullCheck(array_length);
Mark Mendellee8d9712016-07-12 11:13:15 -04005663 }
Mark Mendell99dbd682015-04-22 16:18:52 -04005664 } else {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01005665 codegen_->GenerateIntCompare(length_loc, index_loc);
Mark Mendell99dbd682015-04-22 16:18:52 -04005666 }
5667 codegen_->AddSlowPath(slow_path);
5668 __ j(kBelowEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05005669 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005670}
5671
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005672void LocationsBuilderX86::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005673 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01005674}
5675
5676void InstructionCodeGeneratorX86::VisitParallelMove(HParallelMove* instruction) {
Vladimir Markobea75ff2017-10-11 20:39:54 +01005677 if (instruction->GetNext()->IsSuspendCheck() &&
5678 instruction->GetBlock()->GetLoopInformation() != nullptr) {
5679 HSuspendCheck* suspend_check = instruction->GetNext()->AsSuspendCheck();
5680 // The back edge will generate the suspend check.
5681 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(suspend_check, instruction);
5682 }
5683
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005684 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
5685}
5686
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005687void LocationsBuilderX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005688 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
5689 instruction, LocationSummary::kCallOnSlowPath);
Aart Bikb13c65b2017-03-21 20:14:07 -07005690 // In suspend check slow path, usually there are no caller-save registers at all.
5691 // If SIMD instructions are present, however, we force spilling all live SIMD
5692 // registers in full width (since the runtime only saves/restores lower part).
Aart Bik5576f372017-03-23 16:17:37 -07005693 locations->SetCustomSlowPathCallerSaves(
5694 GetGraph()->HasSIMD() ? RegisterSet::AllFpu() : RegisterSet::Empty());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005695}
5696
5697void InstructionCodeGeneratorX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005698 HBasicBlock* block = instruction->GetBlock();
5699 if (block->GetLoopInformation() != nullptr) {
5700 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
5701 // The back edge will generate the suspend check.
5702 return;
5703 }
5704 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
5705 // The goto will generate the suspend check.
5706 return;
5707 }
5708 GenerateSuspendCheck(instruction, nullptr);
5709}
5710
5711void InstructionCodeGeneratorX86::GenerateSuspendCheck(HSuspendCheck* instruction,
5712 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005713 SuspendCheckSlowPathX86* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005714 down_cast<SuspendCheckSlowPathX86*>(instruction->GetSlowPath());
5715 if (slow_path == nullptr) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01005716 slow_path =
5717 new (codegen_->GetScopedAllocator()) SuspendCheckSlowPathX86(instruction, successor);
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005718 instruction->SetSlowPath(slow_path);
5719 codegen_->AddSlowPath(slow_path);
5720 if (successor != nullptr) {
5721 DCHECK(successor->IsLoopHeader());
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005722 }
5723 } else {
5724 DCHECK_EQ(slow_path->GetSuccessor(), successor);
5725 }
5726
Andreas Gampe542451c2016-07-26 09:02:02 -07005727 __ fs()->cmpw(Address::Absolute(Thread::ThreadFlagsOffset<kX86PointerSize>().Int32Value()),
Roland Levillain7c1559a2015-12-15 10:55:36 +00005728 Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005729 if (successor == nullptr) {
5730 __ j(kNotEqual, slow_path->GetEntryLabel());
5731 __ Bind(slow_path->GetReturnLabel());
5732 } else {
5733 __ j(kEqual, codegen_->GetLabelOf(successor));
5734 __ jmp(slow_path->GetEntryLabel());
5735 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005736}
5737
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005738X86Assembler* ParallelMoveResolverX86::GetAssembler() const {
5739 return codegen_->GetAssembler();
5740}
5741
Aart Bikcfe50bb2017-12-12 14:54:12 -08005742void ParallelMoveResolverX86::MoveMemoryToMemory(int dst, int src, int number_of_words) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005743 ScratchRegisterScope ensure_scratch(
5744 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5745 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
5746 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
Mark Mendell7c8d0092015-01-26 11:21:33 -05005747
Aart Bikcfe50bb2017-12-12 14:54:12 -08005748 // Now that temp register is available (possibly spilled), move blocks of memory.
5749 for (int i = 0; i < number_of_words; i++) {
5750 __ movl(temp_reg, Address(ESP, src + stack_offset));
5751 __ movl(Address(ESP, dst + stack_offset), temp_reg);
5752 stack_offset += kX86WordSize;
5753 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005754}
5755
5756void ParallelMoveResolverX86::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005757 MoveOperands* move = moves_[index];
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005758 Location source = move->GetSource();
5759 Location destination = move->GetDestination();
5760
5761 if (source.IsRegister()) {
5762 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005763 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005764 } else if (destination.IsFpuRegister()) {
5765 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005766 } else {
5767 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00005768 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005769 }
David Brazdil74eb1b22015-12-14 11:44:01 +00005770 } else if (source.IsRegisterPair()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005771 size_t elem_size = DataType::Size(DataType::Type::kInt32);
David Brazdil74eb1b22015-12-14 11:44:01 +00005772 // Create stack space for 2 elements.
5773 __ subl(ESP, Immediate(2 * elem_size));
5774 __ movl(Address(ESP, 0), source.AsRegisterPairLow<Register>());
5775 __ movl(Address(ESP, elem_size), source.AsRegisterPairHigh<Register>());
5776 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
5777 // And remove the temporary stack space we allocated.
5778 __ addl(ESP, Immediate(2 * elem_size));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005779 } else if (source.IsFpuRegister()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005780 if (destination.IsRegister()) {
5781 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
5782 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005783 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005784 } else if (destination.IsRegisterPair()) {
5785 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>();
5786 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
5787 __ psrlq(src_reg, Immediate(32));
5788 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005789 } else if (destination.IsStackSlot()) {
5790 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Aart Bik5576f372017-03-23 16:17:37 -07005791 } else if (destination.IsDoubleStackSlot()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005792 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Aart Bik5576f372017-03-23 16:17:37 -07005793 } else {
5794 DCHECK(destination.IsSIMDStackSlot());
5795 __ movups(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Mark Mendell7c8d0092015-01-26 11:21:33 -05005796 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005797 } else if (source.IsStackSlot()) {
5798 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005799 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005800 } else if (destination.IsFpuRegister()) {
5801 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005802 } else {
5803 DCHECK(destination.IsStackSlot());
Aart Bikcfe50bb2017-12-12 14:54:12 -08005804 MoveMemoryToMemory(destination.GetStackIndex(), source.GetStackIndex(), 1);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005805 }
5806 } else if (source.IsDoubleStackSlot()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005807 if (destination.IsRegisterPair()) {
5808 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
5809 __ movl(destination.AsRegisterPairHigh<Register>(),
5810 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
5811 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005812 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
5813 } else {
5814 DCHECK(destination.IsDoubleStackSlot()) << destination;
Aart Bikcfe50bb2017-12-12 14:54:12 -08005815 MoveMemoryToMemory(destination.GetStackIndex(), source.GetStackIndex(), 2);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005816 }
Aart Bik5576f372017-03-23 16:17:37 -07005817 } else if (source.IsSIMDStackSlot()) {
Aart Bikcfe50bb2017-12-12 14:54:12 -08005818 if (destination.IsFpuRegister()) {
5819 __ movups(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
5820 } else {
5821 DCHECK(destination.IsSIMDStackSlot());
5822 MoveMemoryToMemory(destination.GetStackIndex(), source.GetStackIndex(), 4);
5823 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005824 } else if (source.IsConstant()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05005825 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00005826 if (constant->IsIntConstant() || constant->IsNullConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05005827 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005828 if (destination.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05005829 if (value == 0) {
5830 __ xorl(destination.AsRegister<Register>(), destination.AsRegister<Register>());
5831 } else {
5832 __ movl(destination.AsRegister<Register>(), Immediate(value));
5833 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005834 } else {
5835 DCHECK(destination.IsStackSlot()) << destination;
Mark Mendell09b84632015-02-13 17:48:38 -05005836 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Mark Mendell7c8d0092015-01-26 11:21:33 -05005837 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005838 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005839 float fp_value = constant->AsFloatConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00005840 int32_t value = bit_cast<int32_t, float>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005841 Immediate imm(value);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005842 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005843 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
5844 if (value == 0) {
5845 // Easy handling of 0.0.
5846 __ xorps(dest, dest);
5847 } else {
5848 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005849 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5850 Register temp = static_cast<Register>(ensure_scratch.GetRegister());
5851 __ movl(temp, Immediate(value));
5852 __ movd(dest, temp);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04005853 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05005854 } else {
5855 DCHECK(destination.IsStackSlot()) << destination;
5856 __ movl(Address(ESP, destination.GetStackIndex()), imm);
5857 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005858 } else if (constant->IsLongConstant()) {
5859 int64_t value = constant->AsLongConstant()->GetValue();
5860 int32_t low_value = Low32Bits(value);
5861 int32_t high_value = High32Bits(value);
5862 Immediate low(low_value);
5863 Immediate high(high_value);
5864 if (destination.IsDoubleStackSlot()) {
5865 __ movl(Address(ESP, destination.GetStackIndex()), low);
5866 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5867 } else {
5868 __ movl(destination.AsRegisterPairLow<Register>(), low);
5869 __ movl(destination.AsRegisterPairHigh<Register>(), high);
5870 }
5871 } else {
5872 DCHECK(constant->IsDoubleConstant());
5873 double dbl_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00005874 int64_t value = bit_cast<int64_t, double>(dbl_value);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005875 int32_t low_value = Low32Bits(value);
5876 int32_t high_value = High32Bits(value);
5877 Immediate low(low_value);
5878 Immediate high(high_value);
5879 if (destination.IsFpuRegister()) {
5880 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
5881 if (value == 0) {
5882 // Easy handling of 0.0.
5883 __ xorpd(dest, dest);
5884 } else {
5885 __ pushl(high);
5886 __ pushl(low);
5887 __ movsd(dest, Address(ESP, 0));
5888 __ addl(ESP, Immediate(8));
5889 }
5890 } else {
5891 DCHECK(destination.IsDoubleStackSlot()) << destination;
5892 __ movl(Address(ESP, destination.GetStackIndex()), low);
5893 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5894 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005895 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005896 } else {
Nicolas Geoffray42d1f5f2015-01-16 09:14:18 +00005897 LOG(FATAL) << "Unimplemented move: " << destination << " <- " << source;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005898 }
5899}
5900
Mark Mendella5c19ce2015-04-01 12:51:05 -04005901void ParallelMoveResolverX86::Exchange(Register reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005902 Register suggested_scratch = reg == EAX ? EBX : EAX;
5903 ScratchRegisterScope ensure_scratch(
5904 this, reg, suggested_scratch, codegen_->GetNumberOfCoreRegisters());
5905
5906 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5907 __ movl(static_cast<Register>(ensure_scratch.GetRegister()), Address(ESP, mem + stack_offset));
5908 __ movl(Address(ESP, mem + stack_offset), reg);
5909 __ movl(reg, static_cast<Register>(ensure_scratch.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005910}
5911
Mark Mendell7c8d0092015-01-26 11:21:33 -05005912void ParallelMoveResolverX86::Exchange32(XmmRegister reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005913 ScratchRegisterScope ensure_scratch(
5914 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
5915
5916 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
5917 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
5918 __ movl(temp_reg, Address(ESP, mem + stack_offset));
5919 __ movss(Address(ESP, mem + stack_offset), reg);
5920 __ movd(reg, temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005921}
5922
Aart Bikcfe50bb2017-12-12 14:54:12 -08005923void ParallelMoveResolverX86::Exchange128(XmmRegister reg, int mem) {
5924 size_t extra_slot = 4 * kX86WordSize;
5925 __ subl(ESP, Immediate(extra_slot));
5926 __ movups(Address(ESP, 0), XmmRegister(reg));
5927 ExchangeMemory(0, mem + extra_slot, 4);
5928 __ movups(XmmRegister(reg), Address(ESP, 0));
5929 __ addl(ESP, Immediate(extra_slot));
5930}
5931
5932void ParallelMoveResolverX86::ExchangeMemory(int mem1, int mem2, int number_of_words) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005933 ScratchRegisterScope ensure_scratch1(
5934 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005935
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005936 Register suggested_scratch = ensure_scratch1.GetRegister() == EAX ? EBX : EAX;
5937 ScratchRegisterScope ensure_scratch2(
5938 this, ensure_scratch1.GetRegister(), suggested_scratch, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005939
Guillaume Sancheze14590b2015-04-15 18:57:27 +00005940 int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0;
5941 stack_offset += ensure_scratch2.IsSpilled() ? kX86WordSize : 0;
Aart Bikcfe50bb2017-12-12 14:54:12 -08005942
5943 // Now that temp registers are available (possibly spilled), exchange blocks of memory.
5944 for (int i = 0; i < number_of_words; i++) {
5945 __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset));
5946 __ movl(static_cast<Register>(ensure_scratch2.GetRegister()), Address(ESP, mem2 + stack_offset));
5947 __ movl(Address(ESP, mem2 + stack_offset), static_cast<Register>(ensure_scratch1.GetRegister()));
5948 __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister()));
5949 stack_offset += kX86WordSize;
5950 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005951}
5952
5953void ParallelMoveResolverX86::EmitSwap(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005954 MoveOperands* move = moves_[index];
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005955 Location source = move->GetSource();
5956 Location destination = move->GetDestination();
5957
5958 if (source.IsRegister() && destination.IsRegister()) {
Mark Mendell90979812015-07-28 16:41:21 -04005959 // Use XOR swap algorithm to avoid serializing XCHG instruction or using a temporary.
5960 DCHECK_NE(destination.AsRegister<Register>(), source.AsRegister<Register>());
5961 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
5962 __ xorl(source.AsRegister<Register>(), destination.AsRegister<Register>());
5963 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005964 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005965 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005966 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005967 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01005968 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
Aart Bikcfe50bb2017-12-12 14:54:12 -08005969 ExchangeMemory(destination.GetStackIndex(), source.GetStackIndex(), 1);
Mark Mendell7c8d0092015-01-26 11:21:33 -05005970 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
5971 // Use XOR Swap algorithm to avoid a temporary.
5972 DCHECK_NE(source.reg(), destination.reg());
5973 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
5974 __ xorpd(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
5975 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
5976 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
5977 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
5978 } else if (destination.IsFpuRegister() && source.IsStackSlot()) {
5979 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00005980 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
5981 // Take advantage of the 16 bytes in the XMM register.
5982 XmmRegister reg = source.AsFpuRegister<XmmRegister>();
5983 Address stack(ESP, destination.GetStackIndex());
5984 // Load the double into the high doubleword.
5985 __ movhpd(reg, stack);
5986
5987 // Store the low double into the destination.
5988 __ movsd(stack, reg);
5989
5990 // Move the high double to the low double.
5991 __ psrldq(reg, Immediate(8));
5992 } else if (destination.IsFpuRegister() && source.IsDoubleStackSlot()) {
5993 // Take advantage of the 16 bytes in the XMM register.
5994 XmmRegister reg = destination.AsFpuRegister<XmmRegister>();
5995 Address stack(ESP, source.GetStackIndex());
5996 // Load the double into the high doubleword.
5997 __ movhpd(reg, stack);
5998
5999 // Store the low double into the destination.
6000 __ movsd(stack, reg);
6001
6002 // Move the high double to the low double.
6003 __ psrldq(reg, Immediate(8));
6004 } else if (destination.IsDoubleStackSlot() && source.IsDoubleStackSlot()) {
Aart Bikcfe50bb2017-12-12 14:54:12 -08006005 ExchangeMemory(destination.GetStackIndex(), source.GetStackIndex(), 2);
6006 } else if (source.IsSIMDStackSlot() && destination.IsSIMDStackSlot()) {
6007 ExchangeMemory(destination.GetStackIndex(), source.GetStackIndex(), 4);
6008 } else if (source.IsFpuRegister() && destination.IsSIMDStackSlot()) {
6009 Exchange128(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
6010 } else if (destination.IsFpuRegister() && source.IsSIMDStackSlot()) {
6011 Exchange128(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01006012 } else {
Mark Mendell7c8d0092015-01-26 11:21:33 -05006013 LOG(FATAL) << "Unimplemented: source: " << source << ", destination: " << destination;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01006014 }
6015}
6016
6017void ParallelMoveResolverX86::SpillScratch(int reg) {
6018 __ pushl(static_cast<Register>(reg));
6019}
6020
6021void ParallelMoveResolverX86::RestoreScratch(int reg) {
6022 __ popl(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01006023}
6024
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006025HLoadClass::LoadKind CodeGeneratorX86::GetSupportedLoadClassKind(
6026 HLoadClass::LoadKind desired_class_load_kind) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006027 switch (desired_class_load_kind) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00006028 case HLoadClass::LoadKind::kInvalid:
6029 LOG(FATAL) << "UNREACHABLE";
6030 UNREACHABLE();
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006031 case HLoadClass::LoadKind::kReferrersClass:
6032 break;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006033 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko94ec2db2017-09-06 17:21:03 +01006034 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006035 case HLoadClass::LoadKind::kBssEntry:
Vladimir Marko764d4542017-05-16 10:31:41 +01006036 DCHECK(!Runtime::Current()->UseJitCompilation());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006037 break;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006038 case HLoadClass::LoadKind::kJitTableAddress:
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006039 DCHECK(Runtime::Current()->UseJitCompilation());
6040 break;
Vladimir Marko764d4542017-05-16 10:31:41 +01006041 case HLoadClass::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006042 case HLoadClass::LoadKind::kRuntimeCall:
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006043 break;
6044 }
6045 return desired_class_load_kind;
6046}
6047
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006048void LocationsBuilderX86::VisitLoadClass(HLoadClass* cls) {
Vladimir Marko41559982017-01-06 14:04:23 +00006049 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006050 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006051 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko41559982017-01-06 14:04:23 +00006052 CodeGenerator::CreateLoadClassRuntimeCallLocationSummary(
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006053 cls,
6054 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko41559982017-01-06 14:04:23 +00006055 Location::RegisterLocation(EAX));
Vladimir Markoea4c1262017-02-06 19:59:33 +00006056 DCHECK_EQ(calling_convention.GetRegisterAt(0), EAX);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006057 return;
6058 }
Vladimir Marko41559982017-01-06 14:04:23 +00006059 DCHECK(!cls->NeedsAccessCheck());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006060
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006061 const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage();
6062 LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier)
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006063 ? LocationSummary::kCallOnSlowPath
6064 : LocationSummary::kNoCall;
Vladimir Markoca6fff82017-10-03 14:49:14 +01006065 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(cls, call_kind);
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006066 if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01006067 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01006068 }
6069
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006070 if (load_kind == HLoadClass::LoadKind::kReferrersClass ||
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006071 load_kind == HLoadClass::LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Marko94ec2db2017-09-06 17:21:03 +01006072 load_kind == HLoadClass::LoadKind::kBootImageClassTable ||
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006073 load_kind == HLoadClass::LoadKind::kBssEntry) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006074 locations->SetInAt(0, Location::RequiresRegister());
6075 }
6076 locations->SetOut(Location::RequiresRegister());
Vladimir Markoea4c1262017-02-06 19:59:33 +00006077 if (load_kind == HLoadClass::LoadKind::kBssEntry) {
6078 if (!kUseReadBarrier || kUseBakerReadBarrier) {
6079 // Rely on the type resolution and/or initialization to save everything.
6080 RegisterSet caller_saves = RegisterSet::Empty();
6081 InvokeRuntimeCallingConvention calling_convention;
6082 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6083 locations->SetCustomSlowPathCallerSaves(caller_saves);
6084 } else {
6085 // For non-Baker read barrier we have a temp-clobbering call.
6086 }
6087 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006088}
6089
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006090Label* CodeGeneratorX86::NewJitRootClassPatch(const DexFile& dex_file,
Vladimir Marko174b2e22017-10-12 13:34:49 +01006091 dex::TypeIndex type_index,
Nicolas Geoffray5247c082017-01-13 14:17:29 +00006092 Handle<mirror::Class> handle) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01006093 ReserveJitClassRoot(TypeReference(&dex_file, type_index), handle);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006094 // Add a patch entry and return the label.
Vladimir Marko174b2e22017-10-12 13:34:49 +01006095 jit_class_patches_.emplace_back(dex_file, type_index.index_);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006096 PatchInfo<Label>* info = &jit_class_patches_.back();
6097 return &info->label;
6098}
6099
Nicolas Geoffray5247c082017-01-13 14:17:29 +00006100// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
6101// move.
6102void InstructionCodeGeneratorX86::VisitLoadClass(HLoadClass* cls) NO_THREAD_SAFETY_ANALYSIS {
Vladimir Marko41559982017-01-06 14:04:23 +00006103 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006104 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Vladimir Marko41559982017-01-06 14:04:23 +00006105 codegen_->GenerateLoadClassRuntimeCall(cls);
Calin Juravle580b6092015-10-06 17:35:58 +01006106 return;
6107 }
Vladimir Marko41559982017-01-06 14:04:23 +00006108 DCHECK(!cls->NeedsAccessCheck());
Calin Juravle580b6092015-10-06 17:35:58 +01006109
Vladimir Marko41559982017-01-06 14:04:23 +00006110 LocationSummary* locations = cls->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006111 Location out_loc = locations->Out();
6112 Register out = out_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006113
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006114 bool generate_null_check = false;
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006115 const ReadBarrierOption read_barrier_option = cls->IsInBootImage()
6116 ? kWithoutReadBarrier
6117 : kCompilerReadBarrierOption;
Vladimir Marko41559982017-01-06 14:04:23 +00006118 switch (load_kind) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006119 case HLoadClass::LoadKind::kReferrersClass: {
6120 DCHECK(!cls->CanCallRuntime());
6121 DCHECK(!cls->MustGenerateClinitCheck());
6122 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
6123 Register current_method = locations->InAt(0).AsRegister<Register>();
6124 GenerateGcRootFieldLoad(
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006125 cls,
6126 out_loc,
6127 Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()),
Roland Levillain00468f32016-10-27 18:02:48 +01006128 /* fixup_label */ nullptr,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006129 read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006130 break;
6131 }
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006132 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006133 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006134 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006135 Register method_address = locations->InAt(0).AsRegister<Register>();
6136 __ leal(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
Vladimir Marko1998cd02017-01-13 13:02:58 +00006137 codegen_->RecordBootTypePatch(cls);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006138 break;
6139 }
6140 case HLoadClass::LoadKind::kBootImageAddress: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006141 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00006142 uint32_t address = dchecked_integral_cast<uint32_t>(
6143 reinterpret_cast<uintptr_t>(cls->GetClass().Get()));
6144 DCHECK_NE(address, 0u);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006145 __ movl(out, Immediate(address));
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006146 break;
6147 }
Vladimir Marko94ec2db2017-09-06 17:21:03 +01006148 case HLoadClass::LoadKind::kBootImageClassTable: {
6149 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
6150 Register method_address = locations->InAt(0).AsRegister<Register>();
6151 __ movl(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
6152 codegen_->RecordBootTypePatch(cls);
6153 // Extract the reference from the slot data, i.e. clear the hash bits.
6154 int32_t masked_hash = ClassTable::TableSlot::MaskHash(
6155 ComputeModifiedUtf8Hash(cls->GetDexFile().StringByTypeIdx(cls->GetTypeIndex())));
6156 if (masked_hash != 0) {
6157 __ subl(out, Immediate(masked_hash));
6158 }
6159 break;
6160 }
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006161 case HLoadClass::LoadKind::kBssEntry: {
6162 Register method_address = locations->InAt(0).AsRegister<Register>();
6163 Address address(method_address, CodeGeneratorX86::kDummy32BitOffset);
6164 Label* fixup_label = codegen_->NewTypeBssEntryPatch(cls);
6165 GenerateGcRootFieldLoad(cls, out_loc, address, fixup_label, read_barrier_option);
6166 generate_null_check = true;
6167 break;
6168 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00006169 case HLoadClass::LoadKind::kJitTableAddress: {
6170 Address address = Address::Absolute(CodeGeneratorX86::kDummy32BitOffset);
6171 Label* fixup_label = codegen_->NewJitRootClassPatch(
Nicolas Geoffray5247c082017-01-13 14:17:29 +00006172 cls->GetDexFile(), cls->GetTypeIndex(), cls->GetClass());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006173 // /* GcRoot<mirror::Class> */ out = *address
Vladimir Markoea4c1262017-02-06 19:59:33 +00006174 GenerateGcRootFieldLoad(cls, out_loc, address, fixup_label, read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006175 break;
6176 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006177 case HLoadClass::LoadKind::kRuntimeCall:
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00006178 case HLoadClass::LoadKind::kInvalid:
Vladimir Marko41559982017-01-06 14:04:23 +00006179 LOG(FATAL) << "UNREACHABLE";
6180 UNREACHABLE();
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006181 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006182
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006183 if (generate_null_check || cls->MustGenerateClinitCheck()) {
6184 DCHECK(cls->CanCallRuntime());
Vladimir Marko174b2e22017-10-12 13:34:49 +01006185 SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) LoadClassSlowPathX86(
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006186 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
6187 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00006188
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006189 if (generate_null_check) {
6190 __ testl(out, out);
6191 __ j(kEqual, slow_path->GetEntryLabel());
6192 }
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00006193
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01006194 if (cls->MustGenerateClinitCheck()) {
6195 GenerateClassInitializationCheck(slow_path, out);
6196 } else {
6197 __ Bind(slow_path->GetExitLabel());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006198 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006199 }
6200}
6201
6202void LocationsBuilderX86::VisitClinitCheck(HClinitCheck* check) {
6203 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01006204 new (GetGraph()->GetAllocator()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006205 locations->SetInAt(0, Location::RequiresRegister());
6206 if (check->HasUses()) {
6207 locations->SetOut(Location::SameAsFirstInput());
6208 }
6209}
6210
6211void InstructionCodeGeneratorX86::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006212 // We assume the class to not be null.
Vladimir Marko174b2e22017-10-12 13:34:49 +01006213 SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) LoadClassSlowPathX86(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006214 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006215 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00006216 GenerateClassInitializationCheck(slow_path,
6217 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006218}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006219
Nicolas Geoffray424f6762014-11-03 14:51:25 +00006220void InstructionCodeGeneratorX86::GenerateClassInitializationCheck(
Andreas Gampe85b62f22015-09-09 13:15:38 -07006221 SlowPathCode* slow_path, Register class_reg) {
Vladimir Markodc682aa2018-01-04 18:42:57 +00006222 constexpr size_t status_lsb_position = SubtypeCheckBits::BitStructSizeOf();
6223 const size_t status_byte_offset =
6224 mirror::Class::StatusOffset().SizeValue() + (status_lsb_position / kBitsPerByte);
6225 constexpr uint32_t shifted_initialized_value =
6226 enum_cast<uint32_t>(ClassStatus::kInitialized) << (status_lsb_position % kBitsPerByte);
6227
6228 __ cmpb(Address(class_reg, status_byte_offset), Immediate(shifted_initialized_value));
Vladimir Marko2c64a832018-01-04 11:31:56 +00006229 __ j(kBelow, slow_path->GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01006230 __ Bind(slow_path->GetExitLabel());
6231 // No need for memory fence, thanks to the X86 memory model.
6232}
6233
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006234HLoadString::LoadKind CodeGeneratorX86::GetSupportedLoadStringKind(
6235 HLoadString::LoadKind desired_string_load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006236 switch (desired_string_load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006237 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01006238 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00006239 case HLoadString::LoadKind::kBssEntry:
Vladimir Marko764d4542017-05-16 10:31:41 +01006240 DCHECK(!Runtime::Current()->UseJitCompilation());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006241 break;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006242 case HLoadString::LoadKind::kJitTableAddress:
6243 DCHECK(Runtime::Current()->UseJitCompilation());
6244 break;
Vladimir Marko764d4542017-05-16 10:31:41 +01006245 case HLoadString::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006246 case HLoadString::LoadKind::kRuntimeCall:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006247 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006248 }
6249 return desired_string_load_kind;
6250}
6251
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006252void LocationsBuilderX86::VisitLoadString(HLoadString* load) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006253 LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load);
Vladimir Markoca6fff82017-10-03 14:49:14 +01006254 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(load, call_kind);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006255 HLoadString::LoadKind load_kind = load->GetLoadKind();
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006256 if (load_kind == HLoadString::LoadKind::kBootImageLinkTimePcRelative ||
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01006257 load_kind == HLoadString::LoadKind::kBootImageInternTable ||
Vladimir Markoaad75c62016-10-03 08:46:48 +00006258 load_kind == HLoadString::LoadKind::kBssEntry) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006259 locations->SetInAt(0, Location::RequiresRegister());
6260 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01006261 if (load_kind == HLoadString::LoadKind::kRuntimeCall) {
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006262 locations->SetOut(Location::RegisterLocation(EAX));
6263 } else {
6264 locations->SetOut(Location::RequiresRegister());
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006265 if (load_kind == HLoadString::LoadKind::kBssEntry) {
6266 if (!kUseReadBarrier || kUseBakerReadBarrier) {
Vladimir Markoea4c1262017-02-06 19:59:33 +00006267 // Rely on the pResolveString to save everything.
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006268 RegisterSet caller_saves = RegisterSet::Empty();
6269 InvokeRuntimeCallingConvention calling_convention;
6270 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6271 locations->SetCustomSlowPathCallerSaves(caller_saves);
6272 } else {
6273 // For non-Baker read barrier we have a temp-clobbering call.
6274 }
6275 }
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006276 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006277}
6278
Andreas Gampe8a0128a2016-11-28 07:38:35 -08006279Label* CodeGeneratorX86::NewJitRootStringPatch(const DexFile& dex_file,
Vladimir Marko174b2e22017-10-12 13:34:49 +01006280 dex::StringIndex string_index,
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006281 Handle<mirror::String> handle) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01006282 ReserveJitStringRoot(StringReference(&dex_file, string_index), handle);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006283 // Add a patch entry and return the label.
Vladimir Marko174b2e22017-10-12 13:34:49 +01006284 jit_string_patches_.emplace_back(dex_file, string_index.index_);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006285 PatchInfo<Label>* info = &jit_string_patches_.back();
6286 return &info->label;
6287}
6288
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006289// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
6290// move.
6291void InstructionCodeGeneratorX86::VisitLoadString(HLoadString* load) NO_THREAD_SAFETY_ANALYSIS {
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01006292 LocationSummary* locations = load->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006293 Location out_loc = locations->Out();
6294 Register out = out_loc.AsRegister<Register>();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006295
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006296 switch (load->GetLoadKind()) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006297 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Marko6bec91c2017-01-09 15:03:12 +00006298 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006299 Register method_address = locations->InAt(0).AsRegister<Register>();
6300 __ leal(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
Vladimir Markoaad75c62016-10-03 08:46:48 +00006301 codegen_->RecordBootStringPatch(load);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01006302 return;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006303 }
6304 case HLoadString::LoadKind::kBootImageAddress: {
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006305 uint32_t address = dchecked_integral_cast<uint32_t>(
6306 reinterpret_cast<uintptr_t>(load->GetString().Get()));
6307 DCHECK_NE(address, 0u);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006308 __ movl(out, Immediate(address));
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01006309 return;
6310 }
6311 case HLoadString::LoadKind::kBootImageInternTable: {
6312 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
6313 Register method_address = locations->InAt(0).AsRegister<Register>();
6314 __ movl(out, Address(method_address, CodeGeneratorX86::kDummy32BitOffset));
6315 codegen_->RecordBootStringPatch(load);
6316 return;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006317 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00006318 case HLoadString::LoadKind::kBssEntry: {
6319 Register method_address = locations->InAt(0).AsRegister<Register>();
6320 Address address = Address(method_address, CodeGeneratorX86::kDummy32BitOffset);
6321 Label* fixup_label = codegen_->NewStringBssEntryPatch(load);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006322 // /* GcRoot<mirror::String> */ out = *address /* PC-relative */
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006323 GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption);
Vladimir Marko174b2e22017-10-12 13:34:49 +01006324 SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) LoadStringSlowPathX86(load);
Vladimir Markoaad75c62016-10-03 08:46:48 +00006325 codegen_->AddSlowPath(slow_path);
6326 __ testl(out, out);
6327 __ j(kEqual, slow_path->GetEntryLabel());
6328 __ Bind(slow_path->GetExitLabel());
6329 return;
6330 }
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006331 case HLoadString::LoadKind::kJitTableAddress: {
6332 Address address = Address::Absolute(CodeGeneratorX86::kDummy32BitOffset);
6333 Label* fixup_label = codegen_->NewJitRootStringPatch(
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00006334 load->GetDexFile(), load->GetStringIndex(), load->GetString());
Nicolas Geoffray132d8362016-11-16 09:19:42 +00006335 // /* GcRoot<mirror::String> */ out = *address
6336 GenerateGcRootFieldLoad(load, out_loc, address, fixup_label, kCompilerReadBarrierOption);
6337 return;
6338 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006339 default:
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07006340 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00006341 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006342
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07006343 // TODO: Re-add the compiler code to do string dex cache lookup again.
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006344 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko94ce9c22016-09-30 14:50:51 +01006345 DCHECK_EQ(calling_convention.GetRegisterAt(0), out);
Andreas Gampe8a0128a2016-11-28 07:38:35 -08006346 __ movl(calling_convention.GetRegisterAt(0), Immediate(load->GetStringIndex().index_));
Christina Wadsworth175d09b2016-08-31 16:26:01 -07006347 codegen_->InvokeRuntime(kQuickResolveString, load, load->GetDexPc());
6348 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006349}
6350
David Brazdilcb1c0552015-08-04 16:22:25 +01006351static Address GetExceptionTlsAddress() {
Andreas Gampe542451c2016-07-26 09:02:02 -07006352 return Address::Absolute(Thread::ExceptionOffset<kX86PointerSize>().Int32Value());
David Brazdilcb1c0552015-08-04 16:22:25 +01006353}
6354
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006355void LocationsBuilderX86::VisitLoadException(HLoadException* load) {
6356 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01006357 new (GetGraph()->GetAllocator()) LocationSummary(load, LocationSummary::kNoCall);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006358 locations->SetOut(Location::RequiresRegister());
6359}
6360
6361void InstructionCodeGeneratorX86::VisitLoadException(HLoadException* load) {
David Brazdilcb1c0552015-08-04 16:22:25 +01006362 __ fs()->movl(load->GetLocations()->Out().AsRegister<Register>(), GetExceptionTlsAddress());
6363}
6364
6365void LocationsBuilderX86::VisitClearException(HClearException* clear) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006366 new (GetGraph()->GetAllocator()) LocationSummary(clear, LocationSummary::kNoCall);
David Brazdilcb1c0552015-08-04 16:22:25 +01006367}
6368
6369void InstructionCodeGeneratorX86::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
6370 __ fs()->movl(GetExceptionTlsAddress(), Immediate(0));
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006371}
6372
6373void LocationsBuilderX86::VisitThrow(HThrow* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006374 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
6375 instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006376 InvokeRuntimeCallingConvention calling_convention;
6377 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6378}
6379
6380void InstructionCodeGeneratorX86::VisitThrow(HThrow* instruction) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01006381 codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006382 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006383}
6384
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006385// Temp is used for read barrier.
6386static size_t NumberOfInstanceOfTemps(TypeCheckKind type_check_kind) {
6387 if (kEmitCompilerReadBarrier &&
Vladimir Marko953437b2016-08-24 08:30:46 +00006388 !kUseBakerReadBarrier &&
6389 (type_check_kind == TypeCheckKind::kAbstractClassCheck ||
Roland Levillain7c1559a2015-12-15 10:55:36 +00006390 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006391 type_check_kind == TypeCheckKind::kArrayObjectCheck)) {
6392 return 1;
6393 }
6394 return 0;
6395}
6396
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006397// Interface case has 3 temps, one for holding the number of interfaces, one for the current
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006398// interface pointer, one for loading the current interface.
6399// The other checks have one temp for loading the object's class.
6400static size_t NumberOfCheckCastTemps(TypeCheckKind type_check_kind) {
Vladimir Markoe619f6c2017-12-12 16:00:01 +00006401 if (type_check_kind == TypeCheckKind::kInterfaceCheck) {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006402 return 2;
6403 }
6404 return 1 + NumberOfInstanceOfTemps(type_check_kind);
Roland Levillain7c1559a2015-12-15 10:55:36 +00006405}
6406
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006407void LocationsBuilderX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006408 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006409 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Vladimir Marko70e97462016-08-09 11:04:26 +01006410 bool baker_read_barrier_slow_path = false;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006411 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006412 case TypeCheckKind::kExactCheck:
6413 case TypeCheckKind::kAbstractClassCheck:
6414 case TypeCheckKind::kClassHierarchyCheck:
Vladimir Marko87584542017-12-12 17:47:52 +00006415 case TypeCheckKind::kArrayObjectCheck: {
6416 bool needs_read_barrier = CodeGenerator::InstanceOfNeedsReadBarrier(instruction);
6417 call_kind = needs_read_barrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
6418 baker_read_barrier_slow_path = kUseBakerReadBarrier && needs_read_barrier;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006419 break;
Vladimir Marko87584542017-12-12 17:47:52 +00006420 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006421 case TypeCheckKind::kArrayCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00006422 case TypeCheckKind::kUnresolvedCheck:
6423 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006424 call_kind = LocationSummary::kCallOnSlowPath;
6425 break;
6426 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006427
Vladimir Markoca6fff82017-10-03 14:49:14 +01006428 LocationSummary* locations =
6429 new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind);
Vladimir Marko70e97462016-08-09 11:04:26 +01006430 if (baker_read_barrier_slow_path) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01006431 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01006432 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006433 locations->SetInAt(0, Location::RequiresRegister());
6434 locations->SetInAt(1, Location::Any());
6435 // Note that TypeCheckSlowPathX86 uses this "out" register too.
6436 locations->SetOut(Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006437 // When read barriers are enabled, we need a temporary register for some cases.
6438 locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006439}
6440
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006441void InstructionCodeGeneratorX86::VisitInstanceOf(HInstanceOf* instruction) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00006442 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006443 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006444 Location obj_loc = locations->InAt(0);
6445 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006446 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006447 Location out_loc = locations->Out();
6448 Register out = out_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006449 const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind);
6450 DCHECK_LE(num_temps, 1u);
6451 Location maybe_temp_loc = (num_temps >= 1) ? locations->GetTemp(0) : Location::NoLocation();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006452 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006453 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6454 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6455 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Andreas Gampe85b62f22015-09-09 13:15:38 -07006456 SlowPathCode* slow_path = nullptr;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006457 NearLabel done, zero;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006458
6459 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006460 // Avoid null check if we know obj is not null.
6461 if (instruction->MustDoNullCheck()) {
6462 __ testl(obj, obj);
6463 __ j(kEqual, &zero);
6464 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006465
Roland Levillain7c1559a2015-12-15 10:55:36 +00006466 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006467 case TypeCheckKind::kExactCheck: {
Vladimir Marko87584542017-12-12 17:47:52 +00006468 ReadBarrierOption read_barrier_option =
6469 CodeGenerator::ReadBarrierOptionForInstanceOf(instruction);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006470 // /* HeapReference<Class> */ out = obj->klass_
6471 GenerateReferenceLoadTwoRegisters(instruction,
6472 out_loc,
6473 obj_loc,
6474 class_offset,
Vladimir Marko87584542017-12-12 17:47:52 +00006475 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006476 if (cls.IsRegister()) {
6477 __ cmpl(out, cls.AsRegister<Register>());
6478 } else {
6479 DCHECK(cls.IsStackSlot()) << cls;
6480 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6481 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006482
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006483 // Classes must be equal for the instanceof to succeed.
6484 __ j(kNotEqual, &zero);
6485 __ movl(out, Immediate(1));
6486 __ jmp(&done);
6487 break;
6488 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006489
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006490 case TypeCheckKind::kAbstractClassCheck: {
Vladimir Marko87584542017-12-12 17:47:52 +00006491 ReadBarrierOption read_barrier_option =
6492 CodeGenerator::ReadBarrierOptionForInstanceOf(instruction);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006493 // /* HeapReference<Class> */ out = obj->klass_
6494 GenerateReferenceLoadTwoRegisters(instruction,
6495 out_loc,
6496 obj_loc,
6497 class_offset,
Vladimir Marko87584542017-12-12 17:47:52 +00006498 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006499 // If the class is abstract, we eagerly fetch the super class of the
6500 // object to avoid doing a comparison we know will fail.
6501 NearLabel loop;
6502 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006503 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006504 GenerateReferenceLoadOneRegister(instruction,
6505 out_loc,
6506 super_offset,
6507 maybe_temp_loc,
Vladimir Marko87584542017-12-12 17:47:52 +00006508 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006509 __ testl(out, out);
6510 // If `out` is null, we use it for the result, and jump to `done`.
6511 __ j(kEqual, &done);
6512 if (cls.IsRegister()) {
6513 __ cmpl(out, cls.AsRegister<Register>());
6514 } else {
6515 DCHECK(cls.IsStackSlot()) << cls;
6516 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6517 }
6518 __ j(kNotEqual, &loop);
6519 __ movl(out, Immediate(1));
6520 if (zero.IsLinked()) {
6521 __ jmp(&done);
6522 }
6523 break;
6524 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006525
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006526 case TypeCheckKind::kClassHierarchyCheck: {
Vladimir Marko87584542017-12-12 17:47:52 +00006527 ReadBarrierOption read_barrier_option =
6528 CodeGenerator::ReadBarrierOptionForInstanceOf(instruction);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006529 // /* HeapReference<Class> */ out = obj->klass_
6530 GenerateReferenceLoadTwoRegisters(instruction,
6531 out_loc,
6532 obj_loc,
6533 class_offset,
Vladimir Marko87584542017-12-12 17:47:52 +00006534 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006535 // Walk over the class hierarchy to find a match.
6536 NearLabel loop, success;
6537 __ Bind(&loop);
6538 if (cls.IsRegister()) {
6539 __ cmpl(out, cls.AsRegister<Register>());
6540 } else {
6541 DCHECK(cls.IsStackSlot()) << cls;
6542 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6543 }
6544 __ j(kEqual, &success);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006545 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006546 GenerateReferenceLoadOneRegister(instruction,
6547 out_loc,
6548 super_offset,
6549 maybe_temp_loc,
Vladimir Marko87584542017-12-12 17:47:52 +00006550 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006551 __ testl(out, out);
6552 __ j(kNotEqual, &loop);
6553 // If `out` is null, we use it for the result, and jump to `done`.
6554 __ jmp(&done);
6555 __ Bind(&success);
6556 __ movl(out, Immediate(1));
6557 if (zero.IsLinked()) {
6558 __ jmp(&done);
6559 }
6560 break;
6561 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006562
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006563 case TypeCheckKind::kArrayObjectCheck: {
Vladimir Marko87584542017-12-12 17:47:52 +00006564 ReadBarrierOption read_barrier_option =
6565 CodeGenerator::ReadBarrierOptionForInstanceOf(instruction);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006566 // /* HeapReference<Class> */ out = obj->klass_
6567 GenerateReferenceLoadTwoRegisters(instruction,
6568 out_loc,
6569 obj_loc,
6570 class_offset,
Vladimir Marko87584542017-12-12 17:47:52 +00006571 read_barrier_option);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006572 // Do an exact check.
6573 NearLabel exact_check;
6574 if (cls.IsRegister()) {
6575 __ cmpl(out, cls.AsRegister<Register>());
6576 } else {
6577 DCHECK(cls.IsStackSlot()) << cls;
6578 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6579 }
6580 __ j(kEqual, &exact_check);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006581 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006582 // /* HeapReference<Class> */ out = out->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006583 GenerateReferenceLoadOneRegister(instruction,
6584 out_loc,
6585 component_offset,
6586 maybe_temp_loc,
Vladimir Marko87584542017-12-12 17:47:52 +00006587 read_barrier_option);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006588 __ testl(out, out);
6589 // If `out` is null, we use it for the result, and jump to `done`.
6590 __ j(kEqual, &done);
6591 __ cmpw(Address(out, primitive_offset), Immediate(Primitive::kPrimNot));
6592 __ j(kNotEqual, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006593 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006594 __ movl(out, Immediate(1));
6595 __ jmp(&done);
6596 break;
6597 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006598
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006599 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006600 // No read barrier since the slow path will retry upon failure.
6601 // /* HeapReference<Class> */ out = obj->klass_
6602 GenerateReferenceLoadTwoRegisters(instruction,
6603 out_loc,
6604 obj_loc,
6605 class_offset,
6606 kWithoutReadBarrier);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006607 if (cls.IsRegister()) {
6608 __ cmpl(out, cls.AsRegister<Register>());
6609 } else {
6610 DCHECK(cls.IsStackSlot()) << cls;
6611 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
6612 }
6613 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01006614 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86(
6615 instruction, /* is_fatal */ false);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006616 codegen_->AddSlowPath(slow_path);
6617 __ j(kNotEqual, slow_path->GetEntryLabel());
6618 __ movl(out, Immediate(1));
6619 if (zero.IsLinked()) {
6620 __ jmp(&done);
6621 }
6622 break;
6623 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006624
Calin Juravle98893e12015-10-02 21:05:03 +01006625 case TypeCheckKind::kUnresolvedCheck:
Roland Levillain0d5a2812015-11-13 10:07:31 +00006626 case TypeCheckKind::kInterfaceCheck: {
6627 // Note that we indeed only call on slow path, but we always go
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006628 // into the slow path for the unresolved and interface check
Roland Levillain0d5a2812015-11-13 10:07:31 +00006629 // cases.
6630 //
6631 // We cannot directly call the InstanceofNonTrivial runtime
6632 // entry point without resorting to a type checking slow path
6633 // here (i.e. by calling InvokeRuntime directly), as it would
6634 // require to assign fixed registers for the inputs of this
6635 // HInstanceOf instruction (following the runtime calling
6636 // convention), which might be cluttered by the potential first
6637 // read barrier emission at the beginning of this method.
Roland Levillain7c1559a2015-12-15 10:55:36 +00006638 //
6639 // TODO: Introduce a new runtime entry point taking the object
6640 // to test (instead of its class) as argument, and let it deal
6641 // with the read barrier issues. This will let us refactor this
6642 // case of the `switch` code as it was previously (with a direct
6643 // call to the runtime not using a type checking slow path).
6644 // This should also be beneficial for the other cases above.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006645 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01006646 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86(
6647 instruction, /* is_fatal */ false);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006648 codegen_->AddSlowPath(slow_path);
6649 __ jmp(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006650 if (zero.IsLinked()) {
6651 __ jmp(&done);
6652 }
6653 break;
6654 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006655 }
6656
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006657 if (zero.IsLinked()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006658 __ Bind(&zero);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006659 __ xorl(out, out);
6660 }
6661
6662 if (done.IsLinked()) {
6663 __ Bind(&done);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006664 }
6665
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006666 if (slow_path != nullptr) {
6667 __ Bind(slow_path->GetExitLabel());
6668 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006669}
6670
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006671void LocationsBuilderX86::VisitCheckCast(HCheckCast* instruction) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00006672 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Vladimir Marko87584542017-12-12 17:47:52 +00006673 LocationSummary::CallKind call_kind = CodeGenerator::GetCheckCastCallKind(instruction);
Vladimir Markoca6fff82017-10-03 14:49:14 +01006674 LocationSummary* locations =
6675 new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006676 locations->SetInAt(0, Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006677 if (type_check_kind == TypeCheckKind::kInterfaceCheck) {
6678 // Require a register for the interface check since there is a loop that compares the class to
6679 // a memory address.
6680 locations->SetInAt(1, Location::RequiresRegister());
6681 } else {
6682 locations->SetInAt(1, Location::Any());
6683 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006684 // Note that TypeCheckSlowPathX86 uses this "temp" register too.
6685 locations->AddTemp(Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006686 // When read barriers are enabled, we need an additional temporary register for some cases.
6687 locations->AddRegisterTemps(NumberOfCheckCastTemps(type_check_kind));
6688}
6689
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006690void InstructionCodeGeneratorX86::VisitCheckCast(HCheckCast* instruction) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00006691 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006692 LocationSummary* locations = instruction->GetLocations();
Roland Levillain0d5a2812015-11-13 10:07:31 +00006693 Location obj_loc = locations->InAt(0);
6694 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006695 Location cls = locations->InAt(1);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006696 Location temp_loc = locations->GetTemp(0);
6697 Register temp = temp_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006698 const size_t num_temps = NumberOfCheckCastTemps(type_check_kind);
6699 DCHECK_GE(num_temps, 1u);
6700 DCHECK_LE(num_temps, 2u);
6701 Location maybe_temp2_loc = (num_temps >= 2) ? locations->GetTemp(1) : Location::NoLocation();
6702 const uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
6703 const uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6704 const uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6705 const uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
6706 const uint32_t iftable_offset = mirror::Class::IfTableOffset().Uint32Value();
6707 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value();
6708 const uint32_t object_array_data_offset =
6709 mirror::Array::DataOffset(kHeapReferenceSize).Uint32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006710
Vladimir Marko87584542017-12-12 17:47:52 +00006711 bool is_type_check_slow_path_fatal = CodeGenerator::IsTypeCheckSlowPathFatal(instruction);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006712 SlowPathCode* type_check_slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01006713 new (codegen_->GetScopedAllocator()) TypeCheckSlowPathX86(
6714 instruction, is_type_check_slow_path_fatal);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006715 codegen_->AddSlowPath(type_check_slow_path);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006716
Roland Levillain0d5a2812015-11-13 10:07:31 +00006717 NearLabel done;
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006718 // Avoid null check if we know obj is not null.
6719 if (instruction->MustDoNullCheck()) {
6720 __ testl(obj, obj);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006721 __ j(kEqual, &done);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006722 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006723
Roland Levillain0d5a2812015-11-13 10:07:31 +00006724 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006725 case TypeCheckKind::kExactCheck:
6726 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006727 // /* HeapReference<Class> */ temp = obj->klass_
6728 GenerateReferenceLoadTwoRegisters(instruction,
6729 temp_loc,
6730 obj_loc,
6731 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006732 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006733
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006734 if (cls.IsRegister()) {
6735 __ cmpl(temp, cls.AsRegister<Register>());
6736 } else {
6737 DCHECK(cls.IsStackSlot()) << cls;
6738 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6739 }
6740 // Jump to slow path for throwing the exception or doing a
6741 // more involved array check.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006742 __ j(kNotEqual, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006743 break;
6744 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006745
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006746 case TypeCheckKind::kAbstractClassCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006747 // /* HeapReference<Class> */ temp = obj->klass_
6748 GenerateReferenceLoadTwoRegisters(instruction,
6749 temp_loc,
6750 obj_loc,
6751 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006752 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006753
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006754 // If the class is abstract, we eagerly fetch the super class of the
6755 // object to avoid doing a comparison we know will fail.
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006756 NearLabel loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006757 __ Bind(&loop);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006758 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006759 GenerateReferenceLoadOneRegister(instruction,
6760 temp_loc,
6761 super_offset,
6762 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006763 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006764
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006765 // If the class reference currently in `temp` is null, jump to the slow path to throw the
6766 // exception.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006767 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006768 __ j(kZero, type_check_slow_path->GetEntryLabel());
Roland Levillain0d5a2812015-11-13 10:07:31 +00006769
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006770 // Otherwise, compare the classes
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006771 if (cls.IsRegister()) {
6772 __ cmpl(temp, cls.AsRegister<Register>());
6773 } else {
6774 DCHECK(cls.IsStackSlot()) << cls;
6775 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6776 }
6777 __ j(kNotEqual, &loop);
6778 break;
6779 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006780
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006781 case TypeCheckKind::kClassHierarchyCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006782 // /* HeapReference<Class> */ temp = obj->klass_
6783 GenerateReferenceLoadTwoRegisters(instruction,
6784 temp_loc,
6785 obj_loc,
6786 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006787 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006788
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006789 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006790 NearLabel loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006791 __ Bind(&loop);
6792 if (cls.IsRegister()) {
6793 __ cmpl(temp, cls.AsRegister<Register>());
6794 } else {
6795 DCHECK(cls.IsStackSlot()) << cls;
6796 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6797 }
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006798 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006799
Roland Levillain0d5a2812015-11-13 10:07:31 +00006800 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006801 GenerateReferenceLoadOneRegister(instruction,
6802 temp_loc,
6803 super_offset,
6804 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006805 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006806
6807 // If the class reference currently in `temp` is not null, jump
6808 // back at the beginning of the loop.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006809 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006810 __ j(kNotZero, &loop);
6811 // Otherwise, jump to the slow path to throw the exception.;
Roland Levillain0d5a2812015-11-13 10:07:31 +00006812 __ jmp(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006813 break;
6814 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006815
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006816 case TypeCheckKind::kArrayObjectCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006817 // /* HeapReference<Class> */ temp = obj->klass_
6818 GenerateReferenceLoadTwoRegisters(instruction,
6819 temp_loc,
6820 obj_loc,
6821 class_offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006822 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006823
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006824 // Do an exact check.
6825 if (cls.IsRegister()) {
6826 __ cmpl(temp, cls.AsRegister<Register>());
6827 } else {
6828 DCHECK(cls.IsStackSlot()) << cls;
6829 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
6830 }
6831 __ j(kEqual, &done);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006832
6833 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006834 // /* HeapReference<Class> */ temp = temp->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006835 GenerateReferenceLoadOneRegister(instruction,
6836 temp_loc,
6837 component_offset,
6838 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006839 kWithoutReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00006840
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006841 // If the component type is null (i.e. the object not an array), jump to the slow path to
6842 // throw the exception. Otherwise proceed with the check.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006843 __ testl(temp, temp);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006844 __ j(kZero, type_check_slow_path->GetEntryLabel());
Roland Levillain0d5a2812015-11-13 10:07:31 +00006845
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006846 __ cmpw(Address(temp, primitive_offset), Immediate(Primitive::kPrimNot));
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006847 __ j(kNotEqual, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006848 break;
6849 }
Roland Levillain0d5a2812015-11-13 10:07:31 +00006850
Calin Juravle98893e12015-10-02 21:05:03 +01006851 case TypeCheckKind::kUnresolvedCheck:
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006852 // We always go into the type check slow path for the unresolved check case.
Roland Levillain0d5a2812015-11-13 10:07:31 +00006853 // We cannot directly call the CheckCast runtime entry point
6854 // without resorting to a type checking slow path here (i.e. by
6855 // calling InvokeRuntime directly), as it would require to
6856 // assign fixed registers for the inputs of this HInstanceOf
6857 // instruction (following the runtime calling convention), which
6858 // might be cluttered by the potential first read barrier
6859 // emission at the beginning of this method.
6860 __ jmp(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006861 break;
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006862
6863 case TypeCheckKind::kInterfaceCheck: {
Vladimir Markoe619f6c2017-12-12 16:00:01 +00006864 // Fast path for the interface check. Try to avoid read barriers to improve the fast path.
6865 // We can not get false positives by doing this.
6866 // /* HeapReference<Class> */ temp = obj->klass_
6867 GenerateReferenceLoadTwoRegisters(instruction,
6868 temp_loc,
6869 obj_loc,
6870 class_offset,
6871 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006872
Vladimir Markoe619f6c2017-12-12 16:00:01 +00006873 // /* HeapReference<Class> */ temp = temp->iftable_
6874 GenerateReferenceLoadTwoRegisters(instruction,
6875 temp_loc,
6876 temp_loc,
6877 iftable_offset,
6878 kWithoutReadBarrier);
6879 // Iftable is never null.
6880 __ movl(maybe_temp2_loc.AsRegister<Register>(), Address(temp, array_length_offset));
6881 // Maybe poison the `cls` for direct comparison with memory.
6882 __ MaybePoisonHeapReference(cls.AsRegister<Register>());
6883 // Loop through the iftable and check if any class matches.
6884 NearLabel start_loop;
6885 __ Bind(&start_loop);
6886 // Need to subtract first to handle the empty array case.
6887 __ subl(maybe_temp2_loc.AsRegister<Register>(), Immediate(2));
6888 __ j(kNegative, type_check_slow_path->GetEntryLabel());
6889 // Go to next interface if the classes do not match.
6890 __ cmpl(cls.AsRegister<Register>(),
6891 CodeGeneratorX86::ArrayAddress(temp,
6892 maybe_temp2_loc,
6893 TIMES_4,
6894 object_array_data_offset));
6895 __ j(kNotEqual, &start_loop);
6896 // If `cls` was poisoned above, unpoison it.
6897 __ MaybeUnpoisonHeapReference(cls.AsRegister<Register>());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006898 break;
6899 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006900 }
6901 __ Bind(&done);
6902
Roland Levillain0d5a2812015-11-13 10:07:31 +00006903 __ Bind(type_check_slow_path->GetExitLabel());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006904}
6905
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006906void LocationsBuilderX86::VisitMonitorOperation(HMonitorOperation* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006907 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
6908 instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006909 InvokeRuntimeCallingConvention calling_convention;
6910 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6911}
6912
6913void InstructionCodeGeneratorX86::VisitMonitorOperation(HMonitorOperation* instruction) {
Serban Constantinescuba45db02016-07-12 22:53:02 +01006914 codegen_->InvokeRuntime(instruction->IsEnter() ? kQuickLockObject
6915 : kQuickUnlockObject,
Alexandre Rames8158f282015-08-07 10:26:17 +01006916 instruction,
Serban Constantinescuba45db02016-07-12 22:53:02 +01006917 instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006918 if (instruction->IsEnter()) {
6919 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
6920 } else {
6921 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
6922 }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006923}
6924
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006925void LocationsBuilderX86::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
6926void LocationsBuilderX86::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
6927void LocationsBuilderX86::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
6928
6929void LocationsBuilderX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
6930 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01006931 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006932 DCHECK(instruction->GetResultType() == DataType::Type::kInt32
6933 || instruction->GetResultType() == DataType::Type::kInt64);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006934 locations->SetInAt(0, Location::RequiresRegister());
6935 locations->SetInAt(1, Location::Any());
6936 locations->SetOut(Location::SameAsFirstInput());
6937}
6938
6939void InstructionCodeGeneratorX86::VisitAnd(HAnd* instruction) {
6940 HandleBitwiseOperation(instruction);
6941}
6942
6943void InstructionCodeGeneratorX86::VisitOr(HOr* instruction) {
6944 HandleBitwiseOperation(instruction);
6945}
6946
6947void InstructionCodeGeneratorX86::VisitXor(HXor* instruction) {
6948 HandleBitwiseOperation(instruction);
6949}
6950
6951void InstructionCodeGeneratorX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
6952 LocationSummary* locations = instruction->GetLocations();
6953 Location first = locations->InAt(0);
6954 Location second = locations->InAt(1);
6955 DCHECK(first.Equals(locations->Out()));
6956
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006957 if (instruction->GetResultType() == DataType::Type::kInt32) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006958 if (second.IsRegister()) {
6959 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006960 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006961 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006962 __ orl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006963 } else {
6964 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006965 __ xorl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006966 }
6967 } else if (second.IsConstant()) {
6968 if (instruction->IsAnd()) {
Roland Levillain199f3362014-11-27 17:15:16 +00006969 __ andl(first.AsRegister<Register>(),
6970 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006971 } else if (instruction->IsOr()) {
Roland Levillain199f3362014-11-27 17:15:16 +00006972 __ orl(first.AsRegister<Register>(),
6973 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006974 } else {
6975 DCHECK(instruction->IsXor());
Roland Levillain199f3362014-11-27 17:15:16 +00006976 __ xorl(first.AsRegister<Register>(),
6977 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006978 }
6979 } else {
6980 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006981 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006982 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006983 __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006984 } else {
6985 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00006986 __ xorl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006987 }
6988 }
6989 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006990 DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt64);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006991 if (second.IsRegisterPair()) {
6992 if (instruction->IsAnd()) {
6993 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
6994 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
6995 } else if (instruction->IsOr()) {
6996 __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
6997 __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
6998 } else {
6999 DCHECK(instruction->IsXor());
7000 __ xorl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
7001 __ xorl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
7002 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007003 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00007004 if (instruction->IsAnd()) {
7005 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
7006 __ andl(first.AsRegisterPairHigh<Register>(),
7007 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
7008 } else if (instruction->IsOr()) {
7009 __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
7010 __ orl(first.AsRegisterPairHigh<Register>(),
7011 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
7012 } else {
7013 DCHECK(instruction->IsXor());
7014 __ xorl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
7015 __ xorl(first.AsRegisterPairHigh<Register>(),
7016 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
7017 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007018 } else {
7019 DCHECK(second.IsConstant()) << second;
7020 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007021 int32_t low_value = Low32Bits(value);
7022 int32_t high_value = High32Bits(value);
7023 Immediate low(low_value);
7024 Immediate high(high_value);
7025 Register first_low = first.AsRegisterPairLow<Register>();
7026 Register first_high = first.AsRegisterPairHigh<Register>();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007027 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007028 if (low_value == 0) {
7029 __ xorl(first_low, first_low);
7030 } else if (low_value != -1) {
7031 __ andl(first_low, low);
7032 }
7033 if (high_value == 0) {
7034 __ xorl(first_high, first_high);
7035 } else if (high_value != -1) {
7036 __ andl(first_high, high);
7037 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007038 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007039 if (low_value != 0) {
7040 __ orl(first_low, low);
7041 }
7042 if (high_value != 0) {
7043 __ orl(first_high, high);
7044 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007045 } else {
7046 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04007047 if (low_value != 0) {
7048 __ xorl(first_low, low);
7049 }
7050 if (high_value != 0) {
7051 __ xorl(first_high, high);
7052 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00007053 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00007054 }
7055 }
7056}
7057
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007058void InstructionCodeGeneratorX86::GenerateReferenceLoadOneRegister(
7059 HInstruction* instruction,
7060 Location out,
7061 uint32_t offset,
7062 Location maybe_temp,
7063 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007064 Register out_reg = out.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007065 if (read_barrier_option == kWithReadBarrier) {
7066 CHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007067 if (kUseBakerReadBarrier) {
7068 // Load with fast path based Baker's read barrier.
7069 // /* HeapReference<Object> */ out = *(out + offset)
7070 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00007071 instruction, out, out_reg, offset, /* needs_null_check */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007072 } else {
7073 // Load with slow path based read barrier.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007074 // Save the value of `out` into `maybe_temp` before overwriting it
Roland Levillain7c1559a2015-12-15 10:55:36 +00007075 // in the following move operation, as we will need it for the
7076 // read barrier below.
Vladimir Marko953437b2016-08-24 08:30:46 +00007077 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007078 __ movl(maybe_temp.AsRegister<Register>(), out_reg);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007079 // /* HeapReference<Object> */ out = *(out + offset)
7080 __ movl(out_reg, Address(out_reg, offset));
Roland Levillain95e7ffc2016-01-22 11:57:25 +00007081 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007082 }
7083 } else {
7084 // Plain load with no read barrier.
7085 // /* HeapReference<Object> */ out = *(out + offset)
7086 __ movl(out_reg, Address(out_reg, offset));
7087 __ MaybeUnpoisonHeapReference(out_reg);
7088 }
7089}
7090
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007091void InstructionCodeGeneratorX86::GenerateReferenceLoadTwoRegisters(
7092 HInstruction* instruction,
7093 Location out,
7094 Location obj,
7095 uint32_t offset,
7096 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007097 Register out_reg = out.AsRegister<Register>();
7098 Register obj_reg = obj.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007099 if (read_barrier_option == kWithReadBarrier) {
7100 CHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007101 if (kUseBakerReadBarrier) {
7102 // Load with fast path based Baker's read barrier.
7103 // /* HeapReference<Object> */ out = *(obj + offset)
7104 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Vladimir Marko953437b2016-08-24 08:30:46 +00007105 instruction, out, obj_reg, offset, /* needs_null_check */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007106 } else {
7107 // Load with slow path based read barrier.
7108 // /* HeapReference<Object> */ out = *(obj + offset)
7109 __ movl(out_reg, Address(obj_reg, offset));
7110 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
7111 }
7112 } else {
7113 // Plain load with no read barrier.
7114 // /* HeapReference<Object> */ out = *(obj + offset)
7115 __ movl(out_reg, Address(obj_reg, offset));
7116 __ MaybeUnpoisonHeapReference(out_reg);
7117 }
7118}
7119
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007120void InstructionCodeGeneratorX86::GenerateGcRootFieldLoad(
7121 HInstruction* instruction,
7122 Location root,
7123 const Address& address,
7124 Label* fixup_label,
7125 ReadBarrierOption read_barrier_option) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007126 Register root_reg = root.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08007127 if (read_barrier_option == kWithReadBarrier) {
Mathieu Chartier31b12e32016-09-02 17:11:57 -07007128 DCHECK(kEmitCompilerReadBarrier);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007129 if (kUseBakerReadBarrier) {
7130 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
7131 // Baker's read barrier are used:
7132 //
Roland Levillaind966ce72017-02-09 16:20:14 +00007133 // root = obj.field;
7134 // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg()
7135 // if (temp != null) {
7136 // root = temp(root)
Roland Levillain7c1559a2015-12-15 10:55:36 +00007137 // }
7138
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007139 // /* GcRoot<mirror::Object> */ root = *address
7140 __ movl(root_reg, address);
7141 if (fixup_label != nullptr) {
7142 __ Bind(fixup_label);
7143 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007144 static_assert(
7145 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
7146 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
7147 "have different sizes.");
7148 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
7149 "art::mirror::CompressedReference<mirror::Object> and int32_t "
7150 "have different sizes.");
7151
Vladimir Marko953437b2016-08-24 08:30:46 +00007152 // Slow path marking the GC root `root`.
Vladimir Marko174b2e22017-10-12 13:34:49 +01007153 SlowPathCode* slow_path = new (codegen_->GetScopedAllocator()) ReadBarrierMarkSlowPathX86(
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007154 instruction, root, /* unpoison_ref_before_marking */ false);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007155 codegen_->AddSlowPath(slow_path);
7156
Roland Levillaind966ce72017-02-09 16:20:14 +00007157 // Test the entrypoint (`Thread::Current()->pReadBarrierMarkReg ## root.reg()`).
7158 const int32_t entry_point_offset =
Roland Levillain97c46462017-05-11 14:04:03 +01007159 Thread::ReadBarrierMarkEntryPointsOffset<kX86PointerSize>(root.reg());
Roland Levillaind966ce72017-02-09 16:20:14 +00007160 __ fs()->cmpl(Address::Absolute(entry_point_offset), Immediate(0));
7161 // The entrypoint is null when the GC is not marking.
Roland Levillain7c1559a2015-12-15 10:55:36 +00007162 __ j(kNotEqual, slow_path->GetEntryLabel());
7163 __ Bind(slow_path->GetExitLabel());
7164 } else {
7165 // GC root loaded through a slow path for read barriers other
7166 // than Baker's.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007167 // /* GcRoot<mirror::Object>* */ root = address
7168 __ leal(root_reg, address);
7169 if (fixup_label != nullptr) {
7170 __ Bind(fixup_label);
7171 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007172 // /* mirror::Object* */ root = root->Read()
7173 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
7174 }
7175 } else {
7176 // Plain GC root load with no read barrier.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007177 // /* GcRoot<mirror::Object> */ root = *address
7178 __ movl(root_reg, address);
7179 if (fixup_label != nullptr) {
7180 __ Bind(fixup_label);
7181 }
Roland Levillaine3f43ac2016-01-19 15:07:47 +00007182 // Note that GC roots are not affected by heap poisoning, thus we
7183 // do not have to unpoison `root_reg` here.
Roland Levillain7c1559a2015-12-15 10:55:36 +00007184 }
7185}
7186
7187void CodeGeneratorX86::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
7188 Location ref,
7189 Register obj,
7190 uint32_t offset,
Roland Levillain7c1559a2015-12-15 10:55:36 +00007191 bool needs_null_check) {
7192 DCHECK(kEmitCompilerReadBarrier);
7193 DCHECK(kUseBakerReadBarrier);
7194
7195 // /* HeapReference<Object> */ ref = *(obj + offset)
7196 Address src(obj, offset);
Vladimir Marko953437b2016-08-24 08:30:46 +00007197 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007198}
7199
7200void CodeGeneratorX86::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
7201 Location ref,
7202 Register obj,
7203 uint32_t data_offset,
7204 Location index,
Roland Levillain7c1559a2015-12-15 10:55:36 +00007205 bool needs_null_check) {
7206 DCHECK(kEmitCompilerReadBarrier);
7207 DCHECK(kUseBakerReadBarrier);
7208
Roland Levillain3d312422016-06-23 13:53:42 +01007209 static_assert(
7210 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
7211 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillain7c1559a2015-12-15 10:55:36 +00007212 // /* HeapReference<Object> */ ref =
7213 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007214 Address src = CodeGeneratorX86::ArrayAddress(obj, index, TIMES_4, data_offset);
Vladimir Marko953437b2016-08-24 08:30:46 +00007215 GenerateReferenceLoadWithBakerReadBarrier(instruction, ref, obj, src, needs_null_check);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007216}
7217
7218void CodeGeneratorX86::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
7219 Location ref,
7220 Register obj,
7221 const Address& src,
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007222 bool needs_null_check,
7223 bool always_update_field,
7224 Register* temp) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007225 DCHECK(kEmitCompilerReadBarrier);
7226 DCHECK(kUseBakerReadBarrier);
7227
7228 // In slow path based read barriers, the read barrier call is
7229 // inserted after the original load. However, in fast path based
7230 // Baker's read barriers, we need to perform the load of
7231 // mirror::Object::monitor_ *before* the original reference load.
7232 // This load-load ordering is required by the read barrier.
7233 // The fast path/slow path (for Baker's algorithm) should look like:
7234 //
7235 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
7236 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
7237 // HeapReference<Object> ref = *src; // Original reference load.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007238 // bool is_gray = (rb_state == ReadBarrier::GrayState());
Roland Levillain7c1559a2015-12-15 10:55:36 +00007239 // if (is_gray) {
7240 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
7241 // }
7242 //
7243 // Note: the original implementation in ReadBarrier::Barrier is
7244 // slightly more complex as:
7245 // - it implements the load-load fence using a data dependency on
Roland Levillaine3f43ac2016-01-19 15:07:47 +00007246 // the high-bits of rb_state, which are expected to be all zeroes
7247 // (we use CodeGeneratorX86::GenerateMemoryBarrier instead here,
7248 // which is a no-op thanks to the x86 memory model);
Roland Levillain7c1559a2015-12-15 10:55:36 +00007249 // - it performs additional checks that we do not do here for
7250 // performance reasons.
7251
7252 Register ref_reg = ref.AsRegister<Register>();
Roland Levillain7c1559a2015-12-15 10:55:36 +00007253 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
7254
Vladimir Marko953437b2016-08-24 08:30:46 +00007255 // Given the numeric representation, it's enough to check the low bit of the rb_state.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007256 static_assert(ReadBarrier::WhiteState() == 0, "Expecting white to have value 0");
7257 static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1");
Vladimir Marko953437b2016-08-24 08:30:46 +00007258 constexpr uint32_t gray_byte_position = LockWord::kReadBarrierStateShift / kBitsPerByte;
7259 constexpr uint32_t gray_bit_position = LockWord::kReadBarrierStateShift % kBitsPerByte;
7260 constexpr int32_t test_value = static_cast<int8_t>(1 << gray_bit_position);
7261
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007262 // if (rb_state == ReadBarrier::GrayState())
Vladimir Marko953437b2016-08-24 08:30:46 +00007263 // ref = ReadBarrier::Mark(ref);
7264 // At this point, just do the "if" and make sure that flags are preserved until the branch.
7265 __ testb(Address(obj, monitor_offset + gray_byte_position), Immediate(test_value));
Roland Levillain7c1559a2015-12-15 10:55:36 +00007266 if (needs_null_check) {
7267 MaybeRecordImplicitNullCheck(instruction);
7268 }
Roland Levillain7c1559a2015-12-15 10:55:36 +00007269
7270 // Load fence to prevent load-load reordering.
7271 // Note that this is a no-op, thanks to the x86 memory model.
7272 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
7273
7274 // The actual reference load.
7275 // /* HeapReference<Object> */ ref = *src
Vladimir Marko953437b2016-08-24 08:30:46 +00007276 __ movl(ref_reg, src); // Flags are unaffected.
7277
7278 // Note: Reference unpoisoning modifies the flags, so we need to delay it after the branch.
7279 // Slow path marking the object `ref` when it is gray.
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007280 SlowPathCode* slow_path;
7281 if (always_update_field) {
7282 DCHECK(temp != nullptr);
Vladimir Marko174b2e22017-10-12 13:34:49 +01007283 slow_path = new (GetScopedAllocator()) ReadBarrierMarkAndUpdateFieldSlowPathX86(
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007284 instruction, ref, obj, src, /* unpoison_ref_before_marking */ true, *temp);
7285 } else {
Vladimir Marko174b2e22017-10-12 13:34:49 +01007286 slow_path = new (GetScopedAllocator()) ReadBarrierMarkSlowPathX86(
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007287 instruction, ref, /* unpoison_ref_before_marking */ true);
7288 }
Vladimir Marko953437b2016-08-24 08:30:46 +00007289 AddSlowPath(slow_path);
7290
7291 // We have done the "if" of the gray bit check above, now branch based on the flags.
7292 __ j(kNotZero, slow_path->GetEntryLabel());
Roland Levillain7c1559a2015-12-15 10:55:36 +00007293
7294 // Object* ref = ref_addr->AsMirrorPtr()
7295 __ MaybeUnpoisonHeapReference(ref_reg);
7296
Roland Levillain7c1559a2015-12-15 10:55:36 +00007297 __ Bind(slow_path->GetExitLabel());
7298}
7299
7300void CodeGeneratorX86::GenerateReadBarrierSlow(HInstruction* instruction,
7301 Location out,
7302 Location ref,
7303 Location obj,
7304 uint32_t offset,
7305 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007306 DCHECK(kEmitCompilerReadBarrier);
7307
Roland Levillain7c1559a2015-12-15 10:55:36 +00007308 // Insert a slow path based read barrier *after* the reference load.
7309 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00007310 // If heap poisoning is enabled, the unpoisoning of the loaded
7311 // reference will be carried out by the runtime within the slow
7312 // path.
7313 //
7314 // Note that `ref` currently does not get unpoisoned (when heap
7315 // poisoning is enabled), which is alright as the `ref` argument is
7316 // not used by the artReadBarrierSlow entry point.
7317 //
7318 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
Vladimir Marko174b2e22017-10-12 13:34:49 +01007319 SlowPathCode* slow_path = new (GetScopedAllocator())
Roland Levillain0d5a2812015-11-13 10:07:31 +00007320 ReadBarrierForHeapReferenceSlowPathX86(instruction, out, ref, obj, offset, index);
7321 AddSlowPath(slow_path);
7322
Roland Levillain0d5a2812015-11-13 10:07:31 +00007323 __ jmp(slow_path->GetEntryLabel());
7324 __ Bind(slow_path->GetExitLabel());
7325}
7326
Roland Levillain7c1559a2015-12-15 10:55:36 +00007327void CodeGeneratorX86::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
7328 Location out,
7329 Location ref,
7330 Location obj,
7331 uint32_t offset,
7332 Location index) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007333 if (kEmitCompilerReadBarrier) {
Roland Levillain7c1559a2015-12-15 10:55:36 +00007334 // Baker's read barriers shall be handled by the fast path
7335 // (CodeGeneratorX86::GenerateReferenceLoadWithBakerReadBarrier).
7336 DCHECK(!kUseBakerReadBarrier);
Roland Levillain0d5a2812015-11-13 10:07:31 +00007337 // If heap poisoning is enabled, unpoisoning will be taken care of
7338 // by the runtime within the slow path.
Roland Levillain7c1559a2015-12-15 10:55:36 +00007339 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
Roland Levillain0d5a2812015-11-13 10:07:31 +00007340 } else if (kPoisonHeapReferences) {
7341 __ UnpoisonHeapReference(out.AsRegister<Register>());
7342 }
7343}
7344
Roland Levillain7c1559a2015-12-15 10:55:36 +00007345void CodeGeneratorX86::GenerateReadBarrierForRootSlow(HInstruction* instruction,
7346 Location out,
7347 Location root) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00007348 DCHECK(kEmitCompilerReadBarrier);
7349
Roland Levillain7c1559a2015-12-15 10:55:36 +00007350 // Insert a slow path based read barrier *after* the GC root load.
7351 //
Roland Levillain0d5a2812015-11-13 10:07:31 +00007352 // Note that GC roots are not affected by heap poisoning, so we do
7353 // not need to do anything special for this here.
7354 SlowPathCode* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01007355 new (GetScopedAllocator()) ReadBarrierForRootSlowPathX86(instruction, out, root);
Roland Levillain0d5a2812015-11-13 10:07:31 +00007356 AddSlowPath(slow_path);
7357
Roland Levillain0d5a2812015-11-13 10:07:31 +00007358 __ jmp(slow_path->GetEntryLabel());
7359 __ Bind(slow_path->GetExitLabel());
7360}
7361
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007362void LocationsBuilderX86::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007363 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007364 LOG(FATAL) << "Unreachable";
7365}
7366
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007367void InstructionCodeGeneratorX86::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007368 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007369 LOG(FATAL) << "Unreachable";
7370}
7371
Mark Mendellfe57faa2015-09-18 09:26:15 -04007372// Simple implementation of packed switch - generate cascaded compare/jumps.
7373void LocationsBuilderX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7374 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007375 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Mark Mendellfe57faa2015-09-18 09:26:15 -04007376 locations->SetInAt(0, Location::RequiresRegister());
7377}
7378
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007379void InstructionCodeGeneratorX86::GenPackedSwitchWithCompares(Register value_reg,
7380 int32_t lower_bound,
7381 uint32_t num_entries,
7382 HBasicBlock* switch_block,
7383 HBasicBlock* default_block) {
7384 // Figure out the correct compare values and jump conditions.
7385 // Handle the first compare/branch as a special case because it might
7386 // jump to the default case.
7387 DCHECK_GT(num_entries, 2u);
7388 Condition first_condition;
7389 uint32_t index;
7390 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
7391 if (lower_bound != 0) {
7392 first_condition = kLess;
7393 __ cmpl(value_reg, Immediate(lower_bound));
7394 __ j(first_condition, codegen_->GetLabelOf(default_block));
7395 __ j(kEqual, codegen_->GetLabelOf(successors[0]));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007396
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007397 index = 1;
7398 } else {
7399 // Handle all the compare/jumps below.
7400 first_condition = kBelow;
7401 index = 0;
7402 }
7403
7404 // Handle the rest of the compare/jumps.
7405 for (; index + 1 < num_entries; index += 2) {
7406 int32_t compare_to_value = lower_bound + index + 1;
7407 __ cmpl(value_reg, Immediate(compare_to_value));
7408 // Jump to successors[index] if value < case_value[index].
7409 __ j(first_condition, codegen_->GetLabelOf(successors[index]));
7410 // Jump to successors[index + 1] if value == case_value[index + 1].
7411 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1]));
7412 }
7413
7414 if (index != num_entries) {
7415 // There are an odd number of entries. Handle the last one.
7416 DCHECK_EQ(index + 1, num_entries);
7417 __ cmpl(value_reg, Immediate(lower_bound + index));
7418 __ j(kEqual, codegen_->GetLabelOf(successors[index]));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007419 }
7420
7421 // And the default for any other value.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007422 if (!codegen_->GoesToNextBlock(switch_block, default_block)) {
7423 __ jmp(codegen_->GetLabelOf(default_block));
Mark Mendellfe57faa2015-09-18 09:26:15 -04007424 }
7425}
7426
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007427void InstructionCodeGeneratorX86::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7428 int32_t lower_bound = switch_instr->GetStartValue();
7429 uint32_t num_entries = switch_instr->GetNumEntries();
7430 LocationSummary* locations = switch_instr->GetLocations();
7431 Register value_reg = locations->InAt(0).AsRegister<Register>();
7432
7433 GenPackedSwitchWithCompares(value_reg,
7434 lower_bound,
7435 num_entries,
7436 switch_instr->GetBlock(),
7437 switch_instr->GetDefaultBlock());
7438}
7439
Mark Mendell805b3b52015-09-18 14:10:29 -04007440void LocationsBuilderX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) {
7441 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007442 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Mark Mendell805b3b52015-09-18 14:10:29 -04007443 locations->SetInAt(0, Location::RequiresRegister());
7444
7445 // Constant area pointer.
7446 locations->SetInAt(1, Location::RequiresRegister());
7447
7448 // And the temporary we need.
7449 locations->AddTemp(Location::RequiresRegister());
7450}
7451
7452void InstructionCodeGeneratorX86::VisitX86PackedSwitch(HX86PackedSwitch* switch_instr) {
7453 int32_t lower_bound = switch_instr->GetStartValue();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007454 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendell805b3b52015-09-18 14:10:29 -04007455 LocationSummary* locations = switch_instr->GetLocations();
7456 Register value_reg = locations->InAt(0).AsRegister<Register>();
7457 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
7458
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007459 if (num_entries <= kPackedSwitchJumpTableThreshold) {
7460 GenPackedSwitchWithCompares(value_reg,
7461 lower_bound,
7462 num_entries,
7463 switch_instr->GetBlock(),
7464 default_block);
7465 return;
7466 }
7467
Mark Mendell805b3b52015-09-18 14:10:29 -04007468 // Optimizing has a jump area.
7469 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
7470 Register constant_area = locations->InAt(1).AsRegister<Register>();
7471
7472 // Remove the bias, if needed.
7473 if (lower_bound != 0) {
7474 __ leal(temp_reg, Address(value_reg, -lower_bound));
7475 value_reg = temp_reg;
7476 }
7477
7478 // Is the value in range?
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007479 DCHECK_GE(num_entries, 1u);
Mark Mendell805b3b52015-09-18 14:10:29 -04007480 __ cmpl(value_reg, Immediate(num_entries - 1));
7481 __ j(kAbove, codegen_->GetLabelOf(default_block));
7482
7483 // We are in the range of the table.
7484 // Load (target-constant_area) from the jump table, indexing by the value.
7485 __ movl(temp_reg, codegen_->LiteralCaseTable(switch_instr, constant_area, value_reg));
7486
7487 // Compute the actual target address by adding in constant_area.
7488 __ addl(temp_reg, constant_area);
7489
7490 // And jump.
7491 __ jmp(temp_reg);
7492}
7493
Mark Mendell0616ae02015-04-17 12:49:27 -04007494void LocationsBuilderX86::VisitX86ComputeBaseMethodAddress(
7495 HX86ComputeBaseMethodAddress* insn) {
7496 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007497 new (GetGraph()->GetAllocator()) LocationSummary(insn, LocationSummary::kNoCall);
Mark Mendell0616ae02015-04-17 12:49:27 -04007498 locations->SetOut(Location::RequiresRegister());
7499}
7500
7501void InstructionCodeGeneratorX86::VisitX86ComputeBaseMethodAddress(
7502 HX86ComputeBaseMethodAddress* insn) {
7503 LocationSummary* locations = insn->GetLocations();
7504 Register reg = locations->Out().AsRegister<Register>();
7505
7506 // Generate call to next instruction.
7507 Label next_instruction;
7508 __ call(&next_instruction);
7509 __ Bind(&next_instruction);
7510
7511 // Remember this offset for later use with constant area.
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007512 codegen_->AddMethodAddressOffset(insn, GetAssembler()->CodeSize());
Mark Mendell0616ae02015-04-17 12:49:27 -04007513
7514 // Grab the return address off the stack.
7515 __ popl(reg);
7516}
7517
7518void LocationsBuilderX86::VisitX86LoadFromConstantTable(
7519 HX86LoadFromConstantTable* insn) {
7520 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007521 new (GetGraph()->GetAllocator()) LocationSummary(insn, LocationSummary::kNoCall);
Mark Mendell0616ae02015-04-17 12:49:27 -04007522
7523 locations->SetInAt(0, Location::RequiresRegister());
7524 locations->SetInAt(1, Location::ConstantLocation(insn->GetConstant()));
7525
7526 // If we don't need to be materialized, we only need the inputs to be set.
David Brazdilb3e773e2016-01-26 11:28:37 +00007527 if (insn->IsEmittedAtUseSite()) {
Mark Mendell0616ae02015-04-17 12:49:27 -04007528 return;
7529 }
7530
7531 switch (insn->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007532 case DataType::Type::kFloat32:
7533 case DataType::Type::kFloat64:
Mark Mendell0616ae02015-04-17 12:49:27 -04007534 locations->SetOut(Location::RequiresFpuRegister());
7535 break;
7536
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007537 case DataType::Type::kInt32:
Mark Mendell0616ae02015-04-17 12:49:27 -04007538 locations->SetOut(Location::RequiresRegister());
7539 break;
7540
7541 default:
7542 LOG(FATAL) << "Unsupported x86 constant area type " << insn->GetType();
7543 }
7544}
7545
7546void InstructionCodeGeneratorX86::VisitX86LoadFromConstantTable(HX86LoadFromConstantTable* insn) {
David Brazdilb3e773e2016-01-26 11:28:37 +00007547 if (insn->IsEmittedAtUseSite()) {
Mark Mendell0616ae02015-04-17 12:49:27 -04007548 return;
7549 }
7550
7551 LocationSummary* locations = insn->GetLocations();
7552 Location out = locations->Out();
7553 Register const_area = locations->InAt(0).AsRegister<Register>();
7554 HConstant *value = insn->GetConstant();
7555
7556 switch (insn->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007557 case DataType::Type::kFloat32:
Mark Mendell0616ae02015-04-17 12:49:27 -04007558 __ movss(out.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007559 codegen_->LiteralFloatAddress(
7560 value->AsFloatConstant()->GetValue(), insn->GetBaseMethodAddress(), const_area));
Mark Mendell0616ae02015-04-17 12:49:27 -04007561 break;
7562
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007563 case DataType::Type::kFloat64:
Mark Mendell0616ae02015-04-17 12:49:27 -04007564 __ movsd(out.AsFpuRegister<XmmRegister>(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007565 codegen_->LiteralDoubleAddress(
7566 value->AsDoubleConstant()->GetValue(), insn->GetBaseMethodAddress(), const_area));
Mark Mendell0616ae02015-04-17 12:49:27 -04007567 break;
7568
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007569 case DataType::Type::kInt32:
Mark Mendell0616ae02015-04-17 12:49:27 -04007570 __ movl(out.AsRegister<Register>(),
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007571 codegen_->LiteralInt32Address(
7572 value->AsIntConstant()->GetValue(), insn->GetBaseMethodAddress(), const_area));
Mark Mendell0616ae02015-04-17 12:49:27 -04007573 break;
7574
7575 default:
7576 LOG(FATAL) << "Unsupported x86 constant area type " << insn->GetType();
7577 }
7578}
7579
Mark Mendell0616ae02015-04-17 12:49:27 -04007580/**
7581 * Class to handle late fixup of offsets into constant area.
7582 */
Vladimir Marko5233f932015-09-29 19:01:15 +01007583class RIPFixup : public AssemblerFixup, public ArenaObject<kArenaAllocCodeGenerator> {
Mark Mendell0616ae02015-04-17 12:49:27 -04007584 public:
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007585 RIPFixup(CodeGeneratorX86& codegen,
7586 HX86ComputeBaseMethodAddress* base_method_address,
7587 size_t offset)
7588 : codegen_(&codegen),
7589 base_method_address_(base_method_address),
7590 offset_into_constant_area_(offset) {}
Mark Mendell805b3b52015-09-18 14:10:29 -04007591
7592 protected:
7593 void SetOffset(size_t offset) { offset_into_constant_area_ = offset; }
7594
7595 CodeGeneratorX86* codegen_;
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007596 HX86ComputeBaseMethodAddress* base_method_address_;
Mark Mendell0616ae02015-04-17 12:49:27 -04007597
7598 private:
7599 void Process(const MemoryRegion& region, int pos) OVERRIDE {
7600 // Patch the correct offset for the instruction. The place to patch is the
7601 // last 4 bytes of the instruction.
7602 // The value to patch is the distance from the offset in the constant area
7603 // from the address computed by the HX86ComputeBaseMethodAddress instruction.
Mark Mendell805b3b52015-09-18 14:10:29 -04007604 int32_t constant_offset = codegen_->ConstantAreaStart() + offset_into_constant_area_;
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007605 int32_t relative_position =
7606 constant_offset - codegen_->GetMethodAddressOffset(base_method_address_);
Mark Mendell0616ae02015-04-17 12:49:27 -04007607
7608 // Patch in the right value.
7609 region.StoreUnaligned<int32_t>(pos - 4, relative_position);
7610 }
7611
Mark Mendell0616ae02015-04-17 12:49:27 -04007612 // Location in constant area that the fixup refers to.
Mark Mendell805b3b52015-09-18 14:10:29 -04007613 int32_t offset_into_constant_area_;
Mark Mendell0616ae02015-04-17 12:49:27 -04007614};
7615
Mark Mendell805b3b52015-09-18 14:10:29 -04007616/**
7617 * Class to handle late fixup of offsets to a jump table that will be created in the
7618 * constant area.
7619 */
7620class JumpTableRIPFixup : public RIPFixup {
7621 public:
7622 JumpTableRIPFixup(CodeGeneratorX86& codegen, HX86PackedSwitch* switch_instr)
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007623 : RIPFixup(codegen, switch_instr->GetBaseMethodAddress(), static_cast<size_t>(-1)),
7624 switch_instr_(switch_instr) {}
Mark Mendell805b3b52015-09-18 14:10:29 -04007625
7626 void CreateJumpTable() {
7627 X86Assembler* assembler = codegen_->GetAssembler();
7628
7629 // Ensure that the reference to the jump table has the correct offset.
7630 const int32_t offset_in_constant_table = assembler->ConstantAreaSize();
7631 SetOffset(offset_in_constant_table);
7632
7633 // The label values in the jump table are computed relative to the
7634 // instruction addressing the constant area.
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007635 const int32_t relative_offset = codegen_->GetMethodAddressOffset(base_method_address_);
Mark Mendell805b3b52015-09-18 14:10:29 -04007636
7637 // Populate the jump table with the correct values for the jump table.
7638 int32_t num_entries = switch_instr_->GetNumEntries();
7639 HBasicBlock* block = switch_instr_->GetBlock();
7640 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors();
7641 // The value that we want is the target offset - the position of the table.
7642 for (int32_t i = 0; i < num_entries; i++) {
7643 HBasicBlock* b = successors[i];
7644 Label* l = codegen_->GetLabelOf(b);
7645 DCHECK(l->IsBound());
7646 int32_t offset_to_block = l->Position() - relative_offset;
7647 assembler->AppendInt32(offset_to_block);
7648 }
7649 }
7650
7651 private:
7652 const HX86PackedSwitch* switch_instr_;
7653};
7654
7655void CodeGeneratorX86::Finalize(CodeAllocator* allocator) {
7656 // Generate the constant area if needed.
7657 X86Assembler* assembler = GetAssembler();
7658 if (!assembler->IsConstantAreaEmpty() || !fixups_to_jump_tables_.empty()) {
7659 // Align to 4 byte boundary to reduce cache misses, as the data is 4 and 8
7660 // byte values.
7661 assembler->Align(4, 0);
7662 constant_area_start_ = assembler->CodeSize();
7663
7664 // Populate any jump tables.
Vladimir Marko7d157fc2017-05-10 16:29:23 +01007665 for (JumpTableRIPFixup* jump_table : fixups_to_jump_tables_) {
Mark Mendell805b3b52015-09-18 14:10:29 -04007666 jump_table->CreateJumpTable();
7667 }
7668
7669 // And now add the constant area to the generated code.
7670 assembler->AddConstantArea();
7671 }
7672
7673 // And finish up.
7674 CodeGenerator::Finalize(allocator);
7675}
7676
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007677Address CodeGeneratorX86::LiteralDoubleAddress(double v,
7678 HX86ComputeBaseMethodAddress* method_base,
7679 Register reg) {
7680 AssemblerFixup* fixup =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007681 new (GetGraph()->GetAllocator()) RIPFixup(*this, method_base, __ AddDouble(v));
Mark Mendell0616ae02015-04-17 12:49:27 -04007682 return Address(reg, kDummy32BitOffset, fixup);
7683}
7684
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007685Address CodeGeneratorX86::LiteralFloatAddress(float v,
7686 HX86ComputeBaseMethodAddress* method_base,
7687 Register reg) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007688 AssemblerFixup* fixup =
7689 new (GetGraph()->GetAllocator()) RIPFixup(*this, method_base, __ AddFloat(v));
Mark Mendell0616ae02015-04-17 12:49:27 -04007690 return Address(reg, kDummy32BitOffset, fixup);
7691}
7692
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007693Address CodeGeneratorX86::LiteralInt32Address(int32_t v,
7694 HX86ComputeBaseMethodAddress* method_base,
7695 Register reg) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007696 AssemblerFixup* fixup =
7697 new (GetGraph()->GetAllocator()) RIPFixup(*this, method_base, __ AddInt32(v));
Mark Mendell0616ae02015-04-17 12:49:27 -04007698 return Address(reg, kDummy32BitOffset, fixup);
7699}
7700
Nicolas Geoffray133719e2017-01-22 15:44:39 +00007701Address CodeGeneratorX86::LiteralInt64Address(int64_t v,
7702 HX86ComputeBaseMethodAddress* method_base,
7703 Register reg) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007704 AssemblerFixup* fixup =
7705 new (GetGraph()->GetAllocator()) RIPFixup(*this, method_base, __ AddInt64(v));
Mark Mendell0616ae02015-04-17 12:49:27 -04007706 return Address(reg, kDummy32BitOffset, fixup);
7707}
7708
Aart Bika19616e2016-02-01 18:57:58 -08007709void CodeGeneratorX86::Load32BitValue(Register dest, int32_t value) {
7710 if (value == 0) {
7711 __ xorl(dest, dest);
7712 } else {
7713 __ movl(dest, Immediate(value));
7714 }
7715}
7716
7717void CodeGeneratorX86::Compare32BitValue(Register dest, int32_t value) {
7718 if (value == 0) {
7719 __ testl(dest, dest);
7720 } else {
7721 __ cmpl(dest, Immediate(value));
7722 }
7723}
7724
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007725void CodeGeneratorX86::GenerateIntCompare(Location lhs, Location rhs) {
7726 Register lhs_reg = lhs.AsRegister<Register>();
jessicahandojo4877b792016-09-08 19:49:13 -07007727 GenerateIntCompare(lhs_reg, rhs);
7728}
7729
7730void CodeGeneratorX86::GenerateIntCompare(Register lhs, Location rhs) {
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007731 if (rhs.IsConstant()) {
7732 int32_t value = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
jessicahandojo4877b792016-09-08 19:49:13 -07007733 Compare32BitValue(lhs, value);
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007734 } else if (rhs.IsStackSlot()) {
jessicahandojo4877b792016-09-08 19:49:13 -07007735 __ cmpl(lhs, Address(ESP, rhs.GetStackIndex()));
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007736 } else {
jessicahandojo4877b792016-09-08 19:49:13 -07007737 __ cmpl(lhs, rhs.AsRegister<Register>());
Vladimir Marko56f4bdd2016-09-16 11:32:36 +01007738 }
7739}
7740
7741Address CodeGeneratorX86::ArrayAddress(Register obj,
7742 Location index,
7743 ScaleFactor scale,
7744 uint32_t data_offset) {
7745 return index.IsConstant() ?
7746 Address(obj, (index.GetConstant()->AsIntConstant()->GetValue() << scale) + data_offset) :
7747 Address(obj, index.AsRegister<Register>(), scale, data_offset);
7748}
7749
Mark Mendell805b3b52015-09-18 14:10:29 -04007750Address CodeGeneratorX86::LiteralCaseTable(HX86PackedSwitch* switch_instr,
7751 Register reg,
7752 Register value) {
7753 // Create a fixup to be used to create and address the jump table.
7754 JumpTableRIPFixup* table_fixup =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007755 new (GetGraph()->GetAllocator()) JumpTableRIPFixup(*this, switch_instr);
Mark Mendell805b3b52015-09-18 14:10:29 -04007756
7757 // We have to populate the jump tables.
7758 fixups_to_jump_tables_.push_back(table_fixup);
7759
7760 // We want a scaled address, as we are extracting the correct offset from the table.
7761 return Address(reg, value, TIMES_4, kDummy32BitOffset, table_fixup);
7762}
7763
Andreas Gampe85b62f22015-09-09 13:15:38 -07007764// TODO: target as memory.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007765void CodeGeneratorX86::MoveFromReturnRegister(Location target, DataType::Type type) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07007766 if (!target.IsValid()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007767 DCHECK_EQ(type, DataType::Type::kVoid);
Andreas Gampe85b62f22015-09-09 13:15:38 -07007768 return;
7769 }
7770
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007771 DCHECK_NE(type, DataType::Type::kVoid);
Andreas Gampe85b62f22015-09-09 13:15:38 -07007772
7773 Location return_loc = InvokeDexCallingConventionVisitorX86().GetReturnLocation(type);
7774 if (target.Equals(return_loc)) {
7775 return;
7776 }
7777
7778 // TODO: Consider pairs in the parallel move resolver, then this could be nicely merged
7779 // with the else branch.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007780 if (type == DataType::Type::kInt64) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007781 HParallelMove parallel_move(GetGraph()->GetAllocator());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01007782 parallel_move.AddMove(return_loc.ToLow(), target.ToLow(), DataType::Type::kInt32, nullptr);
7783 parallel_move.AddMove(return_loc.ToHigh(), target.ToHigh(), DataType::Type::kInt32, nullptr);
Andreas Gampe85b62f22015-09-09 13:15:38 -07007784 GetMoveResolver()->EmitNativeCode(&parallel_move);
7785 } else {
7786 // Let the parallel move resolver take care of all of this.
Vladimir Markoca6fff82017-10-03 14:49:14 +01007787 HParallelMove parallel_move(GetGraph()->GetAllocator());
Andreas Gampe85b62f22015-09-09 13:15:38 -07007788 parallel_move.AddMove(return_loc, target, type, nullptr);
7789 GetMoveResolver()->EmitNativeCode(&parallel_move);
7790 }
7791}
7792
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007793void CodeGeneratorX86::PatchJitRootUse(uint8_t* code,
7794 const uint8_t* roots_data,
7795 const PatchInfo<Label>& info,
7796 uint64_t index_in_table) const {
7797 uint32_t code_offset = info.label.Position() - kLabelPositionToLiteralOffsetAdjustment;
7798 uintptr_t address =
7799 reinterpret_cast<uintptr_t>(roots_data) + index_in_table * sizeof(GcRoot<mirror::Object>);
7800 typedef __attribute__((__aligned__(1))) uint32_t unaligned_uint32_t;
7801 reinterpret_cast<unaligned_uint32_t*>(code + code_offset)[0] =
7802 dchecked_integral_cast<uint32_t>(address);
7803}
7804
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007805void CodeGeneratorX86::EmitJitRootPatches(uint8_t* code, const uint8_t* roots_data) {
7806 for (const PatchInfo<Label>& info : jit_string_patches_) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01007807 StringReference string_reference(&info.dex_file, dex::StringIndex(info.index));
7808 uint64_t index_in_table = GetJitStringRootIndex(string_reference);
Vladimir Marko7d157fc2017-05-10 16:29:23 +01007809 PatchJitRootUse(code, roots_data, info, index_in_table);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007810 }
7811
7812 for (const PatchInfo<Label>& info : jit_class_patches_) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01007813 TypeReference type_reference(&info.dex_file, dex::TypeIndex(info.index));
7814 uint64_t index_in_table = GetJitClassRootIndex(type_reference);
Vladimir Marko7d157fc2017-05-10 16:29:23 +01007815 PatchJitRootUse(code, roots_data, info, index_in_table);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007816 }
7817}
7818
xueliang.zhonge0eb4832017-10-30 13:43:14 +00007819void LocationsBuilderX86::VisitIntermediateAddress(HIntermediateAddress* instruction
7820 ATTRIBUTE_UNUSED) {
7821 LOG(FATAL) << "Unreachable";
7822}
7823
7824void InstructionCodeGeneratorX86::VisitIntermediateAddress(HIntermediateAddress* instruction
7825 ATTRIBUTE_UNUSED) {
7826 LOG(FATAL) << "Unreachable";
7827}
7828
Roland Levillain4d027112015-07-01 15:41:14 +01007829#undef __
7830
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00007831} // namespace x86
7832} // namespace art