blob: e89ea85557f09cce3b8108e4dea09129428011f8 [file] [log] [blame]
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "code_generator_x86.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010018
Mathieu Chartiere401d142015-04-22 13:56:20 -070019#include "art_method.h"
Guillaume Sanchez0f88e872015-03-30 17:55:45 +010020#include "code_generator_utils.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010021#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +000022#include "entrypoints/quick/quick_entrypoints_enum.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010023#include "gc/accounting/card_table.h"
Mark Mendell09ed1a32015-03-25 08:30:06 -040024#include "intrinsics.h"
25#include "intrinsics_x86.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070026#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070027#include "mirror/class-inl.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010028#include "thread.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000029#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010030#include "utils/stack_checks.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000031#include "utils/x86/assembler_x86.h"
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010032#include "utils/x86/managed_register_x86.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000033
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000034namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010035
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000036namespace x86 {
37
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010038static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010039static constexpr Register kMethodRegisterArgument = EAX;
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010040
Mark Mendell5f874182015-03-04 15:42:45 -050041static constexpr Register kCoreCalleeSaves[] = { EBP, ESI, EDI };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010042
Mark Mendell24f2dfa2015-01-14 19:51:45 -050043static constexpr int kC2ConditionMask = 0x400;
44
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000045static constexpr int kFakeReturnRegister = Register(8);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +000046
Roland Levillain62a46b22015-06-01 18:24:13 +010047#define __ down_cast<X86Assembler*>(codegen->GetAssembler())->
Nicolas Geoffraye5038322014-07-04 09:41:32 +010048
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010049class NullCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010050 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010051 explicit NullCheckSlowPathX86(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010052
Alexandre Rames2ed20af2015-03-06 13:55:35 +000053 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010054 __ Bind(GetEntryLabel());
55 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowNullPointer)));
Mingyao Yang2be48692015-03-31 17:03:08 -070056 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffraye5038322014-07-04 09:41:32 +010057 }
58
Alexandre Rames9931f312015-06-19 14:47:01 +010059 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathX86"; }
60
Nicolas Geoffraye5038322014-07-04 09:41:32 +010061 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010062 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010063 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86);
64};
65
Calin Juravled0d48522014-11-04 16:40:20 +000066class DivZeroCheckSlowPathX86 : public SlowPathCodeX86 {
67 public:
68 explicit DivZeroCheckSlowPathX86(HDivZeroCheck* instruction) : instruction_(instruction) {}
69
Alexandre Rames2ed20af2015-03-06 13:55:35 +000070 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000071 __ Bind(GetEntryLabel());
72 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowDivZero)));
Mingyao Yang2be48692015-03-31 17:03:08 -070073 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Calin Juravled0d48522014-11-04 16:40:20 +000074 }
75
Alexandre Rames9931f312015-06-19 14:47:01 +010076 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathX86"; }
77
Calin Juravled0d48522014-11-04 16:40:20 +000078 private:
79 HDivZeroCheck* const instruction_;
80 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86);
81};
82
Calin Juravlebacfec32014-11-14 15:54:36 +000083class DivRemMinusOneSlowPathX86 : public SlowPathCodeX86 {
Calin Juravled0d48522014-11-04 16:40:20 +000084 public:
Calin Juravlebacfec32014-11-14 15:54:36 +000085 explicit DivRemMinusOneSlowPathX86(Register reg, bool is_div) : reg_(reg), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +000086
Alexandre Rames2ed20af2015-03-06 13:55:35 +000087 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000088 __ Bind(GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +000089 if (is_div_) {
90 __ negl(reg_);
91 } else {
92 __ movl(reg_, Immediate(0));
93 }
Calin Juravled0d48522014-11-04 16:40:20 +000094 __ jmp(GetExitLabel());
95 }
96
Alexandre Rames9931f312015-06-19 14:47:01 +010097 const char* GetDescription() const OVERRIDE { return "DivRemMinusOneSlowPathX86"; }
98
Calin Juravled0d48522014-11-04 16:40:20 +000099 private:
100 Register reg_;
Calin Juravlebacfec32014-11-14 15:54:36 +0000101 bool is_div_;
102 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86);
Calin Juravled0d48522014-11-04 16:40:20 +0000103};
104
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100105class BoundsCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100106 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100107 BoundsCheckSlowPathX86(HBoundsCheck* instruction,
108 Location index_location,
109 Location length_location)
Roland Levillain199f3362014-11-27 17:15:16 +0000110 : instruction_(instruction),
111 index_location_(index_location),
112 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100113
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000114 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100115 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100116 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000117 // We're moving two locations to locations that could overlap, so we need a parallel
118 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100119 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000120 x86_codegen->EmitParallelMoves(
121 index_location_,
122 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100123 Primitive::kPrimInt,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000124 length_location_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100125 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
126 Primitive::kPrimInt);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100127 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowArrayBounds)));
Mingyao Yang2be48692015-03-31 17:03:08 -0700128 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100129 }
130
Alexandre Rames9931f312015-06-19 14:47:01 +0100131 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathX86"; }
132
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100133 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100134 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100135 const Location index_location_;
136 const Location length_location_;
137
138 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86);
139};
140
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100141class SuspendCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000142 public:
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000143 SuspendCheckSlowPathX86(HSuspendCheck* instruction, HBasicBlock* successor)
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100144 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000145
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000146 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100147 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000148 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000149 SaveLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000150 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pTestSuspend)));
Mingyao Yang2be48692015-03-31 17:03:08 -0700151 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000152 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100153 if (successor_ == nullptr) {
154 __ jmp(GetReturnLabel());
155 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100156 __ jmp(x86_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100157 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000158 }
159
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100160 Label* GetReturnLabel() {
161 DCHECK(successor_ == nullptr);
162 return &return_label_;
163 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000164
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100165 HBasicBlock* GetSuccessor() const {
166 return successor_;
167 }
168
Alexandre Rames9931f312015-06-19 14:47:01 +0100169 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathX86"; }
170
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000171 private:
172 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100173 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000174 Label return_label_;
175
176 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86);
177};
178
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000179class LoadStringSlowPathX86 : public SlowPathCodeX86 {
180 public:
181 explicit LoadStringSlowPathX86(HLoadString* instruction) : instruction_(instruction) {}
182
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000183 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000184 LocationSummary* locations = instruction_->GetLocations();
185 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
186
187 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
188 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000189 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000190
191 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800192 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction_->GetStringIndex()));
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000193 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pResolveString)));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000194 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000195 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000196 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000197
198 __ jmp(GetExitLabel());
199 }
200
Alexandre Rames9931f312015-06-19 14:47:01 +0100201 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathX86"; }
202
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000203 private:
204 HLoadString* const instruction_;
205
206 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86);
207};
208
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000209class LoadClassSlowPathX86 : public SlowPathCodeX86 {
210 public:
211 LoadClassSlowPathX86(HLoadClass* cls,
212 HInstruction* at,
213 uint32_t dex_pc,
214 bool do_clinit)
215 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
216 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
217 }
218
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000219 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000220 LocationSummary* locations = at_->GetLocations();
221 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
222 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000223 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000224
225 InvokeRuntimeCallingConvention calling_convention;
226 __ movl(calling_convention.GetRegisterAt(0), Immediate(cls_->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000227 __ fs()->call(Address::Absolute(do_clinit_
228 ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeStaticStorage)
229 : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeType)));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000230 RecordPcInfo(codegen, at_, dex_pc_);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000231
232 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000233 Location out = locations->Out();
234 if (out.IsValid()) {
235 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
236 x86_codegen->Move32(out, Location::RegisterLocation(EAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000237 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000238
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000239 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000240 __ jmp(GetExitLabel());
241 }
242
Alexandre Rames9931f312015-06-19 14:47:01 +0100243 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathX86"; }
244
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000245 private:
246 // The class this slow path will load.
247 HLoadClass* const cls_;
248
249 // The instruction where this slow path is happening.
250 // (Might be the load class or an initialization check).
251 HInstruction* const at_;
252
253 // The dex PC of `at_`.
254 const uint32_t dex_pc_;
255
256 // Whether to initialize the class.
257 const bool do_clinit_;
258
259 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86);
260};
261
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000262class TypeCheckSlowPathX86 : public SlowPathCodeX86 {
263 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000264 TypeCheckSlowPathX86(HInstruction* instruction,
265 Location class_to_check,
266 Location object_class,
267 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000268 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000269 class_to_check_(class_to_check),
270 object_class_(object_class),
271 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000272
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000273 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000274 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000275 DCHECK(instruction_->IsCheckCast()
276 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000277
278 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
279 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000280 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000281
282 // We're moving two locations to locations that could overlap, so we need a parallel
283 // move resolver.
284 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000285 x86_codegen->EmitParallelMoves(
286 class_to_check_,
287 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100288 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000289 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100290 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
291 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000292
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000293 if (instruction_->IsInstanceOf()) {
Roland Levillain199f3362014-11-27 17:15:16 +0000294 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize,
295 pInstanceofNonTrivial)));
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000296 } else {
297 DCHECK(instruction_->IsCheckCast());
298 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pCheckCast)));
299 }
300
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000301 RecordPcInfo(codegen, instruction_, dex_pc_);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000302 if (instruction_->IsInstanceOf()) {
303 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
304 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000305 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000306
307 __ jmp(GetExitLabel());
308 }
309
Alexandre Rames9931f312015-06-19 14:47:01 +0100310 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathX86"; }
311
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000312 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000313 HInstruction* const instruction_;
314 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000315 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000316 const uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000317
318 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86);
319};
320
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700321class DeoptimizationSlowPathX86 : public SlowPathCodeX86 {
322 public:
323 explicit DeoptimizationSlowPathX86(HInstruction* instruction)
324 : instruction_(instruction) {}
325
326 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
327 __ Bind(GetEntryLabel());
328 SaveLiveRegisters(codegen, instruction_->GetLocations());
329 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeoptimize)));
330 // No need to restore live registers.
331 DCHECK(instruction_->IsDeoptimize());
332 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
333 uint32_t dex_pc = deoptimize->GetDexPc();
334 codegen->RecordPcInfo(instruction_, dex_pc, this);
335 }
336
Alexandre Rames9931f312015-06-19 14:47:01 +0100337 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathX86"; }
338
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700339 private:
340 HInstruction* const instruction_;
341 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86);
342};
343
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100344#undef __
Roland Levillain62a46b22015-06-01 18:24:13 +0100345#define __ down_cast<X86Assembler*>(GetAssembler())->
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100346
Roland Levillain4fa13f62015-07-06 18:11:54 +0100347inline Condition X86SignedCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700348 switch (cond) {
349 case kCondEQ: return kEqual;
350 case kCondNE: return kNotEqual;
351 case kCondLT: return kLess;
352 case kCondLE: return kLessEqual;
353 case kCondGT: return kGreater;
354 case kCondGE: return kGreaterEqual;
Dave Allison20dfc792014-06-16 20:44:29 -0700355 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100356 LOG(FATAL) << "Unreachable";
357 UNREACHABLE();
358}
359
360inline Condition X86UnsignedOrFPCondition(IfCondition cond) {
361 switch (cond) {
362 case kCondEQ: return kEqual;
363 case kCondNE: return kNotEqual;
364 case kCondLT: return kBelow;
365 case kCondLE: return kBelowEqual;
366 case kCondGT: return kAbove;
367 case kCondGE: return kAboveEqual;
368 }
369 LOG(FATAL) << "Unreachable";
370 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700371}
372
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100373void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100374 stream << Register(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100375}
376
377void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100378 stream << XmmRegister(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100379}
380
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100381size_t CodeGeneratorX86::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
382 __ movl(Address(ESP, stack_index), static_cast<Register>(reg_id));
383 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100384}
385
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100386size_t CodeGeneratorX86::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
387 __ movl(static_cast<Register>(reg_id), Address(ESP, stack_index));
388 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100389}
390
Mark Mendell7c8d0092015-01-26 11:21:33 -0500391size_t CodeGeneratorX86::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
392 __ movsd(Address(ESP, stack_index), XmmRegister(reg_id));
393 return GetFloatingPointSpillSlotSize();
394}
395
396size_t CodeGeneratorX86::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
397 __ movsd(XmmRegister(reg_id), Address(ESP, stack_index));
398 return GetFloatingPointSpillSlotSize();
399}
400
Mark Mendellfb8d2792015-03-31 22:16:59 -0400401CodeGeneratorX86::CodeGeneratorX86(HGraph* graph,
402 const X86InstructionSetFeatures& isa_features,
403 const CompilerOptions& compiler_options)
Mark Mendell5f874182015-03-04 15:42:45 -0500404 : CodeGenerator(graph,
405 kNumberOfCpuRegisters,
406 kNumberOfXmmRegisters,
407 kNumberOfRegisterPairs,
408 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
409 arraysize(kCoreCalleeSaves))
410 | (1 << kFakeReturnRegister),
411 0,
412 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100413 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100414 location_builder_(graph, this),
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100415 instruction_visitor_(graph, this),
Mark Mendellfb8d2792015-03-31 22:16:59 -0400416 move_resolver_(graph->GetArena(), this),
417 isa_features_(isa_features) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000418 // Use a fake return address register to mimic Quick.
419 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100420}
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100421
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100422Location CodeGeneratorX86::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100423 switch (type) {
424 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100425 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100426 X86ManagedRegister pair =
427 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100428 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
429 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100430 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
431 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100432 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100433 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100434 }
435
436 case Primitive::kPrimByte:
437 case Primitive::kPrimBoolean:
438 case Primitive::kPrimChar:
439 case Primitive::kPrimShort:
440 case Primitive::kPrimInt:
441 case Primitive::kPrimNot: {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100442 Register reg = static_cast<Register>(
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100443 FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters));
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100444 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100445 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
446 X86ManagedRegister current =
447 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
448 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100449 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100450 }
451 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100452 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100453 }
454
455 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100456 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100457 return Location::FpuRegisterLocation(
458 FindFreeEntry(blocked_fpu_registers_, kNumberOfXmmRegisters));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100459 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100460
461 case Primitive::kPrimVoid:
462 LOG(FATAL) << "Unreachable type " << type;
463 }
464
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100465 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100466}
467
Mark Mendell5f874182015-03-04 15:42:45 -0500468void CodeGeneratorX86::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100469 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100470 blocked_register_pairs_[ECX_EDX] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100471
472 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100473 blocked_core_registers_[ESP] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100474
Mark Mendell5f874182015-03-04 15:42:45 -0500475 if (is_baseline) {
476 blocked_core_registers_[EBP] = true;
477 blocked_core_registers_[ESI] = true;
478 blocked_core_registers_[EDI] = true;
479 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100480
481 UpdateBlockedPairRegisters();
482}
483
484void CodeGeneratorX86::UpdateBlockedPairRegisters() const {
485 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
486 X86ManagedRegister current =
487 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
488 if (blocked_core_registers_[current.AsRegisterPairLow()]
489 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
490 blocked_register_pairs_[i] = true;
491 }
492 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100493}
494
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100495InstructionCodeGeneratorX86::InstructionCodeGeneratorX86(HGraph* graph, CodeGeneratorX86* codegen)
496 : HGraphVisitor(graph),
497 assembler_(codegen->GetAssembler()),
498 codegen_(codegen) {}
499
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100500static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100501 return dwarf::Reg::X86Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100502}
503
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000504void CodeGeneratorX86::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100505 __ cfi().SetCurrentCFAOffset(kX86WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000506 __ Bind(&frame_entry_label_);
Roland Levillain199f3362014-11-27 17:15:16 +0000507 bool skip_overflow_check =
508 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000509 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Calin Juravle93edf732015-01-20 20:14:07 +0000510
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000511 if (!skip_overflow_check) {
Nicolas Geoffray397f2e42014-07-23 12:57:19 +0100512 __ testl(EAX, Address(ESP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100513 RecordPcInfo(nullptr, 0);
Nicolas Geoffray397f2e42014-07-23 12:57:19 +0100514 }
515
Mark Mendell5f874182015-03-04 15:42:45 -0500516 if (HasEmptyFrame()) {
517 return;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000518 }
Mark Mendell5f874182015-03-04 15:42:45 -0500519
520 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
521 Register reg = kCoreCalleeSaves[i];
522 if (allocated_registers_.ContainsCoreRegister(reg)) {
523 __ pushl(reg);
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100524 __ cfi().AdjustCFAOffset(kX86WordSize);
525 __ cfi().RelOffset(DWARFReg(reg), 0);
Mark Mendell5f874182015-03-04 15:42:45 -0500526 }
527 }
528
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100529 int adjust = GetFrameSize() - FrameEntrySpillSize();
530 __ subl(ESP, Immediate(adjust));
531 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100532 __ movl(Address(ESP, kCurrentMethodStackOffset), kMethodRegisterArgument);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000533}
534
535void CodeGeneratorX86::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +0100536 __ cfi().RememberState();
537 if (!HasEmptyFrame()) {
538 int adjust = GetFrameSize() - FrameEntrySpillSize();
539 __ addl(ESP, Immediate(adjust));
540 __ cfi().AdjustCFAOffset(-adjust);
Mark Mendell5f874182015-03-04 15:42:45 -0500541
David Srbeckyc34dc932015-04-12 09:27:43 +0100542 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
543 Register reg = kCoreCalleeSaves[i];
544 if (allocated_registers_.ContainsCoreRegister(reg)) {
545 __ popl(reg);
546 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86WordSize));
547 __ cfi().Restore(DWARFReg(reg));
548 }
Mark Mendell5f874182015-03-04 15:42:45 -0500549 }
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000550 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100551 __ ret();
552 __ cfi().RestoreState();
553 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000554}
555
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100556void CodeGeneratorX86::Bind(HBasicBlock* block) {
557 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000558}
559
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100560Location CodeGeneratorX86::GetStackLocation(HLoadLocal* load) const {
561 switch (load->GetType()) {
562 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100563 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100564 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100565
566 case Primitive::kPrimInt:
567 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100568 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100569 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100570
571 case Primitive::kPrimBoolean:
572 case Primitive::kPrimByte:
573 case Primitive::kPrimChar:
574 case Primitive::kPrimShort:
575 case Primitive::kPrimVoid:
576 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700577 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100578 }
579
580 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700581 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100582}
583
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100584Location InvokeDexCallingConventionVisitorX86::GetReturnLocation(Primitive::Type type) const {
585 switch (type) {
586 case Primitive::kPrimBoolean:
587 case Primitive::kPrimByte:
588 case Primitive::kPrimChar:
589 case Primitive::kPrimShort:
590 case Primitive::kPrimInt:
591 case Primitive::kPrimNot:
592 return Location::RegisterLocation(EAX);
593
594 case Primitive::kPrimLong:
595 return Location::RegisterPairLocation(EAX, EDX);
596
597 case Primitive::kPrimVoid:
598 return Location::NoLocation();
599
600 case Primitive::kPrimDouble:
601 case Primitive::kPrimFloat:
602 return Location::FpuRegisterLocation(XMM0);
603 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +0100604
605 UNREACHABLE();
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100606}
607
608Location InvokeDexCallingConventionVisitorX86::GetMethodLocation() const {
609 return Location::RegisterLocation(kMethodRegisterArgument);
610}
611
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100612Location InvokeDexCallingConventionVisitorX86::GetNextLocation(Primitive::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100613 switch (type) {
614 case Primitive::kPrimBoolean:
615 case Primitive::kPrimByte:
616 case Primitive::kPrimChar:
617 case Primitive::kPrimShort:
618 case Primitive::kPrimInt:
619 case Primitive::kPrimNot: {
620 uint32_t index = gp_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000621 stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100622 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100623 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100624 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000625 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100626 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100627 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100628
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000629 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100630 uint32_t index = gp_index_;
631 gp_index_ += 2;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000632 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100633 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100634 X86ManagedRegister pair = X86ManagedRegister::FromRegisterPair(
635 calling_convention.GetRegisterPairAt(index));
636 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100637 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000638 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
639 }
640 }
641
642 case Primitive::kPrimFloat: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100643 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000644 stack_index_++;
645 if (index < calling_convention.GetNumberOfFpuRegisters()) {
646 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
647 } else {
648 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
649 }
650 }
651
652 case Primitive::kPrimDouble: {
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100653 uint32_t index = float_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000654 stack_index_ += 2;
655 if (index < calling_convention.GetNumberOfFpuRegisters()) {
656 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
657 } else {
658 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100659 }
660 }
661
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100662 case Primitive::kPrimVoid:
663 LOG(FATAL) << "Unexpected parameter type " << type;
664 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100665 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100666 return Location();
667}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100668
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100669void CodeGeneratorX86::Move32(Location destination, Location source) {
670 if (source.Equals(destination)) {
671 return;
672 }
673 if (destination.IsRegister()) {
674 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000675 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100676 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000677 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100678 } else {
679 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000680 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100681 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100682 } else if (destination.IsFpuRegister()) {
683 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000684 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100685 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000686 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100687 } else {
688 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000689 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100690 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100691 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000692 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100693 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000694 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100695 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000696 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Mark Mendell7c8d0092015-01-26 11:21:33 -0500697 } else if (source.IsConstant()) {
698 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000699 int32_t value = GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -0500700 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100701 } else {
702 DCHECK(source.IsStackSlot());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100703 __ pushl(Address(ESP, source.GetStackIndex()));
704 __ popl(Address(ESP, destination.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100705 }
706 }
707}
708
709void CodeGeneratorX86::Move64(Location destination, Location source) {
710 if (source.Equals(destination)) {
711 return;
712 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100713 if (destination.IsRegisterPair()) {
714 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000715 EmitParallelMoves(
716 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
717 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100718 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000719 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100720 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
721 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100722 } else if (source.IsFpuRegister()) {
723 LOG(FATAL) << "Unimplemented";
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100724 } else {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000725 // No conflict possible, so just do the moves.
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100726 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100727 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
728 __ movl(destination.AsRegisterPairHigh<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100729 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
730 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100731 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -0500732 if (source.IsFpuRegister()) {
733 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
734 } else if (source.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000735 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100736 } else {
737 LOG(FATAL) << "Unimplemented";
738 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100739 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000740 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100741 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000742 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100743 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegisterPairLow<Register>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100744 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100745 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100746 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000747 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000748 } else if (source.IsConstant()) {
749 HConstant* constant = source.GetConstant();
750 int64_t value;
751 if (constant->IsLongConstant()) {
752 value = constant->AsLongConstant()->GetValue();
753 } else {
754 DCHECK(constant->IsDoubleConstant());
Roland Levillainda4d79b2015-03-24 14:36:11 +0000755 value = bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000756 }
757 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(Low32Bits(value)));
758 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), Immediate(High32Bits(value)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100759 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000760 DCHECK(source.IsDoubleStackSlot()) << source;
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000761 EmitParallelMoves(
762 Location::StackSlot(source.GetStackIndex()),
763 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100764 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000765 Location::StackSlot(source.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100766 Location::StackSlot(destination.GetHighStackIndex(kX86WordSize)),
767 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100768 }
769 }
770}
771
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100772void CodeGeneratorX86::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000773 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100774 if (instruction->IsCurrentMethod()) {
775 Move32(location, Location::StackSlot(kCurrentMethodStackOffset));
776 } else if (locations != nullptr && locations->Out().Equals(location)) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000777 return;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100778 } else if (locations != nullptr && locations->Out().IsConstant()) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000779 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000780 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
781 Immediate imm(GetInt32ValueOf(const_to_move));
Calin Juravlea21f5982014-11-13 15:53:04 +0000782 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000783 __ movl(location.AsRegister<Register>(), imm);
Calin Juravlea21f5982014-11-13 15:53:04 +0000784 } else if (location.IsStackSlot()) {
785 __ movl(Address(ESP, location.GetStackIndex()), imm);
786 } else {
787 DCHECK(location.IsConstant());
788 DCHECK_EQ(location.GetConstant(), const_to_move);
789 }
790 } else if (const_to_move->IsLongConstant()) {
791 int64_t value = const_to_move->AsLongConstant()->GetValue();
792 if (location.IsRegisterPair()) {
793 __ movl(location.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
794 __ movl(location.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
795 } else if (location.IsDoubleStackSlot()) {
796 __ movl(Address(ESP, location.GetStackIndex()), Immediate(Low32Bits(value)));
Roland Levillain199f3362014-11-27 17:15:16 +0000797 __ movl(Address(ESP, location.GetHighStackIndex(kX86WordSize)),
798 Immediate(High32Bits(value)));
Calin Juravlea21f5982014-11-13 15:53:04 +0000799 } else {
800 DCHECK(location.IsConstant());
801 DCHECK_EQ(location.GetConstant(), instruction);
802 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100803 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000804 } else if (instruction->IsTemporary()) {
805 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000806 if (temp_location.IsStackSlot()) {
807 Move32(location, temp_location);
808 } else {
809 DCHECK(temp_location.IsDoubleStackSlot());
810 Move64(location, temp_location);
811 }
Roland Levillain476df552014-10-09 17:51:36 +0100812 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100813 int slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100814 switch (instruction->GetType()) {
815 case Primitive::kPrimBoolean:
816 case Primitive::kPrimByte:
817 case Primitive::kPrimChar:
818 case Primitive::kPrimShort:
819 case Primitive::kPrimInt:
820 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100821 case Primitive::kPrimFloat:
822 Move32(location, Location::StackSlot(slot));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100823 break;
824
825 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100826 case Primitive::kPrimDouble:
827 Move64(location, Location::DoubleStackSlot(slot));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100828 break;
829
830 default:
831 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
832 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000833 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100834 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100835 switch (instruction->GetType()) {
836 case Primitive::kPrimBoolean:
837 case Primitive::kPrimByte:
838 case Primitive::kPrimChar:
839 case Primitive::kPrimShort:
840 case Primitive::kPrimInt:
841 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100842 case Primitive::kPrimFloat:
Calin Juravlea21f5982014-11-13 15:53:04 +0000843 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100844 break;
845
846 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100847 case Primitive::kPrimDouble:
Calin Juravlea21f5982014-11-13 15:53:04 +0000848 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100849 break;
850
851 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100852 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100853 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000854 }
855}
856
David Brazdilfc6a86a2015-06-26 10:33:45 +0000857void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100858 DCHECK(!successor->IsExitBlock());
859
860 HBasicBlock* block = got->GetBlock();
861 HInstruction* previous = got->GetPrevious();
862
863 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000864 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100865 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
866 return;
867 }
868
869 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
870 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
871 }
872 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000873 __ jmp(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000874 }
875}
876
David Brazdilfc6a86a2015-06-26 10:33:45 +0000877void LocationsBuilderX86::VisitGoto(HGoto* got) {
878 got->SetLocations(nullptr);
879}
880
881void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) {
882 HandleGoto(got, got->GetSuccessor());
883}
884
885void LocationsBuilderX86::VisitTryBoundary(HTryBoundary* try_boundary) {
886 try_boundary->SetLocations(nullptr);
887}
888
889void InstructionCodeGeneratorX86::VisitTryBoundary(HTryBoundary* try_boundary) {
890 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
891 if (!successor->IsExitBlock()) {
892 HandleGoto(try_boundary, successor);
893 }
894}
895
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000896void LocationsBuilderX86::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000897 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000898}
899
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000900void InstructionCodeGeneratorX86::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700901 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000902}
903
Mark Mendellc4701932015-04-10 13:18:51 -0400904void InstructionCodeGeneratorX86::GenerateFPJumps(HCondition* cond,
905 Label* true_label,
906 Label* false_label) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100907 if (cond->IsFPConditionTrueIfNaN()) {
908 __ j(kUnordered, true_label);
909 } else if (cond->IsFPConditionFalseIfNaN()) {
910 __ j(kUnordered, false_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400911 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100912 __ j(X86UnsignedOrFPCondition(cond->GetCondition()), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400913}
914
915void InstructionCodeGeneratorX86::GenerateLongComparesAndJumps(HCondition* cond,
916 Label* true_label,
917 Label* false_label) {
918 LocationSummary* locations = cond->GetLocations();
919 Location left = locations->InAt(0);
920 Location right = locations->InAt(1);
921 IfCondition if_cond = cond->GetCondition();
922
Mark Mendellc4701932015-04-10 13:18:51 -0400923 Register left_high = left.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +0100924 Register left_low = left.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -0400925 IfCondition true_high_cond = if_cond;
926 IfCondition false_high_cond = cond->GetOppositeCondition();
Roland Levillain4fa13f62015-07-06 18:11:54 +0100927 Condition final_condition = X86UnsignedOrFPCondition(if_cond);
Mark Mendellc4701932015-04-10 13:18:51 -0400928
929 // Set the conditions for the test, remembering that == needs to be
930 // decided using the low words.
931 switch (if_cond) {
932 case kCondEQ:
Mark Mendellc4701932015-04-10 13:18:51 -0400933 case kCondNE:
Roland Levillain4fa13f62015-07-06 18:11:54 +0100934 // Nothing to do.
Mark Mendellc4701932015-04-10 13:18:51 -0400935 break;
936 case kCondLT:
937 false_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -0400938 break;
939 case kCondLE:
940 true_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -0400941 break;
942 case kCondGT:
943 false_high_cond = kCondLT;
Mark Mendellc4701932015-04-10 13:18:51 -0400944 break;
945 case kCondGE:
946 true_high_cond = kCondGT;
Mark Mendellc4701932015-04-10 13:18:51 -0400947 break;
948 }
949
950 if (right.IsConstant()) {
951 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
Mark Mendellc4701932015-04-10 13:18:51 -0400952 int32_t val_high = High32Bits(value);
Roland Levillain4fa13f62015-07-06 18:11:54 +0100953 int32_t val_low = Low32Bits(value);
Mark Mendellc4701932015-04-10 13:18:51 -0400954
955 if (val_high == 0) {
956 __ testl(left_high, left_high);
957 } else {
958 __ cmpl(left_high, Immediate(val_high));
959 }
960 if (if_cond == kCondNE) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100961 __ j(X86SignedCondition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400962 } else if (if_cond == kCondEQ) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100963 __ j(X86SignedCondition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400964 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100965 __ j(X86SignedCondition(true_high_cond), true_label);
966 __ j(X86SignedCondition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400967 }
968 // Must be equal high, so compare the lows.
969 if (val_low == 0) {
970 __ testl(left_low, left_low);
971 } else {
972 __ cmpl(left_low, Immediate(val_low));
973 }
974 } else {
Mark Mendellc4701932015-04-10 13:18:51 -0400975 Register right_high = right.AsRegisterPairHigh<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +0100976 Register right_low = right.AsRegisterPairLow<Register>();
Mark Mendellc4701932015-04-10 13:18:51 -0400977
978 __ cmpl(left_high, right_high);
979 if (if_cond == kCondNE) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100980 __ j(X86SignedCondition(true_high_cond), true_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400981 } else if (if_cond == kCondEQ) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100982 __ j(X86SignedCondition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400983 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100984 __ j(X86SignedCondition(true_high_cond), true_label);
985 __ j(X86SignedCondition(false_high_cond), false_label);
Mark Mendellc4701932015-04-10 13:18:51 -0400986 }
987 // Must be equal high, so compare the lows.
988 __ cmpl(left_low, right_low);
989 }
990 // The last comparison might be unsigned.
991 __ j(final_condition, true_label);
992}
993
994void InstructionCodeGeneratorX86::GenerateCompareTestAndBranch(HIf* if_instr,
995 HCondition* condition,
996 Label* true_target,
997 Label* false_target,
998 Label* always_true_target) {
999 LocationSummary* locations = condition->GetLocations();
1000 Location left = locations->InAt(0);
1001 Location right = locations->InAt(1);
1002
1003 // We don't want true_target as a nullptr.
1004 if (true_target == nullptr) {
1005 true_target = always_true_target;
1006 }
1007 bool falls_through = (false_target == nullptr);
1008
1009 // FP compares don't like null false_targets.
1010 if (false_target == nullptr) {
1011 false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1012 }
1013
1014 Primitive::Type type = condition->InputAt(0)->GetType();
1015 switch (type) {
1016 case Primitive::kPrimLong:
1017 GenerateLongComparesAndJumps(condition, true_target, false_target);
1018 break;
1019 case Primitive::kPrimFloat:
Mark Mendellc4701932015-04-10 13:18:51 -04001020 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
1021 GenerateFPJumps(condition, true_target, false_target);
1022 break;
1023 case Primitive::kPrimDouble:
Mark Mendellc4701932015-04-10 13:18:51 -04001024 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
1025 GenerateFPJumps(condition, true_target, false_target);
1026 break;
1027 default:
1028 LOG(FATAL) << "Unexpected compare type " << type;
1029 }
1030
1031 if (!falls_through) {
1032 __ jmp(false_target);
1033 }
1034}
1035
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001036void InstructionCodeGeneratorX86::GenerateTestAndBranch(HInstruction* instruction,
1037 Label* true_target,
1038 Label* false_target,
1039 Label* always_true_target) {
1040 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001041 if (cond->IsIntConstant()) {
1042 // Constant condition, statically compared against 1.
1043 int32_t cond_value = cond->AsIntConstant()->GetValue();
1044 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001045 if (always_true_target != nullptr) {
1046 __ jmp(always_true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001047 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001048 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001049 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001050 DCHECK_EQ(cond_value, 0);
1051 }
1052 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001053 bool is_materialized =
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001054 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
1055 // Moves do not affect the eflags register, so if the condition is
1056 // evaluated just before the if, we don't need to evaluate it
Mark Mendellc4701932015-04-10 13:18:51 -04001057 // again. We can't use the eflags on long/FP conditions if they are
1058 // materialized due to the complex branching.
1059 Primitive::Type type = cond->IsCondition() ? cond->InputAt(0)->GetType() : Primitive::kPrimInt;
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001060 bool eflags_set = cond->IsCondition()
Mark Mendellc4701932015-04-10 13:18:51 -04001061 && cond->AsCondition()->IsBeforeWhenDisregardMoves(instruction)
Roland Levillain4fa13f62015-07-06 18:11:54 +01001062 && (type != Primitive::kPrimLong && !Primitive::IsFloatingPointType(type));
1063 if (is_materialized) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001064 if (!eflags_set) {
1065 // Materialized condition, compare against 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001066 Location lhs = instruction->GetLocations()->InAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001067 if (lhs.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05001068 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001069 } else {
1070 __ cmpl(Address(ESP, lhs.GetStackIndex()), Immediate(0));
1071 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001072 __ j(kNotEqual, true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001073 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001074 __ j(X86SignedCondition(cond->AsCondition()->GetCondition()), true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001075 }
1076 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001077 // Condition has not been materialized, use its inputs as the
1078 // comparison and its condition as the branch condition.
1079
Mark Mendellc4701932015-04-10 13:18:51 -04001080 // Is this a long or FP comparison that has been folded into the HCondition?
1081 if (type == Primitive::kPrimLong || Primitive::IsFloatingPointType(type)) {
1082 // Generate the comparison directly.
1083 GenerateCompareTestAndBranch(instruction->AsIf(),
1084 cond->AsCondition(),
1085 true_target,
1086 false_target,
1087 always_true_target);
1088 return;
1089 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001090
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001091 Location lhs = cond->GetLocations()->InAt(0);
1092 Location rhs = cond->GetLocations()->InAt(1);
1093 // LHS is guaranteed to be in a register (see
1094 // LocationsBuilderX86::VisitCondition).
1095 if (rhs.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001096 __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001097 } else if (rhs.IsConstant()) {
Calin Juravleb3306642015-04-20 18:30:42 +01001098 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Mark Mendell09b84632015-02-13 17:48:38 -05001099 if (constant == 0) {
1100 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
1101 } else {
1102 __ cmpl(lhs.AsRegister<Register>(), Immediate(constant));
1103 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001104 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001105 __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001106 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001107 __ j(X86SignedCondition(cond->AsCondition()->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -07001108 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001109 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001110 if (false_target != nullptr) {
1111 __ jmp(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001112 }
1113}
1114
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001115void LocationsBuilderX86::VisitIf(HIf* if_instr) {
1116 LocationSummary* locations =
1117 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
1118 HInstruction* cond = if_instr->InputAt(0);
1119 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
1120 locations->SetInAt(0, Location::Any());
1121 }
1122}
1123
1124void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) {
1125 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1126 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1127 Label* always_true_target = true_target;
1128 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1129 if_instr->IfTrueSuccessor())) {
1130 always_true_target = nullptr;
1131 }
1132 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1133 if_instr->IfFalseSuccessor())) {
1134 false_target = nullptr;
1135 }
1136 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1137}
1138
1139void LocationsBuilderX86::VisitDeoptimize(HDeoptimize* deoptimize) {
1140 LocationSummary* locations = new (GetGraph()->GetArena())
1141 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1142 HInstruction* cond = deoptimize->InputAt(0);
1143 DCHECK(cond->IsCondition());
1144 if (cond->AsCondition()->NeedsMaterialization()) {
1145 locations->SetInAt(0, Location::Any());
1146 }
1147}
1148
1149void InstructionCodeGeneratorX86::VisitDeoptimize(HDeoptimize* deoptimize) {
1150 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena())
1151 DeoptimizationSlowPathX86(deoptimize);
1152 codegen_->AddSlowPath(slow_path);
1153 Label* slow_path_entry = slow_path->GetEntryLabel();
1154 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1155}
1156
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001157void LocationsBuilderX86::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001158 local->SetLocations(nullptr);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001159}
1160
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001161void InstructionCodeGeneratorX86::VisitLocal(HLocal* local) {
1162 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001163}
1164
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001165void LocationsBuilderX86::VisitLoadLocal(HLoadLocal* local) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001166 local->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001167}
1168
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001169void InstructionCodeGeneratorX86::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001170 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001171 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001172}
1173
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001174void LocationsBuilderX86::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001175 LocationSummary* locations =
1176 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001177 switch (store->InputAt(1)->GetType()) {
1178 case Primitive::kPrimBoolean:
1179 case Primitive::kPrimByte:
1180 case Primitive::kPrimChar:
1181 case Primitive::kPrimShort:
1182 case Primitive::kPrimInt:
1183 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001184 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001185 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1186 break;
1187
1188 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001189 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001190 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1191 break;
1192
1193 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001194 LOG(FATAL) << "Unknown local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001195 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001196}
1197
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001198void InstructionCodeGeneratorX86::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001199 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001200}
1201
Roland Levillain0d37cd02015-05-27 16:39:19 +01001202void LocationsBuilderX86::VisitCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001203 LocationSummary* locations =
Roland Levillain0d37cd02015-05-27 16:39:19 +01001204 new (GetGraph()->GetArena()) LocationSummary(cond, LocationSummary::kNoCall);
Mark Mendellc4701932015-04-10 13:18:51 -04001205 // Handle the long/FP comparisons made in instruction simplification.
1206 switch (cond->InputAt(0)->GetType()) {
1207 case Primitive::kPrimLong: {
1208 locations->SetInAt(0, Location::RequiresRegister());
1209 locations->SetInAt(1, Location::RegisterOrConstant(cond->InputAt(1)));
1210 if (cond->NeedsMaterialization()) {
1211 locations->SetOut(Location::RequiresRegister());
1212 }
1213 break;
1214 }
1215 case Primitive::kPrimFloat:
1216 case Primitive::kPrimDouble: {
1217 locations->SetInAt(0, Location::RequiresFpuRegister());
1218 locations->SetInAt(1, Location::RequiresFpuRegister());
1219 if (cond->NeedsMaterialization()) {
1220 locations->SetOut(Location::RequiresRegister());
1221 }
1222 break;
1223 }
1224 default:
1225 locations->SetInAt(0, Location::RequiresRegister());
1226 locations->SetInAt(1, Location::Any());
1227 if (cond->NeedsMaterialization()) {
1228 // We need a byte register.
1229 locations->SetOut(Location::RegisterLocation(ECX));
1230 }
1231 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001232 }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001233}
1234
Roland Levillain0d37cd02015-05-27 16:39:19 +01001235void InstructionCodeGeneratorX86::VisitCondition(HCondition* cond) {
Mark Mendellc4701932015-04-10 13:18:51 -04001236 if (!cond->NeedsMaterialization()) {
1237 return;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001238 }
Mark Mendellc4701932015-04-10 13:18:51 -04001239
1240 LocationSummary* locations = cond->GetLocations();
1241 Location lhs = locations->InAt(0);
1242 Location rhs = locations->InAt(1);
1243 Register reg = locations->Out().AsRegister<Register>();
1244 Label true_label, false_label;
1245
1246 switch (cond->InputAt(0)->GetType()) {
1247 default: {
1248 // Integer case.
1249
1250 // Clear output register: setcc only sets the low byte.
1251 __ xorl(reg, reg);
1252
1253 if (rhs.IsRegister()) {
1254 __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>());
1255 } else if (rhs.IsConstant()) {
1256 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
1257 if (constant == 0) {
1258 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
1259 } else {
1260 __ cmpl(lhs.AsRegister<Register>(), Immediate(constant));
1261 }
1262 } else {
1263 __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex()));
1264 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001265 __ setb(X86SignedCondition(cond->GetCondition()), reg);
Mark Mendellc4701932015-04-10 13:18:51 -04001266 return;
1267 }
1268 case Primitive::kPrimLong:
1269 GenerateLongComparesAndJumps(cond, &true_label, &false_label);
1270 break;
1271 case Primitive::kPrimFloat:
1272 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1273 GenerateFPJumps(cond, &true_label, &false_label);
1274 break;
1275 case Primitive::kPrimDouble:
1276 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>());
1277 GenerateFPJumps(cond, &true_label, &false_label);
1278 break;
1279 }
1280
1281 // Convert the jumps into the result.
1282 Label done_label;
1283
Roland Levillain4fa13f62015-07-06 18:11:54 +01001284 // False case: result = 0.
Mark Mendellc4701932015-04-10 13:18:51 -04001285 __ Bind(&false_label);
1286 __ xorl(reg, reg);
1287 __ jmp(&done_label);
1288
Roland Levillain4fa13f62015-07-06 18:11:54 +01001289 // True case: result = 1.
Mark Mendellc4701932015-04-10 13:18:51 -04001290 __ Bind(&true_label);
1291 __ movl(reg, Immediate(1));
1292 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07001293}
1294
1295void LocationsBuilderX86::VisitEqual(HEqual* comp) {
1296 VisitCondition(comp);
1297}
1298
1299void InstructionCodeGeneratorX86::VisitEqual(HEqual* comp) {
1300 VisitCondition(comp);
1301}
1302
1303void LocationsBuilderX86::VisitNotEqual(HNotEqual* comp) {
1304 VisitCondition(comp);
1305}
1306
1307void InstructionCodeGeneratorX86::VisitNotEqual(HNotEqual* comp) {
1308 VisitCondition(comp);
1309}
1310
1311void LocationsBuilderX86::VisitLessThan(HLessThan* comp) {
1312 VisitCondition(comp);
1313}
1314
1315void InstructionCodeGeneratorX86::VisitLessThan(HLessThan* comp) {
1316 VisitCondition(comp);
1317}
1318
1319void LocationsBuilderX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1320 VisitCondition(comp);
1321}
1322
1323void InstructionCodeGeneratorX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1324 VisitCondition(comp);
1325}
1326
1327void LocationsBuilderX86::VisitGreaterThan(HGreaterThan* comp) {
1328 VisitCondition(comp);
1329}
1330
1331void InstructionCodeGeneratorX86::VisitGreaterThan(HGreaterThan* comp) {
1332 VisitCondition(comp);
1333}
1334
1335void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1336 VisitCondition(comp);
1337}
1338
1339void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1340 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001341}
1342
1343void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001344 LocationSummary* locations =
1345 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001346 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001347}
1348
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001349void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001350 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001351 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001352}
1353
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001354void LocationsBuilderX86::VisitNullConstant(HNullConstant* constant) {
1355 LocationSummary* locations =
1356 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1357 locations->SetOut(Location::ConstantLocation(constant));
1358}
1359
1360void InstructionCodeGeneratorX86::VisitNullConstant(HNullConstant* constant) {
1361 // Will be generated at use site.
1362 UNUSED(constant);
1363}
1364
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001365void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001366 LocationSummary* locations =
1367 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001368 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001369}
1370
1371void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant) {
1372 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001373 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001374}
1375
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001376void LocationsBuilderX86::VisitFloatConstant(HFloatConstant* constant) {
1377 LocationSummary* locations =
1378 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1379 locations->SetOut(Location::ConstantLocation(constant));
1380}
1381
1382void InstructionCodeGeneratorX86::VisitFloatConstant(HFloatConstant* constant) {
1383 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001384 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001385}
1386
1387void LocationsBuilderX86::VisitDoubleConstant(HDoubleConstant* constant) {
1388 LocationSummary* locations =
1389 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1390 locations->SetOut(Location::ConstantLocation(constant));
1391}
1392
1393void InstructionCodeGeneratorX86::VisitDoubleConstant(HDoubleConstant* constant) {
1394 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001395 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001396}
1397
Calin Juravle27df7582015-04-17 19:12:31 +01001398void LocationsBuilderX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1399 memory_barrier->SetLocations(nullptr);
1400}
1401
1402void InstructionCodeGeneratorX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1403 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
1404}
1405
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001406void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001407 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001408}
1409
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001410void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001411 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001412 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001413}
1414
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001415void LocationsBuilderX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001416 LocationSummary* locations =
1417 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001418 switch (ret->InputAt(0)->GetType()) {
1419 case Primitive::kPrimBoolean:
1420 case Primitive::kPrimByte:
1421 case Primitive::kPrimChar:
1422 case Primitive::kPrimShort:
1423 case Primitive::kPrimInt:
1424 case Primitive::kPrimNot:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001425 locations->SetInAt(0, Location::RegisterLocation(EAX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001426 break;
1427
1428 case Primitive::kPrimLong:
1429 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001430 0, Location::RegisterPairLocation(EAX, EDX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001431 break;
1432
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001433 case Primitive::kPrimFloat:
1434 case Primitive::kPrimDouble:
1435 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001436 0, Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001437 break;
1438
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001439 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001440 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001441 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001442}
1443
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001444void InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001445 if (kIsDebugBuild) {
1446 switch (ret->InputAt(0)->GetType()) {
1447 case Primitive::kPrimBoolean:
1448 case Primitive::kPrimByte:
1449 case Primitive::kPrimChar:
1450 case Primitive::kPrimShort:
1451 case Primitive::kPrimInt:
1452 case Primitive::kPrimNot:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001453 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<Register>(), EAX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001454 break;
1455
1456 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001457 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairLow<Register>(), EAX);
1458 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairHigh<Register>(), EDX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001459 break;
1460
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001461 case Primitive::kPrimFloat:
1462 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001463 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>(), XMM0);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001464 break;
1465
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001466 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001467 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001468 }
1469 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001470 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001471}
1472
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001473void LocationsBuilderX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001474 // When we do not run baseline, explicit clinit checks triggered by static
1475 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1476 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001477
Mark Mendellfb8d2792015-03-31 22:16:59 -04001478 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
Mark Mendell09ed1a32015-03-25 08:30:06 -04001479 if (intrinsic.TryDispatch(invoke)) {
1480 return;
1481 }
1482
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001483 HandleInvoke(invoke);
Nicolas Geoffray94015b92015-06-04 18:21:04 +01001484
1485 if (codegen_->IsBaseline()) {
1486 // Baseline does not have enough registers if the current method also
1487 // needs a register. We therefore do not require a register for it, and let
1488 // the code generation of the invoke handle it.
1489 LocationSummary* locations = invoke->GetLocations();
1490 Location location = locations->InAt(invoke->GetCurrentMethodInputIndex());
1491 if (location.IsUnallocated() && location.GetPolicy() == Location::kRequiresRegister) {
1492 locations->SetInAt(invoke->GetCurrentMethodInputIndex(), Location::NoLocation());
1493 }
1494 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001495}
1496
Mark Mendell09ed1a32015-03-25 08:30:06 -04001497static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86* codegen) {
1498 if (invoke->GetLocations()->Intrinsified()) {
1499 IntrinsicCodeGeneratorX86 intrinsic(codegen);
1500 intrinsic.Dispatch(invoke);
1501 return true;
1502 }
1503 return false;
1504}
1505
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001506void InstructionCodeGeneratorX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001507 // When we do not run baseline, explicit clinit checks triggered by static
1508 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1509 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001510
Mark Mendell09ed1a32015-03-25 08:30:06 -04001511 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1512 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001513 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001514
Nicolas Geoffray94015b92015-06-04 18:21:04 +01001515 LocationSummary* locations = invoke->GetLocations();
Mark Mendell09ed1a32015-03-25 08:30:06 -04001516 codegen_->GenerateStaticOrDirectCall(
Nicolas Geoffray94015b92015-06-04 18:21:04 +01001517 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Mingyao Yang8693fe12015-04-17 16:51:08 -07001518 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001519}
1520
1521void LocationsBuilderX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
1522 HandleInvoke(invoke);
1523}
1524
1525void LocationsBuilderX86::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001526 InvokeDexCallingConventionVisitorX86 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001527 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001528}
1529
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001530void InstructionCodeGeneratorX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001531 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001532 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
1533 invoke->GetVTableIndex(), kX86PointerSize).Uint32Value();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001534 LocationSummary* locations = invoke->GetLocations();
1535 Location receiver = locations->InAt(0);
1536 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01001537 // temp = object->GetClass();
Nicolas Geoffray94015b92015-06-04 18:21:04 +01001538 DCHECK(receiver.IsRegister());
1539 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001540 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain4d027112015-07-01 15:41:14 +01001541 __ MaybeUnpoisonHeapReference(temp);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001542 // temp = temp->GetMethodAt(method_offset);
1543 __ movl(temp, Address(temp, method_offset));
1544 // call temp->GetEntryPoint();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001545 __ call(Address(
Mathieu Chartiere401d142015-04-22 13:56:20 -07001546 temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001547
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001548 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001549 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001550}
1551
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001552void LocationsBuilderX86::VisitInvokeInterface(HInvokeInterface* invoke) {
1553 HandleInvoke(invoke);
1554 // Add the hidden argument.
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001555 invoke->GetLocations()->AddTemp(Location::FpuRegisterLocation(XMM7));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001556}
1557
1558void InstructionCodeGeneratorX86::VisitInvokeInterface(HInvokeInterface* invoke) {
1559 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001560 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001561 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
1562 invoke->GetImtIndex() % mirror::Class::kImtSize, kX86PointerSize).Uint32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001563 LocationSummary* locations = invoke->GetLocations();
1564 Location receiver = locations->InAt(0);
1565 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1566
1567 // Set the hidden argument.
1568 __ movl(temp, Immediate(invoke->GetDexMethodIndex()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001569 __ movd(invoke->GetLocations()->GetTemp(1).AsFpuRegister<XmmRegister>(), temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001570
1571 // temp = object->GetClass();
1572 if (receiver.IsStackSlot()) {
1573 __ movl(temp, Address(ESP, receiver.GetStackIndex()));
1574 __ movl(temp, Address(temp, class_offset));
1575 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001576 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001577 }
Roland Levillain4d027112015-07-01 15:41:14 +01001578 codegen_->MaybeRecordImplicitNullCheck(invoke);
1579 __ MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001580 // temp = temp->GetImtEntryAt(method_offset);
1581 __ movl(temp, Address(temp, method_offset));
1582 // call temp->GetEntryPoint();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001583 __ call(Address(temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001584 kX86WordSize).Int32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001585
1586 DCHECK(!codegen_->IsLeafMethod());
1587 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1588}
1589
Roland Levillain88cb1752014-10-20 16:36:47 +01001590void LocationsBuilderX86::VisitNeg(HNeg* neg) {
1591 LocationSummary* locations =
1592 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1593 switch (neg->GetResultType()) {
1594 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001595 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01001596 locations->SetInAt(0, Location::RequiresRegister());
1597 locations->SetOut(Location::SameAsFirstInput());
1598 break;
1599
Roland Levillain88cb1752014-10-20 16:36:47 +01001600 case Primitive::kPrimFloat:
Roland Levillain5368c212014-11-27 15:03:41 +00001601 locations->SetInAt(0, Location::RequiresFpuRegister());
1602 locations->SetOut(Location::SameAsFirstInput());
1603 locations->AddTemp(Location::RequiresRegister());
1604 locations->AddTemp(Location::RequiresFpuRegister());
1605 break;
1606
Roland Levillain88cb1752014-10-20 16:36:47 +01001607 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001608 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00001609 locations->SetOut(Location::SameAsFirstInput());
1610 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01001611 break;
1612
1613 default:
1614 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1615 }
1616}
1617
1618void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) {
1619 LocationSummary* locations = neg->GetLocations();
1620 Location out = locations->Out();
1621 Location in = locations->InAt(0);
1622 switch (neg->GetResultType()) {
1623 case Primitive::kPrimInt:
1624 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001625 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001626 __ negl(out.AsRegister<Register>());
Roland Levillain88cb1752014-10-20 16:36:47 +01001627 break;
1628
1629 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001630 DCHECK(in.IsRegisterPair());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001631 DCHECK(in.Equals(out));
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001632 __ negl(out.AsRegisterPairLow<Register>());
1633 // Negation is similar to subtraction from zero. The least
1634 // significant byte triggers a borrow when it is different from
1635 // zero; to take it into account, add 1 to the most significant
1636 // byte if the carry flag (CF) is set to 1 after the first NEGL
1637 // operation.
1638 __ adcl(out.AsRegisterPairHigh<Register>(), Immediate(0));
1639 __ negl(out.AsRegisterPairHigh<Register>());
1640 break;
1641
Roland Levillain5368c212014-11-27 15:03:41 +00001642 case Primitive::kPrimFloat: {
1643 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001644 Register constant = locations->GetTemp(0).AsRegister<Register>();
1645 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001646 // Implement float negation with an exclusive or with value
1647 // 0x80000000 (mask for bit 31, representing the sign of a
1648 // single-precision floating-point number).
1649 __ movl(constant, Immediate(INT32_C(0x80000000)));
1650 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001651 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00001652 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001653 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00001654
Roland Levillain5368c212014-11-27 15:03:41 +00001655 case Primitive::kPrimDouble: {
1656 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001657 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001658 // Implement double negation with an exclusive or with value
1659 // 0x8000000000000000 (mask for bit 63, representing the sign of
1660 // a double-precision floating-point number).
1661 __ LoadLongConstant(mask, INT64_C(0x8000000000000000));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001662 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01001663 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001664 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001665
1666 default:
1667 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1668 }
1669}
1670
Roland Levillaindff1f282014-11-05 14:15:05 +00001671void LocationsBuilderX86::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001672 Primitive::Type result_type = conversion->GetResultType();
1673 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001674 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001675
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001676 // The float-to-long and double-to-long type conversions rely on a
1677 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001678 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001679 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1680 && result_type == Primitive::kPrimLong)
Roland Levillain624279f2014-12-04 11:54:28 +00001681 ? LocationSummary::kCall
1682 : LocationSummary::kNoCall;
1683 LocationSummary* locations =
1684 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1685
David Brazdilb2bd1c52015-03-25 11:17:37 +00001686 // The Java language does not allow treating boolean as an integral type but
1687 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001688
Roland Levillaindff1f282014-11-05 14:15:05 +00001689 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001690 case Primitive::kPrimByte:
1691 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001692 case Primitive::kPrimBoolean:
1693 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001694 case Primitive::kPrimShort:
1695 case Primitive::kPrimInt:
1696 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001697 // Processing a Dex `int-to-byte' instruction.
Mark Mendell5f874182015-03-04 15:42:45 -05001698 locations->SetInAt(0, Location::ByteRegisterOrConstant(ECX, conversion->InputAt(0)));
1699 // Make the output overlap to please the register allocator. This greatly simplifies
1700 // the validation of the linear scan implementation
1701 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain51d3fc42014-11-13 14:11:42 +00001702 break;
1703
1704 default:
1705 LOG(FATAL) << "Unexpected type conversion from " << input_type
1706 << " to " << result_type;
1707 }
1708 break;
1709
Roland Levillain01a8d712014-11-14 16:27:39 +00001710 case Primitive::kPrimShort:
1711 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001712 case Primitive::kPrimBoolean:
1713 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001714 case Primitive::kPrimByte:
1715 case Primitive::kPrimInt:
1716 case Primitive::kPrimChar:
1717 // Processing a Dex `int-to-short' instruction.
1718 locations->SetInAt(0, Location::Any());
1719 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1720 break;
1721
1722 default:
1723 LOG(FATAL) << "Unexpected type conversion from " << input_type
1724 << " to " << result_type;
1725 }
1726 break;
1727
Roland Levillain946e1432014-11-11 17:35:19 +00001728 case Primitive::kPrimInt:
1729 switch (input_type) {
1730 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001731 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001732 locations->SetInAt(0, Location::Any());
1733 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1734 break;
1735
1736 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001737 // Processing a Dex `float-to-int' instruction.
1738 locations->SetInAt(0, Location::RequiresFpuRegister());
1739 locations->SetOut(Location::RequiresRegister());
1740 locations->AddTemp(Location::RequiresFpuRegister());
1741 break;
1742
Roland Levillain946e1432014-11-11 17:35:19 +00001743 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001744 // Processing a Dex `double-to-int' instruction.
1745 locations->SetInAt(0, Location::RequiresFpuRegister());
1746 locations->SetOut(Location::RequiresRegister());
1747 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001748 break;
1749
1750 default:
1751 LOG(FATAL) << "Unexpected type conversion from " << input_type
1752 << " to " << result_type;
1753 }
1754 break;
1755
Roland Levillaindff1f282014-11-05 14:15:05 +00001756 case Primitive::kPrimLong:
1757 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001758 case Primitive::kPrimBoolean:
1759 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001760 case Primitive::kPrimByte:
1761 case Primitive::kPrimShort:
1762 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001763 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001764 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001765 locations->SetInAt(0, Location::RegisterLocation(EAX));
1766 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
1767 break;
1768
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001769 case Primitive::kPrimFloat:
Vladimir Marko949c91f2015-01-27 10:48:44 +00001770 case Primitive::kPrimDouble: {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001771 // Processing a Dex `float-to-long' or 'double-to-long' instruction.
Vladimir Marko949c91f2015-01-27 10:48:44 +00001772 InvokeRuntimeCallingConvention calling_convention;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001773 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0);
1774 locations->SetInAt(0, Location::FpuRegisterLocation(parameter));
1775
Vladimir Marko949c91f2015-01-27 10:48:44 +00001776 // The runtime helper puts the result in EAX, EDX.
1777 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Vladimir Marko949c91f2015-01-27 10:48:44 +00001778 }
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001779 break;
Roland Levillaindff1f282014-11-05 14:15:05 +00001780
1781 default:
1782 LOG(FATAL) << "Unexpected type conversion from " << input_type
1783 << " to " << result_type;
1784 }
1785 break;
1786
Roland Levillain981e4542014-11-14 11:47:14 +00001787 case Primitive::kPrimChar:
1788 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001789 case Primitive::kPrimBoolean:
1790 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001791 case Primitive::kPrimByte:
1792 case Primitive::kPrimShort:
1793 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001794 // Processing a Dex `int-to-char' instruction.
1795 locations->SetInAt(0, Location::Any());
1796 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1797 break;
1798
1799 default:
1800 LOG(FATAL) << "Unexpected type conversion from " << input_type
1801 << " to " << result_type;
1802 }
1803 break;
1804
Roland Levillaindff1f282014-11-05 14:15:05 +00001805 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001806 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001807 case Primitive::kPrimBoolean:
1808 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001809 case Primitive::kPrimByte:
1810 case Primitive::kPrimShort:
1811 case Primitive::kPrimInt:
1812 case Primitive::kPrimChar:
1813 // Processing a Dex `int-to-float' instruction.
1814 locations->SetInAt(0, Location::RequiresRegister());
1815 locations->SetOut(Location::RequiresFpuRegister());
1816 break;
1817
1818 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001819 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001820 locations->SetInAt(0, Location::Any());
1821 locations->SetOut(Location::Any());
Roland Levillain6d0e4832014-11-27 18:31:21 +00001822 break;
1823
Roland Levillaincff13742014-11-17 14:32:17 +00001824 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001825 // Processing a Dex `double-to-float' instruction.
1826 locations->SetInAt(0, Location::RequiresFpuRegister());
1827 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001828 break;
1829
1830 default:
1831 LOG(FATAL) << "Unexpected type conversion from " << input_type
1832 << " to " << result_type;
1833 };
1834 break;
1835
Roland Levillaindff1f282014-11-05 14:15:05 +00001836 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001837 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001838 case Primitive::kPrimBoolean:
1839 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001840 case Primitive::kPrimByte:
1841 case Primitive::kPrimShort:
1842 case Primitive::kPrimInt:
1843 case Primitive::kPrimChar:
1844 // Processing a Dex `int-to-double' instruction.
1845 locations->SetInAt(0, Location::RequiresRegister());
1846 locations->SetOut(Location::RequiresFpuRegister());
1847 break;
1848
1849 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001850 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001851 locations->SetInAt(0, Location::Any());
1852 locations->SetOut(Location::Any());
Roland Levillain647b9ed2014-11-27 12:06:00 +00001853 break;
1854
Roland Levillaincff13742014-11-17 14:32:17 +00001855 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001856 // Processing a Dex `float-to-double' instruction.
1857 locations->SetInAt(0, Location::RequiresFpuRegister());
1858 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001859 break;
1860
1861 default:
1862 LOG(FATAL) << "Unexpected type conversion from " << input_type
1863 << " to " << result_type;
1864 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001865 break;
1866
1867 default:
1868 LOG(FATAL) << "Unexpected type conversion from " << input_type
1869 << " to " << result_type;
1870 }
1871}
1872
1873void InstructionCodeGeneratorX86::VisitTypeConversion(HTypeConversion* conversion) {
1874 LocationSummary* locations = conversion->GetLocations();
1875 Location out = locations->Out();
1876 Location in = locations->InAt(0);
1877 Primitive::Type result_type = conversion->GetResultType();
1878 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001879 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001880 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001881 case Primitive::kPrimByte:
1882 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001883 case Primitive::kPrimBoolean:
1884 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001885 case Primitive::kPrimShort:
1886 case Primitive::kPrimInt:
1887 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001888 // Processing a Dex `int-to-byte' instruction.
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001889 if (in.IsRegister()) {
1890 __ movsxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>());
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001891 } else {
1892 DCHECK(in.GetConstant()->IsIntConstant());
1893 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
1894 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
1895 }
Roland Levillain51d3fc42014-11-13 14:11:42 +00001896 break;
1897
1898 default:
1899 LOG(FATAL) << "Unexpected type conversion from " << input_type
1900 << " to " << result_type;
1901 }
1902 break;
1903
Roland Levillain01a8d712014-11-14 16:27:39 +00001904 case Primitive::kPrimShort:
1905 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001906 case Primitive::kPrimBoolean:
1907 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001908 case Primitive::kPrimByte:
1909 case Primitive::kPrimInt:
1910 case Primitive::kPrimChar:
1911 // Processing a Dex `int-to-short' instruction.
1912 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001913 __ movsxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain01a8d712014-11-14 16:27:39 +00001914 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001915 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain01a8d712014-11-14 16:27:39 +00001916 } else {
1917 DCHECK(in.GetConstant()->IsIntConstant());
1918 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001919 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
Roland Levillain01a8d712014-11-14 16:27:39 +00001920 }
1921 break;
1922
1923 default:
1924 LOG(FATAL) << "Unexpected type conversion from " << input_type
1925 << " to " << result_type;
1926 }
1927 break;
1928
Roland Levillain946e1432014-11-11 17:35:19 +00001929 case Primitive::kPrimInt:
1930 switch (input_type) {
1931 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001932 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001933 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001934 __ movl(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00001935 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001936 __ movl(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain946e1432014-11-11 17:35:19 +00001937 } else {
1938 DCHECK(in.IsConstant());
1939 DCHECK(in.GetConstant()->IsLongConstant());
1940 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001941 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00001942 }
1943 break;
1944
Roland Levillain3f8f9362014-12-02 17:45:01 +00001945 case Primitive::kPrimFloat: {
1946 // Processing a Dex `float-to-int' instruction.
1947 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1948 Register output = out.AsRegister<Register>();
1949 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1950 Label done, nan;
1951
1952 __ movl(output, Immediate(kPrimIntMax));
1953 // temp = int-to-float(output)
1954 __ cvtsi2ss(temp, output);
1955 // if input >= temp goto done
1956 __ comiss(input, temp);
1957 __ j(kAboveEqual, &done);
1958 // if input == NaN goto nan
1959 __ j(kUnordered, &nan);
1960 // output = float-to-int-truncate(input)
1961 __ cvttss2si(output, input);
1962 __ jmp(&done);
1963 __ Bind(&nan);
1964 // output = 0
1965 __ xorl(output, output);
1966 __ Bind(&done);
1967 break;
1968 }
1969
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001970 case Primitive::kPrimDouble: {
1971 // Processing a Dex `double-to-int' instruction.
1972 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1973 Register output = out.AsRegister<Register>();
1974 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1975 Label done, nan;
1976
1977 __ movl(output, Immediate(kPrimIntMax));
1978 // temp = int-to-double(output)
1979 __ cvtsi2sd(temp, output);
1980 // if input >= temp goto done
1981 __ comisd(input, temp);
1982 __ j(kAboveEqual, &done);
1983 // if input == NaN goto nan
1984 __ j(kUnordered, &nan);
1985 // output = double-to-int-truncate(input)
1986 __ cvttsd2si(output, input);
1987 __ jmp(&done);
1988 __ Bind(&nan);
1989 // output = 0
1990 __ xorl(output, output);
1991 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00001992 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001993 }
Roland Levillain946e1432014-11-11 17:35:19 +00001994
1995 default:
1996 LOG(FATAL) << "Unexpected type conversion from " << input_type
1997 << " to " << result_type;
1998 }
1999 break;
2000
Roland Levillaindff1f282014-11-05 14:15:05 +00002001 case Primitive::kPrimLong:
2002 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002003 case Primitive::kPrimBoolean:
2004 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002005 case Primitive::kPrimByte:
2006 case Primitive::kPrimShort:
2007 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002008 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002009 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002010 DCHECK_EQ(out.AsRegisterPairLow<Register>(), EAX);
2011 DCHECK_EQ(out.AsRegisterPairHigh<Register>(), EDX);
Roland Levillain271ab9c2014-11-27 15:23:57 +00002012 DCHECK_EQ(in.AsRegister<Register>(), EAX);
Roland Levillaindff1f282014-11-05 14:15:05 +00002013 __ cdq();
2014 break;
2015
2016 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00002017 // Processing a Dex `float-to-long' instruction.
2018 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pF2l)));
Roland Levillain624279f2014-12-04 11:54:28 +00002019 codegen_->RecordPcInfo(conversion, conversion->GetDexPc());
2020 break;
2021
Roland Levillaindff1f282014-11-05 14:15:05 +00002022 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002023 // Processing a Dex `double-to-long' instruction.
2024 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pD2l)));
2025 codegen_->RecordPcInfo(conversion, conversion->GetDexPc());
Roland Levillaindff1f282014-11-05 14:15:05 +00002026 break;
2027
2028 default:
2029 LOG(FATAL) << "Unexpected type conversion from " << input_type
2030 << " to " << result_type;
2031 }
2032 break;
2033
Roland Levillain981e4542014-11-14 11:47:14 +00002034 case Primitive::kPrimChar:
2035 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002036 case Primitive::kPrimBoolean:
2037 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002038 case Primitive::kPrimByte:
2039 case Primitive::kPrimShort:
2040 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002041 // Processing a Dex `Process a Dex `int-to-char'' instruction.
2042 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002043 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain981e4542014-11-14 11:47:14 +00002044 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002045 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain981e4542014-11-14 11:47:14 +00002046 } else {
2047 DCHECK(in.GetConstant()->IsIntConstant());
2048 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002049 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
Roland Levillain981e4542014-11-14 11:47:14 +00002050 }
2051 break;
2052
2053 default:
2054 LOG(FATAL) << "Unexpected type conversion from " << input_type
2055 << " to " << result_type;
2056 }
2057 break;
2058
Roland Levillaindff1f282014-11-05 14:15:05 +00002059 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002060 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002061 case Primitive::kPrimBoolean:
2062 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002063 case Primitive::kPrimByte:
2064 case Primitive::kPrimShort:
2065 case Primitive::kPrimInt:
2066 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002067 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002068 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002069 break;
2070
Roland Levillain6d0e4832014-11-27 18:31:21 +00002071 case Primitive::kPrimLong: {
2072 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002073 size_t adjustment = 0;
Roland Levillain6d0e4832014-11-27 18:31:21 +00002074
Roland Levillain232ade02015-04-20 15:14:36 +01002075 // Create stack space for the call to
2076 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstps below.
2077 // TODO: enhance register allocator to ask for stack temporaries.
2078 if (!in.IsDoubleStackSlot() || !out.IsStackSlot()) {
2079 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
2080 __ subl(ESP, Immediate(adjustment));
2081 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002082
Roland Levillain232ade02015-04-20 15:14:36 +01002083 // Load the value to the FP stack, using temporaries if needed.
2084 PushOntoFPStack(in, 0, adjustment, false, true);
2085
2086 if (out.IsStackSlot()) {
2087 __ fstps(Address(ESP, out.GetStackIndex() + adjustment));
2088 } else {
2089 __ fstps(Address(ESP, 0));
2090 Location stack_temp = Location::StackSlot(0);
2091 codegen_->Move32(out, stack_temp);
2092 }
2093
2094 // Remove the temporary stack space we allocated.
2095 if (adjustment != 0) {
2096 __ addl(ESP, Immediate(adjustment));
2097 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002098 break;
2099 }
2100
Roland Levillaincff13742014-11-17 14:32:17 +00002101 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002102 // Processing a Dex `double-to-float' instruction.
2103 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002104 break;
2105
2106 default:
2107 LOG(FATAL) << "Unexpected type conversion from " << input_type
2108 << " to " << result_type;
2109 };
2110 break;
2111
Roland Levillaindff1f282014-11-05 14:15:05 +00002112 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002113 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002114 case Primitive::kPrimBoolean:
2115 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002116 case Primitive::kPrimByte:
2117 case Primitive::kPrimShort:
2118 case Primitive::kPrimInt:
2119 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002120 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002121 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002122 break;
2123
Roland Levillain647b9ed2014-11-27 12:06:00 +00002124 case Primitive::kPrimLong: {
2125 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01002126 size_t adjustment = 0;
Roland Levillain647b9ed2014-11-27 12:06:00 +00002127
Roland Levillain232ade02015-04-20 15:14:36 +01002128 // Create stack space for the call to
2129 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstpl below.
2130 // TODO: enhance register allocator to ask for stack temporaries.
2131 if (!in.IsDoubleStackSlot() || !out.IsDoubleStackSlot()) {
2132 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
2133 __ subl(ESP, Immediate(adjustment));
2134 }
2135
2136 // Load the value to the FP stack, using temporaries if needed.
2137 PushOntoFPStack(in, 0, adjustment, false, true);
2138
2139 if (out.IsDoubleStackSlot()) {
2140 __ fstpl(Address(ESP, out.GetStackIndex() + adjustment));
2141 } else {
2142 __ fstpl(Address(ESP, 0));
2143 Location stack_temp = Location::DoubleStackSlot(0);
2144 codegen_->Move64(out, stack_temp);
2145 }
2146
2147 // Remove the temporary stack space we allocated.
2148 if (adjustment != 0) {
2149 __ addl(ESP, Immediate(adjustment));
2150 }
Roland Levillain647b9ed2014-11-27 12:06:00 +00002151 break;
2152 }
2153
Roland Levillaincff13742014-11-17 14:32:17 +00002154 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002155 // Processing a Dex `float-to-double' instruction.
2156 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002157 break;
2158
2159 default:
2160 LOG(FATAL) << "Unexpected type conversion from " << input_type
2161 << " to " << result_type;
2162 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002163 break;
2164
2165 default:
2166 LOG(FATAL) << "Unexpected type conversion from " << input_type
2167 << " to " << result_type;
2168 }
2169}
2170
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002171void LocationsBuilderX86::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002172 LocationSummary* locations =
2173 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002174 switch (add->GetResultType()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002175 case Primitive::kPrimInt: {
2176 locations->SetInAt(0, Location::RequiresRegister());
2177 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
2178 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2179 break;
2180 }
2181
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002182 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002183 locations->SetInAt(0, Location::RequiresRegister());
2184 locations->SetInAt(1, Location::Any());
2185 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002186 break;
2187 }
2188
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002189 case Primitive::kPrimFloat:
2190 case Primitive::kPrimDouble: {
2191 locations->SetInAt(0, Location::RequiresFpuRegister());
Calin Juravle3173c8a2015-02-23 15:53:39 +00002192 locations->SetInAt(1, Location::RequiresFpuRegister());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002193 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002194 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002195 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002196
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002197 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002198 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
2199 break;
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002200 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002201}
2202
2203void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) {
2204 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002205 Location first = locations->InAt(0);
2206 Location second = locations->InAt(1);
Mark Mendell09b84632015-02-13 17:48:38 -05002207 Location out = locations->Out();
2208
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002209 switch (add->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002210 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002211 if (second.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002212 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2213 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
Mark Mendell33bf2452015-05-27 10:08:24 -04002214 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2215 __ addl(out.AsRegister<Register>(), first.AsRegister<Register>());
Mark Mendell09b84632015-02-13 17:48:38 -05002216 } else {
2217 __ leal(out.AsRegister<Register>(), Address(
2218 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2219 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002220 } else if (second.IsConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05002221 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2222 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
2223 __ addl(out.AsRegister<Register>(), Immediate(value));
2224 } else {
2225 __ leal(out.AsRegister<Register>(), Address(first.AsRegister<Register>(), value));
2226 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002227 } else {
Mark Mendell09b84632015-02-13 17:48:38 -05002228 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002229 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002230 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002231 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002232 }
2233
2234 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00002235 if (second.IsRegisterPair()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002236 __ addl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
2237 __ adcl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002238 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002239 __ addl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
2240 __ adcl(first.AsRegisterPairHigh<Register>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002241 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002242 } else {
2243 DCHECK(second.IsConstant()) << second;
2244 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2245 __ addl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
2246 __ adcl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002247 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002248 break;
2249 }
2250
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002251 case Primitive::kPrimFloat: {
2252 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002253 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002254 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002255 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002256 }
2257
2258 case Primitive::kPrimDouble: {
2259 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002260 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002261 }
2262 break;
2263 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002264
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002265 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002266 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002267 }
2268}
2269
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002270void LocationsBuilderX86::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002271 LocationSummary* locations =
2272 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002273 switch (sub->GetResultType()) {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002274 case Primitive::kPrimInt:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002275 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002276 locations->SetInAt(0, Location::RequiresRegister());
2277 locations->SetInAt(1, Location::Any());
2278 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002279 break;
2280 }
Calin Juravle11351682014-10-23 15:38:15 +01002281 case Primitive::kPrimFloat:
2282 case Primitive::kPrimDouble: {
2283 locations->SetInAt(0, Location::RequiresFpuRegister());
2284 locations->SetInAt(1, Location::RequiresFpuRegister());
2285 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002286 break;
Calin Juravle11351682014-10-23 15:38:15 +01002287 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002288
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002289 default:
Calin Juravle11351682014-10-23 15:38:15 +01002290 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002291 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002292}
2293
2294void InstructionCodeGeneratorX86::VisitSub(HSub* sub) {
2295 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002296 Location first = locations->InAt(0);
2297 Location second = locations->InAt(1);
Calin Juravle11351682014-10-23 15:38:15 +01002298 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002299 switch (sub->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002300 case Primitive::kPrimInt: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002301 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002302 __ subl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002303 } else if (second.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002304 __ subl(first.AsRegister<Register>(),
2305 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002306 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002307 __ subl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002308 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002309 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002310 }
2311
2312 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00002313 if (second.IsRegisterPair()) {
Calin Juravle11351682014-10-23 15:38:15 +01002314 __ subl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
2315 __ sbbl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002316 } else if (second.IsDoubleStackSlot()) {
Calin Juravle11351682014-10-23 15:38:15 +01002317 __ subl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002318 __ sbbl(first.AsRegisterPairHigh<Register>(),
2319 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002320 } else {
2321 DCHECK(second.IsConstant()) << second;
2322 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2323 __ subl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
2324 __ sbbl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002325 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002326 break;
2327 }
2328
Calin Juravle11351682014-10-23 15:38:15 +01002329 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002330 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002331 break;
Calin Juravle11351682014-10-23 15:38:15 +01002332 }
2333
2334 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002335 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01002336 break;
2337 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002338
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002339 default:
Calin Juravle11351682014-10-23 15:38:15 +01002340 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002341 }
2342}
2343
Calin Juravle34bacdf2014-10-07 20:23:36 +01002344void LocationsBuilderX86::VisitMul(HMul* mul) {
2345 LocationSummary* locations =
2346 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2347 switch (mul->GetResultType()) {
2348 case Primitive::kPrimInt:
2349 locations->SetInAt(0, Location::RequiresRegister());
2350 locations->SetInAt(1, Location::Any());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04002351 if (mul->InputAt(1)->IsIntConstant()) {
2352 // Can use 3 operand multiply.
2353 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2354 } else {
2355 locations->SetOut(Location::SameAsFirstInput());
2356 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002357 break;
2358 case Primitive::kPrimLong: {
2359 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002360 locations->SetInAt(1, Location::Any());
2361 locations->SetOut(Location::SameAsFirstInput());
2362 // Needed for imul on 32bits with 64bits output.
2363 locations->AddTemp(Location::RegisterLocation(EAX));
2364 locations->AddTemp(Location::RegisterLocation(EDX));
2365 break;
2366 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002367 case Primitive::kPrimFloat:
2368 case Primitive::kPrimDouble: {
2369 locations->SetInAt(0, Location::RequiresFpuRegister());
2370 locations->SetInAt(1, Location::RequiresFpuRegister());
2371 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002372 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002373 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002374
2375 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002376 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002377 }
2378}
2379
2380void InstructionCodeGeneratorX86::VisitMul(HMul* mul) {
2381 LocationSummary* locations = mul->GetLocations();
2382 Location first = locations->InAt(0);
2383 Location second = locations->InAt(1);
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04002384 Location out = locations->Out();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002385
2386 switch (mul->GetResultType()) {
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04002387 case Primitive::kPrimInt:
2388 // The constant may have ended up in a register, so test explicitly to avoid
2389 // problems where the output may not be the same as the first operand.
2390 if (mul->InputAt(1)->IsIntConstant()) {
2391 Immediate imm(mul->InputAt(1)->AsIntConstant()->GetValue());
2392 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm);
2393 } else if (second.IsRegister()) {
2394 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002395 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002396 } else {
2397 DCHECK(second.IsStackSlot());
Mark Mendell4a2aa4a2015-07-27 16:13:10 -04002398 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002399 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01002400 }
2401 break;
Calin Juravle34bacdf2014-10-07 20:23:36 +01002402
2403 case Primitive::kPrimLong: {
Calin Juravle34bacdf2014-10-07 20:23:36 +01002404 Register in1_hi = first.AsRegisterPairHigh<Register>();
2405 Register in1_lo = first.AsRegisterPairLow<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002406 Register eax = locations->GetTemp(0).AsRegister<Register>();
2407 Register edx = locations->GetTemp(1).AsRegister<Register>();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002408
2409 DCHECK_EQ(EAX, eax);
2410 DCHECK_EQ(EDX, edx);
2411
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002412 // input: in1 - 64 bits, in2 - 64 bits.
Calin Juravle34bacdf2014-10-07 20:23:36 +01002413 // output: in1
2414 // formula: in1.hi : in1.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2415 // parts: in1.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2416 // parts: in1.lo = (in1.lo * in2.lo)[31:0]
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002417 if (second.IsConstant()) {
2418 DCHECK(second.GetConstant()->IsLongConstant());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002419
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002420 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2421 int32_t low_value = Low32Bits(value);
2422 int32_t high_value = High32Bits(value);
2423 Immediate low(low_value);
2424 Immediate high(high_value);
2425
2426 __ movl(eax, high);
2427 // eax <- in1.lo * in2.hi
2428 __ imull(eax, in1_lo);
2429 // in1.hi <- in1.hi * in2.lo
2430 __ imull(in1_hi, low);
2431 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2432 __ addl(in1_hi, eax);
2433 // move in2_lo to eax to prepare for double precision
2434 __ movl(eax, low);
2435 // edx:eax <- in1.lo * in2.lo
2436 __ mull(in1_lo);
2437 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2438 __ addl(in1_hi, edx);
2439 // in1.lo <- (in1.lo * in2.lo)[31:0];
2440 __ movl(in1_lo, eax);
2441 } else if (second.IsRegisterPair()) {
2442 Register in2_hi = second.AsRegisterPairHigh<Register>();
2443 Register in2_lo = second.AsRegisterPairLow<Register>();
2444
2445 __ movl(eax, in2_hi);
2446 // eax <- in1.lo * in2.hi
2447 __ imull(eax, in1_lo);
2448 // in1.hi <- in1.hi * in2.lo
2449 __ imull(in1_hi, in2_lo);
2450 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2451 __ addl(in1_hi, eax);
2452 // move in1_lo to eax to prepare for double precision
2453 __ movl(eax, in1_lo);
2454 // edx:eax <- in1.lo * in2.lo
2455 __ mull(in2_lo);
2456 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2457 __ addl(in1_hi, edx);
2458 // in1.lo <- (in1.lo * in2.lo)[31:0];
2459 __ movl(in1_lo, eax);
2460 } else {
2461 DCHECK(second.IsDoubleStackSlot()) << second;
2462 Address in2_hi(ESP, second.GetHighStackIndex(kX86WordSize));
2463 Address in2_lo(ESP, second.GetStackIndex());
2464
2465 __ movl(eax, in2_hi);
2466 // eax <- in1.lo * in2.hi
2467 __ imull(eax, in1_lo);
2468 // in1.hi <- in1.hi * in2.lo
2469 __ imull(in1_hi, in2_lo);
2470 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2471 __ addl(in1_hi, eax);
2472 // move in1_lo to eax to prepare for double precision
2473 __ movl(eax, in1_lo);
2474 // edx:eax <- in1.lo * in2.lo
2475 __ mull(in2_lo);
2476 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2477 __ addl(in1_hi, edx);
2478 // in1.lo <- (in1.lo * in2.lo)[31:0];
2479 __ movl(in1_lo, eax);
2480 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002481
2482 break;
2483 }
2484
Calin Juravleb5bfa962014-10-21 18:02:24 +01002485 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002486 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002487 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002488 }
2489
2490 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002491 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravleb5bfa962014-10-21 18:02:24 +01002492 break;
2493 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002494
2495 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002496 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002497 }
2498}
2499
Roland Levillain232ade02015-04-20 15:14:36 +01002500void InstructionCodeGeneratorX86::PushOntoFPStack(Location source,
2501 uint32_t temp_offset,
2502 uint32_t stack_adjustment,
2503 bool is_fp,
2504 bool is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002505 if (source.IsStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01002506 DCHECK(!is_wide);
2507 if (is_fp) {
2508 __ flds(Address(ESP, source.GetStackIndex() + stack_adjustment));
2509 } else {
2510 __ filds(Address(ESP, source.GetStackIndex() + stack_adjustment));
2511 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002512 } else if (source.IsDoubleStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01002513 DCHECK(is_wide);
2514 if (is_fp) {
2515 __ fldl(Address(ESP, source.GetStackIndex() + stack_adjustment));
2516 } else {
2517 __ fildl(Address(ESP, source.GetStackIndex() + stack_adjustment));
2518 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002519 } else {
2520 // Write the value to the temporary location on the stack and load to FP stack.
Roland Levillain232ade02015-04-20 15:14:36 +01002521 if (!is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002522 Location stack_temp = Location::StackSlot(temp_offset);
2523 codegen_->Move32(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01002524 if (is_fp) {
2525 __ flds(Address(ESP, temp_offset));
2526 } else {
2527 __ filds(Address(ESP, temp_offset));
2528 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002529 } else {
2530 Location stack_temp = Location::DoubleStackSlot(temp_offset);
2531 codegen_->Move64(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01002532 if (is_fp) {
2533 __ fldl(Address(ESP, temp_offset));
2534 } else {
2535 __ fildl(Address(ESP, temp_offset));
2536 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002537 }
2538 }
2539}
2540
2541void InstructionCodeGeneratorX86::GenerateRemFP(HRem *rem) {
2542 Primitive::Type type = rem->GetResultType();
2543 bool is_float = type == Primitive::kPrimFloat;
2544 size_t elem_size = Primitive::ComponentSize(type);
2545 LocationSummary* locations = rem->GetLocations();
2546 Location first = locations->InAt(0);
2547 Location second = locations->InAt(1);
2548 Location out = locations->Out();
2549
2550 // Create stack space for 2 elements.
2551 // TODO: enhance register allocator to ask for stack temporaries.
2552 __ subl(ESP, Immediate(2 * elem_size));
2553
2554 // Load the values to the FP stack in reverse order, using temporaries if needed.
Roland Levillain232ade02015-04-20 15:14:36 +01002555 const bool is_wide = !is_float;
2556 PushOntoFPStack(second, elem_size, 2 * elem_size, /* is_fp */ true, is_wide);
2557 PushOntoFPStack(first, 0, 2 * elem_size, /* is_fp */ true, is_wide);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002558
2559 // Loop doing FPREM until we stabilize.
2560 Label retry;
2561 __ Bind(&retry);
2562 __ fprem();
2563
2564 // Move FP status to AX.
2565 __ fstsw();
2566
2567 // And see if the argument reduction is complete. This is signaled by the
2568 // C2 FPU flag bit set to 0.
2569 __ andl(EAX, Immediate(kC2ConditionMask));
2570 __ j(kNotEqual, &retry);
2571
2572 // We have settled on the final value. Retrieve it into an XMM register.
2573 // Store FP top of stack to real stack.
2574 if (is_float) {
2575 __ fsts(Address(ESP, 0));
2576 } else {
2577 __ fstl(Address(ESP, 0));
2578 }
2579
2580 // Pop the 2 items from the FP stack.
2581 __ fucompp();
2582
2583 // Load the value from the stack into an XMM register.
2584 DCHECK(out.IsFpuRegister()) << out;
2585 if (is_float) {
2586 __ movss(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
2587 } else {
2588 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
2589 }
2590
2591 // And remove the temporary stack space we allocated.
2592 __ addl(ESP, Immediate(2 * elem_size));
2593}
2594
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002595
2596void InstructionCodeGeneratorX86::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2597 DCHECK(instruction->IsDiv() || instruction->IsRem());
2598
2599 LocationSummary* locations = instruction->GetLocations();
2600 DCHECK(locations->InAt(1).IsConstant());
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002601 DCHECK(locations->InAt(1).GetConstant()->IsIntConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002602
2603 Register out_register = locations->Out().AsRegister<Register>();
2604 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002605 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002606
2607 DCHECK(imm == 1 || imm == -1);
2608
2609 if (instruction->IsRem()) {
2610 __ xorl(out_register, out_register);
2611 } else {
2612 __ movl(out_register, input_register);
2613 if (imm == -1) {
2614 __ negl(out_register);
2615 }
2616 }
2617}
2618
2619
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002620void InstructionCodeGeneratorX86::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002621 LocationSummary* locations = instruction->GetLocations();
2622
2623 Register out_register = locations->Out().AsRegister<Register>();
2624 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002625 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002626
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002627 DCHECK(IsPowerOfTwo(std::abs(imm)));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002628 Register num = locations->GetTemp(0).AsRegister<Register>();
2629
2630 __ leal(num, Address(input_register, std::abs(imm) - 1));
2631 __ testl(input_register, input_register);
2632 __ cmovl(kGreaterEqual, num, input_register);
2633 int shift = CTZ(imm);
2634 __ sarl(num, Immediate(shift));
2635
2636 if (imm < 0) {
2637 __ negl(num);
2638 }
2639
2640 __ movl(out_register, num);
2641}
2642
2643void InstructionCodeGeneratorX86::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2644 DCHECK(instruction->IsDiv() || instruction->IsRem());
2645
2646 LocationSummary* locations = instruction->GetLocations();
2647 int imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
2648
2649 Register eax = locations->InAt(0).AsRegister<Register>();
2650 Register out = locations->Out().AsRegister<Register>();
2651 Register num;
2652 Register edx;
2653
2654 if (instruction->IsDiv()) {
2655 edx = locations->GetTemp(0).AsRegister<Register>();
2656 num = locations->GetTemp(1).AsRegister<Register>();
2657 } else {
2658 edx = locations->Out().AsRegister<Register>();
2659 num = locations->GetTemp(0).AsRegister<Register>();
2660 }
2661
2662 DCHECK_EQ(EAX, eax);
2663 DCHECK_EQ(EDX, edx);
2664 if (instruction->IsDiv()) {
2665 DCHECK_EQ(EAX, out);
2666 } else {
2667 DCHECK_EQ(EDX, out);
2668 }
2669
2670 int64_t magic;
2671 int shift;
2672 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
2673
2674 Label ndiv;
2675 Label end;
2676 // If numerator is 0, the result is 0, no computation needed.
2677 __ testl(eax, eax);
2678 __ j(kNotEqual, &ndiv);
2679
2680 __ xorl(out, out);
2681 __ jmp(&end);
2682
2683 __ Bind(&ndiv);
2684
2685 // Save the numerator.
2686 __ movl(num, eax);
2687
2688 // EAX = magic
2689 __ movl(eax, Immediate(magic));
2690
2691 // EDX:EAX = magic * numerator
2692 __ imull(num);
2693
2694 if (imm > 0 && magic < 0) {
2695 // EDX += num
2696 __ addl(edx, num);
2697 } else if (imm < 0 && magic > 0) {
2698 __ subl(edx, num);
2699 }
2700
2701 // Shift if needed.
2702 if (shift != 0) {
2703 __ sarl(edx, Immediate(shift));
2704 }
2705
2706 // EDX += 1 if EDX < 0
2707 __ movl(eax, edx);
2708 __ shrl(edx, Immediate(31));
2709 __ addl(edx, eax);
2710
2711 if (instruction->IsRem()) {
2712 __ movl(eax, num);
2713 __ imull(edx, Immediate(imm));
2714 __ subl(eax, edx);
2715 __ movl(edx, eax);
2716 } else {
2717 __ movl(eax, edx);
2718 }
2719 __ Bind(&end);
2720}
2721
Calin Juravlebacfec32014-11-14 15:54:36 +00002722void InstructionCodeGeneratorX86::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2723 DCHECK(instruction->IsDiv() || instruction->IsRem());
2724
2725 LocationSummary* locations = instruction->GetLocations();
2726 Location out = locations->Out();
2727 Location first = locations->InAt(0);
2728 Location second = locations->InAt(1);
2729 bool is_div = instruction->IsDiv();
2730
2731 switch (instruction->GetResultType()) {
2732 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002733 DCHECK_EQ(EAX, first.AsRegister<Register>());
2734 DCHECK_EQ(is_div ? EAX : EDX, out.AsRegister<Register>());
Calin Juravlebacfec32014-11-14 15:54:36 +00002735
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002736 if (instruction->InputAt(1)->IsIntConstant()) {
2737 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002738
2739 if (imm == 0) {
2740 // Do not generate anything for 0. DivZeroCheck would forbid any generated code.
2741 } else if (imm == 1 || imm == -1) {
2742 DivRemOneOrMinusOne(instruction);
2743 } else if (is_div && IsPowerOfTwo(std::abs(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002744 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002745 } else {
2746 DCHECK(imm <= -2 || imm >= 2);
2747 GenerateDivRemWithAnyConstant(instruction);
2748 }
2749 } else {
2750 SlowPathCodeX86* slow_path =
Roland Levillain199f3362014-11-27 17:15:16 +00002751 new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86(out.AsRegister<Register>(),
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002752 is_div);
2753 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00002754
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002755 Register second_reg = second.AsRegister<Register>();
2756 // 0x80000000/-1 triggers an arithmetic exception!
2757 // Dividing by -1 is actually negation and -0x800000000 = 0x80000000 so
2758 // it's safe to just use negl instead of more complex comparisons.
Calin Juravlebacfec32014-11-14 15:54:36 +00002759
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002760 __ cmpl(second_reg, Immediate(-1));
2761 __ j(kEqual, slow_path->GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +00002762
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002763 // edx:eax <- sign-extended of eax
2764 __ cdq();
2765 // eax = quotient, edx = remainder
2766 __ idivl(second_reg);
2767 __ Bind(slow_path->GetExitLabel());
2768 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002769 break;
2770 }
2771
2772 case Primitive::kPrimLong: {
2773 InvokeRuntimeCallingConvention calling_convention;
2774 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2775 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2776 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2777 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2778 DCHECK_EQ(EAX, out.AsRegisterPairLow<Register>());
2779 DCHECK_EQ(EDX, out.AsRegisterPairHigh<Register>());
2780
2781 if (is_div) {
2782 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLdiv)));
2783 } else {
2784 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLmod)));
2785 }
2786 uint32_t dex_pc = is_div
2787 ? instruction->AsDiv()->GetDexPc()
2788 : instruction->AsRem()->GetDexPc();
2789 codegen_->RecordPcInfo(instruction, dex_pc);
2790
2791 break;
2792 }
2793
2794 default:
2795 LOG(FATAL) << "Unexpected type for GenerateDivRemIntegral " << instruction->GetResultType();
2796 }
2797}
2798
Calin Juravle7c4954d2014-10-28 16:57:40 +00002799void LocationsBuilderX86::VisitDiv(HDiv* div) {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002800 LocationSummary::CallKind call_kind = (div->GetResultType() == Primitive::kPrimLong)
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002801 ? LocationSummary::kCall
2802 : LocationSummary::kNoCall;
2803 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2804
Calin Juravle7c4954d2014-10-28 16:57:40 +00002805 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002806 case Primitive::kPrimInt: {
2807 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002808 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00002809 locations->SetOut(Location::SameAsFirstInput());
2810 // Intel uses edx:eax as the dividend.
2811 locations->AddTemp(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002812 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2813 // which enforces results to be in EAX and EDX, things are simpler if we use EAX also as
2814 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002815 if (div->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002816 locations->AddTemp(Location::RequiresRegister());
2817 }
Calin Juravled0d48522014-11-04 16:40:20 +00002818 break;
2819 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002820 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002821 InvokeRuntimeCallingConvention calling_convention;
2822 locations->SetInAt(0, Location::RegisterPairLocation(
2823 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2824 locations->SetInAt(1, Location::RegisterPairLocation(
2825 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2826 // Runtime helper puts the result in EAX, EDX.
2827 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002828 break;
2829 }
2830 case Primitive::kPrimFloat:
2831 case Primitive::kPrimDouble: {
2832 locations->SetInAt(0, Location::RequiresFpuRegister());
2833 locations->SetInAt(1, Location::RequiresFpuRegister());
2834 locations->SetOut(Location::SameAsFirstInput());
2835 break;
2836 }
2837
2838 default:
2839 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2840 }
2841}
2842
2843void InstructionCodeGeneratorX86::VisitDiv(HDiv* div) {
2844 LocationSummary* locations = div->GetLocations();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002845 Location out = locations->Out();
Calin Juravle7c4954d2014-10-28 16:57:40 +00002846 Location first = locations->InAt(0);
2847 Location second = locations->InAt(1);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002848
2849 switch (div->GetResultType()) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002850 case Primitive::kPrimInt:
Calin Juravle7c4954d2014-10-28 16:57:40 +00002851 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00002852 GenerateDivRemIntegral(div);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002853 break;
2854 }
2855
2856 case Primitive::kPrimFloat: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002857 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002858 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002859 break;
2860 }
2861
2862 case Primitive::kPrimDouble: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002863 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002864 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002865 break;
2866 }
2867
2868 default:
2869 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2870 }
2871}
2872
Calin Juravlebacfec32014-11-14 15:54:36 +00002873void LocationsBuilderX86::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002874 Primitive::Type type = rem->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002875
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002876 LocationSummary::CallKind call_kind = (rem->GetResultType() == Primitive::kPrimLong)
2877 ? LocationSummary::kCall
2878 : LocationSummary::kNoCall;
2879 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
Calin Juravlebacfec32014-11-14 15:54:36 +00002880
Calin Juravled2ec87d2014-12-08 14:24:46 +00002881 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002882 case Primitive::kPrimInt: {
2883 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002884 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00002885 locations->SetOut(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002886 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2887 // which enforces results to be in EAX and EDX, things are simpler if we use EDX also as
2888 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002889 if (rem->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002890 locations->AddTemp(Location::RequiresRegister());
2891 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002892 break;
2893 }
2894 case Primitive::kPrimLong: {
2895 InvokeRuntimeCallingConvention calling_convention;
2896 locations->SetInAt(0, Location::RegisterPairLocation(
2897 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2898 locations->SetInAt(1, Location::RegisterPairLocation(
2899 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2900 // Runtime helper puts the result in EAX, EDX.
2901 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
2902 break;
2903 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002904 case Primitive::kPrimDouble:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002905 case Primitive::kPrimFloat: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002906 locations->SetInAt(0, Location::Any());
2907 locations->SetInAt(1, Location::Any());
2908 locations->SetOut(Location::RequiresFpuRegister());
2909 locations->AddTemp(Location::RegisterLocation(EAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00002910 break;
2911 }
2912
2913 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002914 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002915 }
2916}
2917
2918void InstructionCodeGeneratorX86::VisitRem(HRem* rem) {
2919 Primitive::Type type = rem->GetResultType();
2920 switch (type) {
2921 case Primitive::kPrimInt:
2922 case Primitive::kPrimLong: {
2923 GenerateDivRemIntegral(rem);
2924 break;
2925 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002926 case Primitive::kPrimFloat:
Calin Juravlebacfec32014-11-14 15:54:36 +00002927 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002928 GenerateRemFP(rem);
Calin Juravlebacfec32014-11-14 15:54:36 +00002929 break;
2930 }
2931 default:
2932 LOG(FATAL) << "Unexpected rem type " << type;
2933 }
2934}
2935
Calin Juravled0d48522014-11-04 16:40:20 +00002936void LocationsBuilderX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2937 LocationSummary* locations =
2938 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002939 switch (instruction->GetType()) {
Serguei Katkov8c0676c2015-08-03 13:55:33 +06002940 case Primitive::kPrimByte:
2941 case Primitive::kPrimChar:
2942 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002943 case Primitive::kPrimInt: {
2944 locations->SetInAt(0, Location::Any());
2945 break;
2946 }
2947 case Primitive::kPrimLong: {
2948 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
2949 if (!instruction->IsConstant()) {
2950 locations->AddTemp(Location::RequiresRegister());
2951 }
2952 break;
2953 }
2954 default:
2955 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2956 }
Calin Juravled0d48522014-11-04 16:40:20 +00002957 if (instruction->HasUses()) {
2958 locations->SetOut(Location::SameAsFirstInput());
2959 }
2960}
2961
2962void InstructionCodeGeneratorX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2963 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86(instruction);
2964 codegen_->AddSlowPath(slow_path);
2965
2966 LocationSummary* locations = instruction->GetLocations();
2967 Location value = locations->InAt(0);
2968
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002969 switch (instruction->GetType()) {
Serguei Katkov8c0676c2015-08-03 13:55:33 +06002970 case Primitive::kPrimByte:
2971 case Primitive::kPrimChar:
2972 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002973 case Primitive::kPrimInt: {
2974 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002975 __ testl(value.AsRegister<Register>(), value.AsRegister<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002976 __ j(kEqual, slow_path->GetEntryLabel());
2977 } else if (value.IsStackSlot()) {
2978 __ cmpl(Address(ESP, value.GetStackIndex()), Immediate(0));
2979 __ j(kEqual, slow_path->GetEntryLabel());
2980 } else {
2981 DCHECK(value.IsConstant()) << value;
2982 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2983 __ jmp(slow_path->GetEntryLabel());
2984 }
2985 }
2986 break;
Calin Juravled0d48522014-11-04 16:40:20 +00002987 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002988 case Primitive::kPrimLong: {
2989 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002990 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002991 __ movl(temp, value.AsRegisterPairLow<Register>());
2992 __ orl(temp, value.AsRegisterPairHigh<Register>());
2993 __ j(kEqual, slow_path->GetEntryLabel());
2994 } else {
2995 DCHECK(value.IsConstant()) << value;
2996 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2997 __ jmp(slow_path->GetEntryLabel());
2998 }
2999 }
3000 break;
3001 }
3002 default:
3003 LOG(FATAL) << "Unexpected type for HDivZeroCheck" << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00003004 }
Calin Juravled0d48522014-11-04 16:40:20 +00003005}
3006
Calin Juravle9aec02f2014-11-18 23:06:35 +00003007void LocationsBuilderX86::HandleShift(HBinaryOperation* op) {
3008 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3009
3010 LocationSummary* locations =
3011 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
3012
3013 switch (op->GetResultType()) {
Mark P Mendell73945692015-04-29 14:56:17 +00003014 case Primitive::kPrimInt:
Calin Juravle9aec02f2014-11-18 23:06:35 +00003015 case Primitive::kPrimLong: {
Mark P Mendell73945692015-04-29 14:56:17 +00003016 // Can't have Location::Any() and output SameAsFirstInput()
Calin Juravle9aec02f2014-11-18 23:06:35 +00003017 locations->SetInAt(0, Location::RequiresRegister());
Mark P Mendell73945692015-04-29 14:56:17 +00003018 // The shift count needs to be in CL or a constant.
3019 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, op->InputAt(1)));
Calin Juravle9aec02f2014-11-18 23:06:35 +00003020 locations->SetOut(Location::SameAsFirstInput());
3021 break;
3022 }
3023 default:
3024 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3025 }
3026}
3027
3028void InstructionCodeGeneratorX86::HandleShift(HBinaryOperation* op) {
3029 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3030
3031 LocationSummary* locations = op->GetLocations();
3032 Location first = locations->InAt(0);
3033 Location second = locations->InAt(1);
3034 DCHECK(first.Equals(locations->Out()));
3035
3036 switch (op->GetResultType()) {
3037 case Primitive::kPrimInt: {
Mark P Mendell73945692015-04-29 14:56:17 +00003038 DCHECK(first.IsRegister());
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003039 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003040 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003041 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003042 DCHECK_EQ(ECX, second_reg);
3043 if (op->IsShl()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003044 __ shll(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003045 } else if (op->IsShr()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003046 __ sarl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003047 } else {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003048 __ shrl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003049 }
3050 } else {
Mark P Mendell73945692015-04-29 14:56:17 +00003051 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue;
3052 if (shift == 0) {
3053 return;
3054 }
3055 Immediate imm(shift);
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003056 if (op->IsShl()) {
3057 __ shll(first_reg, imm);
3058 } else if (op->IsShr()) {
3059 __ sarl(first_reg, imm);
3060 } else {
3061 __ shrl(first_reg, imm);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003062 }
3063 }
3064 break;
3065 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003066 case Primitive::kPrimLong: {
Mark P Mendell73945692015-04-29 14:56:17 +00003067 if (second.IsRegister()) {
3068 Register second_reg = second.AsRegister<Register>();
3069 DCHECK_EQ(ECX, second_reg);
3070 if (op->IsShl()) {
3071 GenerateShlLong(first, second_reg);
3072 } else if (op->IsShr()) {
3073 GenerateShrLong(first, second_reg);
3074 } else {
3075 GenerateUShrLong(first, second_reg);
3076 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003077 } else {
Mark P Mendell73945692015-04-29 14:56:17 +00003078 // Shift by a constant.
3079 int shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftValue;
3080 // Nothing to do if the shift is 0, as the input is already the output.
3081 if (shift != 0) {
3082 if (op->IsShl()) {
3083 GenerateShlLong(first, shift);
3084 } else if (op->IsShr()) {
3085 GenerateShrLong(first, shift);
3086 } else {
3087 GenerateUShrLong(first, shift);
3088 }
3089 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00003090 }
3091 break;
3092 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003093 default:
3094 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
3095 }
3096}
3097
Mark P Mendell73945692015-04-29 14:56:17 +00003098void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, int shift) {
3099 Register low = loc.AsRegisterPairLow<Register>();
3100 Register high = loc.AsRegisterPairHigh<Register>();
Mark Mendellba56d062015-05-05 21:34:03 -04003101 if (shift == 1) {
3102 // This is just an addition.
3103 __ addl(low, low);
3104 __ adcl(high, high);
3105 } else if (shift == 32) {
Mark P Mendell73945692015-04-29 14:56:17 +00003106 // Shift by 32 is easy. High gets low, and low gets 0.
3107 codegen_->EmitParallelMoves(
3108 loc.ToLow(),
3109 loc.ToHigh(),
3110 Primitive::kPrimInt,
3111 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
3112 loc.ToLow(),
3113 Primitive::kPrimInt);
3114 } else if (shift > 32) {
3115 // Low part becomes 0. High part is low part << (shift-32).
3116 __ movl(high, low);
3117 __ shll(high, Immediate(shift - 32));
3118 __ xorl(low, low);
3119 } else {
3120 // Between 1 and 31.
3121 __ shld(high, low, Immediate(shift));
3122 __ shll(low, Immediate(shift));
3123 }
3124}
3125
Calin Juravle9aec02f2014-11-18 23:06:35 +00003126void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) {
3127 Label done;
3128 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter);
3129 __ shll(loc.AsRegisterPairLow<Register>(), shifter);
3130 __ testl(shifter, Immediate(32));
3131 __ j(kEqual, &done);
3132 __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>());
3133 __ movl(loc.AsRegisterPairLow<Register>(), Immediate(0));
3134 __ Bind(&done);
3135}
3136
Mark P Mendell73945692015-04-29 14:56:17 +00003137void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, int shift) {
3138 Register low = loc.AsRegisterPairLow<Register>();
3139 Register high = loc.AsRegisterPairHigh<Register>();
3140 if (shift == 32) {
3141 // Need to copy the sign.
3142 DCHECK_NE(low, high);
3143 __ movl(low, high);
3144 __ sarl(high, Immediate(31));
3145 } else if (shift > 32) {
3146 DCHECK_NE(low, high);
3147 // High part becomes sign. Low part is shifted by shift - 32.
3148 __ movl(low, high);
3149 __ sarl(high, Immediate(31));
3150 __ sarl(low, Immediate(shift - 32));
3151 } else {
3152 // Between 1 and 31.
3153 __ shrd(low, high, Immediate(shift));
3154 __ sarl(high, Immediate(shift));
3155 }
3156}
3157
Calin Juravle9aec02f2014-11-18 23:06:35 +00003158void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) {
3159 Label done;
3160 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
3161 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter);
3162 __ testl(shifter, Immediate(32));
3163 __ j(kEqual, &done);
3164 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
3165 __ sarl(loc.AsRegisterPairHigh<Register>(), Immediate(31));
3166 __ Bind(&done);
3167}
3168
Mark P Mendell73945692015-04-29 14:56:17 +00003169void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, int shift) {
3170 Register low = loc.AsRegisterPairLow<Register>();
3171 Register high = loc.AsRegisterPairHigh<Register>();
3172 if (shift == 32) {
3173 // Shift by 32 is easy. Low gets high, and high gets 0.
3174 codegen_->EmitParallelMoves(
3175 loc.ToHigh(),
3176 loc.ToLow(),
3177 Primitive::kPrimInt,
3178 Location::ConstantLocation(GetGraph()->GetIntConstant(0)),
3179 loc.ToHigh(),
3180 Primitive::kPrimInt);
3181 } else if (shift > 32) {
3182 // Low part is high >> (shift - 32). High part becomes 0.
3183 __ movl(low, high);
3184 __ shrl(low, Immediate(shift - 32));
3185 __ xorl(high, high);
3186 } else {
3187 // Between 1 and 31.
3188 __ shrd(low, high, Immediate(shift));
3189 __ shrl(high, Immediate(shift));
3190 }
3191}
3192
Calin Juravle9aec02f2014-11-18 23:06:35 +00003193void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) {
3194 Label done;
3195 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
3196 __ shrl(loc.AsRegisterPairHigh<Register>(), shifter);
3197 __ testl(shifter, Immediate(32));
3198 __ j(kEqual, &done);
3199 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
3200 __ movl(loc.AsRegisterPairHigh<Register>(), Immediate(0));
3201 __ Bind(&done);
3202}
3203
3204void LocationsBuilderX86::VisitShl(HShl* shl) {
3205 HandleShift(shl);
3206}
3207
3208void InstructionCodeGeneratorX86::VisitShl(HShl* shl) {
3209 HandleShift(shl);
3210}
3211
3212void LocationsBuilderX86::VisitShr(HShr* shr) {
3213 HandleShift(shr);
3214}
3215
3216void InstructionCodeGeneratorX86::VisitShr(HShr* shr) {
3217 HandleShift(shr);
3218}
3219
3220void LocationsBuilderX86::VisitUShr(HUShr* ushr) {
3221 HandleShift(ushr);
3222}
3223
3224void InstructionCodeGeneratorX86::VisitUShr(HUShr* ushr) {
3225 HandleShift(ushr);
3226}
3227
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003228void LocationsBuilderX86::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003229 LocationSummary* locations =
3230 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003231 locations->SetOut(Location::RegisterLocation(EAX));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003232 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003233 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003234 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003235}
3236
3237void InstructionCodeGeneratorX86::VisitNewInstance(HNewInstance* instruction) {
3238 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003239 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex()));
Roland Levillain4d027112015-07-01 15:41:14 +01003240 // Note: if heap poisoning is enabled, the entry point takes cares
3241 // of poisoning the reference.
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00003242 __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint())));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003243
Nicolas Geoffray39468442014-09-02 15:17:15 +01003244 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01003245 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003246}
3247
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003248void LocationsBuilderX86::VisitNewArray(HNewArray* instruction) {
3249 LocationSummary* locations =
3250 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3251 locations->SetOut(Location::RegisterLocation(EAX));
3252 InvokeRuntimeCallingConvention calling_convention;
3253 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003254 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003255 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003256}
3257
3258void InstructionCodeGeneratorX86::VisitNewArray(HNewArray* instruction) {
3259 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003260 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex()));
3261
Roland Levillain4d027112015-07-01 15:41:14 +01003262 // Note: if heap poisoning is enabled, the entry point takes cares
3263 // of poisoning the reference.
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00003264 __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint())));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003265
3266 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3267 DCHECK(!codegen_->IsLeafMethod());
3268}
3269
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003270void LocationsBuilderX86::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003271 LocationSummary* locations =
3272 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003273 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3274 if (location.IsStackSlot()) {
3275 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3276 } else if (location.IsDoubleStackSlot()) {
3277 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003278 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003279 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003280}
3281
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003282void InstructionCodeGeneratorX86::VisitParameterValue(
3283 HParameterValue* instruction ATTRIBUTE_UNUSED) {
3284}
3285
3286void LocationsBuilderX86::VisitCurrentMethod(HCurrentMethod* instruction) {
3287 LocationSummary* locations =
3288 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3289 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
3290}
3291
3292void InstructionCodeGeneratorX86::VisitCurrentMethod(HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003293}
3294
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003295void LocationsBuilderX86::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003296 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003297 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003298 locations->SetInAt(0, Location::RequiresRegister());
3299 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01003300}
3301
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003302void InstructionCodeGeneratorX86::VisitNot(HNot* not_) {
3303 LocationSummary* locations = not_->GetLocations();
Roland Levillain70566432014-10-24 16:20:17 +01003304 Location in = locations->InAt(0);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003305 Location out = locations->Out();
Roland Levillain70566432014-10-24 16:20:17 +01003306 DCHECK(in.Equals(out));
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00003307 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003308 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00003309 __ notl(out.AsRegister<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003310 break;
3311
3312 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01003313 __ notl(out.AsRegisterPairLow<Register>());
3314 __ notl(out.AsRegisterPairHigh<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003315 break;
3316
3317 default:
3318 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
3319 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01003320}
3321
David Brazdil66d126e2015-04-03 16:02:44 +01003322void LocationsBuilderX86::VisitBooleanNot(HBooleanNot* bool_not) {
3323 LocationSummary* locations =
3324 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
3325 locations->SetInAt(0, Location::RequiresRegister());
3326 locations->SetOut(Location::SameAsFirstInput());
3327}
3328
3329void InstructionCodeGeneratorX86::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01003330 LocationSummary* locations = bool_not->GetLocations();
3331 Location in = locations->InAt(0);
3332 Location out = locations->Out();
3333 DCHECK(in.Equals(out));
3334 __ xorl(out.AsRegister<Register>(), Immediate(1));
3335}
3336
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003337void LocationsBuilderX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003338 LocationSummary* locations =
3339 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00003340 switch (compare->InputAt(0)->GetType()) {
3341 case Primitive::kPrimLong: {
3342 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravleddb7df22014-11-25 20:56:51 +00003343 locations->SetInAt(1, Location::Any());
3344 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3345 break;
3346 }
3347 case Primitive::kPrimFloat:
3348 case Primitive::kPrimDouble: {
3349 locations->SetInAt(0, Location::RequiresFpuRegister());
3350 locations->SetInAt(1, Location::RequiresFpuRegister());
3351 locations->SetOut(Location::RequiresRegister());
3352 break;
3353 }
3354 default:
3355 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
3356 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003357}
3358
3359void InstructionCodeGeneratorX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003360 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003361 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00003362 Location left = locations->InAt(0);
3363 Location right = locations->InAt(1);
3364
3365 Label less, greater, done;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003366 switch (compare->InputAt(0)->GetType()) {
3367 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003368 Register left_low = left.AsRegisterPairLow<Register>();
3369 Register left_high = left.AsRegisterPairHigh<Register>();
3370 int32_t val_low = 0;
3371 int32_t val_high = 0;
3372 bool right_is_const = false;
3373
3374 if (right.IsConstant()) {
3375 DCHECK(right.GetConstant()->IsLongConstant());
3376 right_is_const = true;
3377 int64_t val = right.GetConstant()->AsLongConstant()->GetValue();
3378 val_low = Low32Bits(val);
3379 val_high = High32Bits(val);
3380 }
3381
Calin Juravleddb7df22014-11-25 20:56:51 +00003382 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003383 __ cmpl(left_high, right.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003384 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003385 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003386 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003387 DCHECK(right_is_const) << right;
3388 if (val_high == 0) {
3389 __ testl(left_high, left_high);
3390 } else {
3391 __ cmpl(left_high, Immediate(val_high));
3392 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003393 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003394 __ j(kLess, &less); // Signed compare.
3395 __ j(kGreater, &greater); // Signed compare.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003396 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003397 __ cmpl(left_low, right.AsRegisterPairLow<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003398 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003399 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003400 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003401 DCHECK(right_is_const) << right;
3402 if (val_low == 0) {
3403 __ testl(left_low, left_low);
3404 } else {
3405 __ cmpl(left_low, Immediate(val_low));
3406 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003407 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003408 break;
3409 }
3410 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003411 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00003412 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
3413 break;
3414 }
3415 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003416 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00003417 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003418 break;
3419 }
3420 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00003421 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003422 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003423 __ movl(out, Immediate(0));
3424 __ j(kEqual, &done);
3425 __ j(kBelow, &less); // kBelow is for CF (unsigned & floats).
3426
3427 __ Bind(&greater);
3428 __ movl(out, Immediate(1));
3429 __ jmp(&done);
3430
3431 __ Bind(&less);
3432 __ movl(out, Immediate(-1));
3433
3434 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003435}
3436
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003437void LocationsBuilderX86::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003438 LocationSummary* locations =
3439 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01003440 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3441 locations->SetInAt(i, Location::Any());
3442 }
3443 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003444}
3445
3446void InstructionCodeGeneratorX86::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003447 UNUSED(instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003448 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003449}
3450
Calin Juravle52c48962014-12-16 17:02:57 +00003451void InstructionCodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) {
3452 /*
3453 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
3454 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model.
3455 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
3456 */
3457 switch (kind) {
3458 case MemBarrierKind::kAnyAny: {
3459 __ mfence();
3460 break;
3461 }
3462 case MemBarrierKind::kAnyStore:
3463 case MemBarrierKind::kLoadAny:
3464 case MemBarrierKind::kStoreStore: {
3465 // nop
3466 break;
3467 }
3468 default:
3469 LOG(FATAL) << "Unexpected memory barrier " << kind;
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003470 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003471}
3472
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003473
Mark Mendell09ed1a32015-03-25 08:30:06 -04003474void CodeGeneratorX86::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke,
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003475 Location temp) {
Mark Mendell09ed1a32015-03-25 08:30:06 -04003476 // TODO: Implement all kinds of calls:
3477 // 1) boot -> boot
3478 // 2) app -> boot
3479 // 3) app -> app
3480 //
3481 // Currently we implement the app -> app logic, which looks up in the resolve cache.
Jeff Hao848f70a2014-01-15 13:49:50 -08003482
3483 if (invoke->IsStringInit()) {
3484 // temp = thread->string_init_entrypoint
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003485 Register reg = temp.AsRegister<Register>();
3486 __ fs()->movl(reg, Address::Absolute(invoke->GetStringInitOffset()));
Mark Mendell09ed1a32015-03-25 08:30:06 -04003487 // (temp + offset_of_quick_compiled_code)()
3488 __ call(Address(
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003489 reg, ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value()));
3490 } else if (invoke->IsRecursive()) {
3491 __ call(GetFrameEntryLabel());
Mark Mendell09ed1a32015-03-25 08:30:06 -04003492 } else {
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003493 Location current_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
3494
3495 Register method_reg;
3496 Register reg = temp.AsRegister<Register>();
3497 if (current_method.IsRegister()) {
3498 method_reg = current_method.AsRegister<Register>();
Nicolas Geoffrayc345f142015-06-04 17:17:32 +00003499 } else {
Nicolas Geoffrayae71a052015-06-09 14:12:28 +01003500 DCHECK(IsBaseline() || invoke->GetLocations()->Intrinsified());
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003501 DCHECK(!current_method.IsValid());
3502 method_reg = reg;
3503 __ movl(reg, Address(ESP, kCurrentMethodStackOffset));
Nicolas Geoffrayc345f142015-06-04 17:17:32 +00003504 }
Nicolas Geoffray94015b92015-06-04 18:21:04 +01003505 // temp = temp->dex_cache_resolved_methods_;
3506 __ movl(reg, Address(method_reg, ArtMethod::DexCacheResolvedMethodsOffset().Int32Value()));
3507 // temp = temp[index_in_cache]
3508 __ movl(reg, Address(reg,
3509 CodeGenerator::GetCachePointerOffset(invoke->GetDexMethodIndex())));
3510 // (temp + offset_of_quick_compiled_code)()
3511 __ call(Address(reg,
3512 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value()));
Mark Mendell09ed1a32015-03-25 08:30:06 -04003513 }
3514
3515 DCHECK(!IsLeafMethod());
Mark Mendell09ed1a32015-03-25 08:30:06 -04003516}
3517
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003518void CodeGeneratorX86::MarkGCCard(Register temp,
3519 Register card,
3520 Register object,
3521 Register value,
3522 bool value_can_be_null) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003523 Label is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003524 if (value_can_be_null) {
3525 __ testl(value, value);
3526 __ j(kEqual, &is_null);
3527 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003528 __ fs()->movl(card, Address::Absolute(Thread::CardTableOffset<kX86WordSize>().Int32Value()));
3529 __ movl(temp, object);
3530 __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003531 __ movb(Address(temp, card, TIMES_1, 0),
3532 X86ManagedRegister::FromCpuRegister(card).AsByteRegister());
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003533 if (value_can_be_null) {
3534 __ Bind(&is_null);
3535 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003536}
3537
Calin Juravle52c48962014-12-16 17:02:57 +00003538void LocationsBuilderX86::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
3539 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01003540 LocationSummary* locations =
3541 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003542 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003543
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003544 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3545 locations->SetOut(Location::RequiresFpuRegister());
3546 } else {
3547 // The output overlaps in case of long: we don't want the low move to overwrite
3548 // the object's location.
3549 locations->SetOut(Location::RequiresRegister(),
3550 (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap
3551 : Location::kNoOutputOverlap);
3552 }
Calin Juravle52c48962014-12-16 17:02:57 +00003553
3554 if (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong)) {
3555 // Long values can be loaded atomically into an XMM using movsd.
3556 // So we use an XMM register as a temp to achieve atomicity (first load the temp into the XMM
3557 // and then copy the XMM into the output 32bits at a time).
3558 locations->AddTemp(Location::RequiresFpuRegister());
3559 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003560}
3561
Calin Juravle52c48962014-12-16 17:02:57 +00003562void InstructionCodeGeneratorX86::HandleFieldGet(HInstruction* instruction,
3563 const FieldInfo& field_info) {
3564 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003565
Calin Juravle52c48962014-12-16 17:02:57 +00003566 LocationSummary* locations = instruction->GetLocations();
3567 Register base = locations->InAt(0).AsRegister<Register>();
3568 Location out = locations->Out();
3569 bool is_volatile = field_info.IsVolatile();
3570 Primitive::Type field_type = field_info.GetFieldType();
3571 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3572
3573 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003574 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003575 __ movzxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003576 break;
3577 }
3578
3579 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003580 __ movsxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003581 break;
3582 }
3583
3584 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003585 __ movsxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003586 break;
3587 }
3588
3589 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003590 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003591 break;
3592 }
3593
3594 case Primitive::kPrimInt:
3595 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003596 __ movl(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003597 break;
3598 }
3599
3600 case Primitive::kPrimLong: {
Calin Juravle52c48962014-12-16 17:02:57 +00003601 if (is_volatile) {
3602 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
3603 __ movsd(temp, Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003604 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003605 __ movd(out.AsRegisterPairLow<Register>(), temp);
3606 __ psrlq(temp, Immediate(32));
3607 __ movd(out.AsRegisterPairHigh<Register>(), temp);
3608 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003609 DCHECK_NE(base, out.AsRegisterPairLow<Register>());
Calin Juravle52c48962014-12-16 17:02:57 +00003610 __ movl(out.AsRegisterPairLow<Register>(), Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003611 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003612 __ movl(out.AsRegisterPairHigh<Register>(), Address(base, kX86WordSize + offset));
3613 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003614 break;
3615 }
3616
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003617 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003618 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003619 break;
3620 }
3621
3622 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003623 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003624 break;
3625 }
3626
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003627 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003628 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003629 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003630 }
Calin Juravle52c48962014-12-16 17:02:57 +00003631
Calin Juravle77520bc2015-01-12 18:45:46 +00003632 // Longs are handled in the switch.
3633 if (field_type != Primitive::kPrimLong) {
3634 codegen_->MaybeRecordImplicitNullCheck(instruction);
3635 }
3636
Calin Juravle52c48962014-12-16 17:02:57 +00003637 if (is_volatile) {
3638 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3639 }
Roland Levillain4d027112015-07-01 15:41:14 +01003640
3641 if (field_type == Primitive::kPrimNot) {
3642 __ MaybeUnpoisonHeapReference(out.AsRegister<Register>());
3643 }
Calin Juravle52c48962014-12-16 17:02:57 +00003644}
3645
3646void LocationsBuilderX86::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
3647 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3648
3649 LocationSummary* locations =
3650 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3651 locations->SetInAt(0, Location::RequiresRegister());
3652 bool is_volatile = field_info.IsVolatile();
3653 Primitive::Type field_type = field_info.GetFieldType();
3654 bool is_byte_type = (field_type == Primitive::kPrimBoolean)
3655 || (field_type == Primitive::kPrimByte);
3656
3657 // The register allocator does not support multiple
3658 // inputs that die at entry with one in a specific register.
3659 if (is_byte_type) {
3660 // Ensure the value is in a byte register.
3661 locations->SetInAt(1, Location::RegisterLocation(EAX));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003662 } else if (Primitive::IsFloatingPointType(field_type)) {
3663 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00003664 } else {
3665 locations->SetInAt(1, Location::RequiresRegister());
3666 }
Calin Juravle52c48962014-12-16 17:02:57 +00003667 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Roland Levillain4d027112015-07-01 15:41:14 +01003668 // Temporary registers for the write barrier.
3669 locations->AddTemp(Location::RequiresRegister()); // Possibly used for reference poisoning too.
Calin Juravle52c48962014-12-16 17:02:57 +00003670 // Ensure the card is in a byte register.
3671 locations->AddTemp(Location::RegisterLocation(ECX));
3672 } else if (is_volatile && (field_type == Primitive::kPrimLong)) {
3673 // 64bits value can be atomically written to an address with movsd and an XMM register.
3674 // We need two XMM registers because there's no easier way to (bit) copy a register pair
3675 // into a single XMM register (we copy each pair part into the XMMs and then interleave them).
3676 // NB: We could make the register allocator understand fp_reg <-> core_reg moves but given the
3677 // isolated cases when we need this it isn't worth adding the extra complexity.
3678 locations->AddTemp(Location::RequiresFpuRegister());
3679 locations->AddTemp(Location::RequiresFpuRegister());
3680 }
3681}
3682
3683void InstructionCodeGeneratorX86::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003684 const FieldInfo& field_info,
3685 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00003686 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3687
3688 LocationSummary* locations = instruction->GetLocations();
3689 Register base = locations->InAt(0).AsRegister<Register>();
3690 Location value = locations->InAt(1);
3691 bool is_volatile = field_info.IsVolatile();
3692 Primitive::Type field_type = field_info.GetFieldType();
3693 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01003694 bool needs_write_barrier =
3695 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00003696
3697 if (is_volatile) {
3698 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
3699 }
3700
3701 switch (field_type) {
3702 case Primitive::kPrimBoolean:
3703 case Primitive::kPrimByte: {
3704 __ movb(Address(base, offset), value.AsRegister<ByteRegister>());
3705 break;
3706 }
3707
3708 case Primitive::kPrimShort:
3709 case Primitive::kPrimChar: {
3710 __ movw(Address(base, offset), value.AsRegister<Register>());
3711 break;
3712 }
3713
3714 case Primitive::kPrimInt:
3715 case Primitive::kPrimNot: {
Roland Levillain4d027112015-07-01 15:41:14 +01003716 if (kPoisonHeapReferences && needs_write_barrier) {
3717 // Note that in the case where `value` is a null reference,
3718 // we do not enter this block, as the reference does not
3719 // need poisoning.
3720 DCHECK_EQ(field_type, Primitive::kPrimNot);
3721 Register temp = locations->GetTemp(0).AsRegister<Register>();
3722 __ movl(temp, value.AsRegister<Register>());
3723 __ PoisonHeapReference(temp);
3724 __ movl(Address(base, offset), temp);
3725 } else {
3726 __ movl(Address(base, offset), value.AsRegister<Register>());
3727 }
Calin Juravle52c48962014-12-16 17:02:57 +00003728 break;
3729 }
3730
3731 case Primitive::kPrimLong: {
3732 if (is_volatile) {
3733 XmmRegister temp1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
3734 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
3735 __ movd(temp1, value.AsRegisterPairLow<Register>());
3736 __ movd(temp2, value.AsRegisterPairHigh<Register>());
3737 __ punpckldq(temp1, temp2);
3738 __ movsd(Address(base, offset), temp1);
Calin Juravle77520bc2015-01-12 18:45:46 +00003739 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003740 } else {
3741 __ movl(Address(base, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00003742 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003743 __ movl(Address(base, kX86WordSize + offset), value.AsRegisterPairHigh<Register>());
3744 }
3745 break;
3746 }
3747
3748 case Primitive::kPrimFloat: {
3749 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
3750 break;
3751 }
3752
3753 case Primitive::kPrimDouble: {
3754 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
3755 break;
3756 }
3757
3758 case Primitive::kPrimVoid:
3759 LOG(FATAL) << "Unreachable type " << field_type;
3760 UNREACHABLE();
3761 }
3762
Calin Juravle77520bc2015-01-12 18:45:46 +00003763 // Longs are handled in the switch.
3764 if (field_type != Primitive::kPrimLong) {
3765 codegen_->MaybeRecordImplicitNullCheck(instruction);
3766 }
3767
Roland Levillain4d027112015-07-01 15:41:14 +01003768 if (needs_write_barrier) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003769 Register temp = locations->GetTemp(0).AsRegister<Register>();
3770 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003771 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00003772 }
3773
Calin Juravle52c48962014-12-16 17:02:57 +00003774 if (is_volatile) {
3775 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
3776 }
3777}
3778
3779void LocationsBuilderX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3780 HandleFieldGet(instruction, instruction->GetFieldInfo());
3781}
3782
3783void InstructionCodeGeneratorX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3784 HandleFieldGet(instruction, instruction->GetFieldInfo());
3785}
3786
3787void LocationsBuilderX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3788 HandleFieldSet(instruction, instruction->GetFieldInfo());
3789}
3790
3791void InstructionCodeGeneratorX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003792 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00003793}
3794
3795void LocationsBuilderX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3796 HandleFieldSet(instruction, instruction->GetFieldInfo());
3797}
3798
3799void InstructionCodeGeneratorX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003800 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00003801}
3802
3803void LocationsBuilderX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3804 HandleFieldGet(instruction, instruction->GetFieldInfo());
3805}
3806
3807void InstructionCodeGeneratorX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3808 HandleFieldGet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003809}
3810
3811void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003812 LocationSummary* locations =
3813 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003814 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks()
3815 ? Location::RequiresRegister()
3816 : Location::Any();
3817 locations->SetInAt(0, loc);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003818 if (instruction->HasUses()) {
3819 locations->SetOut(Location::SameAsFirstInput());
3820 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003821}
3822
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003823void InstructionCodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003824 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3825 return;
3826 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003827 LocationSummary* locations = instruction->GetLocations();
3828 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003829
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003830 __ testl(EAX, Address(obj.AsRegister<Register>(), 0));
3831 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3832}
3833
3834void InstructionCodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003835 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003836 codegen_->AddSlowPath(slow_path);
3837
3838 LocationSummary* locations = instruction->GetLocations();
3839 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003840
3841 if (obj.IsRegister()) {
Mark Mendell42514f62015-03-31 11:34:22 -04003842 __ testl(obj.AsRegister<Register>(), obj.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003843 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003844 __ cmpl(Address(ESP, obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003845 } else {
3846 DCHECK(obj.IsConstant()) << obj;
3847 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
3848 __ jmp(slow_path->GetEntryLabel());
3849 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003850 }
3851 __ j(kEqual, slow_path->GetEntryLabel());
3852}
3853
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003854void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) {
3855 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3856 GenerateImplicitNullCheck(instruction);
3857 } else {
3858 GenerateExplicitNullCheck(instruction);
3859 }
3860}
3861
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003862void LocationsBuilderX86::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003863 LocationSummary* locations =
3864 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003865 locations->SetInAt(0, Location::RequiresRegister());
3866 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003867 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3868 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3869 } else {
3870 // The output overlaps in case of long: we don't want the low move to overwrite
3871 // the array's location.
3872 locations->SetOut(Location::RequiresRegister(),
3873 (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap
3874 : Location::kNoOutputOverlap);
3875 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003876}
3877
3878void InstructionCodeGeneratorX86::VisitArrayGet(HArrayGet* instruction) {
3879 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003880 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003881 Location index = locations->InAt(1);
3882
Calin Juravle77520bc2015-01-12 18:45:46 +00003883 Primitive::Type type = instruction->GetType();
3884 switch (type) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003885 case Primitive::kPrimBoolean: {
3886 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003887 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003888 if (index.IsConstant()) {
3889 __ movzxb(out, Address(obj,
3890 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3891 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003892 __ movzxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003893 }
3894 break;
3895 }
3896
3897 case Primitive::kPrimByte: {
3898 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003899 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003900 if (index.IsConstant()) {
3901 __ movsxb(out, Address(obj,
3902 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3903 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003904 __ movsxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003905 }
3906 break;
3907 }
3908
3909 case Primitive::kPrimShort: {
3910 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003911 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003912 if (index.IsConstant()) {
3913 __ movsxw(out, Address(obj,
3914 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3915 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003916 __ movsxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003917 }
3918 break;
3919 }
3920
3921 case Primitive::kPrimChar: {
3922 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003923 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003924 if (index.IsConstant()) {
3925 __ movzxw(out, Address(obj,
3926 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3927 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003928 __ movzxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003929 }
3930 break;
3931 }
3932
3933 case Primitive::kPrimInt:
3934 case Primitive::kPrimNot: {
3935 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003936 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003937 if (index.IsConstant()) {
3938 __ movl(out, Address(obj,
3939 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3940 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003941 __ movl(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003942 }
3943 break;
3944 }
3945
3946 case Primitive::kPrimLong: {
3947 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003948 Location out = locations->Out();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003949 DCHECK_NE(obj, out.AsRegisterPairLow<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003950 if (index.IsConstant()) {
3951 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003952 __ movl(out.AsRegisterPairLow<Register>(), Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003953 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003954 __ movl(out.AsRegisterPairHigh<Register>(), Address(obj, offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003955 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003956 __ movl(out.AsRegisterPairLow<Register>(),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003957 Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003958 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003959 __ movl(out.AsRegisterPairHigh<Register>(),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003960 Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003961 }
3962 break;
3963 }
3964
Mark Mendell7c8d0092015-01-26 11:21:33 -05003965 case Primitive::kPrimFloat: {
3966 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3967 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
3968 if (index.IsConstant()) {
3969 __ movss(out, Address(obj,
3970 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3971 } else {
3972 __ movss(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset));
3973 }
3974 break;
3975 }
3976
3977 case Primitive::kPrimDouble: {
3978 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3979 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
3980 if (index.IsConstant()) {
3981 __ movsd(out, Address(obj,
3982 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
3983 } else {
3984 __ movsd(out, Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset));
3985 }
3986 break;
3987 }
3988
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003989 case Primitive::kPrimVoid:
Calin Juravle77520bc2015-01-12 18:45:46 +00003990 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003991 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003992 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003993
3994 if (type != Primitive::kPrimLong) {
3995 codegen_->MaybeRecordImplicitNullCheck(instruction);
3996 }
Roland Levillain4d027112015-07-01 15:41:14 +01003997
3998 if (type == Primitive::kPrimNot) {
3999 Register out = locations->Out().AsRegister<Register>();
4000 __ MaybeUnpoisonHeapReference(out);
4001 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004002}
4003
4004void LocationsBuilderX86::VisitArraySet(HArraySet* instruction) {
Mark Mendell5f874182015-03-04 15:42:45 -05004005 // This location builder might end up asking to up to four registers, which is
4006 // not currently possible for baseline. The situation in which we need four
4007 // registers cannot be met by baseline though, because it has not run any
4008 // optimization.
4009
Nicolas Geoffray39468442014-09-02 15:17:15 +01004010 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004011 bool needs_write_barrier =
4012 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
4013
Mark Mendell5f874182015-03-04 15:42:45 -05004014 bool needs_runtime_call = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004015
Nicolas Geoffray39468442014-09-02 15:17:15 +01004016 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
4017 instruction,
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004018 needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004019
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004020 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004021 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004022 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4023 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
4024 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004025 } else {
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01004026 bool is_byte_type = (value_type == Primitive::kPrimBoolean)
4027 || (value_type == Primitive::kPrimByte);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01004028 // We need the inputs to be different than the output in case of long operation.
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01004029 // In case of a byte operation, the register allocator does not support multiple
4030 // inputs that die at entry with one in a specific register.
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004031 locations->SetInAt(0, Location::RequiresRegister());
4032 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01004033 if (is_byte_type) {
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004034 // Ensure the value is in a byte register.
4035 locations->SetInAt(2, Location::ByteRegisterOrConstant(EAX, instruction->InputAt(2)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004036 } else if (Primitive::IsFloatingPointType(value_type)) {
4037 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004038 } else {
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004039 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004040 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004041 if (needs_write_barrier) {
Roland Levillain4d027112015-07-01 15:41:14 +01004042 // Temporary registers for the write barrier.
4043 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004044 // Ensure the card is in a byte register.
4045 locations->AddTemp(Location::RegisterLocation(ECX));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004046 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004047 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004048}
4049
4050void InstructionCodeGeneratorX86::VisitArraySet(HArraySet* instruction) {
4051 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004052 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004053 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004054 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004055 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004056 bool needs_runtime_call = locations->WillCall();
4057 bool needs_write_barrier =
4058 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004059
4060 switch (value_type) {
4061 case Primitive::kPrimBoolean:
4062 case Primitive::kPrimByte: {
4063 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004064 if (index.IsConstant()) {
4065 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004066 if (value.IsRegister()) {
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004067 __ movb(Address(obj, offset), value.AsRegister<ByteRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004068 } else {
4069 __ movb(Address(obj, offset),
4070 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
4071 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004072 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004073 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004074 __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset),
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00004075 value.AsRegister<ByteRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004076 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004077 __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004078 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
4079 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004080 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004081 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004082 break;
4083 }
4084
4085 case Primitive::kPrimShort:
4086 case Primitive::kPrimChar: {
4087 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004088 if (index.IsConstant()) {
4089 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004090 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004091 __ movw(Address(obj, offset), value.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004092 } else {
4093 __ movw(Address(obj, offset),
4094 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
4095 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004096 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004097 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004098 __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset),
4099 value.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004100 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004101 __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004102 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
4103 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004104 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004105 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004106 break;
4107 }
4108
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004109 case Primitive::kPrimInt:
4110 case Primitive::kPrimNot: {
4111 if (!needs_runtime_call) {
4112 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4113 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004114 size_t offset =
4115 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004116 if (value.IsRegister()) {
Roland Levillain4d027112015-07-01 15:41:14 +01004117 if (kPoisonHeapReferences && value_type == Primitive::kPrimNot) {
4118 Register temp = locations->GetTemp(0).AsRegister<Register>();
4119 __ movl(temp, value.AsRegister<Register>());
4120 __ PoisonHeapReference(temp);
4121 __ movl(Address(obj, offset), temp);
4122 } else {
4123 __ movl(Address(obj, offset), value.AsRegister<Register>());
4124 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004125 } else {
4126 DCHECK(value.IsConstant()) << value;
Roland Levillain4d027112015-07-01 15:41:14 +01004127 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4128 // `value_type == Primitive::kPrimNot` implies `v == 0`.
4129 DCHECK((value_type != Primitive::kPrimNot) || (v == 0));
4130 // Note: if heap poisoning is enabled, no need to poison
4131 // (negate) `v` if it is a reference, as it would be null.
4132 __ movl(Address(obj, offset), Immediate(v));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004133 }
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004134 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004135 DCHECK(index.IsRegister()) << index;
4136 if (value.IsRegister()) {
Roland Levillain4d027112015-07-01 15:41:14 +01004137 if (kPoisonHeapReferences && value_type == Primitive::kPrimNot) {
4138 Register temp = locations->GetTemp(0).AsRegister<Register>();
4139 __ movl(temp, value.AsRegister<Register>());
4140 __ PoisonHeapReference(temp);
4141 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset), temp);
4142 } else {
4143 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset),
4144 value.AsRegister<Register>());
4145 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004146 } else {
4147 DCHECK(value.IsConstant()) << value;
Roland Levillain4d027112015-07-01 15:41:14 +01004148 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant());
4149 // `value_type == Primitive::kPrimNot` implies `v == 0`.
4150 DCHECK((value_type != Primitive::kPrimNot) || (v == 0));
4151 // Note: if heap poisoning is enabled, no need to poison
4152 // (negate) `v` if it is a reference, as it would be null.
4153 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset), Immediate(v));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004154 }
4155 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004156 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004157
4158 if (needs_write_barrier) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004159 Register temp = locations->GetTemp(0).AsRegister<Register>();
4160 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004161 codegen_->MarkGCCard(
4162 temp, card, obj, value.AsRegister<Register>(), instruction->GetValueCanBeNull());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004163 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004164 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004165 DCHECK_EQ(value_type, Primitive::kPrimNot);
4166 DCHECK(!codegen_->IsLeafMethod());
Roland Levillain4d027112015-07-01 15:41:14 +01004167 // Note: if heap poisoning is enabled, pAputObject takes cares
4168 // of poisoning the reference.
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004169 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pAputObject)));
4170 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004171 }
4172 break;
4173 }
4174
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004175 case Primitive::kPrimLong: {
4176 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004177 if (index.IsConstant()) {
4178 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004179 if (value.IsRegisterPair()) {
4180 __ movl(Address(obj, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00004181 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004182 __ movl(Address(obj, offset + kX86WordSize), value.AsRegisterPairHigh<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004183 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004184 DCHECK(value.IsConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004185 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
4186 __ movl(Address(obj, offset), Immediate(Low32Bits(val)));
Calin Juravle77520bc2015-01-12 18:45:46 +00004187 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004188 __ movl(Address(obj, offset + kX86WordSize), Immediate(High32Bits(val)));
4189 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004190 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004191 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004192 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004193 value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00004194 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004195 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004196 value.AsRegisterPairHigh<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004197 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004198 DCHECK(value.IsConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004199 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004200 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004201 Immediate(Low32Bits(val)));
Calin Juravle77520bc2015-01-12 18:45:46 +00004202 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004203 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004204 Immediate(High32Bits(val)));
4205 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004206 }
4207 break;
4208 }
4209
Mark Mendell7c8d0092015-01-26 11:21:33 -05004210 case Primitive::kPrimFloat: {
4211 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
4212 DCHECK(value.IsFpuRegister());
4213 if (index.IsConstant()) {
4214 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4215 __ movss(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
4216 } else {
4217 __ movss(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset),
4218 value.AsFpuRegister<XmmRegister>());
4219 }
4220 break;
4221 }
4222
4223 case Primitive::kPrimDouble: {
4224 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
4225 DCHECK(value.IsFpuRegister());
4226 if (index.IsConstant()) {
4227 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
4228 __ movsd(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
4229 } else {
4230 __ movsd(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
4231 value.AsFpuRegister<XmmRegister>());
4232 }
4233 break;
4234 }
4235
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004236 case Primitive::kPrimVoid:
4237 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07004238 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004239 }
4240}
4241
4242void LocationsBuilderX86::VisitArrayLength(HArrayLength* instruction) {
4243 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004244 locations->SetInAt(0, Location::RequiresRegister());
4245 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004246}
4247
4248void InstructionCodeGeneratorX86::VisitArrayLength(HArrayLength* instruction) {
4249 LocationSummary* locations = instruction->GetLocations();
4250 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004251 Register obj = locations->InAt(0).AsRegister<Register>();
4252 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004253 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00004254 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004255}
4256
4257void LocationsBuilderX86::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004258 LocationSummary* locations =
4259 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Mark Mendellf60c90b2015-03-04 15:12:59 -05004260 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Mark Mendell99dbd682015-04-22 16:18:52 -04004261 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004262 if (instruction->HasUses()) {
4263 locations->SetOut(Location::SameAsFirstInput());
4264 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004265}
4266
4267void InstructionCodeGeneratorX86::VisitBoundsCheck(HBoundsCheck* instruction) {
4268 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05004269 Location index_loc = locations->InAt(0);
4270 Location length_loc = locations->InAt(1);
4271 SlowPathCodeX86* slow_path =
4272 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86(instruction, index_loc, length_loc);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004273
Mark Mendell99dbd682015-04-22 16:18:52 -04004274 if (length_loc.IsConstant()) {
4275 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant());
4276 if (index_loc.IsConstant()) {
4277 // BCE will remove the bounds check if we are guarenteed to pass.
4278 int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
4279 if (index < 0 || index >= length) {
4280 codegen_->AddSlowPath(slow_path);
4281 __ jmp(slow_path->GetEntryLabel());
4282 } else {
4283 // Some optimization after BCE may have generated this, and we should not
4284 // generate a bounds check if it is a valid range.
4285 }
4286 return;
4287 }
4288
4289 // We have to reverse the jump condition because the length is the constant.
4290 Register index_reg = index_loc.AsRegister<Register>();
4291 __ cmpl(index_reg, Immediate(length));
4292 codegen_->AddSlowPath(slow_path);
4293 __ j(kAboveEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05004294 } else {
Mark Mendell99dbd682015-04-22 16:18:52 -04004295 Register length = length_loc.AsRegister<Register>();
4296 if (index_loc.IsConstant()) {
4297 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
4298 __ cmpl(length, Immediate(value));
4299 } else {
4300 __ cmpl(length, index_loc.AsRegister<Register>());
4301 }
4302 codegen_->AddSlowPath(slow_path);
4303 __ j(kBelowEqual, slow_path->GetEntryLabel());
Mark Mendellf60c90b2015-03-04 15:12:59 -05004304 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004305}
4306
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004307void LocationsBuilderX86::VisitTemporary(HTemporary* temp) {
4308 temp->SetLocations(nullptr);
4309}
4310
4311void InstructionCodeGeneratorX86::VisitTemporary(HTemporary* temp) {
4312 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07004313 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004314}
4315
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004316void LocationsBuilderX86::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07004317 UNUSED(instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004318 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004319}
4320
4321void InstructionCodeGeneratorX86::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004322 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
4323}
4324
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004325void LocationsBuilderX86::VisitSuspendCheck(HSuspendCheck* instruction) {
4326 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
4327}
4328
4329void InstructionCodeGeneratorX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004330 HBasicBlock* block = instruction->GetBlock();
4331 if (block->GetLoopInformation() != nullptr) {
4332 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
4333 // The back edge will generate the suspend check.
4334 return;
4335 }
4336 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
4337 // The goto will generate the suspend check.
4338 return;
4339 }
4340 GenerateSuspendCheck(instruction, nullptr);
4341}
4342
4343void InstructionCodeGeneratorX86::GenerateSuspendCheck(HSuspendCheck* instruction,
4344 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004345 SuspendCheckSlowPathX86* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01004346 down_cast<SuspendCheckSlowPathX86*>(instruction->GetSlowPath());
4347 if (slow_path == nullptr) {
4348 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathX86(instruction, successor);
4349 instruction->SetSlowPath(slow_path);
4350 codegen_->AddSlowPath(slow_path);
4351 if (successor != nullptr) {
4352 DCHECK(successor->IsLoopHeader());
4353 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
4354 }
4355 } else {
4356 DCHECK_EQ(slow_path->GetSuccessor(), successor);
4357 }
4358
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004359 __ fs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004360 Thread::ThreadFlagsOffset<kX86WordSize>().Int32Value()), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004361 if (successor == nullptr) {
4362 __ j(kNotEqual, slow_path->GetEntryLabel());
4363 __ Bind(slow_path->GetReturnLabel());
4364 } else {
4365 __ j(kEqual, codegen_->GetLabelOf(successor));
4366 __ jmp(slow_path->GetEntryLabel());
4367 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004368}
4369
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004370X86Assembler* ParallelMoveResolverX86::GetAssembler() const {
4371 return codegen_->GetAssembler();
4372}
4373
Mark Mendell7c8d0092015-01-26 11:21:33 -05004374void ParallelMoveResolverX86::MoveMemoryToMemory32(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004375 ScratchRegisterScope ensure_scratch(
4376 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
4377 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
4378 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4379 __ movl(temp_reg, Address(ESP, src + stack_offset));
4380 __ movl(Address(ESP, dst + stack_offset), temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05004381}
4382
4383void ParallelMoveResolverX86::MoveMemoryToMemory64(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004384 ScratchRegisterScope ensure_scratch(
4385 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
4386 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
4387 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4388 __ movl(temp_reg, Address(ESP, src + stack_offset));
4389 __ movl(Address(ESP, dst + stack_offset), temp_reg);
4390 __ movl(temp_reg, Address(ESP, src + stack_offset + kX86WordSize));
4391 __ movl(Address(ESP, dst + stack_offset + kX86WordSize), temp_reg);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004392}
4393
4394void ParallelMoveResolverX86::EmitMove(size_t index) {
4395 MoveOperands* move = moves_.Get(index);
4396 Location source = move->GetSource();
4397 Location destination = move->GetDestination();
4398
4399 if (source.IsRegister()) {
4400 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004401 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004402 } else {
4403 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004404 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004405 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05004406 } else if (source.IsFpuRegister()) {
4407 if (destination.IsFpuRegister()) {
4408 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
4409 } else if (destination.IsStackSlot()) {
4410 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
4411 } else {
4412 DCHECK(destination.IsDoubleStackSlot());
4413 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
4414 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004415 } else if (source.IsStackSlot()) {
4416 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004417 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Mark Mendell7c8d0092015-01-26 11:21:33 -05004418 } else if (destination.IsFpuRegister()) {
4419 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004420 } else {
4421 DCHECK(destination.IsStackSlot());
Mark Mendell7c8d0092015-01-26 11:21:33 -05004422 MoveMemoryToMemory32(destination.GetStackIndex(), source.GetStackIndex());
4423 }
4424 } else if (source.IsDoubleStackSlot()) {
4425 if (destination.IsFpuRegister()) {
4426 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
4427 } else {
4428 DCHECK(destination.IsDoubleStackSlot()) << destination;
4429 MoveMemoryToMemory64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004430 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01004431 } else if (source.IsConstant()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05004432 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00004433 if (constant->IsIntConstant() || constant->IsNullConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05004434 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05004435 if (destination.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05004436 if (value == 0) {
4437 __ xorl(destination.AsRegister<Register>(), destination.AsRegister<Register>());
4438 } else {
4439 __ movl(destination.AsRegister<Register>(), Immediate(value));
4440 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05004441 } else {
4442 DCHECK(destination.IsStackSlot()) << destination;
Mark Mendell09b84632015-02-13 17:48:38 -05004443 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Mark Mendell7c8d0092015-01-26 11:21:33 -05004444 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004445 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004446 float fp_value = constant->AsFloatConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00004447 int32_t value = bit_cast<int32_t, float>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004448 Immediate imm(value);
Mark Mendell7c8d0092015-01-26 11:21:33 -05004449 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004450 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
4451 if (value == 0) {
4452 // Easy handling of 0.0.
4453 __ xorps(dest, dest);
4454 } else {
4455 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004456 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
4457 Register temp = static_cast<Register>(ensure_scratch.GetRegister());
4458 __ movl(temp, Immediate(value));
4459 __ movd(dest, temp);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004460 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05004461 } else {
4462 DCHECK(destination.IsStackSlot()) << destination;
4463 __ movl(Address(ESP, destination.GetStackIndex()), imm);
4464 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004465 } else if (constant->IsLongConstant()) {
4466 int64_t value = constant->AsLongConstant()->GetValue();
4467 int32_t low_value = Low32Bits(value);
4468 int32_t high_value = High32Bits(value);
4469 Immediate low(low_value);
4470 Immediate high(high_value);
4471 if (destination.IsDoubleStackSlot()) {
4472 __ movl(Address(ESP, destination.GetStackIndex()), low);
4473 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
4474 } else {
4475 __ movl(destination.AsRegisterPairLow<Register>(), low);
4476 __ movl(destination.AsRegisterPairHigh<Register>(), high);
4477 }
4478 } else {
4479 DCHECK(constant->IsDoubleConstant());
4480 double dbl_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00004481 int64_t value = bit_cast<int64_t, double>(dbl_value);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004482 int32_t low_value = Low32Bits(value);
4483 int32_t high_value = High32Bits(value);
4484 Immediate low(low_value);
4485 Immediate high(high_value);
4486 if (destination.IsFpuRegister()) {
4487 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
4488 if (value == 0) {
4489 // Easy handling of 0.0.
4490 __ xorpd(dest, dest);
4491 } else {
4492 __ pushl(high);
4493 __ pushl(low);
4494 __ movsd(dest, Address(ESP, 0));
4495 __ addl(ESP, Immediate(8));
4496 }
4497 } else {
4498 DCHECK(destination.IsDoubleStackSlot()) << destination;
4499 __ movl(Address(ESP, destination.GetStackIndex()), low);
4500 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
4501 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01004502 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004503 } else {
Nicolas Geoffray42d1f5f2015-01-16 09:14:18 +00004504 LOG(FATAL) << "Unimplemented move: " << destination << " <- " << source;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004505 }
4506}
4507
Mark Mendella5c19ce2015-04-01 12:51:05 -04004508void ParallelMoveResolverX86::Exchange(Register reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004509 Register suggested_scratch = reg == EAX ? EBX : EAX;
4510 ScratchRegisterScope ensure_scratch(
4511 this, reg, suggested_scratch, codegen_->GetNumberOfCoreRegisters());
4512
4513 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4514 __ movl(static_cast<Register>(ensure_scratch.GetRegister()), Address(ESP, mem + stack_offset));
4515 __ movl(Address(ESP, mem + stack_offset), reg);
4516 __ movl(reg, static_cast<Register>(ensure_scratch.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004517}
4518
Mark Mendell7c8d0092015-01-26 11:21:33 -05004519void ParallelMoveResolverX86::Exchange32(XmmRegister reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004520 ScratchRegisterScope ensure_scratch(
4521 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
4522
4523 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
4524 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4525 __ movl(temp_reg, Address(ESP, mem + stack_offset));
4526 __ movss(Address(ESP, mem + stack_offset), reg);
4527 __ movd(reg, temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05004528}
4529
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004530void ParallelMoveResolverX86::Exchange(int mem1, int mem2) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004531 ScratchRegisterScope ensure_scratch1(
4532 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004533
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004534 Register suggested_scratch = ensure_scratch1.GetRegister() == EAX ? EBX : EAX;
4535 ScratchRegisterScope ensure_scratch2(
4536 this, ensure_scratch1.GetRegister(), suggested_scratch, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004537
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004538 int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0;
4539 stack_offset += ensure_scratch2.IsSpilled() ? kX86WordSize : 0;
4540 __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset));
4541 __ movl(static_cast<Register>(ensure_scratch2.GetRegister()), Address(ESP, mem2 + stack_offset));
4542 __ movl(Address(ESP, mem2 + stack_offset), static_cast<Register>(ensure_scratch1.GetRegister()));
4543 __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004544}
4545
4546void ParallelMoveResolverX86::EmitSwap(size_t index) {
4547 MoveOperands* move = moves_.Get(index);
4548 Location source = move->GetSource();
4549 Location destination = move->GetDestination();
4550
4551 if (source.IsRegister() && destination.IsRegister()) {
Mark Mendell90979812015-07-28 16:41:21 -04004552 // Use XOR swap algorithm to avoid serializing XCHG instruction or using a temporary.
4553 DCHECK_NE(destination.AsRegister<Register>(), source.AsRegister<Register>());
4554 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
4555 __ xorl(source.AsRegister<Register>(), destination.AsRegister<Register>());
4556 __ xorl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004557 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004558 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004559 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004560 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004561 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
4562 Exchange(destination.GetStackIndex(), source.GetStackIndex());
Mark Mendell7c8d0092015-01-26 11:21:33 -05004563 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
4564 // Use XOR Swap algorithm to avoid a temporary.
4565 DCHECK_NE(source.reg(), destination.reg());
4566 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
4567 __ xorpd(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
4568 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
4569 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
4570 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
4571 } else if (destination.IsFpuRegister() && source.IsStackSlot()) {
4572 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004573 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
4574 // Take advantage of the 16 bytes in the XMM register.
4575 XmmRegister reg = source.AsFpuRegister<XmmRegister>();
4576 Address stack(ESP, destination.GetStackIndex());
4577 // Load the double into the high doubleword.
4578 __ movhpd(reg, stack);
4579
4580 // Store the low double into the destination.
4581 __ movsd(stack, reg);
4582
4583 // Move the high double to the low double.
4584 __ psrldq(reg, Immediate(8));
4585 } else if (destination.IsFpuRegister() && source.IsDoubleStackSlot()) {
4586 // Take advantage of the 16 bytes in the XMM register.
4587 XmmRegister reg = destination.AsFpuRegister<XmmRegister>();
4588 Address stack(ESP, source.GetStackIndex());
4589 // Load the double into the high doubleword.
4590 __ movhpd(reg, stack);
4591
4592 // Store the low double into the destination.
4593 __ movsd(stack, reg);
4594
4595 // Move the high double to the low double.
4596 __ psrldq(reg, Immediate(8));
4597 } else if (destination.IsDoubleStackSlot() && source.IsDoubleStackSlot()) {
4598 Exchange(destination.GetStackIndex(), source.GetStackIndex());
4599 Exchange(destination.GetHighStackIndex(kX86WordSize), source.GetHighStackIndex(kX86WordSize));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004600 } else {
Mark Mendell7c8d0092015-01-26 11:21:33 -05004601 LOG(FATAL) << "Unimplemented: source: " << source << ", destination: " << destination;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004602 }
4603}
4604
4605void ParallelMoveResolverX86::SpillScratch(int reg) {
4606 __ pushl(static_cast<Register>(reg));
4607}
4608
4609void ParallelMoveResolverX86::RestoreScratch(int reg) {
4610 __ popl(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004611}
4612
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004613void LocationsBuilderX86::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004614 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
4615 ? LocationSummary::kCallOnSlowPath
4616 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004617 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004618 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004619 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004620 locations->SetOut(Location::RequiresRegister());
4621}
4622
4623void InstructionCodeGeneratorX86::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004624 LocationSummary* locations = cls->GetLocations();
4625 Register out = locations->Out().AsRegister<Register>();
4626 Register current_method = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004627 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004628 DCHECK(!cls->CanCallRuntime());
4629 DCHECK(!cls->MustGenerateClinitCheck());
Mathieu Chartiere401d142015-04-22 13:56:20 -07004630 __ movl(out, Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004631 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004632 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004633 __ movl(out, Address(
Mathieu Chartiere401d142015-04-22 13:56:20 -07004634 current_method, ArtMethod::DexCacheResolvedTypesOffset().Int32Value()));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004635 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Roland Levillain4d027112015-07-01 15:41:14 +01004636 __ MaybeUnpoisonHeapReference(out);
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004637
4638 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
4639 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
4640 codegen_->AddSlowPath(slow_path);
4641 __ testl(out, out);
4642 __ j(kEqual, slow_path->GetEntryLabel());
4643 if (cls->MustGenerateClinitCheck()) {
4644 GenerateClassInitializationCheck(slow_path, out);
4645 } else {
4646 __ Bind(slow_path->GetExitLabel());
4647 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004648 }
4649}
4650
4651void LocationsBuilderX86::VisitClinitCheck(HClinitCheck* check) {
4652 LocationSummary* locations =
4653 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
4654 locations->SetInAt(0, Location::RequiresRegister());
4655 if (check->HasUses()) {
4656 locations->SetOut(Location::SameAsFirstInput());
4657 }
4658}
4659
4660void InstructionCodeGeneratorX86::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004661 // We assume the class to not be null.
4662 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
4663 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004664 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00004665 GenerateClassInitializationCheck(slow_path,
4666 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004667}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004668
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004669void InstructionCodeGeneratorX86::GenerateClassInitializationCheck(
4670 SlowPathCodeX86* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004671 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
4672 Immediate(mirror::Class::kStatusInitialized));
4673 __ j(kLess, slow_path->GetEntryLabel());
4674 __ Bind(slow_path->GetExitLabel());
4675 // No need for memory fence, thanks to the X86 memory model.
4676}
4677
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004678void LocationsBuilderX86::VisitLoadString(HLoadString* load) {
4679 LocationSummary* locations =
4680 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01004681 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004682 locations->SetOut(Location::RequiresRegister());
4683}
4684
4685void InstructionCodeGeneratorX86::VisitLoadString(HLoadString* load) {
4686 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86(load);
4687 codegen_->AddSlowPath(slow_path);
4688
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01004689 LocationSummary* locations = load->GetLocations();
4690 Register out = locations->Out().AsRegister<Register>();
4691 Register current_method = locations->InAt(0).AsRegister<Register>();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004692 __ movl(out, Address(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Mathieu Chartiereace4582014-11-24 18:29:54 -08004693 __ movl(out, Address(out, mirror::Class::DexCacheStringsOffset().Int32Value()));
Roland Levillain4d027112015-07-01 15:41:14 +01004694 __ MaybeUnpoisonHeapReference(out);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004695 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
Roland Levillain4d027112015-07-01 15:41:14 +01004696 __ MaybeUnpoisonHeapReference(out);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004697 __ testl(out, out);
4698 __ j(kEqual, slow_path->GetEntryLabel());
4699 __ Bind(slow_path->GetExitLabel());
4700}
4701
David Brazdilcb1c0552015-08-04 16:22:25 +01004702static Address GetExceptionTlsAddress() {
4703 return Address::Absolute(Thread::ExceptionOffset<kX86WordSize>().Int32Value());
4704}
4705
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004706void LocationsBuilderX86::VisitLoadException(HLoadException* load) {
4707 LocationSummary* locations =
4708 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
4709 locations->SetOut(Location::RequiresRegister());
4710}
4711
4712void InstructionCodeGeneratorX86::VisitLoadException(HLoadException* load) {
David Brazdilcb1c0552015-08-04 16:22:25 +01004713 __ fs()->movl(load->GetLocations()->Out().AsRegister<Register>(), GetExceptionTlsAddress());
4714}
4715
4716void LocationsBuilderX86::VisitClearException(HClearException* clear) {
4717 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
4718}
4719
4720void InstructionCodeGeneratorX86::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
4721 __ fs()->movl(GetExceptionTlsAddress(), Immediate(0));
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004722}
4723
4724void LocationsBuilderX86::VisitThrow(HThrow* instruction) {
4725 LocationSummary* locations =
4726 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4727 InvokeRuntimeCallingConvention calling_convention;
4728 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4729}
4730
4731void InstructionCodeGeneratorX86::VisitThrow(HThrow* instruction) {
4732 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeliverException)));
4733 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4734}
4735
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004736void LocationsBuilderX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004737 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
4738 ? LocationSummary::kNoCall
4739 : LocationSummary::kCallOnSlowPath;
4740 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
4741 locations->SetInAt(0, Location::RequiresRegister());
4742 locations->SetInAt(1, Location::Any());
4743 locations->SetOut(Location::RequiresRegister());
4744}
4745
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004746void InstructionCodeGeneratorX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004747 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004748 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004749 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004750 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004751 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4752 Label done, zero;
4753 SlowPathCodeX86* slow_path = nullptr;
4754
4755 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004756 // Avoid null check if we know obj is not null.
4757 if (instruction->MustDoNullCheck()) {
4758 __ testl(obj, obj);
4759 __ j(kEqual, &zero);
4760 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004761 // Compare the class of `obj` with `cls`.
Roland Levillain4d027112015-07-01 15:41:14 +01004762 __ movl(out, Address(obj, class_offset));
4763 __ MaybeUnpoisonHeapReference(out);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004764 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004765 __ cmpl(out, cls.AsRegister<Register>());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004766 } else {
4767 DCHECK(cls.IsStackSlot()) << cls;
4768 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
4769 }
4770
4771 if (instruction->IsClassFinal()) {
4772 // Classes must be equal for the instanceof to succeed.
4773 __ j(kNotEqual, &zero);
4774 __ movl(out, Immediate(1));
4775 __ jmp(&done);
4776 } else {
4777 // If the classes are not equal, we go into a slow path.
4778 DCHECK(locations->OnlyCallsOnSlowPath());
4779 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004780 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004781 codegen_->AddSlowPath(slow_path);
4782 __ j(kNotEqual, slow_path->GetEntryLabel());
4783 __ movl(out, Immediate(1));
4784 __ jmp(&done);
4785 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004786
4787 if (instruction->MustDoNullCheck() || instruction->IsClassFinal()) {
4788 __ Bind(&zero);
4789 __ movl(out, Immediate(0));
4790 }
4791
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004792 if (slow_path != nullptr) {
4793 __ Bind(slow_path->GetExitLabel());
4794 }
4795 __ Bind(&done);
4796}
4797
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004798void LocationsBuilderX86::VisitCheckCast(HCheckCast* instruction) {
4799 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
4800 instruction, LocationSummary::kCallOnSlowPath);
4801 locations->SetInAt(0, Location::RequiresRegister());
4802 locations->SetInAt(1, Location::Any());
4803 locations->AddTemp(Location::RequiresRegister());
4804}
4805
4806void InstructionCodeGeneratorX86::VisitCheckCast(HCheckCast* instruction) {
4807 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004808 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004809 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004810 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004811 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4812 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(
4813 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
4814 codegen_->AddSlowPath(slow_path);
4815
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004816 // Avoid null check if we know obj is not null.
4817 if (instruction->MustDoNullCheck()) {
4818 __ testl(obj, obj);
4819 __ j(kEqual, slow_path->GetExitLabel());
4820 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004821 // Compare the class of `obj` with `cls`.
Roland Levillain4d027112015-07-01 15:41:14 +01004822 __ movl(temp, Address(obj, class_offset));
4823 __ MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004824 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004825 __ cmpl(temp, cls.AsRegister<Register>());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004826 } else {
4827 DCHECK(cls.IsStackSlot()) << cls;
4828 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
4829 }
Roland Levillain4d027112015-07-01 15:41:14 +01004830 // The checkcast succeeds if the classes are equal (fast path).
4831 // Otherwise, we need to go into the slow path to check the types.
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004832 __ j(kNotEqual, slow_path->GetEntryLabel());
4833 __ Bind(slow_path->GetExitLabel());
4834}
4835
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00004836void LocationsBuilderX86::VisitMonitorOperation(HMonitorOperation* instruction) {
4837 LocationSummary* locations =
4838 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4839 InvokeRuntimeCallingConvention calling_convention;
4840 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4841}
4842
4843void InstructionCodeGeneratorX86::VisitMonitorOperation(HMonitorOperation* instruction) {
4844 __ fs()->call(Address::Absolute(instruction->IsEnter()
4845 ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLockObject)
4846 : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pUnlockObject)));
4847 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4848}
4849
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004850void LocationsBuilderX86::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
4851void LocationsBuilderX86::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
4852void LocationsBuilderX86::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
4853
4854void LocationsBuilderX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
4855 LocationSummary* locations =
4856 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4857 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
4858 || instruction->GetResultType() == Primitive::kPrimLong);
4859 locations->SetInAt(0, Location::RequiresRegister());
4860 locations->SetInAt(1, Location::Any());
4861 locations->SetOut(Location::SameAsFirstInput());
4862}
4863
4864void InstructionCodeGeneratorX86::VisitAnd(HAnd* instruction) {
4865 HandleBitwiseOperation(instruction);
4866}
4867
4868void InstructionCodeGeneratorX86::VisitOr(HOr* instruction) {
4869 HandleBitwiseOperation(instruction);
4870}
4871
4872void InstructionCodeGeneratorX86::VisitXor(HXor* instruction) {
4873 HandleBitwiseOperation(instruction);
4874}
4875
4876void InstructionCodeGeneratorX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
4877 LocationSummary* locations = instruction->GetLocations();
4878 Location first = locations->InAt(0);
4879 Location second = locations->InAt(1);
4880 DCHECK(first.Equals(locations->Out()));
4881
4882 if (instruction->GetResultType() == Primitive::kPrimInt) {
4883 if (second.IsRegister()) {
4884 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004885 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004886 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004887 __ orl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004888 } else {
4889 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004890 __ xorl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004891 }
4892 } else if (second.IsConstant()) {
4893 if (instruction->IsAnd()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004894 __ andl(first.AsRegister<Register>(),
4895 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004896 } else if (instruction->IsOr()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004897 __ orl(first.AsRegister<Register>(),
4898 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004899 } else {
4900 DCHECK(instruction->IsXor());
Roland Levillain199f3362014-11-27 17:15:16 +00004901 __ xorl(first.AsRegister<Register>(),
4902 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004903 }
4904 } else {
4905 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004906 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004907 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004908 __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004909 } else {
4910 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004911 __ xorl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004912 }
4913 }
4914 } else {
4915 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4916 if (second.IsRegisterPair()) {
4917 if (instruction->IsAnd()) {
4918 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4919 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4920 } else if (instruction->IsOr()) {
4921 __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4922 __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4923 } else {
4924 DCHECK(instruction->IsXor());
4925 __ xorl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4926 __ xorl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4927 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004928 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004929 if (instruction->IsAnd()) {
4930 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4931 __ andl(first.AsRegisterPairHigh<Register>(),
4932 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4933 } else if (instruction->IsOr()) {
4934 __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4935 __ orl(first.AsRegisterPairHigh<Register>(),
4936 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4937 } else {
4938 DCHECK(instruction->IsXor());
4939 __ xorl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4940 __ xorl(first.AsRegisterPairHigh<Register>(),
4941 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4942 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004943 } else {
4944 DCHECK(second.IsConstant()) << second;
4945 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004946 int32_t low_value = Low32Bits(value);
4947 int32_t high_value = High32Bits(value);
4948 Immediate low(low_value);
4949 Immediate high(high_value);
4950 Register first_low = first.AsRegisterPairLow<Register>();
4951 Register first_high = first.AsRegisterPairHigh<Register>();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004952 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004953 if (low_value == 0) {
4954 __ xorl(first_low, first_low);
4955 } else if (low_value != -1) {
4956 __ andl(first_low, low);
4957 }
4958 if (high_value == 0) {
4959 __ xorl(first_high, first_high);
4960 } else if (high_value != -1) {
4961 __ andl(first_high, high);
4962 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004963 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004964 if (low_value != 0) {
4965 __ orl(first_low, low);
4966 }
4967 if (high_value != 0) {
4968 __ orl(first_high, high);
4969 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004970 } else {
4971 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004972 if (low_value != 0) {
4973 __ xorl(first_low, low);
4974 }
4975 if (high_value != 0) {
4976 __ xorl(first_high, high);
4977 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004978 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004979 }
4980 }
4981}
4982
Calin Juravleb1498f62015-02-16 13:13:29 +00004983void LocationsBuilderX86::VisitBoundType(HBoundType* instruction) {
4984 // Nothing to do, this should be removed during prepare for register allocator.
4985 UNUSED(instruction);
4986 LOG(FATAL) << "Unreachable";
4987}
4988
4989void InstructionCodeGeneratorX86::VisitBoundType(HBoundType* instruction) {
4990 // Nothing to do, this should be removed during prepare for register allocator.
4991 UNUSED(instruction);
4992 LOG(FATAL) << "Unreachable";
4993}
4994
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01004995void LocationsBuilderX86::VisitFakeString(HFakeString* instruction) {
4996 DCHECK(codegen_->IsBaseline());
4997 LocationSummary* locations =
4998 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4999 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
5000}
5001
5002void InstructionCodeGeneratorX86::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
5003 DCHECK(codegen_->IsBaseline());
5004 // Will be generated at use site.
5005}
5006
Roland Levillain4d027112015-07-01 15:41:14 +01005007#undef __
5008
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00005009} // namespace x86
5010} // namespace art