blob: a1475000eea79b3b091e7ea38aee9f70c456271e [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
Guillaume Sanchez0f88e872015-03-30 17:55:45 +010019#include "code_generator_utils.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010020#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +000021#include "entrypoints/quick/quick_entrypoints_enum.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010022#include "gc/accounting/card_table.h"
Mark Mendell09ed1a32015-03-25 08:30:06 -040023#include "intrinsics.h"
24#include "intrinsics_x86.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070025#include "mirror/array-inl.h"
Nicolas Geoffrayf6e206c2014-08-07 20:25:41 +010026#include "mirror/art_method.h"
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +010027#include "mirror/class.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;
39
Mark Mendell5f874182015-03-04 15:42:45 -050040static constexpr Register kCoreCalleeSaves[] = { EBP, ESI, EDI };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010041
Mark Mendell24f2dfa2015-01-14 19:51:45 -050042static constexpr int kC2ConditionMask = 0x400;
43
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +000044static constexpr int kFakeReturnRegister = Register(8);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +000045
Nicolas Geoffraye5038322014-07-04 09:41:32 +010046#define __ reinterpret_cast<X86Assembler*>(codegen->GetAssembler())->
47
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010048class NullCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010049 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010050 explicit NullCheckSlowPathX86(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010051
Alexandre Rames2ed20af2015-03-06 13:55:35 +000052 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010053 __ Bind(GetEntryLabel());
54 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowNullPointer)));
Mingyao Yang2be48692015-03-31 17:03:08 -070055 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffraye5038322014-07-04 09:41:32 +010056 }
57
58 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010059 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010060 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86);
61};
62
Calin Juravled0d48522014-11-04 16:40:20 +000063class DivZeroCheckSlowPathX86 : public SlowPathCodeX86 {
64 public:
65 explicit DivZeroCheckSlowPathX86(HDivZeroCheck* instruction) : instruction_(instruction) {}
66
Alexandre Rames2ed20af2015-03-06 13:55:35 +000067 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000068 __ Bind(GetEntryLabel());
69 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowDivZero)));
Mingyao Yang2be48692015-03-31 17:03:08 -070070 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Calin Juravled0d48522014-11-04 16:40:20 +000071 }
72
73 private:
74 HDivZeroCheck* const instruction_;
75 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86);
76};
77
Calin Juravlebacfec32014-11-14 15:54:36 +000078class DivRemMinusOneSlowPathX86 : public SlowPathCodeX86 {
Calin Juravled0d48522014-11-04 16:40:20 +000079 public:
Calin Juravlebacfec32014-11-14 15:54:36 +000080 explicit DivRemMinusOneSlowPathX86(Register reg, bool is_div) : reg_(reg), is_div_(is_div) {}
Calin Juravled0d48522014-11-04 16:40:20 +000081
Alexandre Rames2ed20af2015-03-06 13:55:35 +000082 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000083 __ Bind(GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +000084 if (is_div_) {
85 __ negl(reg_);
86 } else {
87 __ movl(reg_, Immediate(0));
88 }
Calin Juravled0d48522014-11-04 16:40:20 +000089 __ jmp(GetExitLabel());
90 }
91
92 private:
93 Register reg_;
Calin Juravlebacfec32014-11-14 15:54:36 +000094 bool is_div_;
95 DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86);
Calin Juravled0d48522014-11-04 16:40:20 +000096};
97
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010098class BoundsCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010099 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100100 BoundsCheckSlowPathX86(HBoundsCheck* instruction,
101 Location index_location,
102 Location length_location)
Roland Levillain199f3362014-11-27 17:15:16 +0000103 : instruction_(instruction),
104 index_location_(index_location),
105 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100106
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000107 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100108 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100109 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000110 // We're moving two locations to locations that could overlap, so we need a parallel
111 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100112 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000113 x86_codegen->EmitParallelMoves(
114 index_location_,
115 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100116 Primitive::kPrimInt,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000117 length_location_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100118 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
119 Primitive::kPrimInt);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100120 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowArrayBounds)));
Mingyao Yang2be48692015-03-31 17:03:08 -0700121 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100122 }
123
124 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100125 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100126 const Location index_location_;
127 const Location length_location_;
128
129 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86);
130};
131
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100132class SuspendCheckSlowPathX86 : public SlowPathCodeX86 {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000133 public:
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000134 SuspendCheckSlowPathX86(HSuspendCheck* instruction, HBasicBlock* successor)
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100135 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000136
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000137 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100138 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000139 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000140 SaveLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000141 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pTestSuspend)));
Mingyao Yang2be48692015-03-31 17:03:08 -0700142 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000143 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100144 if (successor_ == nullptr) {
145 __ jmp(GetReturnLabel());
146 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100147 __ jmp(x86_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100148 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000149 }
150
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100151 Label* GetReturnLabel() {
152 DCHECK(successor_ == nullptr);
153 return &return_label_;
154 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000155
156 private:
157 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100158 HBasicBlock* const successor_;
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000159 Label return_label_;
160
161 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86);
162};
163
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000164class LoadStringSlowPathX86 : public SlowPathCodeX86 {
165 public:
166 explicit LoadStringSlowPathX86(HLoadString* instruction) : instruction_(instruction) {}
167
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000168 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000169 LocationSummary* locations = instruction_->GetLocations();
170 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
171
172 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
173 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000174 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000175
176 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800177 x86_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
178 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction_->GetStringIndex()));
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000179 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pResolveString)));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000180 RecordPcInfo(codegen, instruction_, instruction_->GetDexPc());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000181 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000182 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000183
184 __ jmp(GetExitLabel());
185 }
186
187 private:
188 HLoadString* const instruction_;
189
190 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86);
191};
192
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000193class LoadClassSlowPathX86 : public SlowPathCodeX86 {
194 public:
195 LoadClassSlowPathX86(HLoadClass* cls,
196 HInstruction* at,
197 uint32_t dex_pc,
198 bool do_clinit)
199 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
200 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
201 }
202
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000203 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000204 LocationSummary* locations = at_->GetLocations();
205 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
206 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000207 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000208
209 InvokeRuntimeCallingConvention calling_convention;
210 __ movl(calling_convention.GetRegisterAt(0), Immediate(cls_->GetTypeIndex()));
211 x86_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
212 __ fs()->call(Address::Absolute(do_clinit_
213 ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeStaticStorage)
214 : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeType)));
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000215 RecordPcInfo(codegen, at_, dex_pc_);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000216
217 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000218 Location out = locations->Out();
219 if (out.IsValid()) {
220 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
221 x86_codegen->Move32(out, Location::RegisterLocation(EAX));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000222 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000223
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000224 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000225 __ jmp(GetExitLabel());
226 }
227
228 private:
229 // The class this slow path will load.
230 HLoadClass* const cls_;
231
232 // The instruction where this slow path is happening.
233 // (Might be the load class or an initialization check).
234 HInstruction* const at_;
235
236 // The dex PC of `at_`.
237 const uint32_t dex_pc_;
238
239 // Whether to initialize the class.
240 const bool do_clinit_;
241
242 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathX86);
243};
244
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000245class TypeCheckSlowPathX86 : public SlowPathCodeX86 {
246 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000247 TypeCheckSlowPathX86(HInstruction* instruction,
248 Location class_to_check,
249 Location object_class,
250 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000251 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000252 class_to_check_(class_to_check),
253 object_class_(object_class),
254 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000255
Alexandre Rames2ed20af2015-03-06 13:55:35 +0000256 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000257 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000258 DCHECK(instruction_->IsCheckCast()
259 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000260
261 CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen);
262 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000263 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000264
265 // We're moving two locations to locations that could overlap, so we need a parallel
266 // move resolver.
267 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000268 x86_codegen->EmitParallelMoves(
269 class_to_check_,
270 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100271 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000272 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100273 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
274 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000275
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000276 if (instruction_->IsInstanceOf()) {
Roland Levillain199f3362014-11-27 17:15:16 +0000277 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize,
278 pInstanceofNonTrivial)));
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000279 } else {
280 DCHECK(instruction_->IsCheckCast());
281 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pCheckCast)));
282 }
283
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000284 RecordPcInfo(codegen, instruction_, dex_pc_);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000285 if (instruction_->IsInstanceOf()) {
286 x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX));
287 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000288 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000289
290 __ jmp(GetExitLabel());
291 }
292
293 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000294 HInstruction* const instruction_;
295 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000296 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000297 const uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000298
299 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86);
300};
301
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700302class DeoptimizationSlowPathX86 : public SlowPathCodeX86 {
303 public:
304 explicit DeoptimizationSlowPathX86(HInstruction* instruction)
305 : instruction_(instruction) {}
306
307 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
308 __ Bind(GetEntryLabel());
309 SaveLiveRegisters(codegen, instruction_->GetLocations());
310 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeoptimize)));
311 // No need to restore live registers.
312 DCHECK(instruction_->IsDeoptimize());
313 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
314 uint32_t dex_pc = deoptimize->GetDexPc();
315 codegen->RecordPcInfo(instruction_, dex_pc, this);
316 }
317
318 private:
319 HInstruction* const instruction_;
320 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86);
321};
322
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100323#undef __
324#define __ reinterpret_cast<X86Assembler*>(GetAssembler())->
325
Dave Allison20dfc792014-06-16 20:44:29 -0700326inline Condition X86Condition(IfCondition cond) {
327 switch (cond) {
328 case kCondEQ: return kEqual;
329 case kCondNE: return kNotEqual;
330 case kCondLT: return kLess;
331 case kCondLE: return kLessEqual;
332 case kCondGT: return kGreater;
333 case kCondGE: return kGreaterEqual;
334 default:
335 LOG(FATAL) << "Unknown if condition";
336 }
337 return kEqual;
338}
339
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100340void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const {
341 stream << X86ManagedRegister::FromCpuRegister(Register(reg));
342}
343
344void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
345 stream << X86ManagedRegister::FromXmmRegister(XmmRegister(reg));
346}
347
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100348size_t CodeGeneratorX86::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
349 __ movl(Address(ESP, stack_index), static_cast<Register>(reg_id));
350 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100351}
352
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100353size_t CodeGeneratorX86::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
354 __ movl(static_cast<Register>(reg_id), Address(ESP, stack_index));
355 return kX86WordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100356}
357
Mark Mendell7c8d0092015-01-26 11:21:33 -0500358size_t CodeGeneratorX86::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
359 __ movsd(Address(ESP, stack_index), XmmRegister(reg_id));
360 return GetFloatingPointSpillSlotSize();
361}
362
363size_t CodeGeneratorX86::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
364 __ movsd(XmmRegister(reg_id), Address(ESP, stack_index));
365 return GetFloatingPointSpillSlotSize();
366}
367
Mark Mendellfb8d2792015-03-31 22:16:59 -0400368CodeGeneratorX86::CodeGeneratorX86(HGraph* graph,
369 const X86InstructionSetFeatures& isa_features,
370 const CompilerOptions& compiler_options)
Mark Mendell5f874182015-03-04 15:42:45 -0500371 : CodeGenerator(graph,
372 kNumberOfCpuRegisters,
373 kNumberOfXmmRegisters,
374 kNumberOfRegisterPairs,
375 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
376 arraysize(kCoreCalleeSaves))
377 | (1 << kFakeReturnRegister),
378 0,
379 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100380 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100381 location_builder_(graph, this),
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100382 instruction_visitor_(graph, this),
Mark Mendellfb8d2792015-03-31 22:16:59 -0400383 move_resolver_(graph->GetArena(), this),
384 isa_features_(isa_features) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000385 // Use a fake return address register to mimic Quick.
386 AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100387}
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100388
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100389Location CodeGeneratorX86::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100390 switch (type) {
391 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100392 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100393 X86ManagedRegister pair =
394 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100395 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
396 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100397 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
398 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100399 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100400 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100401 }
402
403 case Primitive::kPrimByte:
404 case Primitive::kPrimBoolean:
405 case Primitive::kPrimChar:
406 case Primitive::kPrimShort:
407 case Primitive::kPrimInt:
408 case Primitive::kPrimNot: {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100409 Register reg = static_cast<Register>(
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100410 FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters));
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100411 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100412 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
413 X86ManagedRegister current =
414 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
415 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100416 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100417 }
418 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100419 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100420 }
421
422 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100423 case Primitive::kPrimDouble: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100424 return Location::FpuRegisterLocation(
425 FindFreeEntry(blocked_fpu_registers_, kNumberOfXmmRegisters));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100426 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100427
428 case Primitive::kPrimVoid:
429 LOG(FATAL) << "Unreachable type " << type;
430 }
431
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100432 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100433}
434
Mark Mendell5f874182015-03-04 15:42:45 -0500435void CodeGeneratorX86::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100436 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100437 blocked_register_pairs_[ECX_EDX] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100438
439 // Stack register is always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100440 blocked_core_registers_[ESP] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100441
Mark Mendell5f874182015-03-04 15:42:45 -0500442 if (is_baseline) {
443 blocked_core_registers_[EBP] = true;
444 blocked_core_registers_[ESI] = true;
445 blocked_core_registers_[EDI] = true;
446 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100447
448 UpdateBlockedPairRegisters();
449}
450
451void CodeGeneratorX86::UpdateBlockedPairRegisters() const {
452 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
453 X86ManagedRegister current =
454 X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
455 if (blocked_core_registers_[current.AsRegisterPairLow()]
456 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
457 blocked_register_pairs_[i] = true;
458 }
459 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100460}
461
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100462InstructionCodeGeneratorX86::InstructionCodeGeneratorX86(HGraph* graph, CodeGeneratorX86* codegen)
463 : HGraphVisitor(graph),
464 assembler_(codegen->GetAssembler()),
465 codegen_(codegen) {}
466
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100467static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100468 return dwarf::Reg::X86Core(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100469}
470
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000471void CodeGeneratorX86::GenerateFrameEntry() {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100472 __ cfi().SetCurrentCFAOffset(kX86WordSize); // return address
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000473 __ Bind(&frame_entry_label_);
Roland Levillain199f3362014-11-27 17:15:16 +0000474 bool skip_overflow_check =
475 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000476 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Calin Juravle93edf732015-01-20 20:14:07 +0000477
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000478 if (!skip_overflow_check) {
Nicolas Geoffray397f2e42014-07-23 12:57:19 +0100479 __ testl(EAX, Address(ESP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86))));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100480 RecordPcInfo(nullptr, 0);
Nicolas Geoffray397f2e42014-07-23 12:57:19 +0100481 }
482
Mark Mendell5f874182015-03-04 15:42:45 -0500483 if (HasEmptyFrame()) {
484 return;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000485 }
Mark Mendell5f874182015-03-04 15:42:45 -0500486
487 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
488 Register reg = kCoreCalleeSaves[i];
489 if (allocated_registers_.ContainsCoreRegister(reg)) {
490 __ pushl(reg);
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100491 __ cfi().AdjustCFAOffset(kX86WordSize);
492 __ cfi().RelOffset(DWARFReg(reg), 0);
Mark Mendell5f874182015-03-04 15:42:45 -0500493 }
494 }
495
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100496 int adjust = GetFrameSize() - FrameEntrySpillSize();
497 __ subl(ESP, Immediate(adjust));
498 __ cfi().AdjustCFAOffset(adjust);
Mark Mendell5f874182015-03-04 15:42:45 -0500499 __ movl(Address(ESP, kCurrentMethodStackOffset), EAX);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000500}
501
502void CodeGeneratorX86::GenerateFrameExit() {
David Srbeckyc34dc932015-04-12 09:27:43 +0100503 __ cfi().RememberState();
504 if (!HasEmptyFrame()) {
505 int adjust = GetFrameSize() - FrameEntrySpillSize();
506 __ addl(ESP, Immediate(adjust));
507 __ cfi().AdjustCFAOffset(-adjust);
Mark Mendell5f874182015-03-04 15:42:45 -0500508
David Srbeckyc34dc932015-04-12 09:27:43 +0100509 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
510 Register reg = kCoreCalleeSaves[i];
511 if (allocated_registers_.ContainsCoreRegister(reg)) {
512 __ popl(reg);
513 __ cfi().AdjustCFAOffset(-static_cast<int>(kX86WordSize));
514 __ cfi().Restore(DWARFReg(reg));
515 }
Mark Mendell5f874182015-03-04 15:42:45 -0500516 }
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000517 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100518 __ ret();
519 __ cfi().RestoreState();
520 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000521}
522
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100523void CodeGeneratorX86::Bind(HBasicBlock* block) {
524 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000525}
526
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100527void CodeGeneratorX86::LoadCurrentMethod(Register reg) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000528 DCHECK(RequiresCurrentMethod());
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100529 __ movl(reg, Address(ESP, kCurrentMethodStackOffset));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000530}
531
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100532Location CodeGeneratorX86::GetStackLocation(HLoadLocal* load) const {
533 switch (load->GetType()) {
534 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100535 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100536 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100537
538 case Primitive::kPrimInt:
539 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100540 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100541 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100542
543 case Primitive::kPrimBoolean:
544 case Primitive::kPrimByte:
545 case Primitive::kPrimChar:
546 case Primitive::kPrimShort:
547 case Primitive::kPrimVoid:
548 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700549 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100550 }
551
552 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700553 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100554}
555
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100556Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
557 switch (type) {
558 case Primitive::kPrimBoolean:
559 case Primitive::kPrimByte:
560 case Primitive::kPrimChar:
561 case Primitive::kPrimShort:
562 case Primitive::kPrimInt:
563 case Primitive::kPrimNot: {
564 uint32_t index = gp_index_++;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000565 stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100566 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100567 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100568 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000569 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100570 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100571 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100572
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000573 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100574 uint32_t index = gp_index_;
575 gp_index_ += 2;
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000576 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100577 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100578 X86ManagedRegister pair = X86ManagedRegister::FromRegisterPair(
579 calling_convention.GetRegisterPairAt(index));
580 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100581 } else {
Mark P Mendell966c3ae2015-01-27 15:45:27 +0000582 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
583 }
584 }
585
586 case Primitive::kPrimFloat: {
587 uint32_t index = fp_index_++;
588 stack_index_++;
589 if (index < calling_convention.GetNumberOfFpuRegisters()) {
590 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
591 } else {
592 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
593 }
594 }
595
596 case Primitive::kPrimDouble: {
597 uint32_t index = fp_index_++;
598 stack_index_ += 2;
599 if (index < calling_convention.GetNumberOfFpuRegisters()) {
600 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index));
601 } else {
602 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100603 }
604 }
605
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100606 case Primitive::kPrimVoid:
607 LOG(FATAL) << "Unexpected parameter type " << type;
608 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100609 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100610 return Location();
611}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100612
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100613void CodeGeneratorX86::Move32(Location destination, Location source) {
614 if (source.Equals(destination)) {
615 return;
616 }
617 if (destination.IsRegister()) {
618 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000619 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100620 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000621 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100622 } else {
623 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000624 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100625 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100626 } else if (destination.IsFpuRegister()) {
627 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000628 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100629 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000630 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100631 } else {
632 DCHECK(source.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +0000633 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100634 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100635 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000636 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100637 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000638 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100639 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000640 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Mark Mendell7c8d0092015-01-26 11:21:33 -0500641 } else if (source.IsConstant()) {
642 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000643 int32_t value = GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -0500644 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100645 } else {
646 DCHECK(source.IsStackSlot());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100647 __ pushl(Address(ESP, source.GetStackIndex()));
648 __ popl(Address(ESP, destination.GetStackIndex()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100649 }
650 }
651}
652
653void CodeGeneratorX86::Move64(Location destination, Location source) {
654 if (source.Equals(destination)) {
655 return;
656 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100657 if (destination.IsRegisterPair()) {
658 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000659 EmitParallelMoves(
660 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
661 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100662 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000663 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100664 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
665 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100666 } else if (source.IsFpuRegister()) {
667 LOG(FATAL) << "Unimplemented";
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100668 } else {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000669 // No conflict possible, so just do the moves.
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100670 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100671 __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex()));
672 __ movl(destination.AsRegisterPairHigh<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100673 Address(ESP, source.GetHighStackIndex(kX86WordSize)));
674 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100675 } else if (destination.IsFpuRegister()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -0500676 if (source.IsFpuRegister()) {
677 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
678 } else if (source.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000679 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100680 } else {
681 LOG(FATAL) << "Unimplemented";
682 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100683 } else {
Calin Juravled6fb6cf2014-11-11 19:07:44 +0000684 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100685 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000686 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100687 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegisterPairLow<Register>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100688 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100689 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100690 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000691 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000692 } else if (source.IsConstant()) {
693 HConstant* constant = source.GetConstant();
694 int64_t value;
695 if (constant->IsLongConstant()) {
696 value = constant->AsLongConstant()->GetValue();
697 } else {
698 DCHECK(constant->IsDoubleConstant());
Roland Levillainda4d79b2015-03-24 14:36:11 +0000699 value = bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000700 }
701 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(Low32Bits(value)));
702 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), Immediate(High32Bits(value)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100703 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000704 DCHECK(source.IsDoubleStackSlot()) << source;
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000705 EmitParallelMoves(
706 Location::StackSlot(source.GetStackIndex()),
707 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100708 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000709 Location::StackSlot(source.GetHighStackIndex(kX86WordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100710 Location::StackSlot(destination.GetHighStackIndex(kX86WordSize)),
711 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100712 }
713 }
714}
715
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100716void CodeGeneratorX86::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000717 LocationSummary* locations = instruction->GetLocations();
718 if (locations != nullptr && locations->Out().Equals(location)) {
719 return;
720 }
721
722 if (locations != nullptr && locations->Out().IsConstant()) {
723 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000724 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
725 Immediate imm(GetInt32ValueOf(const_to_move));
Calin Juravlea21f5982014-11-13 15:53:04 +0000726 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000727 __ movl(location.AsRegister<Register>(), imm);
Calin Juravlea21f5982014-11-13 15:53:04 +0000728 } else if (location.IsStackSlot()) {
729 __ movl(Address(ESP, location.GetStackIndex()), imm);
730 } else {
731 DCHECK(location.IsConstant());
732 DCHECK_EQ(location.GetConstant(), const_to_move);
733 }
734 } else if (const_to_move->IsLongConstant()) {
735 int64_t value = const_to_move->AsLongConstant()->GetValue();
736 if (location.IsRegisterPair()) {
737 __ movl(location.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
738 __ movl(location.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
739 } else if (location.IsDoubleStackSlot()) {
740 __ movl(Address(ESP, location.GetStackIndex()), Immediate(Low32Bits(value)));
Roland Levillain199f3362014-11-27 17:15:16 +0000741 __ movl(Address(ESP, location.GetHighStackIndex(kX86WordSize)),
742 Immediate(High32Bits(value)));
Calin Juravlea21f5982014-11-13 15:53:04 +0000743 } else {
744 DCHECK(location.IsConstant());
745 DCHECK_EQ(location.GetConstant(), instruction);
746 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100747 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000748 } else if (instruction->IsTemporary()) {
749 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000750 if (temp_location.IsStackSlot()) {
751 Move32(location, temp_location);
752 } else {
753 DCHECK(temp_location.IsDoubleStackSlot());
754 Move64(location, temp_location);
755 }
Roland Levillain476df552014-10-09 17:51:36 +0100756 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100757 int slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100758 switch (instruction->GetType()) {
759 case Primitive::kPrimBoolean:
760 case Primitive::kPrimByte:
761 case Primitive::kPrimChar:
762 case Primitive::kPrimShort:
763 case Primitive::kPrimInt:
764 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100765 case Primitive::kPrimFloat:
766 Move32(location, Location::StackSlot(slot));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100767 break;
768
769 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100770 case Primitive::kPrimDouble:
771 Move64(location, Location::DoubleStackSlot(slot));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100772 break;
773
774 default:
775 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
776 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000777 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100778 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100779 switch (instruction->GetType()) {
780 case Primitive::kPrimBoolean:
781 case Primitive::kPrimByte:
782 case Primitive::kPrimChar:
783 case Primitive::kPrimShort:
784 case Primitive::kPrimInt:
785 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100786 case Primitive::kPrimFloat:
Calin Juravlea21f5982014-11-13 15:53:04 +0000787 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100788 break;
789
790 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100791 case Primitive::kPrimDouble:
Calin Juravlea21f5982014-11-13 15:53:04 +0000792 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100793 break;
794
795 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100796 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100797 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000798 }
799}
800
801void LocationsBuilderX86::VisitGoto(HGoto* got) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000802 got->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000803}
804
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000805void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000806 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100807 DCHECK(!successor->IsExitBlock());
808
809 HBasicBlock* block = got->GetBlock();
810 HInstruction* previous = got->GetPrevious();
811
812 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000813 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100814 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
815 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
816 return;
817 }
818
819 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
820 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
821 }
822 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000823 __ jmp(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000824 }
825}
826
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000827void LocationsBuilderX86::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000828 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000829}
830
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000831void InstructionCodeGeneratorX86::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700832 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000833}
834
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700835void InstructionCodeGeneratorX86::GenerateTestAndBranch(HInstruction* instruction,
836 Label* true_target,
837 Label* false_target,
838 Label* always_true_target) {
839 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100840 if (cond->IsIntConstant()) {
841 // Constant condition, statically compared against 1.
842 int32_t cond_value = cond->AsIntConstant()->GetValue();
843 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700844 if (always_true_target != nullptr) {
845 __ jmp(always_true_target);
Nicolas Geoffray18efde52014-09-22 15:51:11 +0100846 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100847 return;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100848 } else {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100849 DCHECK_EQ(cond_value, 0);
850 }
851 } else {
852 bool materialized =
853 !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization();
854 // Moves do not affect the eflags register, so if the condition is
855 // evaluated just before the if, we don't need to evaluate it
856 // again.
857 bool eflags_set = cond->IsCondition()
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700858 && cond->AsCondition()->IsBeforeWhenDisregardMoves(instruction);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100859 if (materialized) {
860 if (!eflags_set) {
861 // Materialized condition, compare against 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700862 Location lhs = instruction->GetLocations()->InAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100863 if (lhs.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -0500864 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100865 } else {
866 __ cmpl(Address(ESP, lhs.GetStackIndex()), Immediate(0));
867 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700868 __ j(kNotEqual, true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100869 } else {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700870 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100871 }
872 } else {
873 Location lhs = cond->GetLocations()->InAt(0);
874 Location rhs = cond->GetLocations()->InAt(1);
875 // LHS is guaranteed to be in a register (see
876 // LocationsBuilderX86::VisitCondition).
877 if (rhs.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000878 __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>());
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100879 } else if (rhs.IsConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -0500880 int32_t constant = rhs.GetConstant()->AsIntConstant()->GetValue();
881 if (constant == 0) {
882 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
883 } else {
884 __ cmpl(lhs.AsRegister<Register>(), Immediate(constant));
885 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100886 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000887 __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100888 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700889 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target);
Dave Allison20dfc792014-06-16 20:44:29 -0700890 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100891 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700892 if (false_target != nullptr) {
893 __ jmp(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000894 }
895}
896
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700897void LocationsBuilderX86::VisitIf(HIf* if_instr) {
898 LocationSummary* locations =
899 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
900 HInstruction* cond = if_instr->InputAt(0);
901 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
902 locations->SetInAt(0, Location::Any());
903 }
904}
905
906void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) {
907 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
908 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
909 Label* always_true_target = true_target;
910 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
911 if_instr->IfTrueSuccessor())) {
912 always_true_target = nullptr;
913 }
914 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
915 if_instr->IfFalseSuccessor())) {
916 false_target = nullptr;
917 }
918 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
919}
920
921void LocationsBuilderX86::VisitDeoptimize(HDeoptimize* deoptimize) {
922 LocationSummary* locations = new (GetGraph()->GetArena())
923 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
924 HInstruction* cond = deoptimize->InputAt(0);
925 DCHECK(cond->IsCondition());
926 if (cond->AsCondition()->NeedsMaterialization()) {
927 locations->SetInAt(0, Location::Any());
928 }
929}
930
931void InstructionCodeGeneratorX86::VisitDeoptimize(HDeoptimize* deoptimize) {
932 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena())
933 DeoptimizationSlowPathX86(deoptimize);
934 codegen_->AddSlowPath(slow_path);
935 Label* slow_path_entry = slow_path->GetEntryLabel();
936 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
937}
938
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000939void LocationsBuilderX86::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000940 local->SetLocations(nullptr);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000941}
942
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000943void InstructionCodeGeneratorX86::VisitLocal(HLocal* local) {
944 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000945}
946
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000947void LocationsBuilderX86::VisitLoadLocal(HLoadLocal* local) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100948 local->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000949}
950
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000951void InstructionCodeGeneratorX86::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100952 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700953 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000954}
955
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100956void LocationsBuilderX86::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100957 LocationSummary* locations =
958 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100959 switch (store->InputAt(1)->GetType()) {
960 case Primitive::kPrimBoolean:
961 case Primitive::kPrimByte:
962 case Primitive::kPrimChar:
963 case Primitive::kPrimShort:
964 case Primitive::kPrimInt:
965 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100966 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100967 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
968 break;
969
970 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100971 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100972 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
973 break;
974
975 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100976 LOG(FATAL) << "Unknown local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100977 }
978 store->SetLocations(locations);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000979}
980
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000981void InstructionCodeGeneratorX86::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700982 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000983}
984
Dave Allison20dfc792014-06-16 20:44:29 -0700985void LocationsBuilderX86::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100986 LocationSummary* locations =
987 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100988 locations->SetInAt(0, Location::RequiresRegister());
989 locations->SetInAt(1, Location::Any());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100990 if (comp->NeedsMaterialization()) {
Mark Mendell5f874182015-03-04 15:42:45 -0500991 // We need a byte register.
992 locations->SetOut(Location::RegisterLocation(ECX));
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100993 }
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000994}
995
Dave Allison20dfc792014-06-16 20:44:29 -0700996void InstructionCodeGeneratorX86::VisitCondition(HCondition* comp) {
997 if (comp->NeedsMaterialization()) {
998 LocationSummary* locations = comp->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +0000999 Register reg = locations->Out().AsRegister<Register>();
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001000 // Clear register: setcc only sets the low byte.
1001 __ xorl(reg, reg);
Mark Mendell09b84632015-02-13 17:48:38 -05001002 Location lhs = locations->InAt(0);
1003 Location rhs = locations->InAt(1);
1004 if (rhs.IsRegister()) {
1005 __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>());
1006 } else if (rhs.IsConstant()) {
Mingyao Yang8928cab2015-03-03 16:15:23 -08001007 int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant());
Mark Mendell09b84632015-02-13 17:48:38 -05001008 if (constant == 0) {
1009 __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>());
1010 } else {
1011 __ cmpl(lhs.AsRegister<Register>(), Immediate(constant));
1012 }
Dave Allison20dfc792014-06-16 20:44:29 -07001013 } else {
Mark Mendell09b84632015-02-13 17:48:38 -05001014 __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex()));
Dave Allison20dfc792014-06-16 20:44:29 -07001015 }
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001016 __ setb(X86Condition(comp->GetCondition()), reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001017 }
Dave Allison20dfc792014-06-16 20:44:29 -07001018}
1019
1020void LocationsBuilderX86::VisitEqual(HEqual* comp) {
1021 VisitCondition(comp);
1022}
1023
1024void InstructionCodeGeneratorX86::VisitEqual(HEqual* comp) {
1025 VisitCondition(comp);
1026}
1027
1028void LocationsBuilderX86::VisitNotEqual(HNotEqual* comp) {
1029 VisitCondition(comp);
1030}
1031
1032void InstructionCodeGeneratorX86::VisitNotEqual(HNotEqual* comp) {
1033 VisitCondition(comp);
1034}
1035
1036void LocationsBuilderX86::VisitLessThan(HLessThan* comp) {
1037 VisitCondition(comp);
1038}
1039
1040void InstructionCodeGeneratorX86::VisitLessThan(HLessThan* comp) {
1041 VisitCondition(comp);
1042}
1043
1044void LocationsBuilderX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1045 VisitCondition(comp);
1046}
1047
1048void InstructionCodeGeneratorX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1049 VisitCondition(comp);
1050}
1051
1052void LocationsBuilderX86::VisitGreaterThan(HGreaterThan* comp) {
1053 VisitCondition(comp);
1054}
1055
1056void InstructionCodeGeneratorX86::VisitGreaterThan(HGreaterThan* comp) {
1057 VisitCondition(comp);
1058}
1059
1060void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1061 VisitCondition(comp);
1062}
1063
1064void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1065 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001066}
1067
1068void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001069 LocationSummary* locations =
1070 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001071 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001072}
1073
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001074void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001075 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001076 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001077}
1078
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001079void LocationsBuilderX86::VisitNullConstant(HNullConstant* constant) {
1080 LocationSummary* locations =
1081 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1082 locations->SetOut(Location::ConstantLocation(constant));
1083}
1084
1085void InstructionCodeGeneratorX86::VisitNullConstant(HNullConstant* constant) {
1086 // Will be generated at use site.
1087 UNUSED(constant);
1088}
1089
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001090void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001091 LocationSummary* locations =
1092 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001093 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001094}
1095
1096void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant) {
1097 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001098 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001099}
1100
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001101void LocationsBuilderX86::VisitFloatConstant(HFloatConstant* constant) {
1102 LocationSummary* locations =
1103 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1104 locations->SetOut(Location::ConstantLocation(constant));
1105}
1106
1107void InstructionCodeGeneratorX86::VisitFloatConstant(HFloatConstant* constant) {
1108 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001109 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001110}
1111
1112void LocationsBuilderX86::VisitDoubleConstant(HDoubleConstant* constant) {
1113 LocationSummary* locations =
1114 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1115 locations->SetOut(Location::ConstantLocation(constant));
1116}
1117
1118void InstructionCodeGeneratorX86::VisitDoubleConstant(HDoubleConstant* constant) {
1119 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001120 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001121}
1122
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001123void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001124 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001125}
1126
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001127void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001128 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001129 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001130}
1131
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001132void LocationsBuilderX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001133 LocationSummary* locations =
1134 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001135 switch (ret->InputAt(0)->GetType()) {
1136 case Primitive::kPrimBoolean:
1137 case Primitive::kPrimByte:
1138 case Primitive::kPrimChar:
1139 case Primitive::kPrimShort:
1140 case Primitive::kPrimInt:
1141 case Primitive::kPrimNot:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001142 locations->SetInAt(0, Location::RegisterLocation(EAX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001143 break;
1144
1145 case Primitive::kPrimLong:
1146 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001147 0, Location::RegisterPairLocation(EAX, EDX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001148 break;
1149
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001150 case Primitive::kPrimFloat:
1151 case Primitive::kPrimDouble:
1152 locations->SetInAt(
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001153 0, Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001154 break;
1155
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001156 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001157 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001158 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001159}
1160
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001161void InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001162 if (kIsDebugBuild) {
1163 switch (ret->InputAt(0)->GetType()) {
1164 case Primitive::kPrimBoolean:
1165 case Primitive::kPrimByte:
1166 case Primitive::kPrimChar:
1167 case Primitive::kPrimShort:
1168 case Primitive::kPrimInt:
1169 case Primitive::kPrimNot:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001170 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<Register>(), EAX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001171 break;
1172
1173 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001174 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairLow<Register>(), EAX);
1175 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairHigh<Register>(), EDX);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001176 break;
1177
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001178 case Primitive::kPrimFloat:
1179 case Primitive::kPrimDouble:
Roland Levillain271ab9c2014-11-27 15:23:57 +00001180 DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>(), XMM0);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001181 break;
1182
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001183 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001184 LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001185 }
1186 }
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001187 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001188}
1189
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001190void LocationsBuilderX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Mark Mendellfb8d2792015-03-31 22:16:59 -04001191 IntrinsicLocationsBuilderX86 intrinsic(codegen_);
Mark Mendell09ed1a32015-03-25 08:30:06 -04001192 if (intrinsic.TryDispatch(invoke)) {
1193 return;
1194 }
1195
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001196 HandleInvoke(invoke);
1197}
1198
Mark Mendell09ed1a32015-03-25 08:30:06 -04001199static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86* codegen) {
1200 if (invoke->GetLocations()->Intrinsified()) {
1201 IntrinsicCodeGeneratorX86 intrinsic(codegen);
1202 intrinsic.Dispatch(invoke);
1203 return true;
1204 }
1205 return false;
1206}
1207
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001208void InstructionCodeGeneratorX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Mark Mendell09ed1a32015-03-25 08:30:06 -04001209 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1210 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001211 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001212
Mark Mendell09ed1a32015-03-25 08:30:06 -04001213 codegen_->GenerateStaticOrDirectCall(
1214 invoke, invoke->GetLocations()->GetTemp(0).AsRegister<Register>());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001215}
1216
1217void LocationsBuilderX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
1218 HandleInvoke(invoke);
1219}
1220
1221void LocationsBuilderX86::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001222 LocationSummary* locations =
1223 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001224 locations->AddTemp(Location::RegisterLocation(EAX));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001225
1226 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001227 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001228 HInstruction* input = invoke->InputAt(i);
1229 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1230 }
1231
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001232 switch (invoke->GetType()) {
1233 case Primitive::kPrimBoolean:
1234 case Primitive::kPrimByte:
1235 case Primitive::kPrimChar:
1236 case Primitive::kPrimShort:
1237 case Primitive::kPrimInt:
1238 case Primitive::kPrimNot:
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001239 locations->SetOut(Location::RegisterLocation(EAX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001240 break;
1241
1242 case Primitive::kPrimLong:
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001243 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001244 break;
1245
1246 case Primitive::kPrimVoid:
1247 break;
1248
1249 case Primitive::kPrimDouble:
1250 case Primitive::kPrimFloat:
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001251 locations->SetOut(Location::FpuRegisterLocation(XMM0));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001252 break;
1253 }
1254
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001255 invoke->SetLocations(locations);
1256}
1257
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001258void InstructionCodeGeneratorX86::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001259 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001260 uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() +
1261 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1262 LocationSummary* locations = invoke->GetLocations();
1263 Location receiver = locations->InAt(0);
1264 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1265 // temp = object->GetClass();
1266 if (receiver.IsStackSlot()) {
1267 __ movl(temp, Address(ESP, receiver.GetStackIndex()));
1268 __ movl(temp, Address(temp, class_offset));
1269 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001270 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001271 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001272 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001273 // temp = temp->GetMethodAt(method_offset);
1274 __ movl(temp, Address(temp, method_offset));
1275 // call temp->GetEntryPoint();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001276 __ call(Address(
1277 temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001278
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001279 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray39468442014-09-02 15:17:15 +01001280 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001281}
1282
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001283void LocationsBuilderX86::VisitInvokeInterface(HInvokeInterface* invoke) {
1284 HandleInvoke(invoke);
1285 // Add the hidden argument.
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001286 invoke->GetLocations()->AddTemp(Location::FpuRegisterLocation(XMM7));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001287}
1288
1289void InstructionCodeGeneratorX86::VisitInvokeInterface(HInvokeInterface* invoke) {
1290 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001291 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001292 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1293 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1294 LocationSummary* locations = invoke->GetLocations();
1295 Location receiver = locations->InAt(0);
1296 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1297
1298 // Set the hidden argument.
1299 __ movl(temp, Immediate(invoke->GetDexMethodIndex()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001300 __ movd(invoke->GetLocations()->GetTemp(1).AsFpuRegister<XmmRegister>(), temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001301
1302 // temp = object->GetClass();
1303 if (receiver.IsStackSlot()) {
1304 __ movl(temp, Address(ESP, receiver.GetStackIndex()));
1305 __ movl(temp, Address(temp, class_offset));
1306 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001307 __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001308 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001309 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001310 // temp = temp->GetImtEntryAt(method_offset);
1311 __ movl(temp, Address(temp, method_offset));
1312 // call temp->GetEntryPoint();
Mathieu Chartier2d721012014-11-10 11:08:06 -08001313 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001314 kX86WordSize).Int32Value()));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001315
1316 DCHECK(!codegen_->IsLeafMethod());
1317 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1318}
1319
Roland Levillain88cb1752014-10-20 16:36:47 +01001320void LocationsBuilderX86::VisitNeg(HNeg* neg) {
1321 LocationSummary* locations =
1322 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1323 switch (neg->GetResultType()) {
1324 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001325 case Primitive::kPrimLong:
Roland Levillain88cb1752014-10-20 16:36:47 +01001326 locations->SetInAt(0, Location::RequiresRegister());
1327 locations->SetOut(Location::SameAsFirstInput());
1328 break;
1329
Roland Levillain88cb1752014-10-20 16:36:47 +01001330 case Primitive::kPrimFloat:
Roland Levillain5368c212014-11-27 15:03:41 +00001331 locations->SetInAt(0, Location::RequiresFpuRegister());
1332 locations->SetOut(Location::SameAsFirstInput());
1333 locations->AddTemp(Location::RequiresRegister());
1334 locations->AddTemp(Location::RequiresFpuRegister());
1335 break;
1336
Roland Levillain88cb1752014-10-20 16:36:47 +01001337 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001338 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain5368c212014-11-27 15:03:41 +00001339 locations->SetOut(Location::SameAsFirstInput());
1340 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain88cb1752014-10-20 16:36:47 +01001341 break;
1342
1343 default:
1344 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1345 }
1346}
1347
1348void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) {
1349 LocationSummary* locations = neg->GetLocations();
1350 Location out = locations->Out();
1351 Location in = locations->InAt(0);
1352 switch (neg->GetResultType()) {
1353 case Primitive::kPrimInt:
1354 DCHECK(in.IsRegister());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001355 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001356 __ negl(out.AsRegister<Register>());
Roland Levillain88cb1752014-10-20 16:36:47 +01001357 break;
1358
1359 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001360 DCHECK(in.IsRegisterPair());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001361 DCHECK(in.Equals(out));
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001362 __ negl(out.AsRegisterPairLow<Register>());
1363 // Negation is similar to subtraction from zero. The least
1364 // significant byte triggers a borrow when it is different from
1365 // zero; to take it into account, add 1 to the most significant
1366 // byte if the carry flag (CF) is set to 1 after the first NEGL
1367 // operation.
1368 __ adcl(out.AsRegisterPairHigh<Register>(), Immediate(0));
1369 __ negl(out.AsRegisterPairHigh<Register>());
1370 break;
1371
Roland Levillain5368c212014-11-27 15:03:41 +00001372 case Primitive::kPrimFloat: {
1373 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001374 Register constant = locations->GetTemp(0).AsRegister<Register>();
1375 XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001376 // Implement float negation with an exclusive or with value
1377 // 0x80000000 (mask for bit 31, representing the sign of a
1378 // single-precision floating-point number).
1379 __ movl(constant, Immediate(INT32_C(0x80000000)));
1380 __ movd(mask, constant);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001381 __ xorps(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain3dbcb382014-10-28 17:30:07 +00001382 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001383 }
Roland Levillain3dbcb382014-10-28 17:30:07 +00001384
Roland Levillain5368c212014-11-27 15:03:41 +00001385 case Primitive::kPrimDouble: {
1386 DCHECK(in.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001387 XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
Roland Levillain5368c212014-11-27 15:03:41 +00001388 // Implement double negation with an exclusive or with value
1389 // 0x8000000000000000 (mask for bit 63, representing the sign of
1390 // a double-precision floating-point number).
1391 __ LoadLongConstant(mask, INT64_C(0x8000000000000000));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001392 __ xorpd(out.AsFpuRegister<XmmRegister>(), mask);
Roland Levillain88cb1752014-10-20 16:36:47 +01001393 break;
Roland Levillain5368c212014-11-27 15:03:41 +00001394 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001395
1396 default:
1397 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1398 }
1399}
1400
Roland Levillaindff1f282014-11-05 14:15:05 +00001401void LocationsBuilderX86::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001402 Primitive::Type result_type = conversion->GetResultType();
1403 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001404 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001405
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001406 // The float-to-long and double-to-long type conversions rely on a
1407 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001408 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001409 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1410 && result_type == Primitive::kPrimLong)
Roland Levillain624279f2014-12-04 11:54:28 +00001411 ? LocationSummary::kCall
1412 : LocationSummary::kNoCall;
1413 LocationSummary* locations =
1414 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1415
David Brazdilb2bd1c52015-03-25 11:17:37 +00001416 // The Java language does not allow treating boolean as an integral type but
1417 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001418
Roland Levillaindff1f282014-11-05 14:15:05 +00001419 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001420 case Primitive::kPrimByte:
1421 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001422 case Primitive::kPrimBoolean:
1423 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001424 case Primitive::kPrimShort:
1425 case Primitive::kPrimInt:
1426 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001427 // Processing a Dex `int-to-byte' instruction.
Mark Mendell5f874182015-03-04 15:42:45 -05001428 locations->SetInAt(0, Location::ByteRegisterOrConstant(ECX, conversion->InputAt(0)));
1429 // Make the output overlap to please the register allocator. This greatly simplifies
1430 // the validation of the linear scan implementation
1431 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain51d3fc42014-11-13 14:11:42 +00001432 break;
1433
1434 default:
1435 LOG(FATAL) << "Unexpected type conversion from " << input_type
1436 << " to " << result_type;
1437 }
1438 break;
1439
Roland Levillain01a8d712014-11-14 16:27:39 +00001440 case Primitive::kPrimShort:
1441 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001442 case Primitive::kPrimBoolean:
1443 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001444 case Primitive::kPrimByte:
1445 case Primitive::kPrimInt:
1446 case Primitive::kPrimChar:
1447 // Processing a Dex `int-to-short' instruction.
1448 locations->SetInAt(0, Location::Any());
1449 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1450 break;
1451
1452 default:
1453 LOG(FATAL) << "Unexpected type conversion from " << input_type
1454 << " to " << result_type;
1455 }
1456 break;
1457
Roland Levillain946e1432014-11-11 17:35:19 +00001458 case Primitive::kPrimInt:
1459 switch (input_type) {
1460 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001461 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001462 locations->SetInAt(0, Location::Any());
1463 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1464 break;
1465
1466 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001467 // Processing a Dex `float-to-int' instruction.
1468 locations->SetInAt(0, Location::RequiresFpuRegister());
1469 locations->SetOut(Location::RequiresRegister());
1470 locations->AddTemp(Location::RequiresFpuRegister());
1471 break;
1472
Roland Levillain946e1432014-11-11 17:35:19 +00001473 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001474 // Processing a Dex `double-to-int' instruction.
1475 locations->SetInAt(0, Location::RequiresFpuRegister());
1476 locations->SetOut(Location::RequiresRegister());
1477 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001478 break;
1479
1480 default:
1481 LOG(FATAL) << "Unexpected type conversion from " << input_type
1482 << " to " << result_type;
1483 }
1484 break;
1485
Roland Levillaindff1f282014-11-05 14:15:05 +00001486 case Primitive::kPrimLong:
1487 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001488 case Primitive::kPrimBoolean:
1489 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001490 case Primitive::kPrimByte:
1491 case Primitive::kPrimShort:
1492 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001493 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001494 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001495 locations->SetInAt(0, Location::RegisterLocation(EAX));
1496 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
1497 break;
1498
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001499 case Primitive::kPrimFloat:
Vladimir Marko949c91f2015-01-27 10:48:44 +00001500 case Primitive::kPrimDouble: {
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001501 // Processing a Dex `float-to-long' or 'double-to-long' instruction.
Vladimir Marko949c91f2015-01-27 10:48:44 +00001502 InvokeRuntimeCallingConvention calling_convention;
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001503 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0);
1504 locations->SetInAt(0, Location::FpuRegisterLocation(parameter));
1505
Vladimir Marko949c91f2015-01-27 10:48:44 +00001506 // The runtime helper puts the result in EAX, EDX.
1507 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Vladimir Marko949c91f2015-01-27 10:48:44 +00001508 }
Mark P Mendell966c3ae2015-01-27 15:45:27 +00001509 break;
Roland Levillaindff1f282014-11-05 14:15:05 +00001510
1511 default:
1512 LOG(FATAL) << "Unexpected type conversion from " << input_type
1513 << " to " << result_type;
1514 }
1515 break;
1516
Roland Levillain981e4542014-11-14 11:47:14 +00001517 case Primitive::kPrimChar:
1518 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001519 case Primitive::kPrimBoolean:
1520 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001521 case Primitive::kPrimByte:
1522 case Primitive::kPrimShort:
1523 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001524 // Processing a Dex `int-to-char' instruction.
1525 locations->SetInAt(0, Location::Any());
1526 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1527 break;
1528
1529 default:
1530 LOG(FATAL) << "Unexpected type conversion from " << input_type
1531 << " to " << result_type;
1532 }
1533 break;
1534
Roland Levillaindff1f282014-11-05 14:15:05 +00001535 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001536 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001537 case Primitive::kPrimBoolean:
1538 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001539 case Primitive::kPrimByte:
1540 case Primitive::kPrimShort:
1541 case Primitive::kPrimInt:
1542 case Primitive::kPrimChar:
1543 // Processing a Dex `int-to-float' instruction.
1544 locations->SetInAt(0, Location::RequiresRegister());
1545 locations->SetOut(Location::RequiresFpuRegister());
1546 break;
1547
1548 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001549 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001550 locations->SetInAt(0, Location::Any());
1551 locations->SetOut(Location::Any());
Roland Levillain6d0e4832014-11-27 18:31:21 +00001552 break;
1553
Roland Levillaincff13742014-11-17 14:32:17 +00001554 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001555 // Processing a Dex `double-to-float' instruction.
1556 locations->SetInAt(0, Location::RequiresFpuRegister());
1557 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001558 break;
1559
1560 default:
1561 LOG(FATAL) << "Unexpected type conversion from " << input_type
1562 << " to " << result_type;
1563 };
1564 break;
1565
Roland Levillaindff1f282014-11-05 14:15:05 +00001566 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001567 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001568 case Primitive::kPrimBoolean:
1569 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001570 case Primitive::kPrimByte:
1571 case Primitive::kPrimShort:
1572 case Primitive::kPrimInt:
1573 case Primitive::kPrimChar:
1574 // Processing a Dex `int-to-double' instruction.
1575 locations->SetInAt(0, Location::RequiresRegister());
1576 locations->SetOut(Location::RequiresFpuRegister());
1577 break;
1578
1579 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001580 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001581 locations->SetInAt(0, Location::Any());
1582 locations->SetOut(Location::Any());
Roland Levillain647b9ed2014-11-27 12:06:00 +00001583 break;
1584
Roland Levillaincff13742014-11-17 14:32:17 +00001585 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001586 // Processing a Dex `float-to-double' instruction.
1587 locations->SetInAt(0, Location::RequiresFpuRegister());
1588 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001589 break;
1590
1591 default:
1592 LOG(FATAL) << "Unexpected type conversion from " << input_type
1593 << " to " << result_type;
1594 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001595 break;
1596
1597 default:
1598 LOG(FATAL) << "Unexpected type conversion from " << input_type
1599 << " to " << result_type;
1600 }
1601}
1602
1603void InstructionCodeGeneratorX86::VisitTypeConversion(HTypeConversion* conversion) {
1604 LocationSummary* locations = conversion->GetLocations();
1605 Location out = locations->Out();
1606 Location in = locations->InAt(0);
1607 Primitive::Type result_type = conversion->GetResultType();
1608 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001609 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001610 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001611 case Primitive::kPrimByte:
1612 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001613 case Primitive::kPrimBoolean:
1614 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001615 case Primitive::kPrimShort:
1616 case Primitive::kPrimInt:
1617 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001618 // Processing a Dex `int-to-byte' instruction.
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001619 if (in.IsRegister()) {
1620 __ movsxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>());
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00001621 } else {
1622 DCHECK(in.GetConstant()->IsIntConstant());
1623 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
1624 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value)));
1625 }
Roland Levillain51d3fc42014-11-13 14:11:42 +00001626 break;
1627
1628 default:
1629 LOG(FATAL) << "Unexpected type conversion from " << input_type
1630 << " to " << result_type;
1631 }
1632 break;
1633
Roland Levillain01a8d712014-11-14 16:27:39 +00001634 case Primitive::kPrimShort:
1635 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001636 case Primitive::kPrimBoolean:
1637 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001638 case Primitive::kPrimByte:
1639 case Primitive::kPrimInt:
1640 case Primitive::kPrimChar:
1641 // Processing a Dex `int-to-short' instruction.
1642 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001643 __ movsxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain01a8d712014-11-14 16:27:39 +00001644 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001645 __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain01a8d712014-11-14 16:27:39 +00001646 } else {
1647 DCHECK(in.GetConstant()->IsIntConstant());
1648 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001649 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value)));
Roland Levillain01a8d712014-11-14 16:27:39 +00001650 }
1651 break;
1652
1653 default:
1654 LOG(FATAL) << "Unexpected type conversion from " << input_type
1655 << " to " << result_type;
1656 }
1657 break;
1658
Roland Levillain946e1432014-11-11 17:35:19 +00001659 case Primitive::kPrimInt:
1660 switch (input_type) {
1661 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001662 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001663 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001664 __ movl(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00001665 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001666 __ movl(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain946e1432014-11-11 17:35:19 +00001667 } else {
1668 DCHECK(in.IsConstant());
1669 DCHECK(in.GetConstant()->IsLongConstant());
1670 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001671 __ movl(out.AsRegister<Register>(), Immediate(static_cast<int32_t>(value)));
Roland Levillain946e1432014-11-11 17:35:19 +00001672 }
1673 break;
1674
Roland Levillain3f8f9362014-12-02 17:45:01 +00001675 case Primitive::kPrimFloat: {
1676 // Processing a Dex `float-to-int' instruction.
1677 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1678 Register output = out.AsRegister<Register>();
1679 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1680 Label done, nan;
1681
1682 __ movl(output, Immediate(kPrimIntMax));
1683 // temp = int-to-float(output)
1684 __ cvtsi2ss(temp, output);
1685 // if input >= temp goto done
1686 __ comiss(input, temp);
1687 __ j(kAboveEqual, &done);
1688 // if input == NaN goto nan
1689 __ j(kUnordered, &nan);
1690 // output = float-to-int-truncate(input)
1691 __ cvttss2si(output, input);
1692 __ jmp(&done);
1693 __ Bind(&nan);
1694 // output = 0
1695 __ xorl(output, output);
1696 __ Bind(&done);
1697 break;
1698 }
1699
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001700 case Primitive::kPrimDouble: {
1701 // Processing a Dex `double-to-int' instruction.
1702 XmmRegister input = in.AsFpuRegister<XmmRegister>();
1703 Register output = out.AsRegister<Register>();
1704 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
1705 Label done, nan;
1706
1707 __ movl(output, Immediate(kPrimIntMax));
1708 // temp = int-to-double(output)
1709 __ cvtsi2sd(temp, output);
1710 // if input >= temp goto done
1711 __ comisd(input, temp);
1712 __ j(kAboveEqual, &done);
1713 // if input == NaN goto nan
1714 __ j(kUnordered, &nan);
1715 // output = double-to-int-truncate(input)
1716 __ cvttsd2si(output, input);
1717 __ jmp(&done);
1718 __ Bind(&nan);
1719 // output = 0
1720 __ xorl(output, output);
1721 __ Bind(&done);
Roland Levillain946e1432014-11-11 17:35:19 +00001722 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001723 }
Roland Levillain946e1432014-11-11 17:35:19 +00001724
1725 default:
1726 LOG(FATAL) << "Unexpected type conversion from " << input_type
1727 << " to " << result_type;
1728 }
1729 break;
1730
Roland Levillaindff1f282014-11-05 14:15:05 +00001731 case Primitive::kPrimLong:
1732 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001733 case Primitive::kPrimBoolean:
1734 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001735 case Primitive::kPrimByte:
1736 case Primitive::kPrimShort:
1737 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001738 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001739 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001740 DCHECK_EQ(out.AsRegisterPairLow<Register>(), EAX);
1741 DCHECK_EQ(out.AsRegisterPairHigh<Register>(), EDX);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001742 DCHECK_EQ(in.AsRegister<Register>(), EAX);
Roland Levillaindff1f282014-11-05 14:15:05 +00001743 __ cdq();
1744 break;
1745
1746 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001747 // Processing a Dex `float-to-long' instruction.
1748 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pF2l)));
Roland Levillain624279f2014-12-04 11:54:28 +00001749 codegen_->RecordPcInfo(conversion, conversion->GetDexPc());
1750 break;
1751
Roland Levillaindff1f282014-11-05 14:15:05 +00001752 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001753 // Processing a Dex `double-to-long' instruction.
1754 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pD2l)));
1755 codegen_->RecordPcInfo(conversion, conversion->GetDexPc());
Roland Levillaindff1f282014-11-05 14:15:05 +00001756 break;
1757
1758 default:
1759 LOG(FATAL) << "Unexpected type conversion from " << input_type
1760 << " to " << result_type;
1761 }
1762 break;
1763
Roland Levillain981e4542014-11-14 11:47:14 +00001764 case Primitive::kPrimChar:
1765 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001766 case Primitive::kPrimBoolean:
1767 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001768 case Primitive::kPrimByte:
1769 case Primitive::kPrimShort:
1770 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001771 // Processing a Dex `Process a Dex `int-to-char'' instruction.
1772 if (in.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001773 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
Roland Levillain981e4542014-11-14 11:47:14 +00001774 } else if (in.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001775 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
Roland Levillain981e4542014-11-14 11:47:14 +00001776 } else {
1777 DCHECK(in.GetConstant()->IsIntConstant());
1778 int32_t value = in.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001779 __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value)));
Roland Levillain981e4542014-11-14 11:47:14 +00001780 }
1781 break;
1782
1783 default:
1784 LOG(FATAL) << "Unexpected type conversion from " << input_type
1785 << " to " << result_type;
1786 }
1787 break;
1788
Roland Levillaindff1f282014-11-05 14:15:05 +00001789 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001790 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001791 case Primitive::kPrimBoolean:
1792 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001793 case Primitive::kPrimByte:
1794 case Primitive::kPrimShort:
1795 case Primitive::kPrimInt:
1796 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001797 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001798 __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00001799 break;
1800
Roland Levillain6d0e4832014-11-27 18:31:21 +00001801 case Primitive::kPrimLong: {
1802 // Processing a Dex `long-to-float' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001803 size_t adjustment = 0;
Roland Levillain6d0e4832014-11-27 18:31:21 +00001804
Roland Levillain232ade02015-04-20 15:14:36 +01001805 // Create stack space for the call to
1806 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstps below.
1807 // TODO: enhance register allocator to ask for stack temporaries.
1808 if (!in.IsDoubleStackSlot() || !out.IsStackSlot()) {
1809 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
1810 __ subl(ESP, Immediate(adjustment));
1811 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00001812
Roland Levillain232ade02015-04-20 15:14:36 +01001813 // Load the value to the FP stack, using temporaries if needed.
1814 PushOntoFPStack(in, 0, adjustment, false, true);
1815
1816 if (out.IsStackSlot()) {
1817 __ fstps(Address(ESP, out.GetStackIndex() + adjustment));
1818 } else {
1819 __ fstps(Address(ESP, 0));
1820 Location stack_temp = Location::StackSlot(0);
1821 codegen_->Move32(out, stack_temp);
1822 }
1823
1824 // Remove the temporary stack space we allocated.
1825 if (adjustment != 0) {
1826 __ addl(ESP, Immediate(adjustment));
1827 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00001828 break;
1829 }
1830
Roland Levillaincff13742014-11-17 14:32:17 +00001831 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001832 // Processing a Dex `double-to-float' instruction.
1833 __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001834 break;
1835
1836 default:
1837 LOG(FATAL) << "Unexpected type conversion from " << input_type
1838 << " to " << result_type;
1839 };
1840 break;
1841
Roland Levillaindff1f282014-11-05 14:15:05 +00001842 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001843 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001844 case Primitive::kPrimBoolean:
1845 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001846 case Primitive::kPrimByte:
1847 case Primitive::kPrimShort:
1848 case Primitive::kPrimInt:
1849 case Primitive::kPrimChar:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001850 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001851 __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00001852 break;
1853
Roland Levillain647b9ed2014-11-27 12:06:00 +00001854 case Primitive::kPrimLong: {
1855 // Processing a Dex `long-to-double' instruction.
Roland Levillain232ade02015-04-20 15:14:36 +01001856 size_t adjustment = 0;
Roland Levillain647b9ed2014-11-27 12:06:00 +00001857
Roland Levillain232ade02015-04-20 15:14:36 +01001858 // Create stack space for the call to
1859 // InstructionCodeGeneratorX86::PushOntoFPStack and/or X86Assembler::fstpl below.
1860 // TODO: enhance register allocator to ask for stack temporaries.
1861 if (!in.IsDoubleStackSlot() || !out.IsDoubleStackSlot()) {
1862 adjustment = Primitive::ComponentSize(Primitive::kPrimLong);
1863 __ subl(ESP, Immediate(adjustment));
1864 }
1865
1866 // Load the value to the FP stack, using temporaries if needed.
1867 PushOntoFPStack(in, 0, adjustment, false, true);
1868
1869 if (out.IsDoubleStackSlot()) {
1870 __ fstpl(Address(ESP, out.GetStackIndex() + adjustment));
1871 } else {
1872 __ fstpl(Address(ESP, 0));
1873 Location stack_temp = Location::DoubleStackSlot(0);
1874 codegen_->Move64(out, stack_temp);
1875 }
1876
1877 // Remove the temporary stack space we allocated.
1878 if (adjustment != 0) {
1879 __ addl(ESP, Immediate(adjustment));
1880 }
Roland Levillain647b9ed2014-11-27 12:06:00 +00001881 break;
1882 }
1883
Roland Levillaincff13742014-11-17 14:32:17 +00001884 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001885 // Processing a Dex `float-to-double' instruction.
1886 __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001887 break;
1888
1889 default:
1890 LOG(FATAL) << "Unexpected type conversion from " << input_type
1891 << " to " << result_type;
1892 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001893 break;
1894
1895 default:
1896 LOG(FATAL) << "Unexpected type conversion from " << input_type
1897 << " to " << result_type;
1898 }
1899}
1900
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001901void LocationsBuilderX86::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001902 LocationSummary* locations =
1903 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001904 switch (add->GetResultType()) {
Mark Mendell09b84632015-02-13 17:48:38 -05001905 case Primitive::kPrimInt: {
1906 locations->SetInAt(0, Location::RequiresRegister());
1907 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
1908 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1909 break;
1910 }
1911
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001912 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001913 locations->SetInAt(0, Location::RequiresRegister());
1914 locations->SetInAt(1, Location::Any());
1915 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001916 break;
1917 }
1918
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001919 case Primitive::kPrimFloat:
1920 case Primitive::kPrimDouble: {
1921 locations->SetInAt(0, Location::RequiresFpuRegister());
Calin Juravle3173c8a2015-02-23 15:53:39 +00001922 locations->SetInAt(1, Location::RequiresFpuRegister());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001923 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001924 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001925 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001926
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001927 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001928 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
1929 break;
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001930 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001931}
1932
1933void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) {
1934 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001935 Location first = locations->InAt(0);
1936 Location second = locations->InAt(1);
Mark Mendell09b84632015-02-13 17:48:38 -05001937 Location out = locations->Out();
1938
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001939 switch (add->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001940 case Primitive::kPrimInt: {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001941 if (second.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05001942 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
1943 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
1944 } else {
1945 __ leal(out.AsRegister<Register>(), Address(
1946 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
1947 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001948 } else if (second.IsConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05001949 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
1950 if (out.AsRegister<Register>() == first.AsRegister<Register>()) {
1951 __ addl(out.AsRegister<Register>(), Immediate(value));
1952 } else {
1953 __ leal(out.AsRegister<Register>(), Address(first.AsRegister<Register>(), value));
1954 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001955 } else {
Mark Mendell09b84632015-02-13 17:48:38 -05001956 DCHECK(first.Equals(locations->Out()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001957 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001958 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001959 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001960 }
1961
1962 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00001963 if (second.IsRegisterPair()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001964 __ addl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
1965 __ adcl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001966 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001967 __ addl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
1968 __ adcl(first.AsRegisterPairHigh<Register>(),
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001969 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00001970 } else {
1971 DCHECK(second.IsConstant()) << second;
1972 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
1973 __ addl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
1974 __ adcl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001975 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001976 break;
1977 }
1978
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001979 case Primitive::kPrimFloat: {
1980 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001981 __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001982 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001983 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001984 }
1985
1986 case Primitive::kPrimDouble: {
1987 if (second.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001988 __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001989 }
1990 break;
1991 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001992
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001993 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001994 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001995 }
1996}
1997
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001998void LocationsBuilderX86::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001999 LocationSummary* locations =
2000 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002001 switch (sub->GetResultType()) {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002002 case Primitive::kPrimInt:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002003 case Primitive::kPrimLong: {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002004 locations->SetInAt(0, Location::RequiresRegister());
2005 locations->SetInAt(1, Location::Any());
2006 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002007 break;
2008 }
Calin Juravle11351682014-10-23 15:38:15 +01002009 case Primitive::kPrimFloat:
2010 case Primitive::kPrimDouble: {
2011 locations->SetInAt(0, Location::RequiresFpuRegister());
2012 locations->SetInAt(1, Location::RequiresFpuRegister());
2013 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002014 break;
Calin Juravle11351682014-10-23 15:38:15 +01002015 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002016
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002017 default:
Calin Juravle11351682014-10-23 15:38:15 +01002018 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002019 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002020}
2021
2022void InstructionCodeGeneratorX86::VisitSub(HSub* sub) {
2023 LocationSummary* locations = sub->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002024 Location first = locations->InAt(0);
2025 Location second = locations->InAt(1);
Calin Juravle11351682014-10-23 15:38:15 +01002026 DCHECK(first.Equals(locations->Out()));
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002027 switch (sub->GetResultType()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002028 case Primitive::kPrimInt: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002029 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002030 __ subl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002031 } else if (second.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002032 __ subl(first.AsRegister<Register>(),
2033 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002034 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002035 __ subl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002036 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002037 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002038 }
2039
2040 case Primitive::kPrimLong: {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00002041 if (second.IsRegisterPair()) {
Calin Juravle11351682014-10-23 15:38:15 +01002042 __ subl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
2043 __ sbbl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002044 } else if (second.IsDoubleStackSlot()) {
Calin Juravle11351682014-10-23 15:38:15 +01002045 __ subl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002046 __ sbbl(first.AsRegisterPairHigh<Register>(),
2047 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002048 } else {
2049 DCHECK(second.IsConstant()) << second;
2050 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2051 __ subl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value)));
2052 __ sbbl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value)));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002053 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002054 break;
2055 }
2056
Calin Juravle11351682014-10-23 15:38:15 +01002057 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002058 __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002059 break;
Calin Juravle11351682014-10-23 15:38:15 +01002060 }
2061
2062 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002063 __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle11351682014-10-23 15:38:15 +01002064 break;
2065 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002066
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002067 default:
Calin Juravle11351682014-10-23 15:38:15 +01002068 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002069 }
2070}
2071
Calin Juravle34bacdf2014-10-07 20:23:36 +01002072void LocationsBuilderX86::VisitMul(HMul* mul) {
2073 LocationSummary* locations =
2074 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2075 switch (mul->GetResultType()) {
2076 case Primitive::kPrimInt:
2077 locations->SetInAt(0, Location::RequiresRegister());
2078 locations->SetInAt(1, Location::Any());
2079 locations->SetOut(Location::SameAsFirstInput());
2080 break;
2081 case Primitive::kPrimLong: {
2082 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002083 locations->SetInAt(1, Location::Any());
2084 locations->SetOut(Location::SameAsFirstInput());
2085 // Needed for imul on 32bits with 64bits output.
2086 locations->AddTemp(Location::RegisterLocation(EAX));
2087 locations->AddTemp(Location::RegisterLocation(EDX));
2088 break;
2089 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002090 case Primitive::kPrimFloat:
2091 case Primitive::kPrimDouble: {
2092 locations->SetInAt(0, Location::RequiresFpuRegister());
2093 locations->SetInAt(1, Location::RequiresFpuRegister());
2094 locations->SetOut(Location::SameAsFirstInput());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002095 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002096 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002097
2098 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002099 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002100 }
2101}
2102
2103void InstructionCodeGeneratorX86::VisitMul(HMul* mul) {
2104 LocationSummary* locations = mul->GetLocations();
2105 Location first = locations->InAt(0);
2106 Location second = locations->InAt(1);
2107 DCHECK(first.Equals(locations->Out()));
2108
2109 switch (mul->GetResultType()) {
2110 case Primitive::kPrimInt: {
2111 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002112 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002113 } else if (second.IsConstant()) {
2114 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002115 __ imull(first.AsRegister<Register>(), imm);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002116 } else {
2117 DCHECK(second.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002118 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Calin Juravle34bacdf2014-10-07 20:23:36 +01002119 }
2120 break;
2121 }
2122
2123 case Primitive::kPrimLong: {
Calin Juravle34bacdf2014-10-07 20:23:36 +01002124 Register in1_hi = first.AsRegisterPairHigh<Register>();
2125 Register in1_lo = first.AsRegisterPairLow<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002126 Register eax = locations->GetTemp(0).AsRegister<Register>();
2127 Register edx = locations->GetTemp(1).AsRegister<Register>();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002128
2129 DCHECK_EQ(EAX, eax);
2130 DCHECK_EQ(EDX, edx);
2131
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002132 // input: in1 - 64 bits, in2 - 64 bits.
Calin Juravle34bacdf2014-10-07 20:23:36 +01002133 // output: in1
2134 // formula: in1.hi : in1.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2135 // parts: in1.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2136 // parts: in1.lo = (in1.lo * in2.lo)[31:0]
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002137 if (second.IsConstant()) {
2138 DCHECK(second.GetConstant()->IsLongConstant());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002139
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002140 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
2141 int32_t low_value = Low32Bits(value);
2142 int32_t high_value = High32Bits(value);
2143 Immediate low(low_value);
2144 Immediate high(high_value);
2145
2146 __ movl(eax, high);
2147 // eax <- in1.lo * in2.hi
2148 __ imull(eax, in1_lo);
2149 // in1.hi <- in1.hi * in2.lo
2150 __ imull(in1_hi, low);
2151 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2152 __ addl(in1_hi, eax);
2153 // move in2_lo to eax to prepare for double precision
2154 __ movl(eax, low);
2155 // edx:eax <- in1.lo * in2.lo
2156 __ mull(in1_lo);
2157 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2158 __ addl(in1_hi, edx);
2159 // in1.lo <- (in1.lo * in2.lo)[31:0];
2160 __ movl(in1_lo, eax);
2161 } else if (second.IsRegisterPair()) {
2162 Register in2_hi = second.AsRegisterPairHigh<Register>();
2163 Register in2_lo = second.AsRegisterPairLow<Register>();
2164
2165 __ movl(eax, in2_hi);
2166 // eax <- in1.lo * in2.hi
2167 __ imull(eax, in1_lo);
2168 // in1.hi <- in1.hi * in2.lo
2169 __ imull(in1_hi, in2_lo);
2170 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2171 __ addl(in1_hi, eax);
2172 // move in1_lo to eax to prepare for double precision
2173 __ movl(eax, in1_lo);
2174 // edx:eax <- in1.lo * in2.lo
2175 __ mull(in2_lo);
2176 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2177 __ addl(in1_hi, edx);
2178 // in1.lo <- (in1.lo * in2.lo)[31:0];
2179 __ movl(in1_lo, eax);
2180 } else {
2181 DCHECK(second.IsDoubleStackSlot()) << second;
2182 Address in2_hi(ESP, second.GetHighStackIndex(kX86WordSize));
2183 Address in2_lo(ESP, second.GetStackIndex());
2184
2185 __ movl(eax, in2_hi);
2186 // eax <- in1.lo * in2.hi
2187 __ imull(eax, in1_lo);
2188 // in1.hi <- in1.hi * in2.lo
2189 __ imull(in1_hi, in2_lo);
2190 // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2191 __ addl(in1_hi, eax);
2192 // move in1_lo to eax to prepare for double precision
2193 __ movl(eax, in1_lo);
2194 // edx:eax <- in1.lo * in2.lo
2195 __ mull(in2_lo);
2196 // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2197 __ addl(in1_hi, edx);
2198 // in1.lo <- (in1.lo * in2.lo)[31:0];
2199 __ movl(in1_lo, eax);
2200 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002201
2202 break;
2203 }
2204
Calin Juravleb5bfa962014-10-21 18:02:24 +01002205 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002206 __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002207 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002208 }
2209
2210 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002211 __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravleb5bfa962014-10-21 18:02:24 +01002212 break;
2213 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002214
2215 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002216 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002217 }
2218}
2219
Roland Levillain232ade02015-04-20 15:14:36 +01002220void InstructionCodeGeneratorX86::PushOntoFPStack(Location source,
2221 uint32_t temp_offset,
2222 uint32_t stack_adjustment,
2223 bool is_fp,
2224 bool is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002225 if (source.IsStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01002226 DCHECK(!is_wide);
2227 if (is_fp) {
2228 __ flds(Address(ESP, source.GetStackIndex() + stack_adjustment));
2229 } else {
2230 __ filds(Address(ESP, source.GetStackIndex() + stack_adjustment));
2231 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002232 } else if (source.IsDoubleStackSlot()) {
Roland Levillain232ade02015-04-20 15:14:36 +01002233 DCHECK(is_wide);
2234 if (is_fp) {
2235 __ fldl(Address(ESP, source.GetStackIndex() + stack_adjustment));
2236 } else {
2237 __ fildl(Address(ESP, source.GetStackIndex() + stack_adjustment));
2238 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002239 } else {
2240 // Write the value to the temporary location on the stack and load to FP stack.
Roland Levillain232ade02015-04-20 15:14:36 +01002241 if (!is_wide) {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002242 Location stack_temp = Location::StackSlot(temp_offset);
2243 codegen_->Move32(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01002244 if (is_fp) {
2245 __ flds(Address(ESP, temp_offset));
2246 } else {
2247 __ filds(Address(ESP, temp_offset));
2248 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002249 } else {
2250 Location stack_temp = Location::DoubleStackSlot(temp_offset);
2251 codegen_->Move64(stack_temp, source);
Roland Levillain232ade02015-04-20 15:14:36 +01002252 if (is_fp) {
2253 __ fldl(Address(ESP, temp_offset));
2254 } else {
2255 __ fildl(Address(ESP, temp_offset));
2256 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002257 }
2258 }
2259}
2260
2261void InstructionCodeGeneratorX86::GenerateRemFP(HRem *rem) {
2262 Primitive::Type type = rem->GetResultType();
2263 bool is_float = type == Primitive::kPrimFloat;
2264 size_t elem_size = Primitive::ComponentSize(type);
2265 LocationSummary* locations = rem->GetLocations();
2266 Location first = locations->InAt(0);
2267 Location second = locations->InAt(1);
2268 Location out = locations->Out();
2269
2270 // Create stack space for 2 elements.
2271 // TODO: enhance register allocator to ask for stack temporaries.
2272 __ subl(ESP, Immediate(2 * elem_size));
2273
2274 // Load the values to the FP stack in reverse order, using temporaries if needed.
Roland Levillain232ade02015-04-20 15:14:36 +01002275 const bool is_wide = !is_float;
2276 PushOntoFPStack(second, elem_size, 2 * elem_size, /* is_fp */ true, is_wide);
2277 PushOntoFPStack(first, 0, 2 * elem_size, /* is_fp */ true, is_wide);
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002278
2279 // Loop doing FPREM until we stabilize.
2280 Label retry;
2281 __ Bind(&retry);
2282 __ fprem();
2283
2284 // Move FP status to AX.
2285 __ fstsw();
2286
2287 // And see if the argument reduction is complete. This is signaled by the
2288 // C2 FPU flag bit set to 0.
2289 __ andl(EAX, Immediate(kC2ConditionMask));
2290 __ j(kNotEqual, &retry);
2291
2292 // We have settled on the final value. Retrieve it into an XMM register.
2293 // Store FP top of stack to real stack.
2294 if (is_float) {
2295 __ fsts(Address(ESP, 0));
2296 } else {
2297 __ fstl(Address(ESP, 0));
2298 }
2299
2300 // Pop the 2 items from the FP stack.
2301 __ fucompp();
2302
2303 // Load the value from the stack into an XMM register.
2304 DCHECK(out.IsFpuRegister()) << out;
2305 if (is_float) {
2306 __ movss(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
2307 } else {
2308 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0));
2309 }
2310
2311 // And remove the temporary stack space we allocated.
2312 __ addl(ESP, Immediate(2 * elem_size));
2313}
2314
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002315
2316void InstructionCodeGeneratorX86::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2317 DCHECK(instruction->IsDiv() || instruction->IsRem());
2318
2319 LocationSummary* locations = instruction->GetLocations();
2320 DCHECK(locations->InAt(1).IsConstant());
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002321 DCHECK(locations->InAt(1).GetConstant()->IsIntConstant());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002322
2323 Register out_register = locations->Out().AsRegister<Register>();
2324 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002325 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002326
2327 DCHECK(imm == 1 || imm == -1);
2328
2329 if (instruction->IsRem()) {
2330 __ xorl(out_register, out_register);
2331 } else {
2332 __ movl(out_register, input_register);
2333 if (imm == -1) {
2334 __ negl(out_register);
2335 }
2336 }
2337}
2338
2339
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002340void InstructionCodeGeneratorX86::DivByPowerOfTwo(HDiv* instruction) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002341 LocationSummary* locations = instruction->GetLocations();
2342
2343 Register out_register = locations->Out().AsRegister<Register>();
2344 Register input_register = locations->InAt(0).AsRegister<Register>();
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002345 int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002346
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002347 DCHECK(IsPowerOfTwo(std::abs(imm)));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002348 Register num = locations->GetTemp(0).AsRegister<Register>();
2349
2350 __ leal(num, Address(input_register, std::abs(imm) - 1));
2351 __ testl(input_register, input_register);
2352 __ cmovl(kGreaterEqual, num, input_register);
2353 int shift = CTZ(imm);
2354 __ sarl(num, Immediate(shift));
2355
2356 if (imm < 0) {
2357 __ negl(num);
2358 }
2359
2360 __ movl(out_register, num);
2361}
2362
2363void InstructionCodeGeneratorX86::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2364 DCHECK(instruction->IsDiv() || instruction->IsRem());
2365
2366 LocationSummary* locations = instruction->GetLocations();
2367 int imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
2368
2369 Register eax = locations->InAt(0).AsRegister<Register>();
2370 Register out = locations->Out().AsRegister<Register>();
2371 Register num;
2372 Register edx;
2373
2374 if (instruction->IsDiv()) {
2375 edx = locations->GetTemp(0).AsRegister<Register>();
2376 num = locations->GetTemp(1).AsRegister<Register>();
2377 } else {
2378 edx = locations->Out().AsRegister<Register>();
2379 num = locations->GetTemp(0).AsRegister<Register>();
2380 }
2381
2382 DCHECK_EQ(EAX, eax);
2383 DCHECK_EQ(EDX, edx);
2384 if (instruction->IsDiv()) {
2385 DCHECK_EQ(EAX, out);
2386 } else {
2387 DCHECK_EQ(EDX, out);
2388 }
2389
2390 int64_t magic;
2391 int shift;
2392 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
2393
2394 Label ndiv;
2395 Label end;
2396 // If numerator is 0, the result is 0, no computation needed.
2397 __ testl(eax, eax);
2398 __ j(kNotEqual, &ndiv);
2399
2400 __ xorl(out, out);
2401 __ jmp(&end);
2402
2403 __ Bind(&ndiv);
2404
2405 // Save the numerator.
2406 __ movl(num, eax);
2407
2408 // EAX = magic
2409 __ movl(eax, Immediate(magic));
2410
2411 // EDX:EAX = magic * numerator
2412 __ imull(num);
2413
2414 if (imm > 0 && magic < 0) {
2415 // EDX += num
2416 __ addl(edx, num);
2417 } else if (imm < 0 && magic > 0) {
2418 __ subl(edx, num);
2419 }
2420
2421 // Shift if needed.
2422 if (shift != 0) {
2423 __ sarl(edx, Immediate(shift));
2424 }
2425
2426 // EDX += 1 if EDX < 0
2427 __ movl(eax, edx);
2428 __ shrl(edx, Immediate(31));
2429 __ addl(edx, eax);
2430
2431 if (instruction->IsRem()) {
2432 __ movl(eax, num);
2433 __ imull(edx, Immediate(imm));
2434 __ subl(eax, edx);
2435 __ movl(edx, eax);
2436 } else {
2437 __ movl(eax, edx);
2438 }
2439 __ Bind(&end);
2440}
2441
Calin Juravlebacfec32014-11-14 15:54:36 +00002442void InstructionCodeGeneratorX86::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2443 DCHECK(instruction->IsDiv() || instruction->IsRem());
2444
2445 LocationSummary* locations = instruction->GetLocations();
2446 Location out = locations->Out();
2447 Location first = locations->InAt(0);
2448 Location second = locations->InAt(1);
2449 bool is_div = instruction->IsDiv();
2450
2451 switch (instruction->GetResultType()) {
2452 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002453 DCHECK_EQ(EAX, first.AsRegister<Register>());
2454 DCHECK_EQ(is_div ? EAX : EDX, out.AsRegister<Register>());
Calin Juravlebacfec32014-11-14 15:54:36 +00002455
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002456 if (instruction->InputAt(1)->IsIntConstant()) {
2457 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002458
2459 if (imm == 0) {
2460 // Do not generate anything for 0. DivZeroCheck would forbid any generated code.
2461 } else if (imm == 1 || imm == -1) {
2462 DivRemOneOrMinusOne(instruction);
2463 } else if (is_div && IsPowerOfTwo(std::abs(imm))) {
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002464 DivByPowerOfTwo(instruction->AsDiv());
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002465 } else {
2466 DCHECK(imm <= -2 || imm >= 2);
2467 GenerateDivRemWithAnyConstant(instruction);
2468 }
2469 } else {
2470 SlowPathCodeX86* slow_path =
Roland Levillain199f3362014-11-27 17:15:16 +00002471 new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86(out.AsRegister<Register>(),
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002472 is_div);
2473 codegen_->AddSlowPath(slow_path);
Calin Juravlebacfec32014-11-14 15:54:36 +00002474
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002475 Register second_reg = second.AsRegister<Register>();
2476 // 0x80000000/-1 triggers an arithmetic exception!
2477 // Dividing by -1 is actually negation and -0x800000000 = 0x80000000 so
2478 // it's safe to just use negl instead of more complex comparisons.
Calin Juravlebacfec32014-11-14 15:54:36 +00002479
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002480 __ cmpl(second_reg, Immediate(-1));
2481 __ j(kEqual, slow_path->GetEntryLabel());
Calin Juravlebacfec32014-11-14 15:54:36 +00002482
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002483 // edx:eax <- sign-extended of eax
2484 __ cdq();
2485 // eax = quotient, edx = remainder
2486 __ idivl(second_reg);
2487 __ Bind(slow_path->GetExitLabel());
2488 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002489 break;
2490 }
2491
2492 case Primitive::kPrimLong: {
2493 InvokeRuntimeCallingConvention calling_convention;
2494 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2495 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2496 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2497 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2498 DCHECK_EQ(EAX, out.AsRegisterPairLow<Register>());
2499 DCHECK_EQ(EDX, out.AsRegisterPairHigh<Register>());
2500
2501 if (is_div) {
2502 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLdiv)));
2503 } else {
2504 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLmod)));
2505 }
2506 uint32_t dex_pc = is_div
2507 ? instruction->AsDiv()->GetDexPc()
2508 : instruction->AsRem()->GetDexPc();
2509 codegen_->RecordPcInfo(instruction, dex_pc);
2510
2511 break;
2512 }
2513
2514 default:
2515 LOG(FATAL) << "Unexpected type for GenerateDivRemIntegral " << instruction->GetResultType();
2516 }
2517}
2518
Calin Juravle7c4954d2014-10-28 16:57:40 +00002519void LocationsBuilderX86::VisitDiv(HDiv* div) {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002520 LocationSummary::CallKind call_kind = (div->GetResultType() == Primitive::kPrimLong)
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002521 ? LocationSummary::kCall
2522 : LocationSummary::kNoCall;
2523 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2524
Calin Juravle7c4954d2014-10-28 16:57:40 +00002525 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002526 case Primitive::kPrimInt: {
2527 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002528 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Calin Juravled0d48522014-11-04 16:40:20 +00002529 locations->SetOut(Location::SameAsFirstInput());
2530 // Intel uses edx:eax as the dividend.
2531 locations->AddTemp(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002532 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2533 // which enforces results to be in EAX and EDX, things are simpler if we use EAX also as
2534 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002535 if (div->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002536 locations->AddTemp(Location::RequiresRegister());
2537 }
Calin Juravled0d48522014-11-04 16:40:20 +00002538 break;
2539 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002540 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002541 InvokeRuntimeCallingConvention calling_convention;
2542 locations->SetInAt(0, Location::RegisterPairLocation(
2543 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2544 locations->SetInAt(1, Location::RegisterPairLocation(
2545 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2546 // Runtime helper puts the result in EAX, EDX.
2547 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002548 break;
2549 }
2550 case Primitive::kPrimFloat:
2551 case Primitive::kPrimDouble: {
2552 locations->SetInAt(0, Location::RequiresFpuRegister());
2553 locations->SetInAt(1, Location::RequiresFpuRegister());
2554 locations->SetOut(Location::SameAsFirstInput());
2555 break;
2556 }
2557
2558 default:
2559 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2560 }
2561}
2562
2563void InstructionCodeGeneratorX86::VisitDiv(HDiv* div) {
2564 LocationSummary* locations = div->GetLocations();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002565 Location out = locations->Out();
Calin Juravle7c4954d2014-10-28 16:57:40 +00002566 Location first = locations->InAt(0);
2567 Location second = locations->InAt(1);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002568
2569 switch (div->GetResultType()) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002570 case Primitive::kPrimInt:
Calin Juravle7c4954d2014-10-28 16:57:40 +00002571 case Primitive::kPrimLong: {
Calin Juravlebacfec32014-11-14 15:54:36 +00002572 GenerateDivRemIntegral(div);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002573 break;
2574 }
2575
2576 case Primitive::kPrimFloat: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002577 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002578 __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002579 break;
2580 }
2581
2582 case Primitive::kPrimDouble: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002583 DCHECK(first.Equals(out));
Roland Levillain271ab9c2014-11-27 15:23:57 +00002584 __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002585 break;
2586 }
2587
2588 default:
2589 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2590 }
2591}
2592
Calin Juravlebacfec32014-11-14 15:54:36 +00002593void LocationsBuilderX86::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002594 Primitive::Type type = rem->GetResultType();
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002595
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00002596 LocationSummary::CallKind call_kind = (rem->GetResultType() == Primitive::kPrimLong)
2597 ? LocationSummary::kCall
2598 : LocationSummary::kNoCall;
2599 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
Calin Juravlebacfec32014-11-14 15:54:36 +00002600
Calin Juravled2ec87d2014-12-08 14:24:46 +00002601 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002602 case Primitive::kPrimInt: {
2603 locations->SetInAt(0, Location::RegisterLocation(EAX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002604 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Calin Juravlebacfec32014-11-14 15:54:36 +00002605 locations->SetOut(Location::RegisterLocation(EDX));
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002606 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2607 // which enforces results to be in EAX and EDX, things are simpler if we use EDX also as
2608 // output and request another temp.
Guillaume Sanchezb19930c2015-04-09 21:12:15 +01002609 if (rem->InputAt(1)->IsIntConstant()) {
Guillaume Sanchez0f88e872015-03-30 17:55:45 +01002610 locations->AddTemp(Location::RequiresRegister());
2611 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002612 break;
2613 }
2614 case Primitive::kPrimLong: {
2615 InvokeRuntimeCallingConvention calling_convention;
2616 locations->SetInAt(0, Location::RegisterPairLocation(
2617 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2618 locations->SetInAt(1, Location::RegisterPairLocation(
2619 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2620 // Runtime helper puts the result in EAX, EDX.
2621 locations->SetOut(Location::RegisterPairLocation(EAX, EDX));
2622 break;
2623 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002624 case Primitive::kPrimDouble:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002625 case Primitive::kPrimFloat: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002626 locations->SetInAt(0, Location::Any());
2627 locations->SetInAt(1, Location::Any());
2628 locations->SetOut(Location::RequiresFpuRegister());
2629 locations->AddTemp(Location::RegisterLocation(EAX));
Calin Juravlebacfec32014-11-14 15:54:36 +00002630 break;
2631 }
2632
2633 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002634 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002635 }
2636}
2637
2638void InstructionCodeGeneratorX86::VisitRem(HRem* rem) {
2639 Primitive::Type type = rem->GetResultType();
2640 switch (type) {
2641 case Primitive::kPrimInt:
2642 case Primitive::kPrimLong: {
2643 GenerateDivRemIntegral(rem);
2644 break;
2645 }
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002646 case Primitive::kPrimFloat:
Calin Juravlebacfec32014-11-14 15:54:36 +00002647 case Primitive::kPrimDouble: {
Mark Mendell24f2dfa2015-01-14 19:51:45 -05002648 GenerateRemFP(rem);
Calin Juravlebacfec32014-11-14 15:54:36 +00002649 break;
2650 }
2651 default:
2652 LOG(FATAL) << "Unexpected rem type " << type;
2653 }
2654}
2655
Calin Juravled0d48522014-11-04 16:40:20 +00002656void LocationsBuilderX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2657 LocationSummary* locations =
2658 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002659 switch (instruction->GetType()) {
2660 case Primitive::kPrimInt: {
2661 locations->SetInAt(0, Location::Any());
2662 break;
2663 }
2664 case Primitive::kPrimLong: {
2665 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
2666 if (!instruction->IsConstant()) {
2667 locations->AddTemp(Location::RequiresRegister());
2668 }
2669 break;
2670 }
2671 default:
2672 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2673 }
Calin Juravled0d48522014-11-04 16:40:20 +00002674 if (instruction->HasUses()) {
2675 locations->SetOut(Location::SameAsFirstInput());
2676 }
2677}
2678
2679void InstructionCodeGeneratorX86::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2680 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86(instruction);
2681 codegen_->AddSlowPath(slow_path);
2682
2683 LocationSummary* locations = instruction->GetLocations();
2684 Location value = locations->InAt(0);
2685
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002686 switch (instruction->GetType()) {
2687 case Primitive::kPrimInt: {
2688 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002689 __ testl(value.AsRegister<Register>(), value.AsRegister<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002690 __ j(kEqual, slow_path->GetEntryLabel());
2691 } else if (value.IsStackSlot()) {
2692 __ cmpl(Address(ESP, value.GetStackIndex()), Immediate(0));
2693 __ j(kEqual, slow_path->GetEntryLabel());
2694 } else {
2695 DCHECK(value.IsConstant()) << value;
2696 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2697 __ jmp(slow_path->GetEntryLabel());
2698 }
2699 }
2700 break;
Calin Juravled0d48522014-11-04 16:40:20 +00002701 }
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002702 case Primitive::kPrimLong: {
2703 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002704 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002705 __ movl(temp, value.AsRegisterPairLow<Register>());
2706 __ orl(temp, value.AsRegisterPairHigh<Register>());
2707 __ j(kEqual, slow_path->GetEntryLabel());
2708 } else {
2709 DCHECK(value.IsConstant()) << value;
2710 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2711 __ jmp(slow_path->GetEntryLabel());
2712 }
2713 }
2714 break;
2715 }
2716 default:
2717 LOG(FATAL) << "Unexpected type for HDivZeroCheck" << instruction->GetType();
Calin Juravled0d48522014-11-04 16:40:20 +00002718 }
Calin Juravled0d48522014-11-04 16:40:20 +00002719}
2720
Calin Juravle9aec02f2014-11-18 23:06:35 +00002721void LocationsBuilderX86::HandleShift(HBinaryOperation* op) {
2722 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2723
2724 LocationSummary* locations =
2725 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
2726
2727 switch (op->GetResultType()) {
2728 case Primitive::kPrimInt: {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002729 locations->SetInAt(0, Location::RequiresRegister());
2730 // The shift count needs to be in CL.
Calin Juravle9aec02f2014-11-18 23:06:35 +00002731 locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, op->InputAt(1)));
2732 locations->SetOut(Location::SameAsFirstInput());
2733 break;
2734 }
2735 case Primitive::kPrimLong: {
2736 locations->SetInAt(0, Location::RequiresRegister());
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002737 // The shift count needs to be in CL.
2738 locations->SetInAt(1, Location::RegisterLocation(ECX));
Calin Juravle9aec02f2014-11-18 23:06:35 +00002739 locations->SetOut(Location::SameAsFirstInput());
2740 break;
2741 }
2742 default:
2743 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
2744 }
2745}
2746
2747void InstructionCodeGeneratorX86::HandleShift(HBinaryOperation* op) {
2748 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2749
2750 LocationSummary* locations = op->GetLocations();
2751 Location first = locations->InAt(0);
2752 Location second = locations->InAt(1);
2753 DCHECK(first.Equals(locations->Out()));
2754
2755 switch (op->GetResultType()) {
2756 case Primitive::kPrimInt: {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002757 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002758 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002759 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002760 DCHECK_EQ(ECX, second_reg);
2761 if (op->IsShl()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002762 __ shll(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002763 } else if (op->IsShr()) {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002764 __ sarl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002765 } else {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002766 __ shrl(first_reg, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002767 }
2768 } else {
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002769 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue);
2770 if (op->IsShl()) {
2771 __ shll(first_reg, imm);
2772 } else if (op->IsShr()) {
2773 __ sarl(first_reg, imm);
2774 } else {
2775 __ shrl(first_reg, imm);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002776 }
2777 }
2778 break;
2779 }
Roland Levillainf9aac1e2015-04-10 18:12:48 +00002780 case Primitive::kPrimLong: {
2781 Register second_reg = second.AsRegister<Register>();
2782 DCHECK_EQ(ECX, second_reg);
2783 if (op->IsShl()) {
2784 GenerateShlLong(first, second_reg);
2785 } else if (op->IsShr()) {
2786 GenerateShrLong(first, second_reg);
2787 } else {
2788 GenerateUShrLong(first, second_reg);
2789 }
2790 break;
2791 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00002792 default:
2793 LOG(FATAL) << "Unexpected op type " << op->GetResultType();
2794 }
2795}
2796
2797void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) {
2798 Label done;
2799 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter);
2800 __ shll(loc.AsRegisterPairLow<Register>(), shifter);
2801 __ testl(shifter, Immediate(32));
2802 __ j(kEqual, &done);
2803 __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>());
2804 __ movl(loc.AsRegisterPairLow<Register>(), Immediate(0));
2805 __ Bind(&done);
2806}
2807
2808void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) {
2809 Label done;
2810 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
2811 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter);
2812 __ testl(shifter, Immediate(32));
2813 __ j(kEqual, &done);
2814 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
2815 __ sarl(loc.AsRegisterPairHigh<Register>(), Immediate(31));
2816 __ Bind(&done);
2817}
2818
2819void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) {
2820 Label done;
2821 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter);
2822 __ shrl(loc.AsRegisterPairHigh<Register>(), shifter);
2823 __ testl(shifter, Immediate(32));
2824 __ j(kEqual, &done);
2825 __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>());
2826 __ movl(loc.AsRegisterPairHigh<Register>(), Immediate(0));
2827 __ Bind(&done);
2828}
2829
2830void LocationsBuilderX86::VisitShl(HShl* shl) {
2831 HandleShift(shl);
2832}
2833
2834void InstructionCodeGeneratorX86::VisitShl(HShl* shl) {
2835 HandleShift(shl);
2836}
2837
2838void LocationsBuilderX86::VisitShr(HShr* shr) {
2839 HandleShift(shr);
2840}
2841
2842void InstructionCodeGeneratorX86::VisitShr(HShr* shr) {
2843 HandleShift(shr);
2844}
2845
2846void LocationsBuilderX86::VisitUShr(HUShr* ushr) {
2847 HandleShift(ushr);
2848}
2849
2850void InstructionCodeGeneratorX86::VisitUShr(HUShr* ushr) {
2851 HandleShift(ushr);
2852}
2853
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002854void LocationsBuilderX86::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002855 LocationSummary* locations =
2856 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002857 locations->SetOut(Location::RegisterLocation(EAX));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002858 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002859 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2860 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002861}
2862
2863void InstructionCodeGeneratorX86::VisitNewInstance(HNewInstance* instruction) {
2864 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002865 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002866 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex()));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002867
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002868 __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint())));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002869
Nicolas Geoffray39468442014-09-02 15:17:15 +01002870 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002871 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002872}
2873
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002874void LocationsBuilderX86::VisitNewArray(HNewArray* instruction) {
2875 LocationSummary* locations =
2876 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2877 locations->SetOut(Location::RegisterLocation(EAX));
2878 InvokeRuntimeCallingConvention calling_convention;
2879 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002880 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
2881 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002882}
2883
2884void InstructionCodeGeneratorX86::VisitNewArray(HNewArray* instruction) {
2885 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002886 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002887 __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex()));
2888
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002889 __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint())));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002890
2891 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2892 DCHECK(!codegen_->IsLeafMethod());
2893}
2894
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002895void LocationsBuilderX86::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002896 LocationSummary* locations =
2897 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002898 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2899 if (location.IsStackSlot()) {
2900 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2901 } else if (location.IsDoubleStackSlot()) {
2902 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002903 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002904 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002905}
2906
2907void InstructionCodeGeneratorX86::VisitParameterValue(HParameterValue* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002908 UNUSED(instruction);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002909}
2910
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002911void LocationsBuilderX86::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002912 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002913 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002914 locations->SetInAt(0, Location::RequiresRegister());
2915 locations->SetOut(Location::SameAsFirstInput());
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002916}
2917
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002918void InstructionCodeGeneratorX86::VisitNot(HNot* not_) {
2919 LocationSummary* locations = not_->GetLocations();
Roland Levillain70566432014-10-24 16:20:17 +01002920 Location in = locations->InAt(0);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002921 Location out = locations->Out();
Roland Levillain70566432014-10-24 16:20:17 +01002922 DCHECK(in.Equals(out));
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002923 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002924 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002925 __ notl(out.AsRegister<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002926 break;
2927
2928 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01002929 __ notl(out.AsRegisterPairLow<Register>());
2930 __ notl(out.AsRegisterPairHigh<Register>());
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002931 break;
2932
2933 default:
2934 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2935 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002936}
2937
David Brazdil66d126e2015-04-03 16:02:44 +01002938void LocationsBuilderX86::VisitBooleanNot(HBooleanNot* bool_not) {
2939 LocationSummary* locations =
2940 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
2941 locations->SetInAt(0, Location::RequiresRegister());
2942 locations->SetOut(Location::SameAsFirstInput());
2943}
2944
2945void InstructionCodeGeneratorX86::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01002946 LocationSummary* locations = bool_not->GetLocations();
2947 Location in = locations->InAt(0);
2948 Location out = locations->Out();
2949 DCHECK(in.Equals(out));
2950 __ xorl(out.AsRegister<Register>(), Immediate(1));
2951}
2952
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002953void LocationsBuilderX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002954 LocationSummary* locations =
2955 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00002956 switch (compare->InputAt(0)->GetType()) {
2957 case Primitive::kPrimLong: {
2958 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravleddb7df22014-11-25 20:56:51 +00002959 locations->SetInAt(1, Location::Any());
2960 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2961 break;
2962 }
2963 case Primitive::kPrimFloat:
2964 case Primitive::kPrimDouble: {
2965 locations->SetInAt(0, Location::RequiresFpuRegister());
2966 locations->SetInAt(1, Location::RequiresFpuRegister());
2967 locations->SetOut(Location::RequiresRegister());
2968 break;
2969 }
2970 default:
2971 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
2972 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002973}
2974
2975void InstructionCodeGeneratorX86::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002976 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002977 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00002978 Location left = locations->InAt(0);
2979 Location right = locations->InAt(1);
2980
2981 Label less, greater, done;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002982 switch (compare->InputAt(0)->GetType()) {
2983 case Primitive::kPrimLong: {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002984 Register left_low = left.AsRegisterPairLow<Register>();
2985 Register left_high = left.AsRegisterPairHigh<Register>();
2986 int32_t val_low = 0;
2987 int32_t val_high = 0;
2988 bool right_is_const = false;
2989
2990 if (right.IsConstant()) {
2991 DCHECK(right.GetConstant()->IsLongConstant());
2992 right_is_const = true;
2993 int64_t val = right.GetConstant()->AsLongConstant()->GetValue();
2994 val_low = Low32Bits(val);
2995 val_high = High32Bits(val);
2996 }
2997
Calin Juravleddb7df22014-11-25 20:56:51 +00002998 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04002999 __ cmpl(left_high, right.AsRegisterPairHigh<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003000 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003001 __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize)));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003002 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003003 DCHECK(right_is_const) << right;
3004 if (val_high == 0) {
3005 __ testl(left_high, left_high);
3006 } else {
3007 __ cmpl(left_high, Immediate(val_high));
3008 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003009 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003010 __ j(kLess, &less); // Signed compare.
3011 __ j(kGreater, &greater); // Signed compare.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003012 if (right.IsRegisterPair()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003013 __ cmpl(left_low, right.AsRegisterPairLow<Register>());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003014 } else if (right.IsDoubleStackSlot()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003015 __ cmpl(left_low, Address(ESP, right.GetStackIndex()));
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003016 } else {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003017 DCHECK(right_is_const) << right;
3018 if (val_low == 0) {
3019 __ testl(left_low, left_low);
3020 } else {
3021 __ cmpl(left_low, Immediate(val_low));
3022 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003023 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003024 break;
3025 }
3026 case Primitive::kPrimFloat: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003027 __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00003028 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
3029 break;
3030 }
3031 case Primitive::kPrimDouble: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003032 __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00003033 __ j(kUnordered, compare->IsGtBias() ? &greater : &less);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003034 break;
3035 }
3036 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00003037 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003038 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003039 __ movl(out, Immediate(0));
3040 __ j(kEqual, &done);
3041 __ j(kBelow, &less); // kBelow is for CF (unsigned & floats).
3042
3043 __ Bind(&greater);
3044 __ movl(out, Immediate(1));
3045 __ jmp(&done);
3046
3047 __ Bind(&less);
3048 __ movl(out, Immediate(-1));
3049
3050 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003051}
3052
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003053void LocationsBuilderX86::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003054 LocationSummary* locations =
3055 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01003056 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3057 locations->SetInAt(i, Location::Any());
3058 }
3059 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003060}
3061
3062void InstructionCodeGeneratorX86::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003063 UNUSED(instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003064 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003065}
3066
Calin Juravle52c48962014-12-16 17:02:57 +00003067void InstructionCodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) {
3068 /*
3069 * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence.
3070 * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model.
3071 * For those cases, all we need to ensure is that there is a scheduling barrier in place.
3072 */
3073 switch (kind) {
3074 case MemBarrierKind::kAnyAny: {
3075 __ mfence();
3076 break;
3077 }
3078 case MemBarrierKind::kAnyStore:
3079 case MemBarrierKind::kLoadAny:
3080 case MemBarrierKind::kStoreStore: {
3081 // nop
3082 break;
3083 }
3084 default:
3085 LOG(FATAL) << "Unexpected memory barrier " << kind;
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003086 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003087}
3088
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003089
Mark Mendell09ed1a32015-03-25 08:30:06 -04003090void CodeGeneratorX86::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke,
3091 Register temp) {
3092 // TODO: Implement all kinds of calls:
3093 // 1) boot -> boot
3094 // 2) app -> boot
3095 // 3) app -> app
3096 //
3097 // Currently we implement the app -> app logic, which looks up in the resolve cache.
3098 // temp = method;
3099 LoadCurrentMethod(temp);
3100 if (!invoke->IsRecursive()) {
3101 // temp = temp->dex_cache_resolved_methods_;
3102 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value()));
3103 // temp = temp[index_in_cache]
3104 __ movl(temp, Address(temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex())));
3105 // (temp + offset_of_quick_compiled_code)()
3106 __ call(Address(
3107 temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value()));
3108 } else {
3109 __ call(GetFrameEntryLabel());
3110 }
3111
3112 DCHECK(!IsLeafMethod());
3113 RecordPcInfo(invoke, invoke->GetDexPc());
3114}
3115
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003116void CodeGeneratorX86::MarkGCCard(Register temp, Register card, Register object, Register value) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003117 Label is_null;
3118 __ testl(value, value);
3119 __ j(kEqual, &is_null);
3120 __ fs()->movl(card, Address::Absolute(Thread::CardTableOffset<kX86WordSize>().Int32Value()));
3121 __ movl(temp, object);
3122 __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift));
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003123 __ movb(Address(temp, card, TIMES_1, 0),
3124 X86ManagedRegister::FromCpuRegister(card).AsByteRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003125 __ Bind(&is_null);
3126}
3127
Calin Juravle52c48962014-12-16 17:02:57 +00003128void LocationsBuilderX86::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
3129 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01003130 LocationSummary* locations =
3131 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003132 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003133
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003134 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3135 locations->SetOut(Location::RequiresFpuRegister());
3136 } else {
3137 // The output overlaps in case of long: we don't want the low move to overwrite
3138 // the object's location.
3139 locations->SetOut(Location::RequiresRegister(),
3140 (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap
3141 : Location::kNoOutputOverlap);
3142 }
Calin Juravle52c48962014-12-16 17:02:57 +00003143
3144 if (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong)) {
3145 // Long values can be loaded atomically into an XMM using movsd.
3146 // So we use an XMM register as a temp to achieve atomicity (first load the temp into the XMM
3147 // and then copy the XMM into the output 32bits at a time).
3148 locations->AddTemp(Location::RequiresFpuRegister());
3149 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003150}
3151
Calin Juravle52c48962014-12-16 17:02:57 +00003152void InstructionCodeGeneratorX86::HandleFieldGet(HInstruction* instruction,
3153 const FieldInfo& field_info) {
3154 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003155
Calin Juravle52c48962014-12-16 17:02:57 +00003156 LocationSummary* locations = instruction->GetLocations();
3157 Register base = locations->InAt(0).AsRegister<Register>();
3158 Location out = locations->Out();
3159 bool is_volatile = field_info.IsVolatile();
3160 Primitive::Type field_type = field_info.GetFieldType();
3161 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3162
3163 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003164 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003165 __ movzxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003166 break;
3167 }
3168
3169 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003170 __ movsxb(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003171 break;
3172 }
3173
3174 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003175 __ movsxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003176 break;
3177 }
3178
3179 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003180 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003181 break;
3182 }
3183
3184 case Primitive::kPrimInt:
3185 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003186 __ movl(out.AsRegister<Register>(), Address(base, offset));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003187 break;
3188 }
3189
3190 case Primitive::kPrimLong: {
Calin Juravle52c48962014-12-16 17:02:57 +00003191 if (is_volatile) {
3192 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
3193 __ movsd(temp, Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003194 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003195 __ movd(out.AsRegisterPairLow<Register>(), temp);
3196 __ psrlq(temp, Immediate(32));
3197 __ movd(out.AsRegisterPairHigh<Register>(), temp);
3198 } else {
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003199 DCHECK_NE(base, out.AsRegisterPairLow<Register>());
Calin Juravle52c48962014-12-16 17:02:57 +00003200 __ movl(out.AsRegisterPairLow<Register>(), Address(base, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003201 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003202 __ movl(out.AsRegisterPairHigh<Register>(), Address(base, kX86WordSize + offset));
3203 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003204 break;
3205 }
3206
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003207 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003208 __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003209 break;
3210 }
3211
3212 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003213 __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset));
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003214 break;
3215 }
3216
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003217 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003218 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003219 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003220 }
Calin Juravle52c48962014-12-16 17:02:57 +00003221
Calin Juravle77520bc2015-01-12 18:45:46 +00003222 // Longs are handled in the switch.
3223 if (field_type != Primitive::kPrimLong) {
3224 codegen_->MaybeRecordImplicitNullCheck(instruction);
3225 }
3226
Calin Juravle52c48962014-12-16 17:02:57 +00003227 if (is_volatile) {
3228 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3229 }
3230}
3231
3232void LocationsBuilderX86::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
3233 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3234
3235 LocationSummary* locations =
3236 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3237 locations->SetInAt(0, Location::RequiresRegister());
3238 bool is_volatile = field_info.IsVolatile();
3239 Primitive::Type field_type = field_info.GetFieldType();
3240 bool is_byte_type = (field_type == Primitive::kPrimBoolean)
3241 || (field_type == Primitive::kPrimByte);
3242
3243 // The register allocator does not support multiple
3244 // inputs that die at entry with one in a specific register.
3245 if (is_byte_type) {
3246 // Ensure the value is in a byte register.
3247 locations->SetInAt(1, Location::RegisterLocation(EAX));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003248 } else if (Primitive::IsFloatingPointType(field_type)) {
3249 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00003250 } else {
3251 locations->SetInAt(1, Location::RequiresRegister());
3252 }
3253 // Temporary registers for the write barrier.
3254 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
3255 locations->AddTemp(Location::RequiresRegister());
3256 // Ensure the card is in a byte register.
3257 locations->AddTemp(Location::RegisterLocation(ECX));
3258 } else if (is_volatile && (field_type == Primitive::kPrimLong)) {
3259 // 64bits value can be atomically written to an address with movsd and an XMM register.
3260 // We need two XMM registers because there's no easier way to (bit) copy a register pair
3261 // into a single XMM register (we copy each pair part into the XMMs and then interleave them).
3262 // NB: We could make the register allocator understand fp_reg <-> core_reg moves but given the
3263 // isolated cases when we need this it isn't worth adding the extra complexity.
3264 locations->AddTemp(Location::RequiresFpuRegister());
3265 locations->AddTemp(Location::RequiresFpuRegister());
3266 }
3267}
3268
3269void InstructionCodeGeneratorX86::HandleFieldSet(HInstruction* instruction,
3270 const FieldInfo& field_info) {
3271 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3272
3273 LocationSummary* locations = instruction->GetLocations();
3274 Register base = locations->InAt(0).AsRegister<Register>();
3275 Location value = locations->InAt(1);
3276 bool is_volatile = field_info.IsVolatile();
3277 Primitive::Type field_type = field_info.GetFieldType();
3278 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3279
3280 if (is_volatile) {
3281 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
3282 }
3283
3284 switch (field_type) {
3285 case Primitive::kPrimBoolean:
3286 case Primitive::kPrimByte: {
3287 __ movb(Address(base, offset), value.AsRegister<ByteRegister>());
3288 break;
3289 }
3290
3291 case Primitive::kPrimShort:
3292 case Primitive::kPrimChar: {
3293 __ movw(Address(base, offset), value.AsRegister<Register>());
3294 break;
3295 }
3296
3297 case Primitive::kPrimInt:
3298 case Primitive::kPrimNot: {
3299 __ movl(Address(base, offset), value.AsRegister<Register>());
Calin Juravle52c48962014-12-16 17:02:57 +00003300 break;
3301 }
3302
3303 case Primitive::kPrimLong: {
3304 if (is_volatile) {
3305 XmmRegister temp1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
3306 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>();
3307 __ movd(temp1, value.AsRegisterPairLow<Register>());
3308 __ movd(temp2, value.AsRegisterPairHigh<Register>());
3309 __ punpckldq(temp1, temp2);
3310 __ movsd(Address(base, offset), temp1);
Calin Juravle77520bc2015-01-12 18:45:46 +00003311 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003312 } else {
3313 __ movl(Address(base, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00003314 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003315 __ movl(Address(base, kX86WordSize + offset), value.AsRegisterPairHigh<Register>());
3316 }
3317 break;
3318 }
3319
3320 case Primitive::kPrimFloat: {
3321 __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>());
3322 break;
3323 }
3324
3325 case Primitive::kPrimDouble: {
3326 __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>());
3327 break;
3328 }
3329
3330 case Primitive::kPrimVoid:
3331 LOG(FATAL) << "Unreachable type " << field_type;
3332 UNREACHABLE();
3333 }
3334
Calin Juravle77520bc2015-01-12 18:45:46 +00003335 // Longs are handled in the switch.
3336 if (field_type != Primitive::kPrimLong) {
3337 codegen_->MaybeRecordImplicitNullCheck(instruction);
3338 }
3339
3340 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
3341 Register temp = locations->GetTemp(0).AsRegister<Register>();
3342 Register card = locations->GetTemp(1).AsRegister<Register>();
3343 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>());
3344 }
3345
Calin Juravle52c48962014-12-16 17:02:57 +00003346 if (is_volatile) {
3347 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
3348 }
3349}
3350
3351void LocationsBuilderX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3352 HandleFieldGet(instruction, instruction->GetFieldInfo());
3353}
3354
3355void InstructionCodeGeneratorX86::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3356 HandleFieldGet(instruction, instruction->GetFieldInfo());
3357}
3358
3359void LocationsBuilderX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3360 HandleFieldSet(instruction, instruction->GetFieldInfo());
3361}
3362
3363void InstructionCodeGeneratorX86::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3364 HandleFieldSet(instruction, instruction->GetFieldInfo());
3365}
3366
3367void LocationsBuilderX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3368 HandleFieldSet(instruction, instruction->GetFieldInfo());
3369}
3370
3371void InstructionCodeGeneratorX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3372 HandleFieldSet(instruction, instruction->GetFieldInfo());
3373}
3374
3375void LocationsBuilderX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3376 HandleFieldGet(instruction, instruction->GetFieldInfo());
3377}
3378
3379void InstructionCodeGeneratorX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3380 HandleFieldGet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003381}
3382
3383void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003384 LocationSummary* locations =
3385 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003386 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks()
3387 ? Location::RequiresRegister()
3388 : Location::Any();
3389 locations->SetInAt(0, loc);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003390 if (instruction->HasUses()) {
3391 locations->SetOut(Location::SameAsFirstInput());
3392 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003393}
3394
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003395void InstructionCodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003396 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3397 return;
3398 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003399 LocationSummary* locations = instruction->GetLocations();
3400 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003401
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003402 __ testl(EAX, Address(obj.AsRegister<Register>(), 0));
3403 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3404}
3405
3406void InstructionCodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003407 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003408 codegen_->AddSlowPath(slow_path);
3409
3410 LocationSummary* locations = instruction->GetLocations();
3411 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003412
3413 if (obj.IsRegister()) {
Mark Mendell42514f62015-03-31 11:34:22 -04003414 __ testl(obj.AsRegister<Register>(), obj.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003415 } else if (obj.IsStackSlot()) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003416 __ cmpl(Address(ESP, obj.GetStackIndex()), Immediate(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003417 } else {
3418 DCHECK(obj.IsConstant()) << obj;
3419 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
3420 __ jmp(slow_path->GetEntryLabel());
3421 return;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003422 }
3423 __ j(kEqual, slow_path->GetEntryLabel());
3424}
3425
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003426void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) {
3427 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3428 GenerateImplicitNullCheck(instruction);
3429 } else {
3430 GenerateExplicitNullCheck(instruction);
3431 }
3432}
3433
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003434void LocationsBuilderX86::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003435 LocationSummary* locations =
3436 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003437 locations->SetInAt(0, Location::RequiresRegister());
3438 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003439 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3440 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3441 } else {
3442 // The output overlaps in case of long: we don't want the low move to overwrite
3443 // the array's location.
3444 locations->SetOut(Location::RequiresRegister(),
3445 (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap
3446 : Location::kNoOutputOverlap);
3447 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003448}
3449
3450void InstructionCodeGeneratorX86::VisitArrayGet(HArrayGet* instruction) {
3451 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003452 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003453 Location index = locations->InAt(1);
3454
Calin Juravle77520bc2015-01-12 18:45:46 +00003455 Primitive::Type type = instruction->GetType();
3456 switch (type) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003457 case Primitive::kPrimBoolean: {
3458 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003459 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003460 if (index.IsConstant()) {
3461 __ movzxb(out, Address(obj,
3462 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3463 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003464 __ movzxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003465 }
3466 break;
3467 }
3468
3469 case Primitive::kPrimByte: {
3470 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003471 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003472 if (index.IsConstant()) {
3473 __ movsxb(out, Address(obj,
3474 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset));
3475 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003476 __ movsxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003477 }
3478 break;
3479 }
3480
3481 case Primitive::kPrimShort: {
3482 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003483 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003484 if (index.IsConstant()) {
3485 __ movsxw(out, Address(obj,
3486 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3487 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003488 __ movsxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003489 }
3490 break;
3491 }
3492
3493 case Primitive::kPrimChar: {
3494 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003495 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003496 if (index.IsConstant()) {
3497 __ movzxw(out, Address(obj,
3498 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset));
3499 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003500 __ movzxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003501 }
3502 break;
3503 }
3504
3505 case Primitive::kPrimInt:
3506 case Primitive::kPrimNot: {
3507 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003508 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003509 if (index.IsConstant()) {
3510 __ movl(out, Address(obj,
3511 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3512 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003513 __ movl(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003514 }
3515 break;
3516 }
3517
3518 case Primitive::kPrimLong: {
3519 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003520 Location out = locations->Out();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003521 DCHECK_NE(obj, out.AsRegisterPairLow<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003522 if (index.IsConstant()) {
3523 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003524 __ movl(out.AsRegisterPairLow<Register>(), Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003525 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003526 __ movl(out.AsRegisterPairHigh<Register>(), Address(obj, offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003527 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003528 __ movl(out.AsRegisterPairLow<Register>(),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003529 Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003530 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003531 __ movl(out.AsRegisterPairHigh<Register>(),
Roland Levillain271ab9c2014-11-27 15:23:57 +00003532 Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003533 }
3534 break;
3535 }
3536
Mark Mendell7c8d0092015-01-26 11:21:33 -05003537 case Primitive::kPrimFloat: {
3538 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3539 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
3540 if (index.IsConstant()) {
3541 __ movss(out, Address(obj,
3542 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset));
3543 } else {
3544 __ movss(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset));
3545 }
3546 break;
3547 }
3548
3549 case Primitive::kPrimDouble: {
3550 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3551 XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>();
3552 if (index.IsConstant()) {
3553 __ movsd(out, Address(obj,
3554 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset));
3555 } else {
3556 __ movsd(out, Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset));
3557 }
3558 break;
3559 }
3560
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003561 case Primitive::kPrimVoid:
Calin Juravle77520bc2015-01-12 18:45:46 +00003562 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003563 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003564 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003565
3566 if (type != Primitive::kPrimLong) {
3567 codegen_->MaybeRecordImplicitNullCheck(instruction);
3568 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003569}
3570
3571void LocationsBuilderX86::VisitArraySet(HArraySet* instruction) {
Mark Mendell5f874182015-03-04 15:42:45 -05003572 // This location builder might end up asking to up to four registers, which is
3573 // not currently possible for baseline. The situation in which we need four
3574 // registers cannot be met by baseline though, because it has not run any
3575 // optimization.
3576
Nicolas Geoffray39468442014-09-02 15:17:15 +01003577 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003578 bool needs_write_barrier =
3579 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3580
Mark Mendell5f874182015-03-04 15:42:45 -05003581 bool needs_runtime_call = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003582
Nicolas Geoffray39468442014-09-02 15:17:15 +01003583 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3584 instruction,
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003585 needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003586
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003587 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003588 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003589 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3590 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3591 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003592 } else {
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01003593 bool is_byte_type = (value_type == Primitive::kPrimBoolean)
3594 || (value_type == Primitive::kPrimByte);
Nicolas Geoffray9ae0daa2014-09-30 22:40:23 +01003595 // We need the inputs to be different than the output in case of long operation.
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01003596 // In case of a byte operation, the register allocator does not support multiple
3597 // inputs that die at entry with one in a specific register.
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003598 locations->SetInAt(0, Location::RequiresRegister());
3599 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Nicolas Geoffray7adfcc82014-10-07 12:24:52 +01003600 if (is_byte_type) {
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003601 // Ensure the value is in a byte register.
3602 locations->SetInAt(2, Location::ByteRegisterOrConstant(EAX, instruction->InputAt(2)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003603 } else if (Primitive::IsFloatingPointType(value_type)) {
3604 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003605 } else {
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003606 locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003607 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003608 // Temporary registers for the write barrier.
3609 if (needs_write_barrier) {
3610 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003611 // Ensure the card is in a byte register.
3612 locations->AddTemp(Location::RegisterLocation(ECX));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003613 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003614 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003615}
3616
3617void InstructionCodeGeneratorX86::VisitArraySet(HArraySet* instruction) {
3618 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003619 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003620 Location index = locations->InAt(1);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003621 Location value = locations->InAt(2);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003622 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003623 bool needs_runtime_call = locations->WillCall();
3624 bool needs_write_barrier =
3625 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003626
3627 switch (value_type) {
3628 case Primitive::kPrimBoolean:
3629 case Primitive::kPrimByte: {
3630 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003631 if (index.IsConstant()) {
3632 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003633 if (value.IsRegister()) {
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003634 __ movb(Address(obj, offset), value.AsRegister<ByteRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003635 } else {
3636 __ movb(Address(obj, offset),
3637 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3638 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003639 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003640 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003641 __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset),
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +00003642 value.AsRegister<ByteRegister>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003643 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003644 __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003645 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3646 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003647 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003648 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003649 break;
3650 }
3651
3652 case Primitive::kPrimShort:
3653 case Primitive::kPrimChar: {
3654 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003655 if (index.IsConstant()) {
3656 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003657 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003658 __ movw(Address(obj, offset), value.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003659 } else {
3660 __ movw(Address(obj, offset),
3661 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3662 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003663 } else {
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003664 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003665 __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset),
3666 value.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003667 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003668 __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003669 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3670 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003671 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003672 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003673 break;
3674 }
3675
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003676 case Primitive::kPrimInt:
3677 case Primitive::kPrimNot: {
3678 if (!needs_runtime_call) {
3679 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
3680 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003681 size_t offset =
3682 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003683 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003684 __ movl(Address(obj, offset), value.AsRegister<Register>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003685 } else {
3686 DCHECK(value.IsConstant()) << value;
3687 __ movl(Address(obj, offset),
3688 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3689 }
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003690 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003691 DCHECK(index.IsRegister()) << index;
3692 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003693 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset),
3694 value.AsRegister<Register>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003695 } else {
3696 DCHECK(value.IsConstant()) << value;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003697 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset),
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003698 Immediate(value.GetConstant()->AsIntConstant()->GetValue()));
3699 }
3700 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003701 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003702
3703 if (needs_write_barrier) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003704 Register temp = locations->GetTemp(0).AsRegister<Register>();
3705 Register card = locations->GetTemp(1).AsRegister<Register>();
3706 codegen_->MarkGCCard(temp, card, obj, value.AsRegister<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003707 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003708 } else {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003709 DCHECK_EQ(value_type, Primitive::kPrimNot);
3710 DCHECK(!codegen_->IsLeafMethod());
3711 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pAputObject)));
3712 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003713 }
3714 break;
3715 }
3716
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003717 case Primitive::kPrimLong: {
3718 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003719 if (index.IsConstant()) {
3720 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003721 if (value.IsRegisterPair()) {
3722 __ movl(Address(obj, offset), value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00003723 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003724 __ movl(Address(obj, offset + kX86WordSize), value.AsRegisterPairHigh<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003725 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003726 DCHECK(value.IsConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003727 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
3728 __ movl(Address(obj, offset), Immediate(Low32Bits(val)));
Calin Juravle77520bc2015-01-12 18:45:46 +00003729 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003730 __ movl(Address(obj, offset + kX86WordSize), Immediate(High32Bits(val)));
3731 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003732 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003733 if (value.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003734 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003735 value.AsRegisterPairLow<Register>());
Calin Juravle77520bc2015-01-12 18:45:46 +00003736 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003737 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003738 value.AsRegisterPairHigh<Register>());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003739 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003740 DCHECK(value.IsConstant());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003741 int64_t val = value.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003742 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003743 Immediate(Low32Bits(val)));
Calin Juravle77520bc2015-01-12 18:45:46 +00003744 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003745 __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize),
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003746 Immediate(High32Bits(val)));
3747 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003748 }
3749 break;
3750 }
3751
Mark Mendell7c8d0092015-01-26 11:21:33 -05003752 case Primitive::kPrimFloat: {
3753 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3754 DCHECK(value.IsFpuRegister());
3755 if (index.IsConstant()) {
3756 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3757 __ movss(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
3758 } else {
3759 __ movss(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset),
3760 value.AsFpuRegister<XmmRegister>());
3761 }
3762 break;
3763 }
3764
3765 case Primitive::kPrimDouble: {
3766 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3767 DCHECK(value.IsFpuRegister());
3768 if (index.IsConstant()) {
3769 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3770 __ movsd(Address(obj, offset), value.AsFpuRegister<XmmRegister>());
3771 } else {
3772 __ movsd(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset),
3773 value.AsFpuRegister<XmmRegister>());
3774 }
3775 break;
3776 }
3777
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003778 case Primitive::kPrimVoid:
3779 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003780 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003781 }
3782}
3783
3784void LocationsBuilderX86::VisitArrayLength(HArrayLength* instruction) {
3785 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003786 locations->SetInAt(0, Location::RequiresRegister());
3787 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003788 instruction->SetLocations(locations);
3789}
3790
3791void InstructionCodeGeneratorX86::VisitArrayLength(HArrayLength* instruction) {
3792 LocationSummary* locations = instruction->GetLocations();
3793 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003794 Register obj = locations->InAt(0).AsRegister<Register>();
3795 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003796 __ movl(out, Address(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00003797 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003798}
3799
3800void LocationsBuilderX86::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003801 LocationSummary* locations =
3802 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Mark Mendellf60c90b2015-03-04 15:12:59 -05003803 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003804 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003805 if (instruction->HasUses()) {
3806 locations->SetOut(Location::SameAsFirstInput());
3807 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003808}
3809
3810void InstructionCodeGeneratorX86::VisitBoundsCheck(HBoundsCheck* instruction) {
3811 LocationSummary* locations = instruction->GetLocations();
Mark Mendellf60c90b2015-03-04 15:12:59 -05003812 Location index_loc = locations->InAt(0);
3813 Location length_loc = locations->InAt(1);
3814 SlowPathCodeX86* slow_path =
3815 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86(instruction, index_loc, length_loc);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003816 codegen_->AddSlowPath(slow_path);
3817
Mark Mendellf60c90b2015-03-04 15:12:59 -05003818 Register length = length_loc.AsRegister<Register>();
3819 if (index_loc.IsConstant()) {
3820 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant());
3821 __ cmpl(length, Immediate(value));
3822 } else {
3823 __ cmpl(length, index_loc.AsRegister<Register>());
3824 }
3825 __ j(kBelowEqual, slow_path->GetEntryLabel());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003826}
3827
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003828void LocationsBuilderX86::VisitTemporary(HTemporary* temp) {
3829 temp->SetLocations(nullptr);
3830}
3831
3832void InstructionCodeGeneratorX86::VisitTemporary(HTemporary* temp) {
3833 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003834 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003835}
3836
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003837void LocationsBuilderX86::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003838 UNUSED(instruction);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003839 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003840}
3841
3842void InstructionCodeGeneratorX86::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003843 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3844}
3845
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003846void LocationsBuilderX86::VisitSuspendCheck(HSuspendCheck* instruction) {
3847 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3848}
3849
3850void InstructionCodeGeneratorX86::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003851 HBasicBlock* block = instruction->GetBlock();
3852 if (block->GetLoopInformation() != nullptr) {
3853 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3854 // The back edge will generate the suspend check.
3855 return;
3856 }
3857 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3858 // The goto will generate the suspend check.
3859 return;
3860 }
3861 GenerateSuspendCheck(instruction, nullptr);
3862}
3863
3864void InstructionCodeGeneratorX86::GenerateSuspendCheck(HSuspendCheck* instruction,
3865 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003866 SuspendCheckSlowPathX86* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003867 new (GetGraph()->GetArena()) SuspendCheckSlowPathX86(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003868 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003869 __ fs()->cmpw(Address::Absolute(
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003870 Thread::ThreadFlagsOffset<kX86WordSize>().Int32Value()), Immediate(0));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003871 if (successor == nullptr) {
3872 __ j(kNotEqual, slow_path->GetEntryLabel());
3873 __ Bind(slow_path->GetReturnLabel());
3874 } else {
3875 __ j(kEqual, codegen_->GetLabelOf(successor));
3876 __ jmp(slow_path->GetEntryLabel());
3877 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003878}
3879
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003880X86Assembler* ParallelMoveResolverX86::GetAssembler() const {
3881 return codegen_->GetAssembler();
3882}
3883
Mark Mendell7c8d0092015-01-26 11:21:33 -05003884void ParallelMoveResolverX86::MoveMemoryToMemory32(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003885 ScratchRegisterScope ensure_scratch(
3886 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
3887 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
3888 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
3889 __ movl(temp_reg, Address(ESP, src + stack_offset));
3890 __ movl(Address(ESP, dst + stack_offset), temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05003891}
3892
3893void ParallelMoveResolverX86::MoveMemoryToMemory64(int dst, int src) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003894 ScratchRegisterScope ensure_scratch(
3895 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
3896 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
3897 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
3898 __ movl(temp_reg, Address(ESP, src + stack_offset));
3899 __ movl(Address(ESP, dst + stack_offset), temp_reg);
3900 __ movl(temp_reg, Address(ESP, src + stack_offset + kX86WordSize));
3901 __ movl(Address(ESP, dst + stack_offset + kX86WordSize), temp_reg);
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003902}
3903
3904void ParallelMoveResolverX86::EmitMove(size_t index) {
3905 MoveOperands* move = moves_.Get(index);
3906 Location source = move->GetSource();
3907 Location destination = move->GetDestination();
3908
3909 if (source.IsRegister()) {
3910 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003911 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003912 } else {
3913 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003914 __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003915 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05003916 } else if (source.IsFpuRegister()) {
3917 if (destination.IsFpuRegister()) {
3918 __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
3919 } else if (destination.IsStackSlot()) {
3920 __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
3921 } else {
3922 DCHECK(destination.IsDoubleStackSlot());
3923 __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>());
3924 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003925 } else if (source.IsStackSlot()) {
3926 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003927 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex()));
Mark Mendell7c8d0092015-01-26 11:21:33 -05003928 } else if (destination.IsFpuRegister()) {
3929 __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003930 } else {
3931 DCHECK(destination.IsStackSlot());
Mark Mendell7c8d0092015-01-26 11:21:33 -05003932 MoveMemoryToMemory32(destination.GetStackIndex(), source.GetStackIndex());
3933 }
3934 } else if (source.IsDoubleStackSlot()) {
3935 if (destination.IsFpuRegister()) {
3936 __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex()));
3937 } else {
3938 DCHECK(destination.IsDoubleStackSlot()) << destination;
3939 MoveMemoryToMemory64(destination.GetStackIndex(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01003940 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003941 } else if (source.IsConstant()) {
Mark Mendell7c8d0092015-01-26 11:21:33 -05003942 HConstant* constant = source.GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003943 if (constant->IsIntConstant() || constant->IsNullConstant()) {
Mark Mendell09b84632015-02-13 17:48:38 -05003944 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Mark Mendell7c8d0092015-01-26 11:21:33 -05003945 if (destination.IsRegister()) {
Mark Mendell09b84632015-02-13 17:48:38 -05003946 if (value == 0) {
3947 __ xorl(destination.AsRegister<Register>(), destination.AsRegister<Register>());
3948 } else {
3949 __ movl(destination.AsRegister<Register>(), Immediate(value));
3950 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05003951 } else {
3952 DCHECK(destination.IsStackSlot()) << destination;
Mark Mendell09b84632015-02-13 17:48:38 -05003953 __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value));
Mark Mendell7c8d0092015-01-26 11:21:33 -05003954 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003955 } else if (constant->IsFloatConstant()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003956 float fp_value = constant->AsFloatConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00003957 int32_t value = bit_cast<int32_t, float>(fp_value);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003958 Immediate imm(value);
Mark Mendell7c8d0092015-01-26 11:21:33 -05003959 if (destination.IsFpuRegister()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003960 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
3961 if (value == 0) {
3962 // Easy handling of 0.0.
3963 __ xorps(dest, dest);
3964 } else {
3965 ScratchRegisterScope ensure_scratch(
Guillaume Sancheze14590b2015-04-15 18:57:27 +00003966 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
3967 Register temp = static_cast<Register>(ensure_scratch.GetRegister());
3968 __ movl(temp, Immediate(value));
3969 __ movd(dest, temp);
Mark Mendell3f6c7f62015-03-13 13:47:53 -04003970 }
Mark Mendell7c8d0092015-01-26 11:21:33 -05003971 } else {
3972 DCHECK(destination.IsStackSlot()) << destination;
3973 __ movl(Address(ESP, destination.GetStackIndex()), imm);
3974 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003975 } else if (constant->IsLongConstant()) {
3976 int64_t value = constant->AsLongConstant()->GetValue();
3977 int32_t low_value = Low32Bits(value);
3978 int32_t high_value = High32Bits(value);
3979 Immediate low(low_value);
3980 Immediate high(high_value);
3981 if (destination.IsDoubleStackSlot()) {
3982 __ movl(Address(ESP, destination.GetStackIndex()), low);
3983 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
3984 } else {
3985 __ movl(destination.AsRegisterPairLow<Register>(), low);
3986 __ movl(destination.AsRegisterPairHigh<Register>(), high);
3987 }
3988 } else {
3989 DCHECK(constant->IsDoubleConstant());
3990 double dbl_value = constant->AsDoubleConstant()->GetValue();
Roland Levillainda4d79b2015-03-24 14:36:11 +00003991 int64_t value = bit_cast<int64_t, double>(dbl_value);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00003992 int32_t low_value = Low32Bits(value);
3993 int32_t high_value = High32Bits(value);
3994 Immediate low(low_value);
3995 Immediate high(high_value);
3996 if (destination.IsFpuRegister()) {
3997 XmmRegister dest = destination.AsFpuRegister<XmmRegister>();
3998 if (value == 0) {
3999 // Easy handling of 0.0.
4000 __ xorpd(dest, dest);
4001 } else {
4002 __ pushl(high);
4003 __ pushl(low);
4004 __ movsd(dest, Address(ESP, 0));
4005 __ addl(ESP, Immediate(8));
4006 }
4007 } else {
4008 DCHECK(destination.IsDoubleStackSlot()) << destination;
4009 __ movl(Address(ESP, destination.GetStackIndex()), low);
4010 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
4011 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01004012 }
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004013 } else {
Nicolas Geoffray42d1f5f2015-01-16 09:14:18 +00004014 LOG(FATAL) << "Unimplemented move: " << destination << " <- " << source;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004015 }
4016}
4017
Mark Mendella5c19ce2015-04-01 12:51:05 -04004018void ParallelMoveResolverX86::Exchange(Register reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004019 Register suggested_scratch = reg == EAX ? EBX : EAX;
4020 ScratchRegisterScope ensure_scratch(
4021 this, reg, suggested_scratch, codegen_->GetNumberOfCoreRegisters());
4022
4023 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4024 __ movl(static_cast<Register>(ensure_scratch.GetRegister()), Address(ESP, mem + stack_offset));
4025 __ movl(Address(ESP, mem + stack_offset), reg);
4026 __ movl(reg, static_cast<Register>(ensure_scratch.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004027}
4028
Mark Mendell7c8d0092015-01-26 11:21:33 -05004029void ParallelMoveResolverX86::Exchange32(XmmRegister reg, int mem) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004030 ScratchRegisterScope ensure_scratch(
4031 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
4032
4033 Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister());
4034 int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0;
4035 __ movl(temp_reg, Address(ESP, mem + stack_offset));
4036 __ movss(Address(ESP, mem + stack_offset), reg);
4037 __ movd(reg, temp_reg);
Mark Mendell7c8d0092015-01-26 11:21:33 -05004038}
4039
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004040void ParallelMoveResolverX86::Exchange(int mem1, int mem2) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004041 ScratchRegisterScope ensure_scratch1(
4042 this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004043
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004044 Register suggested_scratch = ensure_scratch1.GetRegister() == EAX ? EBX : EAX;
4045 ScratchRegisterScope ensure_scratch2(
4046 this, ensure_scratch1.GetRegister(), suggested_scratch, codegen_->GetNumberOfCoreRegisters());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004047
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004048 int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0;
4049 stack_offset += ensure_scratch2.IsSpilled() ? kX86WordSize : 0;
4050 __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset));
4051 __ movl(static_cast<Register>(ensure_scratch2.GetRegister()), Address(ESP, mem2 + stack_offset));
4052 __ movl(Address(ESP, mem2 + stack_offset), static_cast<Register>(ensure_scratch1.GetRegister()));
4053 __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister()));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004054}
4055
4056void ParallelMoveResolverX86::EmitSwap(size_t index) {
4057 MoveOperands* move = moves_.Get(index);
4058 Location source = move->GetSource();
4059 Location destination = move->GetDestination();
4060
4061 if (source.IsRegister() && destination.IsRegister()) {
Guillaume Sancheze14590b2015-04-15 18:57:27 +00004062 __ xchgl(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004063 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004064 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004065 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004066 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004067 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
4068 Exchange(destination.GetStackIndex(), source.GetStackIndex());
Mark Mendell7c8d0092015-01-26 11:21:33 -05004069 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
4070 // Use XOR Swap algorithm to avoid a temporary.
4071 DCHECK_NE(source.reg(), destination.reg());
4072 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
4073 __ xorpd(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>());
4074 __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>());
4075 } else if (source.IsFpuRegister() && destination.IsStackSlot()) {
4076 Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex());
4077 } else if (destination.IsFpuRegister() && source.IsStackSlot()) {
4078 Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex());
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004079 } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) {
4080 // Take advantage of the 16 bytes in the XMM register.
4081 XmmRegister reg = source.AsFpuRegister<XmmRegister>();
4082 Address stack(ESP, destination.GetStackIndex());
4083 // Load the double into the high doubleword.
4084 __ movhpd(reg, stack);
4085
4086 // Store the low double into the destination.
4087 __ movsd(stack, reg);
4088
4089 // Move the high double to the low double.
4090 __ psrldq(reg, Immediate(8));
4091 } else if (destination.IsFpuRegister() && source.IsDoubleStackSlot()) {
4092 // Take advantage of the 16 bytes in the XMM register.
4093 XmmRegister reg = destination.AsFpuRegister<XmmRegister>();
4094 Address stack(ESP, source.GetStackIndex());
4095 // Load the double into the high doubleword.
4096 __ movhpd(reg, stack);
4097
4098 // Store the low double into the destination.
4099 __ movsd(stack, reg);
4100
4101 // Move the high double to the low double.
4102 __ psrldq(reg, Immediate(8));
4103 } else if (destination.IsDoubleStackSlot() && source.IsDoubleStackSlot()) {
4104 Exchange(destination.GetStackIndex(), source.GetStackIndex());
4105 Exchange(destination.GetHighStackIndex(kX86WordSize), source.GetHighStackIndex(kX86WordSize));
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004106 } else {
Mark Mendell7c8d0092015-01-26 11:21:33 -05004107 LOG(FATAL) << "Unimplemented: source: " << source << ", destination: " << destination;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +01004108 }
4109}
4110
4111void ParallelMoveResolverX86::SpillScratch(int reg) {
4112 __ pushl(static_cast<Register>(reg));
4113}
4114
4115void ParallelMoveResolverX86::RestoreScratch(int reg) {
4116 __ popl(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004117}
4118
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004119void LocationsBuilderX86::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004120 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
4121 ? LocationSummary::kCallOnSlowPath
4122 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004123 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004124 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004125 locations->SetOut(Location::RequiresRegister());
4126}
4127
4128void InstructionCodeGeneratorX86::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004129 Register out = cls->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004130 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004131 DCHECK(!cls->CanCallRuntime());
4132 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004133 codegen_->LoadCurrentMethod(out);
4134 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
4135 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004136 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004137 codegen_->LoadCurrentMethod(out);
4138 __ movl(out, Address(out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value()));
4139 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004140
4141 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
4142 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
4143 codegen_->AddSlowPath(slow_path);
4144 __ testl(out, out);
4145 __ j(kEqual, slow_path->GetEntryLabel());
4146 if (cls->MustGenerateClinitCheck()) {
4147 GenerateClassInitializationCheck(slow_path, out);
4148 } else {
4149 __ Bind(slow_path->GetExitLabel());
4150 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004151 }
4152}
4153
4154void LocationsBuilderX86::VisitClinitCheck(HClinitCheck* check) {
4155 LocationSummary* locations =
4156 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
4157 locations->SetInAt(0, Location::RequiresRegister());
4158 if (check->HasUses()) {
4159 locations->SetOut(Location::SameAsFirstInput());
4160 }
4161}
4162
4163void InstructionCodeGeneratorX86::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004164 // We assume the class to not be null.
4165 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86(
4166 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004167 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00004168 GenerateClassInitializationCheck(slow_path,
4169 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004170}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004171
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004172void InstructionCodeGeneratorX86::GenerateClassInitializationCheck(
4173 SlowPathCodeX86* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004174 __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()),
4175 Immediate(mirror::Class::kStatusInitialized));
4176 __ j(kLess, slow_path->GetEntryLabel());
4177 __ Bind(slow_path->GetExitLabel());
4178 // No need for memory fence, thanks to the X86 memory model.
4179}
4180
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004181void LocationsBuilderX86::VisitLoadString(HLoadString* load) {
4182 LocationSummary* locations =
4183 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
4184 locations->SetOut(Location::RequiresRegister());
4185}
4186
4187void InstructionCodeGeneratorX86::VisitLoadString(HLoadString* load) {
4188 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86(load);
4189 codegen_->AddSlowPath(slow_path);
4190
Roland Levillain271ab9c2014-11-27 15:23:57 +00004191 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004192 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08004193 __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()));
4194 __ movl(out, Address(out, mirror::Class::DexCacheStringsOffset().Int32Value()));
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004195 __ movl(out, Address(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
4196 __ testl(out, out);
4197 __ j(kEqual, slow_path->GetEntryLabel());
4198 __ Bind(slow_path->GetExitLabel());
4199}
4200
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004201void LocationsBuilderX86::VisitLoadException(HLoadException* load) {
4202 LocationSummary* locations =
4203 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
4204 locations->SetOut(Location::RequiresRegister());
4205}
4206
4207void InstructionCodeGeneratorX86::VisitLoadException(HLoadException* load) {
4208 Address address = Address::Absolute(Thread::ExceptionOffset<kX86WordSize>().Int32Value());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004209 __ fs()->movl(load->GetLocations()->Out().AsRegister<Register>(), address);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004210 __ fs()->movl(address, Immediate(0));
4211}
4212
4213void LocationsBuilderX86::VisitThrow(HThrow* instruction) {
4214 LocationSummary* locations =
4215 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4216 InvokeRuntimeCallingConvention calling_convention;
4217 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4218}
4219
4220void InstructionCodeGeneratorX86::VisitThrow(HThrow* instruction) {
4221 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeliverException)));
4222 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4223}
4224
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004225void LocationsBuilderX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004226 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
4227 ? LocationSummary::kNoCall
4228 : LocationSummary::kCallOnSlowPath;
4229 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
4230 locations->SetInAt(0, Location::RequiresRegister());
4231 locations->SetInAt(1, Location::Any());
4232 locations->SetOut(Location::RequiresRegister());
4233}
4234
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004235void InstructionCodeGeneratorX86::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004236 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004237 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004238 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004239 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004240 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4241 Label done, zero;
4242 SlowPathCodeX86* slow_path = nullptr;
4243
4244 // Return 0 if `obj` is null.
4245 // TODO: avoid this check if we know obj is not null.
4246 __ testl(obj, obj);
4247 __ j(kEqual, &zero);
4248 __ movl(out, Address(obj, class_offset));
4249 // Compare the class of `obj` with `cls`.
4250 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004251 __ cmpl(out, cls.AsRegister<Register>());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004252 } else {
4253 DCHECK(cls.IsStackSlot()) << cls;
4254 __ cmpl(out, Address(ESP, cls.GetStackIndex()));
4255 }
4256
4257 if (instruction->IsClassFinal()) {
4258 // Classes must be equal for the instanceof to succeed.
4259 __ j(kNotEqual, &zero);
4260 __ movl(out, Immediate(1));
4261 __ jmp(&done);
4262 } else {
4263 // If the classes are not equal, we go into a slow path.
4264 DCHECK(locations->OnlyCallsOnSlowPath());
4265 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004266 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004267 codegen_->AddSlowPath(slow_path);
4268 __ j(kNotEqual, slow_path->GetEntryLabel());
4269 __ movl(out, Immediate(1));
4270 __ jmp(&done);
4271 }
4272 __ Bind(&zero);
4273 __ movl(out, Immediate(0));
4274 if (slow_path != nullptr) {
4275 __ Bind(slow_path->GetExitLabel());
4276 }
4277 __ Bind(&done);
4278}
4279
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004280void LocationsBuilderX86::VisitCheckCast(HCheckCast* instruction) {
4281 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
4282 instruction, LocationSummary::kCallOnSlowPath);
4283 locations->SetInAt(0, Location::RequiresRegister());
4284 locations->SetInAt(1, Location::Any());
4285 locations->AddTemp(Location::RequiresRegister());
4286}
4287
4288void InstructionCodeGeneratorX86::VisitCheckCast(HCheckCast* instruction) {
4289 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004290 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004291 Location cls = locations->InAt(1);
Roland Levillain271ab9c2014-11-27 15:23:57 +00004292 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004293 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4294 SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86(
4295 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
4296 codegen_->AddSlowPath(slow_path);
4297
4298 // TODO: avoid this check if we know obj is not null.
4299 __ testl(obj, obj);
4300 __ j(kEqual, slow_path->GetExitLabel());
4301 __ movl(temp, Address(obj, class_offset));
4302
4303 // Compare the class of `obj` with `cls`.
4304 if (cls.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004305 __ cmpl(temp, cls.AsRegister<Register>());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004306 } else {
4307 DCHECK(cls.IsStackSlot()) << cls;
4308 __ cmpl(temp, Address(ESP, cls.GetStackIndex()));
4309 }
4310
4311 __ j(kNotEqual, slow_path->GetEntryLabel());
4312 __ Bind(slow_path->GetExitLabel());
4313}
4314
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00004315void LocationsBuilderX86::VisitMonitorOperation(HMonitorOperation* instruction) {
4316 LocationSummary* locations =
4317 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4318 InvokeRuntimeCallingConvention calling_convention;
4319 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4320}
4321
4322void InstructionCodeGeneratorX86::VisitMonitorOperation(HMonitorOperation* instruction) {
4323 __ fs()->call(Address::Absolute(instruction->IsEnter()
4324 ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLockObject)
4325 : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pUnlockObject)));
4326 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4327}
4328
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004329void LocationsBuilderX86::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
4330void LocationsBuilderX86::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
4331void LocationsBuilderX86::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
4332
4333void LocationsBuilderX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
4334 LocationSummary* locations =
4335 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4336 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
4337 || instruction->GetResultType() == Primitive::kPrimLong);
4338 locations->SetInAt(0, Location::RequiresRegister());
4339 locations->SetInAt(1, Location::Any());
4340 locations->SetOut(Location::SameAsFirstInput());
4341}
4342
4343void InstructionCodeGeneratorX86::VisitAnd(HAnd* instruction) {
4344 HandleBitwiseOperation(instruction);
4345}
4346
4347void InstructionCodeGeneratorX86::VisitOr(HOr* instruction) {
4348 HandleBitwiseOperation(instruction);
4349}
4350
4351void InstructionCodeGeneratorX86::VisitXor(HXor* instruction) {
4352 HandleBitwiseOperation(instruction);
4353}
4354
4355void InstructionCodeGeneratorX86::HandleBitwiseOperation(HBinaryOperation* instruction) {
4356 LocationSummary* locations = instruction->GetLocations();
4357 Location first = locations->InAt(0);
4358 Location second = locations->InAt(1);
4359 DCHECK(first.Equals(locations->Out()));
4360
4361 if (instruction->GetResultType() == Primitive::kPrimInt) {
4362 if (second.IsRegister()) {
4363 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004364 __ andl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004365 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004366 __ orl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004367 } else {
4368 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004369 __ xorl(first.AsRegister<Register>(), second.AsRegister<Register>());
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004370 }
4371 } else if (second.IsConstant()) {
4372 if (instruction->IsAnd()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004373 __ andl(first.AsRegister<Register>(),
4374 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004375 } else if (instruction->IsOr()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004376 __ orl(first.AsRegister<Register>(),
4377 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004378 } else {
4379 DCHECK(instruction->IsXor());
Roland Levillain199f3362014-11-27 17:15:16 +00004380 __ xorl(first.AsRegister<Register>(),
4381 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004382 }
4383 } else {
4384 if (instruction->IsAnd()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004385 __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004386 } else if (instruction->IsOr()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004387 __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004388 } else {
4389 DCHECK(instruction->IsXor());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004390 __ xorl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004391 }
4392 }
4393 } else {
4394 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4395 if (second.IsRegisterPair()) {
4396 if (instruction->IsAnd()) {
4397 __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4398 __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4399 } else if (instruction->IsOr()) {
4400 __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4401 __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4402 } else {
4403 DCHECK(instruction->IsXor());
4404 __ xorl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>());
4405 __ xorl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>());
4406 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004407 } else if (second.IsDoubleStackSlot()) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004408 if (instruction->IsAnd()) {
4409 __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4410 __ andl(first.AsRegisterPairHigh<Register>(),
4411 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4412 } else if (instruction->IsOr()) {
4413 __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4414 __ orl(first.AsRegisterPairHigh<Register>(),
4415 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4416 } else {
4417 DCHECK(instruction->IsXor());
4418 __ xorl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex()));
4419 __ xorl(first.AsRegisterPairHigh<Register>(),
4420 Address(ESP, second.GetHighStackIndex(kX86WordSize)));
4421 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004422 } else {
4423 DCHECK(second.IsConstant()) << second;
4424 int64_t value = second.GetConstant()->AsLongConstant()->GetValue();
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004425 int32_t low_value = Low32Bits(value);
4426 int32_t high_value = High32Bits(value);
4427 Immediate low(low_value);
4428 Immediate high(high_value);
4429 Register first_low = first.AsRegisterPairLow<Register>();
4430 Register first_high = first.AsRegisterPairHigh<Register>();
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004431 if (instruction->IsAnd()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004432 if (low_value == 0) {
4433 __ xorl(first_low, first_low);
4434 } else if (low_value != -1) {
4435 __ andl(first_low, low);
4436 }
4437 if (high_value == 0) {
4438 __ xorl(first_high, first_high);
4439 } else if (high_value != -1) {
4440 __ andl(first_high, high);
4441 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004442 } else if (instruction->IsOr()) {
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004443 if (low_value != 0) {
4444 __ orl(first_low, low);
4445 }
4446 if (high_value != 0) {
4447 __ orl(first_high, high);
4448 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004449 } else {
4450 DCHECK(instruction->IsXor());
Mark Mendell3f6c7f62015-03-13 13:47:53 -04004451 if (low_value != 0) {
4452 __ xorl(first_low, low);
4453 }
4454 if (high_value != 0) {
4455 __ xorl(first_high, high);
4456 }
Nicolas Geoffray234d69d2015-03-09 10:28:50 +00004457 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004458 }
4459 }
4460}
4461
Calin Juravleb1498f62015-02-16 13:13:29 +00004462void LocationsBuilderX86::VisitBoundType(HBoundType* instruction) {
4463 // Nothing to do, this should be removed during prepare for register allocator.
4464 UNUSED(instruction);
4465 LOG(FATAL) << "Unreachable";
4466}
4467
4468void InstructionCodeGeneratorX86::VisitBoundType(HBoundType* instruction) {
4469 // Nothing to do, this should be removed during prepare for register allocator.
4470 UNUSED(instruction);
4471 LOG(FATAL) << "Unreachable";
4472}
4473
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00004474} // namespace x86
4475} // namespace art