blob: c8bd5d4fc899a0cf2557572b500fba5ecb66f48e [file] [log] [blame]
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001/*
2 * Copyright (C) 2015 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_mips.h"
18
Alexey Frunze4147fcc2017-06-17 19:57:27 -070019#include "arch/mips/asm_support_mips.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020020#include "arch/mips/entrypoints_direct_mips.h"
21#include "arch/mips/instruction_set_features_mips.h"
22#include "art_method.h"
Vladimir Marko94ec2db2017-09-06 17:21:03 +010023#include "class_table.h"
Chris Larsen701566a2015-10-27 15:29:13 -070024#include "code_generator_utils.h"
Vladimir Marko3a21e382016-09-02 12:38:38 +010025#include "compiled_method.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020026#include "entrypoints/quick/quick_entrypoints.h"
27#include "entrypoints/quick/quick_entrypoints_enum.h"
28#include "gc/accounting/card_table.h"
Andreas Gampe09659c22017-09-18 18:23:32 -070029#include "heap_poisoning.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020030#include "intrinsics.h"
Chris Larsen701566a2015-10-27 15:29:13 -070031#include "intrinsics_mips.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010032#include "linker/linker_patch.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020033#include "mirror/array-inl.h"
34#include "mirror/class-inl.h"
35#include "offsets.h"
Vladimir Marko174b2e22017-10-12 13:34:49 +010036#include "stack_map_stream.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020037#include "thread.h"
38#include "utils/assembler.h"
39#include "utils/mips/assembler_mips.h"
40#include "utils/stack_checks.h"
41
42namespace art {
43namespace mips {
44
45static constexpr int kCurrentMethodStackOffset = 0;
46static constexpr Register kMethodRegisterArgument = A0;
47
Alexey Frunze4147fcc2017-06-17 19:57:27 -070048// Flags controlling the use of thunks for Baker read barriers.
49constexpr bool kBakerReadBarrierThunksEnableForFields = true;
50constexpr bool kBakerReadBarrierThunksEnableForArrays = true;
51constexpr bool kBakerReadBarrierThunksEnableForGcRoots = true;
52
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010053Location MipsReturnLocation(DataType::Type return_type) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020054 switch (return_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +010055 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010056 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +010057 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010058 case DataType::Type::kInt8:
59 case DataType::Type::kUint16:
60 case DataType::Type::kInt16:
61 case DataType::Type::kInt32:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020062 return Location::RegisterLocation(V0);
63
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010064 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020065 return Location::RegisterPairLocation(V0, V1);
66
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010067 case DataType::Type::kFloat32:
68 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020069 return Location::FpuRegisterLocation(F0);
70
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010071 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020072 return Location();
73 }
74 UNREACHABLE();
75}
76
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010077Location InvokeDexCallingConventionVisitorMIPS::GetReturnLocation(DataType::Type type) const {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020078 return MipsReturnLocation(type);
79}
80
81Location InvokeDexCallingConventionVisitorMIPS::GetMethodLocation() const {
82 return Location::RegisterLocation(kMethodRegisterArgument);
83}
84
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010085Location InvokeDexCallingConventionVisitorMIPS::GetNextLocation(DataType::Type type) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020086 Location next_location;
87
88 switch (type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +010089 case DataType::Type::kReference:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010090 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +010091 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010092 case DataType::Type::kInt8:
93 case DataType::Type::kUint16:
94 case DataType::Type::kInt16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +010095 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020096 uint32_t gp_index = gp_index_++;
97 if (gp_index < calling_convention.GetNumberOfRegisters()) {
98 next_location = Location::RegisterLocation(calling_convention.GetRegisterAt(gp_index));
99 } else {
100 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
101 next_location = Location::StackSlot(stack_offset);
102 }
103 break;
104 }
105
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100106 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200107 uint32_t gp_index = gp_index_;
108 gp_index_ += 2;
109 if (gp_index + 1 < calling_convention.GetNumberOfRegisters()) {
Alexey Frunze1b8464d2016-11-12 17:22:05 -0800110 Register reg = calling_convention.GetRegisterAt(gp_index);
111 if (reg == A1 || reg == A3) {
112 gp_index_++; // Skip A1(A3), and use A2_A3(T0_T1) instead.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200113 gp_index++;
114 }
115 Register low_even = calling_convention.GetRegisterAt(gp_index);
116 Register high_odd = calling_convention.GetRegisterAt(gp_index + 1);
117 DCHECK_EQ(low_even + 1, high_odd);
118 next_location = Location::RegisterPairLocation(low_even, high_odd);
119 } else {
120 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
121 next_location = Location::DoubleStackSlot(stack_offset);
122 }
123 break;
124 }
125
126 // Note: both float and double types are stored in even FPU registers. On 32 bit FPU, double
127 // will take up the even/odd pair, while floats are stored in even regs only.
128 // On 64 bit FPU, both double and float are stored in even registers only.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100129 case DataType::Type::kFloat32:
130 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200131 uint32_t float_index = float_index_++;
132 if (float_index < calling_convention.GetNumberOfFpuRegisters()) {
133 next_location = Location::FpuRegisterLocation(
134 calling_convention.GetFpuRegisterAt(float_index));
135 } else {
136 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100137 next_location = DataType::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
138 : Location::StackSlot(stack_offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200139 }
140 break;
141 }
142
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100143 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200144 LOG(FATAL) << "Unexpected parameter type " << type;
145 break;
146 }
147
148 // Space on the stack is reserved for all arguments.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100149 stack_index_ += DataType::Is64BitType(type) ? 2 : 1;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200150
151 return next_location;
152}
153
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100154Location InvokeRuntimeCallingConvention::GetReturnLocation(DataType::Type type) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200155 return MipsReturnLocation(type);
156}
157
Roland Levillain7cbd27f2016-08-11 23:53:33 +0100158// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
159#define __ down_cast<CodeGeneratorMIPS*>(codegen)->GetAssembler()-> // NOLINT
Andreas Gampe542451c2016-07-26 09:02:02 -0700160#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kMipsPointerSize, x).Int32Value()
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200161
162class BoundsCheckSlowPathMIPS : public SlowPathCodeMIPS {
163 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000164 explicit BoundsCheckSlowPathMIPS(HBoundsCheck* instruction) : SlowPathCodeMIPS(instruction) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200165
166 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
167 LocationSummary* locations = instruction_->GetLocations();
168 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
169 __ Bind(GetEntryLabel());
170 if (instruction_->CanThrowIntoCatchBlock()) {
171 // Live registers will be restored in the catch block if caught.
172 SaveLiveRegisters(codegen, instruction_->GetLocations());
173 }
174 // We're moving two locations to locations that could overlap, so we need a parallel
175 // move resolver.
176 InvokeRuntimeCallingConvention calling_convention;
177 codegen->EmitParallelMoves(locations->InAt(0),
178 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100179 DataType::Type::kInt32,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200180 locations->InAt(1),
181 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100182 DataType::Type::kInt32);
Serban Constantinescufca16662016-07-14 09:21:59 +0100183 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt()
184 ? kQuickThrowStringBounds
185 : kQuickThrowArrayBounds;
186 mips_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this);
Vladimir Marko87f3fcb2016-04-28 15:52:11 +0100187 CheckEntrypointTypes<kQuickThrowStringBounds, void, int32_t, int32_t>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200188 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
189 }
190
191 bool IsFatal() const OVERRIDE { return true; }
192
193 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathMIPS"; }
194
195 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200196 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathMIPS);
197};
198
199class DivZeroCheckSlowPathMIPS : public SlowPathCodeMIPS {
200 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000201 explicit DivZeroCheckSlowPathMIPS(HDivZeroCheck* instruction) : SlowPathCodeMIPS(instruction) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200202
203 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
204 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
205 __ Bind(GetEntryLabel());
Serban Constantinescufca16662016-07-14 09:21:59 +0100206 mips_codegen->InvokeRuntime(kQuickThrowDivZero, instruction_, instruction_->GetDexPc(), this);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200207 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
208 }
209
210 bool IsFatal() const OVERRIDE { return true; }
211
212 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathMIPS"; }
213
214 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200215 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathMIPS);
216};
217
218class LoadClassSlowPathMIPS : public SlowPathCodeMIPS {
219 public:
220 LoadClassSlowPathMIPS(HLoadClass* cls,
221 HInstruction* at,
222 uint32_t dex_pc,
Vladimir Markof3c52b42017-11-17 17:32:12 +0000223 bool do_clinit)
Alexey Frunze5fa5c042017-06-01 21:07:52 -0700224 : SlowPathCodeMIPS(at),
225 cls_(cls),
226 dex_pc_(dex_pc),
Vladimir Markof3c52b42017-11-17 17:32:12 +0000227 do_clinit_(do_clinit) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200228 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
229 }
230
231 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000232 LocationSummary* locations = instruction_->GetLocations();
Alexey Frunzec61c0762017-04-10 13:54:23 -0700233 Location out = locations->Out();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200234 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
Alexey Frunzec61c0762017-04-10 13:54:23 -0700235 InvokeRuntimeCallingConvention calling_convention;
236 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200237 __ Bind(GetEntryLabel());
238 SaveLiveRegisters(codegen, locations);
239
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000240 dex::TypeIndex type_index = cls_->GetTypeIndex();
241 __ LoadConst32(calling_convention.GetRegisterAt(0), type_index.index_);
Serban Constantinescufca16662016-07-14 09:21:59 +0100242 QuickEntrypointEnum entrypoint = do_clinit_ ? kQuickInitializeStaticStorage
243 : kQuickInitializeType;
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000244 mips_codegen->InvokeRuntime(entrypoint, instruction_, dex_pc_, this);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200245 if (do_clinit_) {
246 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
247 } else {
248 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
249 }
250
251 // Move the class to the desired location.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200252 if (out.IsValid()) {
253 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100254 DataType::Type type = instruction_->GetType();
Alexey Frunzec61c0762017-04-10 13:54:23 -0700255 mips_codegen->MoveLocation(out,
256 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
257 type);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200258 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200259 RestoreLiveRegisters(codegen, locations);
Alexey Frunzec61c0762017-04-10 13:54:23 -0700260
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200261 __ B(GetExitLabel());
262 }
263
264 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathMIPS"; }
265
266 private:
267 // The class this slow path will load.
268 HLoadClass* const cls_;
269
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200270 // The dex PC of `at_`.
271 const uint32_t dex_pc_;
272
273 // Whether to initialize the class.
274 const bool do_clinit_;
275
276 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathMIPS);
277};
278
279class LoadStringSlowPathMIPS : public SlowPathCodeMIPS {
280 public:
Vladimir Markof3c52b42017-11-17 17:32:12 +0000281 explicit LoadStringSlowPathMIPS(HLoadString* instruction)
282 : SlowPathCodeMIPS(instruction) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200283
284 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexey Frunzec61c0762017-04-10 13:54:23 -0700285 DCHECK(instruction_->IsLoadString());
286 DCHECK_EQ(instruction_->AsLoadString()->GetLoadKind(), HLoadString::LoadKind::kBssEntry);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200287 LocationSummary* locations = instruction_->GetLocations();
288 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Vladimir Markof3c52b42017-11-17 17:32:12 +0000289 const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200290 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
Alexey Frunzec61c0762017-04-10 13:54:23 -0700291 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200292 __ Bind(GetEntryLabel());
293 SaveLiveRegisters(codegen, locations);
294
Vladimir Marko6bec91c2017-01-09 15:03:12 +0000295 __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_);
Serban Constantinescufca16662016-07-14 09:21:59 +0100296 mips_codegen->InvokeRuntime(kQuickResolveString, instruction_, instruction_->GetDexPc(), this);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200297 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Alexey Frunzec61c0762017-04-10 13:54:23 -0700298
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100299 DataType::Type type = instruction_->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200300 mips_codegen->MoveLocation(locations->Out(),
Alexey Frunzec61c0762017-04-10 13:54:23 -0700301 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200302 type);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200303 RestoreLiveRegisters(codegen, locations);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000304
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200305 __ B(GetExitLabel());
306 }
307
308 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathMIPS"; }
309
310 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200311 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathMIPS);
312};
313
314class NullCheckSlowPathMIPS : public SlowPathCodeMIPS {
315 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000316 explicit NullCheckSlowPathMIPS(HNullCheck* instr) : SlowPathCodeMIPS(instr) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200317
318 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
319 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
320 __ Bind(GetEntryLabel());
321 if (instruction_->CanThrowIntoCatchBlock()) {
322 // Live registers will be restored in the catch block if caught.
323 SaveLiveRegisters(codegen, instruction_->GetLocations());
324 }
Serban Constantinescufca16662016-07-14 09:21:59 +0100325 mips_codegen->InvokeRuntime(kQuickThrowNullPointer,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200326 instruction_,
327 instruction_->GetDexPc(),
Serban Constantinescufca16662016-07-14 09:21:59 +0100328 this);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200329 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
330 }
331
332 bool IsFatal() const OVERRIDE { return true; }
333
334 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathMIPS"; }
335
336 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200337 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathMIPS);
338};
339
340class SuspendCheckSlowPathMIPS : public SlowPathCodeMIPS {
341 public:
342 SuspendCheckSlowPathMIPS(HSuspendCheck* instruction, HBasicBlock* successor)
David Srbecky9cd6d372016-02-09 15:24:47 +0000343 : SlowPathCodeMIPS(instruction), successor_(successor) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200344
345 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Lena Djokicca8c2952017-05-29 11:31:46 +0200346 LocationSummary* locations = instruction_->GetLocations();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200347 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
348 __ Bind(GetEntryLabel());
Lena Djokicca8c2952017-05-29 11:31:46 +0200349 SaveLiveRegisters(codegen, locations); // Only saves live vector registers for SIMD.
Serban Constantinescufca16662016-07-14 09:21:59 +0100350 mips_codegen->InvokeRuntime(kQuickTestSuspend, instruction_, instruction_->GetDexPc(), this);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200351 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Lena Djokicca8c2952017-05-29 11:31:46 +0200352 RestoreLiveRegisters(codegen, locations); // Only restores live vector registers for SIMD.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200353 if (successor_ == nullptr) {
354 __ B(GetReturnLabel());
355 } else {
356 __ B(mips_codegen->GetLabelOf(successor_));
357 }
358 }
359
360 MipsLabel* GetReturnLabel() {
361 DCHECK(successor_ == nullptr);
362 return &return_label_;
363 }
364
365 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathMIPS"; }
366
Chris Larsena2045912017-11-02 12:39:54 -0700367 HBasicBlock* GetSuccessor() const {
368 return successor_;
369 }
370
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200371 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200372 // If not null, the block to branch to after the suspend check.
373 HBasicBlock* const successor_;
374
375 // If `successor_` is null, the label to branch to after the suspend check.
376 MipsLabel return_label_;
377
378 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathMIPS);
379};
380
381class TypeCheckSlowPathMIPS : public SlowPathCodeMIPS {
382 public:
Alexey Frunze66b69ad2017-02-24 00:51:44 -0800383 explicit TypeCheckSlowPathMIPS(HInstruction* instruction, bool is_fatal)
384 : SlowPathCodeMIPS(instruction), is_fatal_(is_fatal) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200385
386 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
387 LocationSummary* locations = instruction_->GetLocations();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200388 uint32_t dex_pc = instruction_->GetDexPc();
389 DCHECK(instruction_->IsCheckCast()
390 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
391 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
392
393 __ Bind(GetEntryLabel());
Alexey Frunze66b69ad2017-02-24 00:51:44 -0800394 if (!is_fatal_) {
395 SaveLiveRegisters(codegen, locations);
396 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200397
398 // We're moving two locations to locations that could overlap, so we need a parallel
399 // move resolver.
400 InvokeRuntimeCallingConvention calling_convention;
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800401 codegen->EmitParallelMoves(locations->InAt(0),
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200402 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100403 DataType::Type::kReference,
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800404 locations->InAt(1),
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200405 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100406 DataType::Type::kReference);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200407 if (instruction_->IsInstanceOf()) {
Serban Constantinescufca16662016-07-14 09:21:59 +0100408 mips_codegen->InvokeRuntime(kQuickInstanceofNonTrivial, instruction_, dex_pc, this);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800409 CheckEntrypointTypes<kQuickInstanceofNonTrivial, size_t, mirror::Object*, mirror::Class*>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100410 DataType::Type ret_type = instruction_->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200411 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
412 mips_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200413 } else {
414 DCHECK(instruction_->IsCheckCast());
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800415 mips_codegen->InvokeRuntime(kQuickCheckInstanceOf, instruction_, dex_pc, this);
416 CheckEntrypointTypes<kQuickCheckInstanceOf, void, mirror::Object*, mirror::Class*>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200417 }
418
Alexey Frunze66b69ad2017-02-24 00:51:44 -0800419 if (!is_fatal_) {
420 RestoreLiveRegisters(codegen, locations);
421 __ B(GetExitLabel());
422 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200423 }
424
425 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathMIPS"; }
426
Alexey Frunze66b69ad2017-02-24 00:51:44 -0800427 bool IsFatal() const OVERRIDE { return is_fatal_; }
428
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200429 private:
Alexey Frunze66b69ad2017-02-24 00:51:44 -0800430 const bool is_fatal_;
431
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200432 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathMIPS);
433};
434
435class DeoptimizationSlowPathMIPS : public SlowPathCodeMIPS {
436 public:
Aart Bik42249c32016-01-07 15:33:50 -0800437 explicit DeoptimizationSlowPathMIPS(HDeoptimize* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000438 : SlowPathCodeMIPS(instruction) {}
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200439
440 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Aart Bik42249c32016-01-07 15:33:50 -0800441 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200442 __ Bind(GetEntryLabel());
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100443 LocationSummary* locations = instruction_->GetLocations();
444 SaveLiveRegisters(codegen, locations);
445 InvokeRuntimeCallingConvention calling_convention;
446 __ LoadConst32(calling_convention.GetRegisterAt(0),
447 static_cast<uint32_t>(instruction_->AsDeoptimize()->GetDeoptimizationKind()));
Serban Constantinescufca16662016-07-14 09:21:59 +0100448 mips_codegen->InvokeRuntime(kQuickDeoptimize, instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100449 CheckEntrypointTypes<kQuickDeoptimize, void, DeoptimizationKind>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200450 }
451
452 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathMIPS"; }
453
454 private:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200455 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathMIPS);
456};
457
Alexey Frunze15958152017-02-09 19:08:30 -0800458class ArraySetSlowPathMIPS : public SlowPathCodeMIPS {
459 public:
460 explicit ArraySetSlowPathMIPS(HInstruction* instruction) : SlowPathCodeMIPS(instruction) {}
461
462 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
463 LocationSummary* locations = instruction_->GetLocations();
464 __ Bind(GetEntryLabel());
465 SaveLiveRegisters(codegen, locations);
466
467 InvokeRuntimeCallingConvention calling_convention;
Vladimir Markoca6fff82017-10-03 14:49:14 +0100468 HParallelMove parallel_move(codegen->GetGraph()->GetAllocator());
Alexey Frunze15958152017-02-09 19:08:30 -0800469 parallel_move.AddMove(
470 locations->InAt(0),
471 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100472 DataType::Type::kReference,
Alexey Frunze15958152017-02-09 19:08:30 -0800473 nullptr);
474 parallel_move.AddMove(
475 locations->InAt(1),
476 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100477 DataType::Type::kInt32,
Alexey Frunze15958152017-02-09 19:08:30 -0800478 nullptr);
479 parallel_move.AddMove(
480 locations->InAt(2),
481 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100482 DataType::Type::kReference,
Alexey Frunze15958152017-02-09 19:08:30 -0800483 nullptr);
484 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
485
486 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
487 mips_codegen->InvokeRuntime(kQuickAputObject, instruction_, instruction_->GetDexPc(), this);
488 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
489 RestoreLiveRegisters(codegen, locations);
490 __ B(GetExitLabel());
491 }
492
493 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathMIPS"; }
494
495 private:
496 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathMIPS);
497};
498
499// Slow path marking an object reference `ref` during a read
500// barrier. The field `obj.field` in the object `obj` holding this
501// reference does not get updated by this slow path after marking (see
502// ReadBarrierMarkAndUpdateFieldSlowPathMIPS below for that).
503//
504// This means that after the execution of this slow path, `ref` will
505// always be up-to-date, but `obj.field` may not; i.e., after the
506// flip, `ref` will be a to-space reference, but `obj.field` will
507// probably still be a from-space reference (unless it gets updated by
508// another thread, or if another thread installed another object
509// reference (different from `ref`) in `obj.field`).
510//
511// If `entrypoint` is a valid location it is assumed to already be
512// holding the entrypoint. The case where the entrypoint is passed in
513// is for the GcRoot read barrier.
514class ReadBarrierMarkSlowPathMIPS : public SlowPathCodeMIPS {
515 public:
516 ReadBarrierMarkSlowPathMIPS(HInstruction* instruction,
517 Location ref,
518 Location entrypoint = Location::NoLocation())
519 : SlowPathCodeMIPS(instruction), ref_(ref), entrypoint_(entrypoint) {
520 DCHECK(kEmitCompilerReadBarrier);
521 }
522
523 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathMIPS"; }
524
525 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
526 LocationSummary* locations = instruction_->GetLocations();
527 Register ref_reg = ref_.AsRegister<Register>();
528 DCHECK(locations->CanCall());
529 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
530 DCHECK(instruction_->IsInstanceFieldGet() ||
531 instruction_->IsStaticFieldGet() ||
532 instruction_->IsArrayGet() ||
533 instruction_->IsArraySet() ||
534 instruction_->IsLoadClass() ||
535 instruction_->IsLoadString() ||
536 instruction_->IsInstanceOf() ||
537 instruction_->IsCheckCast() ||
538 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()) ||
539 (instruction_->IsInvokeStaticOrDirect() && instruction_->GetLocations()->Intrinsified()))
540 << "Unexpected instruction in read barrier marking slow path: "
541 << instruction_->DebugName();
542
543 __ Bind(GetEntryLabel());
544 // No need to save live registers; it's taken care of by the
545 // entrypoint. Also, there is no need to update the stack mask,
546 // as this runtime call will not trigger a garbage collection.
547 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
548 DCHECK((V0 <= ref_reg && ref_reg <= T7) ||
549 (S2 <= ref_reg && ref_reg <= S7) ||
550 (ref_reg == FP)) << ref_reg;
551 // "Compact" slow path, saving two moves.
552 //
553 // Instead of using the standard runtime calling convention (input
554 // and output in A0 and V0 respectively):
555 //
556 // A0 <- ref
557 // V0 <- ReadBarrierMark(A0)
558 // ref <- V0
559 //
560 // we just use rX (the register containing `ref`) as input and output
561 // of a dedicated entrypoint:
562 //
563 // rX <- ReadBarrierMarkRegX(rX)
564 //
565 if (entrypoint_.IsValid()) {
566 mips_codegen->ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction_, this);
567 DCHECK_EQ(entrypoint_.AsRegister<Register>(), T9);
568 __ Jalr(entrypoint_.AsRegister<Register>());
569 __ NopIfNoReordering();
570 } else {
571 int32_t entry_point_offset =
Roland Levillain97c46462017-05-11 14:04:03 +0100572 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(ref_reg - 1);
Alexey Frunze15958152017-02-09 19:08:30 -0800573 // This runtime call does not require a stack map.
574 mips_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset,
575 instruction_,
576 this,
577 /* direct */ false);
578 }
579 __ B(GetExitLabel());
580 }
581
582 private:
583 // The location (register) of the marked object reference.
584 const Location ref_;
585
586 // The location of the entrypoint if already loaded.
587 const Location entrypoint_;
588
589 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathMIPS);
590};
591
592// Slow path marking an object reference `ref` during a read barrier,
593// and if needed, atomically updating the field `obj.field` in the
594// object `obj` holding this reference after marking (contrary to
595// ReadBarrierMarkSlowPathMIPS above, which never tries to update
596// `obj.field`).
597//
598// This means that after the execution of this slow path, both `ref`
599// and `obj.field` will be up-to-date; i.e., after the flip, both will
600// hold the same to-space reference (unless another thread installed
601// another object reference (different from `ref`) in `obj.field`).
602class ReadBarrierMarkAndUpdateFieldSlowPathMIPS : public SlowPathCodeMIPS {
603 public:
604 ReadBarrierMarkAndUpdateFieldSlowPathMIPS(HInstruction* instruction,
605 Location ref,
606 Register obj,
607 Location field_offset,
608 Register temp1)
609 : SlowPathCodeMIPS(instruction),
610 ref_(ref),
611 obj_(obj),
612 field_offset_(field_offset),
613 temp1_(temp1) {
614 DCHECK(kEmitCompilerReadBarrier);
615 }
616
617 const char* GetDescription() const OVERRIDE {
618 return "ReadBarrierMarkAndUpdateFieldSlowPathMIPS";
619 }
620
621 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
622 LocationSummary* locations = instruction_->GetLocations();
623 Register ref_reg = ref_.AsRegister<Register>();
624 DCHECK(locations->CanCall());
625 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
626 // This slow path is only used by the UnsafeCASObject intrinsic.
627 DCHECK((instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
628 << "Unexpected instruction in read barrier marking and field updating slow path: "
629 << instruction_->DebugName();
630 DCHECK(instruction_->GetLocations()->Intrinsified());
631 DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kUnsafeCASObject);
632 DCHECK(field_offset_.IsRegisterPair()) << field_offset_;
633
634 __ Bind(GetEntryLabel());
635
636 // Save the old reference.
637 // Note that we cannot use AT or TMP to save the old reference, as those
638 // are used by the code that follows, but we need the old reference after
639 // the call to the ReadBarrierMarkRegX entry point.
640 DCHECK_NE(temp1_, AT);
641 DCHECK_NE(temp1_, TMP);
642 __ Move(temp1_, ref_reg);
643
644 // No need to save live registers; it's taken care of by the
645 // entrypoint. Also, there is no need to update the stack mask,
646 // as this runtime call will not trigger a garbage collection.
647 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
648 DCHECK((V0 <= ref_reg && ref_reg <= T7) ||
649 (S2 <= ref_reg && ref_reg <= S7) ||
650 (ref_reg == FP)) << ref_reg;
651 // "Compact" slow path, saving two moves.
652 //
653 // Instead of using the standard runtime calling convention (input
654 // and output in A0 and V0 respectively):
655 //
656 // A0 <- ref
657 // V0 <- ReadBarrierMark(A0)
658 // ref <- V0
659 //
660 // we just use rX (the register containing `ref`) as input and output
661 // of a dedicated entrypoint:
662 //
663 // rX <- ReadBarrierMarkRegX(rX)
664 //
665 int32_t entry_point_offset =
Roland Levillain97c46462017-05-11 14:04:03 +0100666 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(ref_reg - 1);
Alexey Frunze15958152017-02-09 19:08:30 -0800667 // This runtime call does not require a stack map.
668 mips_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset,
669 instruction_,
670 this,
671 /* direct */ false);
672
673 // If the new reference is different from the old reference,
674 // update the field in the holder (`*(obj_ + field_offset_)`).
675 //
676 // Note that this field could also hold a different object, if
677 // another thread had concurrently changed it. In that case, the
678 // the compare-and-set (CAS) loop below would abort, leaving the
679 // field as-is.
680 MipsLabel done;
681 __ Beq(temp1_, ref_reg, &done);
682
683 // Update the the holder's field atomically. This may fail if
684 // mutator updates before us, but it's OK. This is achieved
685 // using a strong compare-and-set (CAS) operation with relaxed
686 // memory synchronization ordering, where the expected value is
687 // the old reference and the desired value is the new reference.
688
689 // Convenience aliases.
690 Register base = obj_;
691 // The UnsafeCASObject intrinsic uses a register pair as field
692 // offset ("long offset"), of which only the low part contains
693 // data.
694 Register offset = field_offset_.AsRegisterPairLow<Register>();
695 Register expected = temp1_;
696 Register value = ref_reg;
697 Register tmp_ptr = TMP; // Pointer to actual memory.
698 Register tmp = AT; // Value in memory.
699
700 __ Addu(tmp_ptr, base, offset);
701
702 if (kPoisonHeapReferences) {
703 __ PoisonHeapReference(expected);
704 // Do not poison `value` if it is the same register as
705 // `expected`, which has just been poisoned.
706 if (value != expected) {
707 __ PoisonHeapReference(value);
708 }
709 }
710
711 // do {
712 // tmp = [r_ptr] - expected;
713 // } while (tmp == 0 && failure([r_ptr] <- r_new_value));
714
715 bool is_r6 = mips_codegen->GetInstructionSetFeatures().IsR6();
716 MipsLabel loop_head, exit_loop;
717 __ Bind(&loop_head);
718 if (is_r6) {
719 __ LlR6(tmp, tmp_ptr);
720 } else {
721 __ LlR2(tmp, tmp_ptr);
722 }
723 __ Bne(tmp, expected, &exit_loop);
724 __ Move(tmp, value);
725 if (is_r6) {
726 __ ScR6(tmp, tmp_ptr);
727 } else {
728 __ ScR2(tmp, tmp_ptr);
729 }
730 __ Beqz(tmp, &loop_head);
731 __ Bind(&exit_loop);
732
733 if (kPoisonHeapReferences) {
734 __ UnpoisonHeapReference(expected);
735 // Do not unpoison `value` if it is the same register as
736 // `expected`, which has just been unpoisoned.
737 if (value != expected) {
738 __ UnpoisonHeapReference(value);
739 }
740 }
741
742 __ Bind(&done);
743 __ B(GetExitLabel());
744 }
745
746 private:
747 // The location (register) of the marked object reference.
748 const Location ref_;
749 // The register containing the object holding the marked object reference field.
750 const Register obj_;
751 // The location of the offset of the marked reference field within `obj_`.
752 Location field_offset_;
753
754 const Register temp1_;
755
756 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkAndUpdateFieldSlowPathMIPS);
757};
758
759// Slow path generating a read barrier for a heap reference.
760class ReadBarrierForHeapReferenceSlowPathMIPS : public SlowPathCodeMIPS {
761 public:
762 ReadBarrierForHeapReferenceSlowPathMIPS(HInstruction* instruction,
763 Location out,
764 Location ref,
765 Location obj,
766 uint32_t offset,
767 Location index)
768 : SlowPathCodeMIPS(instruction),
769 out_(out),
770 ref_(ref),
771 obj_(obj),
772 offset_(offset),
773 index_(index) {
774 DCHECK(kEmitCompilerReadBarrier);
775 // If `obj` is equal to `out` or `ref`, it means the initial object
776 // has been overwritten by (or after) the heap object reference load
777 // to be instrumented, e.g.:
778 //
779 // __ LoadFromOffset(kLoadWord, out, out, offset);
780 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
781 //
782 // In that case, we have lost the information about the original
783 // object, and the emitted read barrier cannot work properly.
784 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
785 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
786 }
787
788 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
789 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
790 LocationSummary* locations = instruction_->GetLocations();
791 Register reg_out = out_.AsRegister<Register>();
792 DCHECK(locations->CanCall());
793 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
794 DCHECK(instruction_->IsInstanceFieldGet() ||
795 instruction_->IsStaticFieldGet() ||
796 instruction_->IsArrayGet() ||
797 instruction_->IsInstanceOf() ||
798 instruction_->IsCheckCast() ||
799 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
800 << "Unexpected instruction in read barrier for heap reference slow path: "
801 << instruction_->DebugName();
802
803 __ Bind(GetEntryLabel());
804 SaveLiveRegisters(codegen, locations);
805
806 // We may have to change the index's value, but as `index_` is a
807 // constant member (like other "inputs" of this slow path),
808 // introduce a copy of it, `index`.
809 Location index = index_;
810 if (index_.IsValid()) {
811 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
812 if (instruction_->IsArrayGet()) {
813 // Compute the actual memory offset and store it in `index`.
814 Register index_reg = index_.AsRegister<Register>();
815 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg));
816 if (codegen->IsCoreCalleeSaveRegister(index_reg)) {
817 // We are about to change the value of `index_reg` (see the
818 // calls to art::mips::MipsAssembler::Sll and
819 // art::mips::MipsAssembler::Addiu32 below), but it has
820 // not been saved by the previous call to
821 // art::SlowPathCode::SaveLiveRegisters, as it is a
822 // callee-save register --
823 // art::SlowPathCode::SaveLiveRegisters does not consider
824 // callee-save registers, as it has been designed with the
825 // assumption that callee-save registers are supposed to be
826 // handled by the called function. So, as a callee-save
827 // register, `index_reg` _would_ eventually be saved onto
828 // the stack, but it would be too late: we would have
829 // changed its value earlier. Therefore, we manually save
830 // it here into another freely available register,
831 // `free_reg`, chosen of course among the caller-save
832 // registers (as a callee-save `free_reg` register would
833 // exhibit the same problem).
834 //
835 // Note we could have requested a temporary register from
836 // the register allocator instead; but we prefer not to, as
837 // this is a slow path, and we know we can find a
838 // caller-save register that is available.
839 Register free_reg = FindAvailableCallerSaveRegister(codegen);
840 __ Move(free_reg, index_reg);
841 index_reg = free_reg;
842 index = Location::RegisterLocation(index_reg);
843 } else {
844 // The initial register stored in `index_` has already been
845 // saved in the call to art::SlowPathCode::SaveLiveRegisters
846 // (as it is not a callee-save register), so we can freely
847 // use it.
848 }
849 // Shifting the index value contained in `index_reg` by the scale
850 // factor (2) cannot overflow in practice, as the runtime is
851 // unable to allocate object arrays with a size larger than
852 // 2^26 - 1 (that is, 2^28 - 4 bytes).
853 __ Sll(index_reg, index_reg, TIMES_4);
854 static_assert(
855 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
856 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
857 __ Addiu32(index_reg, index_reg, offset_);
858 } else {
859 // In the case of the UnsafeGetObject/UnsafeGetObjectVolatile
860 // intrinsics, `index_` is not shifted by a scale factor of 2
861 // (as in the case of ArrayGet), as it is actually an offset
862 // to an object field within an object.
863 DCHECK(instruction_->IsInvoke()) << instruction_->DebugName();
864 DCHECK(instruction_->GetLocations()->Intrinsified());
865 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
866 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
867 << instruction_->AsInvoke()->GetIntrinsic();
868 DCHECK_EQ(offset_, 0U);
869 DCHECK(index_.IsRegisterPair());
870 // UnsafeGet's offset location is a register pair, the low
871 // part contains the correct offset.
872 index = index_.ToLow();
873 }
874 }
875
876 // We're moving two or three locations to locations that could
877 // overlap, so we need a parallel move resolver.
878 InvokeRuntimeCallingConvention calling_convention;
Vladimir Markoca6fff82017-10-03 14:49:14 +0100879 HParallelMove parallel_move(codegen->GetGraph()->GetAllocator());
Alexey Frunze15958152017-02-09 19:08:30 -0800880 parallel_move.AddMove(ref_,
881 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100882 DataType::Type::kReference,
Alexey Frunze15958152017-02-09 19:08:30 -0800883 nullptr);
884 parallel_move.AddMove(obj_,
885 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100886 DataType::Type::kReference,
Alexey Frunze15958152017-02-09 19:08:30 -0800887 nullptr);
888 if (index.IsValid()) {
889 parallel_move.AddMove(index,
890 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100891 DataType::Type::kInt32,
Alexey Frunze15958152017-02-09 19:08:30 -0800892 nullptr);
893 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
894 } else {
895 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
896 __ LoadConst32(calling_convention.GetRegisterAt(2), offset_);
897 }
898 mips_codegen->InvokeRuntime(kQuickReadBarrierSlow,
899 instruction_,
900 instruction_->GetDexPc(),
901 this);
902 CheckEntrypointTypes<
903 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
Lena Djokic8098da92017-06-28 12:07:50 +0200904 mips_codegen->MoveLocation(out_,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100905 calling_convention.GetReturnLocation(DataType::Type::kReference),
906 DataType::Type::kReference);
Alexey Frunze15958152017-02-09 19:08:30 -0800907
908 RestoreLiveRegisters(codegen, locations);
909 __ B(GetExitLabel());
910 }
911
912 const char* GetDescription() const OVERRIDE { return "ReadBarrierForHeapReferenceSlowPathMIPS"; }
913
914 private:
915 Register FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
916 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
917 size_t obj = static_cast<int>(obj_.AsRegister<Register>());
918 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
919 if (i != ref &&
920 i != obj &&
921 !codegen->IsCoreCalleeSaveRegister(i) &&
922 !codegen->IsBlockedCoreRegister(i)) {
923 return static_cast<Register>(i);
924 }
925 }
926 // We shall never fail to find a free caller-save register, as
927 // there are more than two core caller-save registers on MIPS
928 // (meaning it is possible to find one which is different from
929 // `ref` and `obj`).
930 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
931 LOG(FATAL) << "Could not find a free caller-save register";
932 UNREACHABLE();
933 }
934
935 const Location out_;
936 const Location ref_;
937 const Location obj_;
938 const uint32_t offset_;
939 // An additional location containing an index to an array.
940 // Only used for HArrayGet and the UnsafeGetObject &
941 // UnsafeGetObjectVolatile intrinsics.
942 const Location index_;
943
944 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathMIPS);
945};
946
947// Slow path generating a read barrier for a GC root.
948class ReadBarrierForRootSlowPathMIPS : public SlowPathCodeMIPS {
949 public:
950 ReadBarrierForRootSlowPathMIPS(HInstruction* instruction, Location out, Location root)
951 : SlowPathCodeMIPS(instruction), out_(out), root_(root) {
952 DCHECK(kEmitCompilerReadBarrier);
953 }
954
955 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
956 LocationSummary* locations = instruction_->GetLocations();
957 Register reg_out = out_.AsRegister<Register>();
958 DCHECK(locations->CanCall());
959 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
960 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
961 << "Unexpected instruction in read barrier for GC root slow path: "
962 << instruction_->DebugName();
963
964 __ Bind(GetEntryLabel());
965 SaveLiveRegisters(codegen, locations);
966
967 InvokeRuntimeCallingConvention calling_convention;
968 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
Lena Djokic8098da92017-06-28 12:07:50 +0200969 mips_codegen->MoveLocation(Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
970 root_,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100971 DataType::Type::kReference);
Alexey Frunze15958152017-02-09 19:08:30 -0800972 mips_codegen->InvokeRuntime(kQuickReadBarrierForRootSlow,
973 instruction_,
974 instruction_->GetDexPc(),
975 this);
976 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
Lena Djokic8098da92017-06-28 12:07:50 +0200977 mips_codegen->MoveLocation(out_,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100978 calling_convention.GetReturnLocation(DataType::Type::kReference),
979 DataType::Type::kReference);
Alexey Frunze15958152017-02-09 19:08:30 -0800980
981 RestoreLiveRegisters(codegen, locations);
982 __ B(GetExitLabel());
983 }
984
985 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathMIPS"; }
986
987 private:
988 const Location out_;
989 const Location root_;
990
991 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathMIPS);
992};
993
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200994CodeGeneratorMIPS::CodeGeneratorMIPS(HGraph* graph,
995 const MipsInstructionSetFeatures& isa_features,
996 const CompilerOptions& compiler_options,
997 OptimizingCompilerStats* stats)
998 : CodeGenerator(graph,
999 kNumberOfCoreRegisters,
1000 kNumberOfFRegisters,
1001 kNumberOfRegisterPairs,
1002 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
1003 arraysize(kCoreCalleeSaves)),
1004 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
1005 arraysize(kFpuCalleeSaves)),
1006 compiler_options,
1007 stats),
1008 block_labels_(nullptr),
1009 location_builder_(graph, this),
1010 instruction_visitor_(graph, this),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001011 move_resolver_(graph->GetAllocator(), this),
1012 assembler_(graph->GetAllocator(), &isa_features),
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001013 isa_features_(isa_features),
Alexey Frunze06a46c42016-07-19 15:00:40 -07001014 uint32_literals_(std::less<uint32_t>(),
Vladimir Markoca6fff82017-10-03 14:49:14 +01001015 graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1016 pc_relative_method_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1017 method_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1018 pc_relative_type_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1019 type_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1020 pc_relative_string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1021 string_bss_entry_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1022 jit_string_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
1023 jit_class_patches_(graph->GetAllocator()->Adapter(kArenaAllocCodeGenerator)),
Alexey Frunze06a46c42016-07-19 15:00:40 -07001024 clobbered_ra_(false) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001025 // Save RA (containing the return address) to mimic Quick.
1026 AddAllocatedRegister(Location::RegisterLocation(RA));
1027}
1028
1029#undef __
Roland Levillain7cbd27f2016-08-11 23:53:33 +01001030// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
1031#define __ down_cast<MipsAssembler*>(GetAssembler())-> // NOLINT
Andreas Gampe542451c2016-07-26 09:02:02 -07001032#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kMipsPointerSize, x).Int32Value()
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001033
1034void CodeGeneratorMIPS::Finalize(CodeAllocator* allocator) {
1035 // Ensure that we fix up branches.
1036 __ FinalizeCode();
1037
1038 // Adjust native pc offsets in stack maps.
Vladimir Marko174b2e22017-10-12 13:34:49 +01001039 StackMapStream* stack_map_stream = GetStackMapStream();
1040 for (size_t i = 0, num = stack_map_stream->GetNumberOfStackMaps(); i != num; ++i) {
Mathieu Chartiera2f526f2017-01-19 14:48:48 -08001041 uint32_t old_position =
Vladimir Marko33bff252017-11-01 14:35:42 +00001042 stack_map_stream->GetStackMap(i).native_pc_code_offset.Uint32Value(InstructionSet::kMips);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001043 uint32_t new_position = __ GetAdjustedPosition(old_position);
1044 DCHECK_GE(new_position, old_position);
Vladimir Marko174b2e22017-10-12 13:34:49 +01001045 stack_map_stream->SetStackMapNativePcOffset(i, new_position);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001046 }
1047
1048 // Adjust pc offsets for the disassembly information.
1049 if (disasm_info_ != nullptr) {
1050 GeneratedCodeInterval* frame_entry_interval = disasm_info_->GetFrameEntryInterval();
1051 frame_entry_interval->start = __ GetAdjustedPosition(frame_entry_interval->start);
1052 frame_entry_interval->end = __ GetAdjustedPosition(frame_entry_interval->end);
1053 for (auto& it : *disasm_info_->GetInstructionIntervals()) {
1054 it.second.start = __ GetAdjustedPosition(it.second.start);
1055 it.second.end = __ GetAdjustedPosition(it.second.end);
1056 }
1057 for (auto& it : *disasm_info_->GetSlowPathIntervals()) {
1058 it.code_interval.start = __ GetAdjustedPosition(it.code_interval.start);
1059 it.code_interval.end = __ GetAdjustedPosition(it.code_interval.end);
1060 }
1061 }
1062
1063 CodeGenerator::Finalize(allocator);
1064}
1065
1066MipsAssembler* ParallelMoveResolverMIPS::GetAssembler() const {
1067 return codegen_->GetAssembler();
1068}
1069
1070void ParallelMoveResolverMIPS::EmitMove(size_t index) {
1071 DCHECK_LT(index, moves_.size());
1072 MoveOperands* move = moves_[index];
1073 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), move->GetType());
1074}
1075
1076void ParallelMoveResolverMIPS::EmitSwap(size_t index) {
1077 DCHECK_LT(index, moves_.size());
1078 MoveOperands* move = moves_[index];
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001079 DataType::Type type = move->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001080 Location loc1 = move->GetDestination();
1081 Location loc2 = move->GetSource();
1082
1083 DCHECK(!loc1.IsConstant());
1084 DCHECK(!loc2.IsConstant());
1085
1086 if (loc1.Equals(loc2)) {
1087 return;
1088 }
1089
1090 if (loc1.IsRegister() && loc2.IsRegister()) {
1091 // Swap 2 GPRs.
1092 Register r1 = loc1.AsRegister<Register>();
1093 Register r2 = loc2.AsRegister<Register>();
1094 __ Move(TMP, r2);
1095 __ Move(r2, r1);
1096 __ Move(r1, TMP);
1097 } else if (loc1.IsFpuRegister() && loc2.IsFpuRegister()) {
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001098 if (codegen_->GetGraph()->HasSIMD()) {
1099 __ MoveV(static_cast<VectorRegister>(FTMP), VectorRegisterFrom(loc1));
1100 __ MoveV(VectorRegisterFrom(loc1), VectorRegisterFrom(loc2));
1101 __ MoveV(VectorRegisterFrom(loc2), static_cast<VectorRegister>(FTMP));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001102 } else {
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001103 FRegister f1 = loc1.AsFpuRegister<FRegister>();
1104 FRegister f2 = loc2.AsFpuRegister<FRegister>();
1105 if (type == DataType::Type::kFloat32) {
1106 __ MovS(FTMP, f2);
1107 __ MovS(f2, f1);
1108 __ MovS(f1, FTMP);
1109 } else {
1110 DCHECK_EQ(type, DataType::Type::kFloat64);
1111 __ MovD(FTMP, f2);
1112 __ MovD(f2, f1);
1113 __ MovD(f1, FTMP);
1114 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001115 }
1116 } else if ((loc1.IsRegister() && loc2.IsFpuRegister()) ||
1117 (loc1.IsFpuRegister() && loc2.IsRegister())) {
1118 // Swap FPR and GPR.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001119 DCHECK_EQ(type, DataType::Type::kFloat32); // Can only swap a float.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001120 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>()
1121 : loc2.AsFpuRegister<FRegister>();
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001122 Register r2 = loc1.IsRegister() ? loc1.AsRegister<Register>() : loc2.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001123 __ Move(TMP, r2);
1124 __ Mfc1(r2, f1);
1125 __ Mtc1(TMP, f1);
1126 } else if (loc1.IsRegisterPair() && loc2.IsRegisterPair()) {
1127 // Swap 2 GPR register pairs.
1128 Register r1 = loc1.AsRegisterPairLow<Register>();
1129 Register r2 = loc2.AsRegisterPairLow<Register>();
1130 __ Move(TMP, r2);
1131 __ Move(r2, r1);
1132 __ Move(r1, TMP);
1133 r1 = loc1.AsRegisterPairHigh<Register>();
1134 r2 = loc2.AsRegisterPairHigh<Register>();
1135 __ Move(TMP, r2);
1136 __ Move(r2, r1);
1137 __ Move(r1, TMP);
1138 } else if ((loc1.IsRegisterPair() && loc2.IsFpuRegister()) ||
1139 (loc1.IsFpuRegister() && loc2.IsRegisterPair())) {
1140 // Swap FPR and GPR register pair.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001141 DCHECK_EQ(type, DataType::Type::kFloat64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001142 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>()
1143 : loc2.AsFpuRegister<FRegister>();
1144 Register r2_l = loc1.IsRegisterPair() ? loc1.AsRegisterPairLow<Register>()
1145 : loc2.AsRegisterPairLow<Register>();
1146 Register r2_h = loc1.IsRegisterPair() ? loc1.AsRegisterPairHigh<Register>()
1147 : loc2.AsRegisterPairHigh<Register>();
1148 // Use 2 temporary registers because we can't first swap the low 32 bits of an FPR and
1149 // then swap the high 32 bits of the same FPR. mtc1 makes the high 32 bits of an FPR
1150 // unpredictable and the following mfch1 will fail.
1151 __ Mfc1(TMP, f1);
Alexey Frunzebb9863a2016-01-11 15:51:16 -08001152 __ MoveFromFpuHigh(AT, f1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001153 __ Mtc1(r2_l, f1);
Alexey Frunzebb9863a2016-01-11 15:51:16 -08001154 __ MoveToFpuHigh(r2_h, f1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001155 __ Move(r2_l, TMP);
1156 __ Move(r2_h, AT);
1157 } else if (loc1.IsStackSlot() && loc2.IsStackSlot()) {
1158 Exchange(loc1.GetStackIndex(), loc2.GetStackIndex(), /* double_slot */ false);
1159 } else if (loc1.IsDoubleStackSlot() && loc2.IsDoubleStackSlot()) {
1160 Exchange(loc1.GetStackIndex(), loc2.GetStackIndex(), /* double_slot */ true);
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001161 } else if (loc1.IsSIMDStackSlot() && loc2.IsSIMDStackSlot()) {
1162 ExchangeQuadSlots(loc1.GetStackIndex(), loc2.GetStackIndex());
David Brazdilcc0f3112016-01-28 17:14:52 +00001163 } else if ((loc1.IsRegister() && loc2.IsStackSlot()) ||
1164 (loc1.IsStackSlot() && loc2.IsRegister())) {
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001165 Register reg = loc1.IsRegister() ? loc1.AsRegister<Register>() : loc2.AsRegister<Register>();
1166 intptr_t offset = loc1.IsStackSlot() ? loc1.GetStackIndex() : loc2.GetStackIndex();
David Brazdilcc0f3112016-01-28 17:14:52 +00001167 __ Move(TMP, reg);
1168 __ LoadFromOffset(kLoadWord, reg, SP, offset);
1169 __ StoreToOffset(kStoreWord, TMP, SP, offset);
1170 } else if ((loc1.IsRegisterPair() && loc2.IsDoubleStackSlot()) ||
1171 (loc1.IsDoubleStackSlot() && loc2.IsRegisterPair())) {
1172 Register reg_l = loc1.IsRegisterPair() ? loc1.AsRegisterPairLow<Register>()
1173 : loc2.AsRegisterPairLow<Register>();
1174 Register reg_h = loc1.IsRegisterPair() ? loc1.AsRegisterPairHigh<Register>()
1175 : loc2.AsRegisterPairHigh<Register>();
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001176 intptr_t offset_l = loc1.IsDoubleStackSlot() ? loc1.GetStackIndex() : loc2.GetStackIndex();
David Brazdilcc0f3112016-01-28 17:14:52 +00001177 intptr_t offset_h = loc1.IsDoubleStackSlot() ? loc1.GetHighStackIndex(kMipsWordSize)
1178 : loc2.GetHighStackIndex(kMipsWordSize);
1179 __ Move(TMP, reg_l);
David Brazdilcc0f3112016-01-28 17:14:52 +00001180 __ LoadFromOffset(kLoadWord, reg_l, SP, offset_l);
David Brazdilcc0f3112016-01-28 17:14:52 +00001181 __ StoreToOffset(kStoreWord, TMP, SP, offset_l);
David Brazdil04d3e872016-01-29 09:50:09 +00001182 __ Move(TMP, reg_h);
1183 __ LoadFromOffset(kLoadWord, reg_h, SP, offset_h);
1184 __ StoreToOffset(kStoreWord, TMP, SP, offset_h);
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001185 } else if ((loc1.IsFpuRegister() && loc2.IsSIMDStackSlot()) ||
1186 (loc1.IsSIMDStackSlot() && loc2.IsFpuRegister())) {
1187 Location fp_loc = loc1.IsFpuRegister() ? loc1 : loc2;
1188 intptr_t offset = loc1.IsFpuRegister() ? loc2.GetStackIndex() : loc1.GetStackIndex();
1189 __ MoveV(static_cast<VectorRegister>(FTMP), VectorRegisterFrom(fp_loc));
1190 __ LoadQFromOffset(fp_loc.AsFpuRegister<FRegister>(), SP, offset);
1191 __ StoreQToOffset(FTMP, SP, offset);
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001192 } else if (loc1.IsFpuRegister() || loc2.IsFpuRegister()) {
1193 FRegister reg = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>()
1194 : loc2.AsFpuRegister<FRegister>();
1195 intptr_t offset = loc1.IsFpuRegister() ? loc2.GetStackIndex() : loc1.GetStackIndex();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001196 if (type == DataType::Type::kFloat32) {
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001197 __ MovS(FTMP, reg);
1198 __ LoadSFromOffset(reg, SP, offset);
1199 __ StoreSToOffset(FTMP, SP, offset);
1200 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001201 DCHECK_EQ(type, DataType::Type::kFloat64);
Goran Jakovljevic35dfcaa2016-09-22 09:26:01 +02001202 __ MovD(FTMP, reg);
1203 __ LoadDFromOffset(reg, SP, offset);
1204 __ StoreDToOffset(FTMP, SP, offset);
1205 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001206 } else {
1207 LOG(FATAL) << "Swap between " << loc1 << " and " << loc2 << " is unsupported";
1208 }
1209}
1210
1211void ParallelMoveResolverMIPS::RestoreScratch(int reg) {
1212 __ Pop(static_cast<Register>(reg));
1213}
1214
1215void ParallelMoveResolverMIPS::SpillScratch(int reg) {
1216 __ Push(static_cast<Register>(reg));
1217}
1218
1219void ParallelMoveResolverMIPS::Exchange(int index1, int index2, bool double_slot) {
1220 // Allocate a scratch register other than TMP, if available.
1221 // Else, spill V0 (arbitrary choice) and use it as a scratch register (it will be
1222 // automatically unspilled when the scratch scope object is destroyed).
1223 ScratchRegisterScope ensure_scratch(this, TMP, V0, codegen_->GetNumberOfCoreRegisters());
1224 // If V0 spills onto the stack, SP-relative offsets need to be adjusted.
Chris Larsen715f43e2017-10-23 11:00:32 -07001225 int stack_offset = ensure_scratch.IsSpilled() ? kStackAlignment : 0;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001226 for (int i = 0; i <= (double_slot ? 1 : 0); i++, stack_offset += kMipsWordSize) {
1227 __ LoadFromOffset(kLoadWord,
1228 Register(ensure_scratch.GetRegister()),
1229 SP,
1230 index1 + stack_offset);
1231 __ LoadFromOffset(kLoadWord,
1232 TMP,
1233 SP,
1234 index2 + stack_offset);
1235 __ StoreToOffset(kStoreWord,
1236 Register(ensure_scratch.GetRegister()),
1237 SP,
1238 index2 + stack_offset);
1239 __ StoreToOffset(kStoreWord, TMP, SP, index1 + stack_offset);
1240 }
1241}
1242
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001243void ParallelMoveResolverMIPS::ExchangeQuadSlots(int index1, int index2) {
1244 __ LoadQFromOffset(FTMP, SP, index1);
1245 __ LoadQFromOffset(FTMP2, SP, index2);
1246 __ StoreQToOffset(FTMP, SP, index2);
1247 __ StoreQToOffset(FTMP2, SP, index1);
1248}
1249
Alexey Frunze73296a72016-06-03 22:51:46 -07001250void CodeGeneratorMIPS::ComputeSpillMask() {
1251 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
1252 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
1253 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
1254 // If there're FPU callee-saved registers and there's an odd number of GPR callee-saved
1255 // registers, include the ZERO register to force alignment of FPU callee-saved registers
1256 // within the stack frame.
1257 if ((fpu_spill_mask_ != 0) && (POPCOUNT(core_spill_mask_) % 2 != 0)) {
1258 core_spill_mask_ |= (1 << ZERO);
1259 }
Alexey Frunze58320ce2016-08-30 21:40:46 -07001260}
1261
1262bool CodeGeneratorMIPS::HasAllocatedCalleeSaveRegisters() const {
Alexey Frunze06a46c42016-07-19 15:00:40 -07001263 // If RA is clobbered by PC-relative operations on R2 and it's the only spilled register
Alexey Frunze58320ce2016-08-30 21:40:46 -07001264 // (this can happen in leaf methods), force CodeGenerator::InitializeCodeGeneration()
1265 // into the path that creates a stack frame so that RA can be explicitly saved and restored.
1266 // RA can't otherwise be saved/restored when it's the only spilled register.
Alexey Frunze58320ce2016-08-30 21:40:46 -07001267 return CodeGenerator::HasAllocatedCalleeSaveRegisters() || clobbered_ra_;
Alexey Frunze73296a72016-06-03 22:51:46 -07001268}
1269
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001270static dwarf::Reg DWARFReg(Register reg) {
1271 return dwarf::Reg::MipsCore(static_cast<int>(reg));
1272}
1273
1274// TODO: mapping of floating-point registers to DWARF.
1275
1276void CodeGeneratorMIPS::GenerateFrameEntry() {
1277 __ Bind(&frame_entry_label_);
1278
Vladimir Marko33bff252017-11-01 14:35:42 +00001279 bool do_overflow_check =
1280 FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kMips) || !IsLeafMethod();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001281
1282 if (do_overflow_check) {
1283 __ LoadFromOffset(kLoadWord,
1284 ZERO,
1285 SP,
Vladimir Marko33bff252017-11-01 14:35:42 +00001286 -static_cast<int32_t>(GetStackOverflowReservedBytes(InstructionSet::kMips)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001287 RecordPcInfo(nullptr, 0);
1288 }
1289
1290 if (HasEmptyFrame()) {
Alexey Frunze58320ce2016-08-30 21:40:46 -07001291 CHECK_EQ(fpu_spill_mask_, 0u);
1292 CHECK_EQ(core_spill_mask_, 1u << RA);
1293 CHECK(!clobbered_ra_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001294 return;
1295 }
1296
1297 // Make sure the frame size isn't unreasonably large.
Vladimir Marko33bff252017-11-01 14:35:42 +00001298 if (GetFrameSize() > GetStackOverflowReservedBytes(InstructionSet::kMips)) {
1299 LOG(FATAL) << "Stack frame larger than "
1300 << GetStackOverflowReservedBytes(InstructionSet::kMips) << " bytes";
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001301 }
1302
1303 // Spill callee-saved registers.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001304
Alexey Frunze73296a72016-06-03 22:51:46 -07001305 uint32_t ofs = GetFrameSize();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001306 __ IncreaseFrameSize(ofs);
1307
Alexey Frunze73296a72016-06-03 22:51:46 -07001308 for (uint32_t mask = core_spill_mask_; mask != 0; ) {
1309 Register reg = static_cast<Register>(MostSignificantBit(mask));
1310 mask ^= 1u << reg;
1311 ofs -= kMipsWordSize;
1312 // The ZERO register is only included for alignment.
1313 if (reg != ZERO) {
1314 __ StoreToOffset(kStoreWord, reg, SP, ofs);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001315 __ cfi().RelOffset(DWARFReg(reg), ofs);
1316 }
1317 }
1318
Alexey Frunze73296a72016-06-03 22:51:46 -07001319 for (uint32_t mask = fpu_spill_mask_; mask != 0; ) {
1320 FRegister reg = static_cast<FRegister>(MostSignificantBit(mask));
1321 mask ^= 1u << reg;
1322 ofs -= kMipsDoublewordSize;
1323 __ StoreDToOffset(reg, SP, ofs);
1324 // TODO: __ cfi().RelOffset(DWARFReg(reg), ofs);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001325 }
1326
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01001327 // Save the current method if we need it. Note that we do not
1328 // do this in HCurrentMethod, as the instruction might have been removed
1329 // in the SSA graph.
1330 if (RequiresCurrentMethod()) {
1331 __ StoreToOffset(kStoreWord, kMethodRegisterArgument, SP, kCurrentMethodStackOffset);
1332 }
Goran Jakovljevicc6418422016-12-05 16:31:55 +01001333
1334 if (GetGraph()->HasShouldDeoptimizeFlag()) {
1335 // Initialize should deoptimize flag to 0.
1336 __ StoreToOffset(kStoreWord, ZERO, SP, GetStackOffsetOfShouldDeoptimizeFlag());
1337 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001338}
1339
1340void CodeGeneratorMIPS::GenerateFrameExit() {
1341 __ cfi().RememberState();
1342
1343 if (!HasEmptyFrame()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001344 // Restore callee-saved registers.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001345
Alexey Frunze73296a72016-06-03 22:51:46 -07001346 // For better instruction scheduling restore RA before other registers.
1347 uint32_t ofs = GetFrameSize();
1348 for (uint32_t mask = core_spill_mask_; mask != 0; ) {
1349 Register reg = static_cast<Register>(MostSignificantBit(mask));
1350 mask ^= 1u << reg;
1351 ofs -= kMipsWordSize;
1352 // The ZERO register is only included for alignment.
1353 if (reg != ZERO) {
1354 __ LoadFromOffset(kLoadWord, reg, SP, ofs);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001355 __ cfi().Restore(DWARFReg(reg));
1356 }
1357 }
1358
Alexey Frunze73296a72016-06-03 22:51:46 -07001359 for (uint32_t mask = fpu_spill_mask_; mask != 0; ) {
1360 FRegister reg = static_cast<FRegister>(MostSignificantBit(mask));
1361 mask ^= 1u << reg;
1362 ofs -= kMipsDoublewordSize;
1363 __ LoadDFromOffset(reg, SP, ofs);
1364 // TODO: __ cfi().Restore(DWARFReg(reg));
1365 }
1366
Alexey Frunze57eb0f52016-07-29 22:04:46 -07001367 size_t frame_size = GetFrameSize();
1368 // Adjust the stack pointer in the delay slot if doing so doesn't break CFI.
1369 bool exchange = IsInt<16>(static_cast<int32_t>(frame_size));
1370 bool reordering = __ SetReorder(false);
1371 if (exchange) {
1372 __ Jr(RA);
1373 __ DecreaseFrameSize(frame_size); // Single instruction in delay slot.
1374 } else {
1375 __ DecreaseFrameSize(frame_size);
1376 __ Jr(RA);
1377 __ Nop(); // In delay slot.
1378 }
1379 __ SetReorder(reordering);
1380 } else {
1381 __ Jr(RA);
1382 __ NopIfNoReordering();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001383 }
1384
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001385 __ cfi().RestoreState();
1386 __ cfi().DefCFAOffset(GetFrameSize());
1387}
1388
1389void CodeGeneratorMIPS::Bind(HBasicBlock* block) {
1390 __ Bind(GetLabelOf(block));
1391}
1392
Lena Djokicca8c2952017-05-29 11:31:46 +02001393VectorRegister VectorRegisterFrom(Location location) {
1394 DCHECK(location.IsFpuRegister());
1395 return static_cast<VectorRegister>(location.AsFpuRegister<FRegister>());
1396}
1397
Lena Djokic8098da92017-06-28 12:07:50 +02001398void CodeGeneratorMIPS::MoveLocation(Location destination,
1399 Location source,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001400 DataType::Type dst_type) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001401 if (source.Equals(destination)) {
1402 return;
1403 }
1404
Lena Djokic8098da92017-06-28 12:07:50 +02001405 if (source.IsConstant()) {
1406 MoveConstant(destination, source.GetConstant());
1407 } else {
1408 if (destination.IsRegister()) {
1409 if (source.IsRegister()) {
1410 __ Move(destination.AsRegister<Register>(), source.AsRegister<Register>());
1411 } else if (source.IsFpuRegister()) {
1412 __ Mfc1(destination.AsRegister<Register>(), source.AsFpuRegister<FRegister>());
1413 } else {
1414 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001415 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Lena Djokic8098da92017-06-28 12:07:50 +02001416 }
1417 } else if (destination.IsRegisterPair()) {
1418 if (source.IsRegisterPair()) {
1419 __ Move(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
1420 __ Move(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
1421 } else if (source.IsFpuRegister()) {
1422 Register dst_high = destination.AsRegisterPairHigh<Register>();
1423 Register dst_low = destination.AsRegisterPairLow<Register>();
1424 FRegister src = source.AsFpuRegister<FRegister>();
1425 __ Mfc1(dst_low, src);
1426 __ MoveFromFpuHigh(dst_high, src);
1427 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001428 DCHECK(source.IsDoubleStackSlot())
1429 << "Cannot move from " << source << " to " << destination;
Lena Djokic8098da92017-06-28 12:07:50 +02001430 int32_t off = source.GetStackIndex();
1431 Register r = destination.AsRegisterPairLow<Register>();
1432 __ LoadFromOffset(kLoadDoubleword, r, SP, off);
1433 }
1434 } else if (destination.IsFpuRegister()) {
1435 if (source.IsRegister()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001436 DCHECK(!DataType::Is64BitType(dst_type));
Lena Djokic8098da92017-06-28 12:07:50 +02001437 __ Mtc1(source.AsRegister<Register>(), destination.AsFpuRegister<FRegister>());
1438 } else if (source.IsRegisterPair()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001439 DCHECK(DataType::Is64BitType(dst_type));
Lena Djokic8098da92017-06-28 12:07:50 +02001440 FRegister dst = destination.AsFpuRegister<FRegister>();
1441 Register src_high = source.AsRegisterPairHigh<Register>();
1442 Register src_low = source.AsRegisterPairLow<Register>();
1443 __ Mtc1(src_low, dst);
1444 __ MoveToFpuHigh(src_high, dst);
1445 } else if (source.IsFpuRegister()) {
Lena Djokicca8c2952017-05-29 11:31:46 +02001446 if (GetGraph()->HasSIMD()) {
1447 __ MoveV(VectorRegisterFrom(destination),
1448 VectorRegisterFrom(source));
Lena Djokic8098da92017-06-28 12:07:50 +02001449 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001450 if (DataType::Is64BitType(dst_type)) {
Lena Djokicca8c2952017-05-29 11:31:46 +02001451 __ MovD(destination.AsFpuRegister<FRegister>(), source.AsFpuRegister<FRegister>());
1452 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001453 DCHECK_EQ(dst_type, DataType::Type::kFloat32);
Lena Djokicca8c2952017-05-29 11:31:46 +02001454 __ MovS(destination.AsFpuRegister<FRegister>(), source.AsFpuRegister<FRegister>());
1455 }
Lena Djokic8098da92017-06-28 12:07:50 +02001456 }
Lena Djokicca8c2952017-05-29 11:31:46 +02001457 } else if (source.IsSIMDStackSlot()) {
1458 __ LoadQFromOffset(destination.AsFpuRegister<FRegister>(), SP, source.GetStackIndex());
Lena Djokic8098da92017-06-28 12:07:50 +02001459 } else if (source.IsDoubleStackSlot()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001460 DCHECK(DataType::Is64BitType(dst_type));
Lena Djokic8098da92017-06-28 12:07:50 +02001461 __ LoadDFromOffset(destination.AsFpuRegister<FRegister>(), SP, source.GetStackIndex());
1462 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001463 DCHECK(!DataType::Is64BitType(dst_type));
Lena Djokic8098da92017-06-28 12:07:50 +02001464 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
1465 __ LoadSFromOffset(destination.AsFpuRegister<FRegister>(), SP, source.GetStackIndex());
1466 }
Lena Djokicca8c2952017-05-29 11:31:46 +02001467 } else if (destination.IsSIMDStackSlot()) {
1468 if (source.IsFpuRegister()) {
1469 __ StoreQToOffset(source.AsFpuRegister<FRegister>(), SP, destination.GetStackIndex());
1470 } else {
1471 DCHECK(source.IsSIMDStackSlot());
1472 __ LoadQFromOffset(FTMP, SP, source.GetStackIndex());
1473 __ StoreQToOffset(FTMP, SP, destination.GetStackIndex());
1474 }
Lena Djokic8098da92017-06-28 12:07:50 +02001475 } else if (destination.IsDoubleStackSlot()) {
1476 int32_t dst_offset = destination.GetStackIndex();
1477 if (source.IsRegisterPair()) {
1478 __ StoreToOffset(kStoreDoubleword, source.AsRegisterPairLow<Register>(), SP, dst_offset);
1479 } else if (source.IsFpuRegister()) {
1480 __ StoreDToOffset(source.AsFpuRegister<FRegister>(), SP, dst_offset);
1481 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001482 DCHECK(source.IsDoubleStackSlot())
1483 << "Cannot move from " << source << " to " << destination;
Lena Djokic8098da92017-06-28 12:07:50 +02001484 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex());
1485 __ StoreToOffset(kStoreWord, TMP, SP, dst_offset);
1486 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex() + 4);
1487 __ StoreToOffset(kStoreWord, TMP, SP, dst_offset + 4);
1488 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001489 } else {
Lena Djokic8098da92017-06-28 12:07:50 +02001490 DCHECK(destination.IsStackSlot()) << destination;
1491 int32_t dst_offset = destination.GetStackIndex();
1492 if (source.IsRegister()) {
1493 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, dst_offset);
1494 } else if (source.IsFpuRegister()) {
1495 __ StoreSToOffset(source.AsFpuRegister<FRegister>(), SP, dst_offset);
1496 } else {
1497 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
1498 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex());
1499 __ StoreToOffset(kStoreWord, TMP, SP, dst_offset);
1500 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001501 }
1502 }
1503}
1504
1505void CodeGeneratorMIPS::MoveConstant(Location destination, HConstant* c) {
1506 if (c->IsIntConstant() || c->IsNullConstant()) {
1507 // Move 32 bit constant.
1508 int32_t value = GetInt32ValueOf(c);
1509 if (destination.IsRegister()) {
1510 Register dst = destination.AsRegister<Register>();
1511 __ LoadConst32(dst, value);
1512 } else {
1513 DCHECK(destination.IsStackSlot())
1514 << "Cannot move " << c->DebugName() << " to " << destination;
Alexey Frunzef58b2482016-09-02 22:14:06 -07001515 __ StoreConstToOffset(kStoreWord, value, SP, destination.GetStackIndex(), TMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001516 }
1517 } else if (c->IsLongConstant()) {
1518 // Move 64 bit constant.
1519 int64_t value = GetInt64ValueOf(c);
1520 if (destination.IsRegisterPair()) {
1521 Register r_h = destination.AsRegisterPairHigh<Register>();
1522 Register r_l = destination.AsRegisterPairLow<Register>();
1523 __ LoadConst64(r_h, r_l, value);
1524 } else {
1525 DCHECK(destination.IsDoubleStackSlot())
1526 << "Cannot move " << c->DebugName() << " to " << destination;
Alexey Frunzef58b2482016-09-02 22:14:06 -07001527 __ StoreConstToOffset(kStoreDoubleword, value, SP, destination.GetStackIndex(), TMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001528 }
1529 } else if (c->IsFloatConstant()) {
1530 // Move 32 bit float constant.
1531 int32_t value = GetInt32ValueOf(c);
1532 if (destination.IsFpuRegister()) {
1533 __ LoadSConst32(destination.AsFpuRegister<FRegister>(), value, TMP);
1534 } else {
1535 DCHECK(destination.IsStackSlot())
1536 << "Cannot move " << c->DebugName() << " to " << destination;
Alexey Frunzef58b2482016-09-02 22:14:06 -07001537 __ StoreConstToOffset(kStoreWord, value, SP, destination.GetStackIndex(), TMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001538 }
1539 } else {
1540 // Move 64 bit double constant.
1541 DCHECK(c->IsDoubleConstant()) << c->DebugName();
1542 int64_t value = GetInt64ValueOf(c);
1543 if (destination.IsFpuRegister()) {
1544 FRegister fd = destination.AsFpuRegister<FRegister>();
1545 __ LoadDConst64(fd, value, TMP);
1546 } else {
1547 DCHECK(destination.IsDoubleStackSlot())
1548 << "Cannot move " << c->DebugName() << " to " << destination;
Alexey Frunzef58b2482016-09-02 22:14:06 -07001549 __ StoreConstToOffset(kStoreDoubleword, value, SP, destination.GetStackIndex(), TMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001550 }
1551 }
1552}
1553
1554void CodeGeneratorMIPS::MoveConstant(Location destination, int32_t value) {
1555 DCHECK(destination.IsRegister());
1556 Register dst = destination.AsRegister<Register>();
1557 __ LoadConst32(dst, value);
1558}
1559
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001560void CodeGeneratorMIPS::AddLocationAsTemp(Location location, LocationSummary* locations) {
1561 if (location.IsRegister()) {
1562 locations->AddTemp(location);
Alexey Frunzec9e94f32015-10-26 16:11:39 -07001563 } else if (location.IsRegisterPair()) {
1564 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1565 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001566 } else {
1567 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1568 }
1569}
1570
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001571template <linker::LinkerPatch (*Factory)(size_t, const DexFile*, uint32_t, uint32_t)>
Vladimir Markoaad75c62016-10-03 08:46:48 +00001572inline void CodeGeneratorMIPS::EmitPcRelativeLinkerPatches(
1573 const ArenaDeque<PcRelativePatchInfo>& infos,
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001574 ArenaVector<linker::LinkerPatch>* linker_patches) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001575 for (const PcRelativePatchInfo& info : infos) {
1576 const DexFile& dex_file = info.target_dex_file;
1577 size_t offset_or_index = info.offset_or_index;
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001578 DCHECK(info.label.IsBound());
1579 uint32_t literal_offset = __ GetLabelLocation(&info.label);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001580 // On R2 we use HMipsComputeBaseMethodAddress and patch relative to
1581 // the assembler's base label used for PC-relative addressing.
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001582 const PcRelativePatchInfo& info_high = info.patch_info_high ? *info.patch_info_high : info;
1583 uint32_t pc_rel_offset = info_high.pc_rel_label.IsBound()
1584 ? __ GetLabelLocation(&info_high.pc_rel_label)
Vladimir Markoaad75c62016-10-03 08:46:48 +00001585 : __ GetPcRelBaseLabelLocation();
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001586 linker_patches->push_back(Factory(literal_offset, &dex_file, pc_rel_offset, offset_or_index));
Vladimir Markoaad75c62016-10-03 08:46:48 +00001587 }
1588}
1589
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001590void CodeGeneratorMIPS::EmitLinkerPatches(ArenaVector<linker::LinkerPatch>* linker_patches) {
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001591 DCHECK(linker_patches->empty());
1592 size_t size =
Vladimir Marko65979462017-05-19 17:25:12 +01001593 pc_relative_method_patches_.size() +
Vladimir Marko0eb882b2017-05-15 13:39:18 +01001594 method_bss_entry_patches_.size() +
Alexey Frunze06a46c42016-07-19 15:00:40 -07001595 pc_relative_type_patches_.size() +
Vladimir Marko65979462017-05-19 17:25:12 +01001596 type_bss_entry_patches_.size() +
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01001597 pc_relative_string_patches_.size() +
1598 string_bss_entry_patches_.size();
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001599 linker_patches->reserve(size);
Vladimir Marko65979462017-05-19 17:25:12 +01001600 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001601 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeMethodPatch>(
1602 pc_relative_method_patches_, linker_patches);
1603 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeTypePatch>(
1604 pc_relative_type_patches_, linker_patches);
1605 EmitPcRelativeLinkerPatches<linker::LinkerPatch::RelativeStringPatch>(
1606 pc_relative_string_patches_, linker_patches);
Vladimir Marko65979462017-05-19 17:25:12 +01001607 } else {
1608 DCHECK(pc_relative_method_patches_.empty());
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001609 EmitPcRelativeLinkerPatches<linker::LinkerPatch::TypeClassTablePatch>(
1610 pc_relative_type_patches_, linker_patches);
1611 EmitPcRelativeLinkerPatches<linker::LinkerPatch::StringInternTablePatch>(
1612 pc_relative_string_patches_, linker_patches);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001613 }
Vladimir Markod8dbc8d2017-09-20 13:37:47 +01001614 EmitPcRelativeLinkerPatches<linker::LinkerPatch::MethodBssEntryPatch>(
1615 method_bss_entry_patches_, linker_patches);
1616 EmitPcRelativeLinkerPatches<linker::LinkerPatch::TypeBssEntryPatch>(
1617 type_bss_entry_patches_, linker_patches);
1618 EmitPcRelativeLinkerPatches<linker::LinkerPatch::StringBssEntryPatch>(
1619 string_bss_entry_patches_, linker_patches);
Vladimir Marko1998cd02017-01-13 13:02:58 +00001620 DCHECK_EQ(size, linker_patches->size());
Alexey Frunze06a46c42016-07-19 15:00:40 -07001621}
1622
Vladimir Marko65979462017-05-19 17:25:12 +01001623CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewPcRelativeMethodPatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001624 MethodReference target_method,
1625 const PcRelativePatchInfo* info_high) {
Vladimir Marko65979462017-05-19 17:25:12 +01001626 return NewPcRelativePatch(*target_method.dex_file,
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07001627 target_method.index,
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001628 info_high,
Vladimir Marko65979462017-05-19 17:25:12 +01001629 &pc_relative_method_patches_);
Alexey Frunze06a46c42016-07-19 15:00:40 -07001630}
1631
Vladimir Marko0eb882b2017-05-15 13:39:18 +01001632CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewMethodBssEntryPatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001633 MethodReference target_method,
1634 const PcRelativePatchInfo* info_high) {
Vladimir Marko0eb882b2017-05-15 13:39:18 +01001635 return NewPcRelativePatch(*target_method.dex_file,
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07001636 target_method.index,
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001637 info_high,
Vladimir Marko0eb882b2017-05-15 13:39:18 +01001638 &method_bss_entry_patches_);
1639}
1640
Alexey Frunze06a46c42016-07-19 15:00:40 -07001641CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewPcRelativeTypePatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001642 const DexFile& dex_file,
1643 dex::TypeIndex type_index,
1644 const PcRelativePatchInfo* info_high) {
1645 return NewPcRelativePatch(dex_file, type_index.index_, info_high, &pc_relative_type_patches_);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001646}
1647
Vladimir Marko1998cd02017-01-13 13:02:58 +00001648CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewTypeBssEntryPatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001649 const DexFile& dex_file,
1650 dex::TypeIndex type_index,
1651 const PcRelativePatchInfo* info_high) {
1652 return NewPcRelativePatch(dex_file, type_index.index_, info_high, &type_bss_entry_patches_);
Vladimir Marko1998cd02017-01-13 13:02:58 +00001653}
1654
Vladimir Marko65979462017-05-19 17:25:12 +01001655CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewPcRelativeStringPatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001656 const DexFile& dex_file,
1657 dex::StringIndex string_index,
1658 const PcRelativePatchInfo* info_high) {
1659 return NewPcRelativePatch(dex_file, string_index.index_, info_high, &pc_relative_string_patches_);
Vladimir Marko65979462017-05-19 17:25:12 +01001660}
1661
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01001662CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewStringBssEntryPatch(
1663 const DexFile& dex_file,
1664 dex::StringIndex string_index,
1665 const PcRelativePatchInfo* info_high) {
1666 return NewPcRelativePatch(dex_file, string_index.index_, info_high, &string_bss_entry_patches_);
1667}
1668
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001669CodeGeneratorMIPS::PcRelativePatchInfo* CodeGeneratorMIPS::NewPcRelativePatch(
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001670 const DexFile& dex_file,
1671 uint32_t offset_or_index,
1672 const PcRelativePatchInfo* info_high,
1673 ArenaDeque<PcRelativePatchInfo>* patches) {
1674 patches->emplace_back(dex_file, offset_or_index, info_high);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07001675 return &patches->back();
1676}
1677
Alexey Frunze06a46c42016-07-19 15:00:40 -07001678Literal* CodeGeneratorMIPS::DeduplicateUint32Literal(uint32_t value, Uint32ToLiteralMap* map) {
1679 return map->GetOrCreate(
1680 value,
1681 [this, value]() { return __ NewLiteral<uint32_t>(value); });
1682}
1683
Alexey Frunze06a46c42016-07-19 15:00:40 -07001684Literal* CodeGeneratorMIPS::DeduplicateBootImageAddressLiteral(uint32_t address) {
Richard Uhlerc52f3032017-03-02 13:45:45 +00001685 return DeduplicateUint32Literal(dchecked_integral_cast<uint32_t>(address), &uint32_literals_);
Alexey Frunze06a46c42016-07-19 15:00:40 -07001686}
1687
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001688void CodeGeneratorMIPS::EmitPcRelativeAddressPlaceholderHigh(PcRelativePatchInfo* info_high,
Alexey Frunze6b892cd2017-01-03 17:11:38 -08001689 Register out,
Alexey Frunzea663d9d2017-07-31 18:43:18 -07001690 Register base) {
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001691 DCHECK(!info_high->patch_info_high);
Alexey Frunze6079dca2017-05-28 19:10:28 -07001692 DCHECK_NE(out, base);
Alexey Frunzea663d9d2017-07-31 18:43:18 -07001693 bool reordering = __ SetReorder(false);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001694 if (GetInstructionSetFeatures().IsR6()) {
1695 DCHECK_EQ(base, ZERO);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001696 __ Bind(&info_high->label);
1697 __ Bind(&info_high->pc_rel_label);
Alexey Frunze6b892cd2017-01-03 17:11:38 -08001698 // Add the high half of a 32-bit offset to PC.
Vladimir Markoaad75c62016-10-03 08:46:48 +00001699 __ Auipc(out, /* placeholder */ 0x1234);
Alexey Frunzea663d9d2017-07-31 18:43:18 -07001700 __ SetReorder(reordering);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001701 } else {
1702 // If base is ZERO, emit NAL to obtain the actual base.
1703 if (base == ZERO) {
1704 // Generate a dummy PC-relative call to obtain PC.
1705 __ Nal();
1706 }
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001707 __ Bind(&info_high->label);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001708 __ Lui(out, /* placeholder */ 0x1234);
1709 // If we emitted the NAL, bind the pc_rel_label, otherwise base is a register holding
1710 // the HMipsComputeBaseMethodAddress which has its own label stored in MipsAssembler.
1711 if (base == ZERO) {
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001712 __ Bind(&info_high->pc_rel_label);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001713 }
Alexey Frunzea663d9d2017-07-31 18:43:18 -07001714 __ SetReorder(reordering);
Alexey Frunze6b892cd2017-01-03 17:11:38 -08001715 // Add the high half of a 32-bit offset to PC.
Vladimir Markoaad75c62016-10-03 08:46:48 +00001716 __ Addu(out, out, (base == ZERO) ? RA : base);
1717 }
Alexey Frunze5fa5c042017-06-01 21:07:52 -07001718 // A following instruction will add the sign-extended low half of the 32-bit
Alexey Frunze6b892cd2017-01-03 17:11:38 -08001719 // offset to `out` (e.g. lw, jialc, addiu).
Vladimir Markoaad75c62016-10-03 08:46:48 +00001720}
1721
Alexey Frunze627c1a02017-01-30 19:28:14 -08001722CodeGeneratorMIPS::JitPatchInfo* CodeGeneratorMIPS::NewJitRootStringPatch(
1723 const DexFile& dex_file,
Vladimir Marko174b2e22017-10-12 13:34:49 +01001724 dex::StringIndex string_index,
Alexey Frunze627c1a02017-01-30 19:28:14 -08001725 Handle<mirror::String> handle) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001726 ReserveJitStringRoot(StringReference(&dex_file, string_index), handle);
1727 jit_string_patches_.emplace_back(dex_file, string_index.index_);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001728 return &jit_string_patches_.back();
1729}
1730
1731CodeGeneratorMIPS::JitPatchInfo* CodeGeneratorMIPS::NewJitRootClassPatch(
1732 const DexFile& dex_file,
Vladimir Marko174b2e22017-10-12 13:34:49 +01001733 dex::TypeIndex type_index,
Alexey Frunze627c1a02017-01-30 19:28:14 -08001734 Handle<mirror::Class> handle) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001735 ReserveJitClassRoot(TypeReference(&dex_file, type_index), handle);
1736 jit_class_patches_.emplace_back(dex_file, type_index.index_);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001737 return &jit_class_patches_.back();
1738}
1739
1740void CodeGeneratorMIPS::PatchJitRootUse(uint8_t* code,
1741 const uint8_t* roots_data,
1742 const CodeGeneratorMIPS::JitPatchInfo& info,
1743 uint64_t index_in_table) const {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001744 uint32_t high_literal_offset = GetAssembler().GetLabelLocation(&info.high_label);
1745 uint32_t low_literal_offset = GetAssembler().GetLabelLocation(&info.low_label);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001746 uintptr_t address =
1747 reinterpret_cast<uintptr_t>(roots_data) + index_in_table * sizeof(GcRoot<mirror::Object>);
1748 uint32_t addr32 = dchecked_integral_cast<uint32_t>(address);
1749 // lui reg, addr32_high
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001750 DCHECK_EQ(code[high_literal_offset + 0], 0x34);
1751 DCHECK_EQ(code[high_literal_offset + 1], 0x12);
1752 DCHECK_EQ((code[high_literal_offset + 2] & 0xE0), 0x00);
1753 DCHECK_EQ(code[high_literal_offset + 3], 0x3C);
Alexey Frunzec61c0762017-04-10 13:54:23 -07001754 // instr reg, reg, addr32_low
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001755 DCHECK_EQ(code[low_literal_offset + 0], 0x78);
1756 DCHECK_EQ(code[low_literal_offset + 1], 0x56);
Alexey Frunzec61c0762017-04-10 13:54:23 -07001757 addr32 += (addr32 & 0x8000) << 1; // Account for sign extension in "instr reg, reg, addr32_low".
Alexey Frunze627c1a02017-01-30 19:28:14 -08001758 // lui reg, addr32_high
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001759 code[high_literal_offset + 0] = static_cast<uint8_t>(addr32 >> 16);
1760 code[high_literal_offset + 1] = static_cast<uint8_t>(addr32 >> 24);
Alexey Frunzec61c0762017-04-10 13:54:23 -07001761 // instr reg, reg, addr32_low
Alexey Frunze4147fcc2017-06-17 19:57:27 -07001762 code[low_literal_offset + 0] = static_cast<uint8_t>(addr32 >> 0);
1763 code[low_literal_offset + 1] = static_cast<uint8_t>(addr32 >> 8);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001764}
1765
1766void CodeGeneratorMIPS::EmitJitRootPatches(uint8_t* code, const uint8_t* roots_data) {
1767 for (const JitPatchInfo& info : jit_string_patches_) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001768 StringReference string_reference(&info.target_dex_file, dex::StringIndex(info.index));
1769 uint64_t index_in_table = GetJitStringRootIndex(string_reference);
Vladimir Marko7d157fc2017-05-10 16:29:23 +01001770 PatchJitRootUse(code, roots_data, info, index_in_table);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001771 }
1772 for (const JitPatchInfo& info : jit_class_patches_) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001773 TypeReference type_reference(&info.target_dex_file, dex::TypeIndex(info.index));
1774 uint64_t index_in_table = GetJitClassRootIndex(type_reference);
Vladimir Marko7d157fc2017-05-10 16:29:23 +01001775 PatchJitRootUse(code, roots_data, info, index_in_table);
Alexey Frunze627c1a02017-01-30 19:28:14 -08001776 }
1777}
1778
Goran Jakovljevice114da22016-12-26 14:21:43 +01001779void CodeGeneratorMIPS::MarkGCCard(Register object,
1780 Register value,
1781 bool value_can_be_null) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001782 MipsLabel done;
1783 Register card = AT;
1784 Register temp = TMP;
Goran Jakovljevice114da22016-12-26 14:21:43 +01001785 if (value_can_be_null) {
1786 __ Beqz(value, &done);
1787 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001788 __ LoadFromOffset(kLoadWord,
1789 card,
1790 TR,
Andreas Gampe542451c2016-07-26 09:02:02 -07001791 Thread::CardTableOffset<kMipsPointerSize>().Int32Value());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001792 __ Srl(temp, object, gc::accounting::CardTable::kCardShift);
1793 __ Addu(temp, card, temp);
1794 __ Sb(card, temp, 0);
Goran Jakovljevice114da22016-12-26 14:21:43 +01001795 if (value_can_be_null) {
1796 __ Bind(&done);
1797 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001798}
1799
David Brazdil58282f42016-01-14 12:45:10 +00001800void CodeGeneratorMIPS::SetupBlockedRegisters() const {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001801 // ZERO, K0, K1, GP, SP, RA are always reserved and can't be allocated.
1802 blocked_core_registers_[ZERO] = true;
1803 blocked_core_registers_[K0] = true;
1804 blocked_core_registers_[K1] = true;
1805 blocked_core_registers_[GP] = true;
1806 blocked_core_registers_[SP] = true;
1807 blocked_core_registers_[RA] = true;
1808
1809 // AT and TMP(T8) are used as temporary/scratch registers
1810 // (similar to how AT is used by MIPS assemblers).
1811 blocked_core_registers_[AT] = true;
1812 blocked_core_registers_[TMP] = true;
1813 blocked_fpu_registers_[FTMP] = true;
1814
Goran Jakovljevice7de5ec2017-12-14 10:25:20 +01001815 if (GetInstructionSetFeatures().HasMsa()) {
1816 // To be used just for MSA instructions.
1817 blocked_fpu_registers_[FTMP2] = true;
1818 }
1819
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001820 // Reserve suspend and thread registers.
1821 blocked_core_registers_[S0] = true;
1822 blocked_core_registers_[TR] = true;
1823
1824 // Reserve T9 for function calls
1825 blocked_core_registers_[T9] = true;
1826
1827 // Reserve odd-numbered FPU registers.
1828 for (size_t i = 1; i < kNumberOfFRegisters; i += 2) {
1829 blocked_fpu_registers_[i] = true;
1830 }
1831
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02001832 if (GetGraph()->IsDebuggable()) {
1833 // Stubs do not save callee-save floating point registers. If the graph
1834 // is debuggable, we need to deal with these registers differently. For
1835 // now, just block them.
1836 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
1837 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
1838 }
1839 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001840}
1841
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001842size_t CodeGeneratorMIPS::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
1843 __ StoreToOffset(kStoreWord, Register(reg_id), SP, stack_index);
1844 return kMipsWordSize;
1845}
1846
1847size_t CodeGeneratorMIPS::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
1848 __ LoadFromOffset(kLoadWord, Register(reg_id), SP, stack_index);
1849 return kMipsWordSize;
1850}
1851
1852size_t CodeGeneratorMIPS::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
Lena Djokicca8c2952017-05-29 11:31:46 +02001853 if (GetGraph()->HasSIMD()) {
1854 __ StoreQToOffset(FRegister(reg_id), SP, stack_index);
1855 } else {
1856 __ StoreDToOffset(FRegister(reg_id), SP, stack_index);
1857 }
1858 return GetFloatingPointSpillSlotSize();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001859}
1860
1861size_t CodeGeneratorMIPS::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
Lena Djokicca8c2952017-05-29 11:31:46 +02001862 if (GetGraph()->HasSIMD()) {
1863 __ LoadQFromOffset(FRegister(reg_id), SP, stack_index);
1864 } else {
1865 __ LoadDFromOffset(FRegister(reg_id), SP, stack_index);
1866 }
1867 return GetFloatingPointSpillSlotSize();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001868}
1869
1870void CodeGeneratorMIPS::DumpCoreRegister(std::ostream& stream, int reg) const {
Vladimir Marko623a7a22016-02-02 18:14:52 +00001871 stream << Register(reg);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001872}
1873
1874void CodeGeneratorMIPS::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
Vladimir Marko623a7a22016-02-02 18:14:52 +00001875 stream << FRegister(reg);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001876}
1877
Serban Constantinescufca16662016-07-14 09:21:59 +01001878constexpr size_t kMipsDirectEntrypointRuntimeOffset = 16;
1879
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001880void CodeGeneratorMIPS::InvokeRuntime(QuickEntrypointEnum entrypoint,
1881 HInstruction* instruction,
1882 uint32_t dex_pc,
1883 SlowPathCode* slow_path) {
Alexandre Rames91a65162016-09-19 13:54:30 +01001884 ValidateInvokeRuntime(entrypoint, instruction, slow_path);
Alexey Frunze15958152017-02-09 19:08:30 -08001885 GenerateInvokeRuntime(GetThreadOffset<kMipsPointerSize>(entrypoint).Int32Value(),
1886 IsDirectEntrypoint(entrypoint));
1887 if (EntrypointRequiresStackMap(entrypoint)) {
1888 RecordPcInfo(instruction, dex_pc, slow_path);
1889 }
1890}
1891
1892void CodeGeneratorMIPS::InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset,
1893 HInstruction* instruction,
1894 SlowPathCode* slow_path,
1895 bool direct) {
1896 ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction, slow_path);
1897 GenerateInvokeRuntime(entry_point_offset, direct);
1898}
1899
1900void CodeGeneratorMIPS::GenerateInvokeRuntime(int32_t entry_point_offset, bool direct) {
Alexey Frunze57eb0f52016-07-29 22:04:46 -07001901 bool reordering = __ SetReorder(false);
Alexey Frunze15958152017-02-09 19:08:30 -08001902 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001903 __ Jalr(T9);
Alexey Frunze15958152017-02-09 19:08:30 -08001904 if (direct) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001905 // Reserve argument space on stack (for $a0-$a3) for
1906 // entrypoints that directly reference native implementations.
1907 // Called function may use this space to store $a0-$a3 regs.
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001908 __ IncreaseFrameSize(kMipsDirectEntrypointRuntimeOffset); // Single instruction in delay slot.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001909 __ DecreaseFrameSize(kMipsDirectEntrypointRuntimeOffset);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001910 } else {
1911 __ Nop(); // In delay slot.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001912 }
Alexey Frunze57eb0f52016-07-29 22:04:46 -07001913 __ SetReorder(reordering);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001914}
1915
1916void InstructionCodeGeneratorMIPS::GenerateClassInitializationCheck(SlowPathCodeMIPS* slow_path,
1917 Register class_reg) {
Vladimir Markodc682aa2018-01-04 18:42:57 +00001918 constexpr size_t status_lsb_position = SubtypeCheckBits::BitStructSizeOf();
1919 const size_t status_byte_offset =
1920 mirror::Class::StatusOffset().SizeValue() + (status_lsb_position / kBitsPerByte);
1921 constexpr uint32_t shifted_initialized_value =
1922 enum_cast<uint32_t>(ClassStatus::kInitialized) << (status_lsb_position % kBitsPerByte);
1923
1924 __ LoadFromOffset(kLoadUnsignedByte, TMP, class_reg, status_byte_offset);
1925 __ LoadConst32(AT, shifted_initialized_value);
Vladimir Marko2c64a832018-01-04 11:31:56 +00001926 __ Bltu(TMP, AT, slow_path->GetEntryLabel());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001927 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
1928 __ Sync(0);
1929 __ Bind(slow_path->GetExitLabel());
1930}
1931
1932void InstructionCodeGeneratorMIPS::GenerateMemoryBarrier(MemBarrierKind kind ATTRIBUTE_UNUSED) {
1933 __ Sync(0); // Only stype 0 is supported.
1934}
1935
1936void InstructionCodeGeneratorMIPS::GenerateSuspendCheck(HSuspendCheck* instruction,
1937 HBasicBlock* successor) {
1938 SuspendCheckSlowPathMIPS* slow_path =
Chris Larsena2045912017-11-02 12:39:54 -07001939 down_cast<SuspendCheckSlowPathMIPS*>(instruction->GetSlowPath());
1940
1941 if (slow_path == nullptr) {
1942 slow_path =
1943 new (codegen_->GetScopedAllocator()) SuspendCheckSlowPathMIPS(instruction, successor);
1944 instruction->SetSlowPath(slow_path);
1945 codegen_->AddSlowPath(slow_path);
1946 if (successor != nullptr) {
1947 DCHECK(successor->IsLoopHeader());
1948 }
1949 } else {
1950 DCHECK_EQ(slow_path->GetSuccessor(), successor);
1951 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001952
1953 __ LoadFromOffset(kLoadUnsignedHalfword,
1954 TMP,
1955 TR,
Andreas Gampe542451c2016-07-26 09:02:02 -07001956 Thread::ThreadFlagsOffset<kMipsPointerSize>().Int32Value());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001957 if (successor == nullptr) {
1958 __ Bnez(TMP, slow_path->GetEntryLabel());
1959 __ Bind(slow_path->GetReturnLabel());
1960 } else {
1961 __ Beqz(TMP, codegen_->GetLabelOf(successor));
1962 __ B(slow_path->GetEntryLabel());
1963 // slow_path will return to GetLabelOf(successor).
1964 }
1965}
1966
1967InstructionCodeGeneratorMIPS::InstructionCodeGeneratorMIPS(HGraph* graph,
1968 CodeGeneratorMIPS* codegen)
Aart Bik42249c32016-01-07 15:33:50 -08001969 : InstructionCodeGenerator(graph, codegen),
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001970 assembler_(codegen->GetAssembler()),
1971 codegen_(codegen) {}
1972
1973void LocationsBuilderMIPS::HandleBinaryOp(HBinaryOperation* instruction) {
1974 DCHECK_EQ(instruction->InputCount(), 2U);
Vladimir Markoca6fff82017-10-03 14:49:14 +01001975 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001976 DataType::Type type = instruction->GetResultType();
Lena Djokic38530172017-11-16 11:11:50 +01001977 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001978 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001979 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001980 locations->SetInAt(0, Location::RequiresRegister());
1981 HInstruction* right = instruction->InputAt(1);
1982 bool can_use_imm = false;
1983 if (right->IsConstant()) {
1984 int32_t imm = CodeGenerator::GetInt32ValueOf(right->AsConstant());
1985 if (instruction->IsAnd() || instruction->IsOr() || instruction->IsXor()) {
1986 can_use_imm = IsUint<16>(imm);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001987 } else {
Lena Djokic38530172017-11-16 11:11:50 +01001988 DCHECK(instruction->IsSub() || instruction->IsAdd());
1989 if (instruction->IsSub()) {
1990 imm = -imm;
1991 }
1992 if (isR6) {
1993 bool single_use = right->GetUses().HasExactlyOneElement();
1994 int16_t imm_high = High16Bits(imm);
1995 int16_t imm_low = Low16Bits(imm);
1996 if (imm_low < 0) {
1997 imm_high += 1;
1998 }
1999 can_use_imm = !((imm_high != 0) && (imm_low != 0)) || single_use;
2000 } else {
2001 can_use_imm = IsInt<16>(imm);
2002 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002003 }
2004 }
2005 if (can_use_imm)
2006 locations->SetInAt(1, Location::ConstantLocation(right->AsConstant()));
2007 else
2008 locations->SetInAt(1, Location::RequiresRegister());
2009 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2010 break;
2011 }
2012
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002013 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002014 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002015 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
2016 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002017 break;
2018 }
2019
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002020 case DataType::Type::kFloat32:
2021 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002022 DCHECK(instruction->IsAdd() || instruction->IsSub());
2023 locations->SetInAt(0, Location::RequiresFpuRegister());
2024 locations->SetInAt(1, Location::RequiresFpuRegister());
2025 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2026 break;
2027
2028 default:
2029 LOG(FATAL) << "Unexpected " << instruction->DebugName() << " type " << type;
2030 }
2031}
2032
2033void InstructionCodeGeneratorMIPS::HandleBinaryOp(HBinaryOperation* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002034 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002035 LocationSummary* locations = instruction->GetLocations();
Lena Djokic38530172017-11-16 11:11:50 +01002036 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002037
2038 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002039 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002040 Register dst = locations->Out().AsRegister<Register>();
2041 Register lhs = locations->InAt(0).AsRegister<Register>();
2042 Location rhs_location = locations->InAt(1);
2043
2044 Register rhs_reg = ZERO;
2045 int32_t rhs_imm = 0;
2046 bool use_imm = rhs_location.IsConstant();
2047 if (use_imm) {
2048 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
2049 } else {
2050 rhs_reg = rhs_location.AsRegister<Register>();
2051 }
2052
2053 if (instruction->IsAnd()) {
2054 if (use_imm)
2055 __ Andi(dst, lhs, rhs_imm);
2056 else
2057 __ And(dst, lhs, rhs_reg);
2058 } else if (instruction->IsOr()) {
2059 if (use_imm)
2060 __ Ori(dst, lhs, rhs_imm);
2061 else
2062 __ Or(dst, lhs, rhs_reg);
2063 } else if (instruction->IsXor()) {
2064 if (use_imm)
2065 __ Xori(dst, lhs, rhs_imm);
2066 else
2067 __ Xor(dst, lhs, rhs_reg);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002068 } else {
Lena Djokic38530172017-11-16 11:11:50 +01002069 DCHECK(instruction->IsAdd() || instruction->IsSub());
2070 if (use_imm) {
2071 if (instruction->IsSub()) {
2072 rhs_imm = -rhs_imm;
2073 }
2074 if (IsInt<16>(rhs_imm)) {
2075 __ Addiu(dst, lhs, rhs_imm);
2076 } else {
2077 DCHECK(isR6);
2078 int16_t rhs_imm_high = High16Bits(rhs_imm);
2079 int16_t rhs_imm_low = Low16Bits(rhs_imm);
2080 if (rhs_imm_low < 0) {
2081 rhs_imm_high += 1;
2082 }
2083 __ Aui(dst, lhs, rhs_imm_high);
2084 if (rhs_imm_low != 0) {
2085 __ Addiu(dst, dst, rhs_imm_low);
2086 }
2087 }
2088 } else if (instruction->IsAdd()) {
2089 __ Addu(dst, lhs, rhs_reg);
2090 } else {
2091 DCHECK(instruction->IsSub());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002092 __ Subu(dst, lhs, rhs_reg);
Lena Djokic38530172017-11-16 11:11:50 +01002093 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002094 }
2095 break;
2096 }
2097
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002098 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002099 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
2100 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
2101 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
2102 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002103 Location rhs_location = locations->InAt(1);
2104 bool use_imm = rhs_location.IsConstant();
2105 if (!use_imm) {
2106 Register rhs_high = rhs_location.AsRegisterPairHigh<Register>();
2107 Register rhs_low = rhs_location.AsRegisterPairLow<Register>();
2108 if (instruction->IsAnd()) {
2109 __ And(dst_low, lhs_low, rhs_low);
2110 __ And(dst_high, lhs_high, rhs_high);
2111 } else if (instruction->IsOr()) {
2112 __ Or(dst_low, lhs_low, rhs_low);
2113 __ Or(dst_high, lhs_high, rhs_high);
2114 } else if (instruction->IsXor()) {
2115 __ Xor(dst_low, lhs_low, rhs_low);
2116 __ Xor(dst_high, lhs_high, rhs_high);
2117 } else if (instruction->IsAdd()) {
2118 if (lhs_low == rhs_low) {
2119 // Special case for lhs = rhs and the sum potentially overwriting both lhs and rhs.
2120 __ Slt(TMP, lhs_low, ZERO);
2121 __ Addu(dst_low, lhs_low, rhs_low);
2122 } else {
2123 __ Addu(dst_low, lhs_low, rhs_low);
2124 // If the sum overwrites rhs, lhs remains unchanged, otherwise rhs remains unchanged.
2125 __ Sltu(TMP, dst_low, (dst_low == rhs_low) ? lhs_low : rhs_low);
2126 }
2127 __ Addu(dst_high, lhs_high, rhs_high);
2128 __ Addu(dst_high, dst_high, TMP);
2129 } else {
2130 DCHECK(instruction->IsSub());
2131 __ Sltu(TMP, lhs_low, rhs_low);
2132 __ Subu(dst_low, lhs_low, rhs_low);
2133 __ Subu(dst_high, lhs_high, rhs_high);
2134 __ Subu(dst_high, dst_high, TMP);
2135 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002136 } else {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002137 int64_t value = CodeGenerator::GetInt64ValueOf(rhs_location.GetConstant()->AsConstant());
2138 if (instruction->IsOr()) {
2139 uint32_t low = Low32Bits(value);
2140 uint32_t high = High32Bits(value);
2141 if (IsUint<16>(low)) {
2142 if (dst_low != lhs_low || low != 0) {
2143 __ Ori(dst_low, lhs_low, low);
2144 }
2145 } else {
2146 __ LoadConst32(TMP, low);
2147 __ Or(dst_low, lhs_low, TMP);
2148 }
2149 if (IsUint<16>(high)) {
2150 if (dst_high != lhs_high || high != 0) {
2151 __ Ori(dst_high, lhs_high, high);
2152 }
2153 } else {
2154 if (high != low) {
2155 __ LoadConst32(TMP, high);
2156 }
2157 __ Or(dst_high, lhs_high, TMP);
2158 }
2159 } else if (instruction->IsXor()) {
2160 uint32_t low = Low32Bits(value);
2161 uint32_t high = High32Bits(value);
2162 if (IsUint<16>(low)) {
2163 if (dst_low != lhs_low || low != 0) {
2164 __ Xori(dst_low, lhs_low, low);
2165 }
2166 } else {
2167 __ LoadConst32(TMP, low);
2168 __ Xor(dst_low, lhs_low, TMP);
2169 }
2170 if (IsUint<16>(high)) {
2171 if (dst_high != lhs_high || high != 0) {
2172 __ Xori(dst_high, lhs_high, high);
2173 }
2174 } else {
2175 if (high != low) {
2176 __ LoadConst32(TMP, high);
2177 }
2178 __ Xor(dst_high, lhs_high, TMP);
2179 }
2180 } else if (instruction->IsAnd()) {
2181 uint32_t low = Low32Bits(value);
2182 uint32_t high = High32Bits(value);
2183 if (IsUint<16>(low)) {
2184 __ Andi(dst_low, lhs_low, low);
2185 } else if (low != 0xFFFFFFFF) {
2186 __ LoadConst32(TMP, low);
2187 __ And(dst_low, lhs_low, TMP);
2188 } else if (dst_low != lhs_low) {
2189 __ Move(dst_low, lhs_low);
2190 }
2191 if (IsUint<16>(high)) {
2192 __ Andi(dst_high, lhs_high, high);
2193 } else if (high != 0xFFFFFFFF) {
2194 if (high != low) {
2195 __ LoadConst32(TMP, high);
2196 }
2197 __ And(dst_high, lhs_high, TMP);
2198 } else if (dst_high != lhs_high) {
2199 __ Move(dst_high, lhs_high);
2200 }
2201 } else {
2202 if (instruction->IsSub()) {
2203 value = -value;
2204 } else {
2205 DCHECK(instruction->IsAdd());
2206 }
2207 int32_t low = Low32Bits(value);
2208 int32_t high = High32Bits(value);
2209 if (IsInt<16>(low)) {
2210 if (dst_low != lhs_low || low != 0) {
2211 __ Addiu(dst_low, lhs_low, low);
2212 }
2213 if (low != 0) {
2214 __ Sltiu(AT, dst_low, low);
2215 }
2216 } else {
2217 __ LoadConst32(TMP, low);
2218 __ Addu(dst_low, lhs_low, TMP);
2219 __ Sltu(AT, dst_low, TMP);
2220 }
2221 if (IsInt<16>(high)) {
2222 if (dst_high != lhs_high || high != 0) {
2223 __ Addiu(dst_high, lhs_high, high);
2224 }
2225 } else {
2226 if (high != low) {
2227 __ LoadConst32(TMP, high);
2228 }
2229 __ Addu(dst_high, lhs_high, TMP);
2230 }
2231 if (low != 0) {
2232 __ Addu(dst_high, dst_high, AT);
2233 }
2234 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002235 }
2236 break;
2237 }
2238
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002239 case DataType::Type::kFloat32:
2240 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002241 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
2242 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
2243 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
2244 if (instruction->IsAdd()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002245 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002246 __ AddS(dst, lhs, rhs);
2247 } else {
2248 __ AddD(dst, lhs, rhs);
2249 }
2250 } else {
2251 DCHECK(instruction->IsSub());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002252 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002253 __ SubS(dst, lhs, rhs);
2254 } else {
2255 __ SubD(dst, lhs, rhs);
2256 }
2257 }
2258 break;
2259 }
2260
2261 default:
2262 LOG(FATAL) << "Unexpected binary operation type " << type;
2263 }
2264}
2265
2266void LocationsBuilderMIPS::HandleShift(HBinaryOperation* instr) {
Alexey Frunze92d90602015-12-18 18:16:36 -08002267 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr() || instr->IsRor());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002268
Vladimir Markoca6fff82017-10-03 14:49:14 +01002269 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instr);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002270 DataType::Type type = instr->GetResultType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002271 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002272 case DataType::Type::kInt32:
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002273 locations->SetInAt(0, Location::RequiresRegister());
2274 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
2275 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2276 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002277 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002278 locations->SetInAt(0, Location::RequiresRegister());
2279 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
2280 locations->SetOut(Location::RequiresRegister());
2281 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002282 default:
2283 LOG(FATAL) << "Unexpected shift type " << type;
2284 }
2285}
2286
2287static constexpr size_t kMipsBitsPerWord = kMipsWordSize * kBitsPerByte;
2288
2289void InstructionCodeGeneratorMIPS::HandleShift(HBinaryOperation* instr) {
Alexey Frunze92d90602015-12-18 18:16:36 -08002290 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr() || instr->IsRor());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002291 LocationSummary* locations = instr->GetLocations();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002292 DataType::Type type = instr->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002293
2294 Location rhs_location = locations->InAt(1);
2295 bool use_imm = rhs_location.IsConstant();
2296 Register rhs_reg = use_imm ? ZERO : rhs_location.AsRegister<Register>();
2297 int64_t rhs_imm = use_imm ? CodeGenerator::GetInt64ValueOf(rhs_location.GetConstant()) : 0;
Roland Levillain5b5b9312016-03-22 14:57:31 +00002298 const uint32_t shift_mask =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002299 (type == DataType::Type::kInt32) ? kMaxIntShiftDistance : kMaxLongShiftDistance;
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002300 const uint32_t shift_value = rhs_imm & shift_mask;
Alexey Frunze92d90602015-12-18 18:16:36 -08002301 // Are the INS (Insert Bit Field) and ROTR instructions supported?
2302 bool has_ins_rotr = codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002303
2304 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002305 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002306 Register dst = locations->Out().AsRegister<Register>();
2307 Register lhs = locations->InAt(0).AsRegister<Register>();
2308 if (use_imm) {
Alexey Frunze92d90602015-12-18 18:16:36 -08002309 if (shift_value == 0) {
2310 if (dst != lhs) {
2311 __ Move(dst, lhs);
2312 }
2313 } else if (instr->IsShl()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002314 __ Sll(dst, lhs, shift_value);
2315 } else if (instr->IsShr()) {
2316 __ Sra(dst, lhs, shift_value);
Alexey Frunze92d90602015-12-18 18:16:36 -08002317 } else if (instr->IsUShr()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002318 __ Srl(dst, lhs, shift_value);
Alexey Frunze92d90602015-12-18 18:16:36 -08002319 } else {
2320 if (has_ins_rotr) {
2321 __ Rotr(dst, lhs, shift_value);
2322 } else {
2323 __ Sll(TMP, lhs, (kMipsBitsPerWord - shift_value) & shift_mask);
2324 __ Srl(dst, lhs, shift_value);
2325 __ Or(dst, dst, TMP);
2326 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002327 }
2328 } else {
2329 if (instr->IsShl()) {
2330 __ Sllv(dst, lhs, rhs_reg);
2331 } else if (instr->IsShr()) {
2332 __ Srav(dst, lhs, rhs_reg);
Alexey Frunze92d90602015-12-18 18:16:36 -08002333 } else if (instr->IsUShr()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002334 __ Srlv(dst, lhs, rhs_reg);
Alexey Frunze92d90602015-12-18 18:16:36 -08002335 } else {
2336 if (has_ins_rotr) {
2337 __ Rotrv(dst, lhs, rhs_reg);
2338 } else {
2339 __ Subu(TMP, ZERO, rhs_reg);
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002340 // 32-bit shift instructions use the 5 least significant bits of the shift count, so
2341 // shifting by `-rhs_reg` is equivalent to shifting by `(32 - rhs_reg) & 31`. The case
2342 // when `rhs_reg & 31 == 0` is OK even though we don't shift `lhs` left all the way out
2343 // by 32, because the result in this case is computed as `(lhs >> 0) | (lhs << 0)`,
2344 // IOW, the OR'd values are equal.
Alexey Frunze92d90602015-12-18 18:16:36 -08002345 __ Sllv(TMP, lhs, TMP);
2346 __ Srlv(dst, lhs, rhs_reg);
2347 __ Or(dst, dst, TMP);
2348 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002349 }
2350 }
2351 break;
2352 }
2353
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002354 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002355 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
2356 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
2357 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
2358 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
2359 if (use_imm) {
2360 if (shift_value == 0) {
Lena Djokic8098da92017-06-28 12:07:50 +02002361 codegen_->MoveLocation(locations->Out(), locations->InAt(0), type);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002362 } else if (shift_value < kMipsBitsPerWord) {
Alexey Frunze92d90602015-12-18 18:16:36 -08002363 if (has_ins_rotr) {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002364 if (instr->IsShl()) {
2365 __ Srl(dst_high, lhs_low, kMipsBitsPerWord - shift_value);
2366 __ Ins(dst_high, lhs_high, shift_value, kMipsBitsPerWord - shift_value);
2367 __ Sll(dst_low, lhs_low, shift_value);
2368 } else if (instr->IsShr()) {
2369 __ Srl(dst_low, lhs_low, shift_value);
2370 __ Ins(dst_low, lhs_high, kMipsBitsPerWord - shift_value, shift_value);
2371 __ Sra(dst_high, lhs_high, shift_value);
Alexey Frunze92d90602015-12-18 18:16:36 -08002372 } else if (instr->IsUShr()) {
2373 __ Srl(dst_low, lhs_low, shift_value);
2374 __ Ins(dst_low, lhs_high, kMipsBitsPerWord - shift_value, shift_value);
2375 __ Srl(dst_high, lhs_high, shift_value);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002376 } else {
2377 __ Srl(dst_low, lhs_low, shift_value);
2378 __ Ins(dst_low, lhs_high, kMipsBitsPerWord - shift_value, shift_value);
2379 __ Srl(dst_high, lhs_high, shift_value);
Alexey Frunze92d90602015-12-18 18:16:36 -08002380 __ Ins(dst_high, lhs_low, kMipsBitsPerWord - shift_value, shift_value);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002381 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002382 } else {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002383 if (instr->IsShl()) {
2384 __ Sll(dst_low, lhs_low, shift_value);
2385 __ Srl(TMP, lhs_low, kMipsBitsPerWord - shift_value);
2386 __ Sll(dst_high, lhs_high, shift_value);
2387 __ Or(dst_high, dst_high, TMP);
2388 } else if (instr->IsShr()) {
2389 __ Sra(dst_high, lhs_high, shift_value);
2390 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value);
2391 __ Srl(dst_low, lhs_low, shift_value);
2392 __ Or(dst_low, dst_low, TMP);
Alexey Frunze92d90602015-12-18 18:16:36 -08002393 } else if (instr->IsUShr()) {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002394 __ Srl(dst_high, lhs_high, shift_value);
2395 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value);
2396 __ Srl(dst_low, lhs_low, shift_value);
2397 __ Or(dst_low, dst_low, TMP);
Alexey Frunze92d90602015-12-18 18:16:36 -08002398 } else {
2399 __ Srl(TMP, lhs_low, shift_value);
2400 __ Sll(dst_low, lhs_high, kMipsBitsPerWord - shift_value);
2401 __ Or(dst_low, dst_low, TMP);
2402 __ Srl(TMP, lhs_high, shift_value);
2403 __ Sll(dst_high, lhs_low, kMipsBitsPerWord - shift_value);
2404 __ Or(dst_high, dst_high, TMP);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08002405 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002406 }
2407 } else {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002408 const uint32_t shift_value_high = shift_value - kMipsBitsPerWord;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002409 if (instr->IsShl()) {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002410 __ Sll(dst_high, lhs_low, shift_value_high);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002411 __ Move(dst_low, ZERO);
2412 } else if (instr->IsShr()) {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002413 __ Sra(dst_low, lhs_high, shift_value_high);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002414 __ Sra(dst_high, dst_low, kMipsBitsPerWord - 1);
Alexey Frunze92d90602015-12-18 18:16:36 -08002415 } else if (instr->IsUShr()) {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002416 __ Srl(dst_low, lhs_high, shift_value_high);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002417 __ Move(dst_high, ZERO);
Alexey Frunze92d90602015-12-18 18:16:36 -08002418 } else {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002419 if (shift_value == kMipsBitsPerWord) {
Alexey Frunze92d90602015-12-18 18:16:36 -08002420 // 64-bit rotation by 32 is just a swap.
2421 __ Move(dst_low, lhs_high);
2422 __ Move(dst_high, lhs_low);
2423 } else {
2424 if (has_ins_rotr) {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002425 __ Srl(dst_low, lhs_high, shift_value_high);
2426 __ Ins(dst_low, lhs_low, kMipsBitsPerWord - shift_value_high, shift_value_high);
2427 __ Srl(dst_high, lhs_low, shift_value_high);
2428 __ Ins(dst_high, lhs_high, kMipsBitsPerWord - shift_value_high, shift_value_high);
Alexey Frunze92d90602015-12-18 18:16:36 -08002429 } else {
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002430 __ Sll(TMP, lhs_low, kMipsBitsPerWord - shift_value_high);
2431 __ Srl(dst_low, lhs_high, shift_value_high);
Alexey Frunze92d90602015-12-18 18:16:36 -08002432 __ Or(dst_low, dst_low, TMP);
Alexey Frunze0d9150b2016-01-13 16:24:25 -08002433 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value_high);
2434 __ Srl(dst_high, lhs_low, shift_value_high);
Alexey Frunze92d90602015-12-18 18:16:36 -08002435 __ Or(dst_high, dst_high, TMP);
2436 }
2437 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002438 }
2439 }
2440 } else {
Chris Larsen3e5fecd2017-11-09 14:21:28 -08002441 const bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002442 MipsLabel done;
2443 if (instr->IsShl()) {
2444 __ Sllv(dst_low, lhs_low, rhs_reg);
2445 __ Nor(AT, ZERO, rhs_reg);
2446 __ Srl(TMP, lhs_low, 1);
2447 __ Srlv(TMP, TMP, AT);
2448 __ Sllv(dst_high, lhs_high, rhs_reg);
2449 __ Or(dst_high, dst_high, TMP);
2450 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
Chris Larsen3e5fecd2017-11-09 14:21:28 -08002451 if (isR6) {
2452 __ Beqzc(TMP, &done, /* is_bare */ true);
2453 __ Move(dst_high, dst_low);
2454 __ Move(dst_low, ZERO);
2455 } else {
2456 __ Movn(dst_high, dst_low, TMP);
2457 __ Movn(dst_low, ZERO, TMP);
2458 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002459 } else if (instr->IsShr()) {
2460 __ Srav(dst_high, lhs_high, rhs_reg);
2461 __ Nor(AT, ZERO, rhs_reg);
2462 __ Sll(TMP, lhs_high, 1);
2463 __ Sllv(TMP, TMP, AT);
2464 __ Srlv(dst_low, lhs_low, rhs_reg);
2465 __ Or(dst_low, dst_low, TMP);
2466 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
Chris Larsen3e5fecd2017-11-09 14:21:28 -08002467 if (isR6) {
2468 __ Beqzc(TMP, &done, /* is_bare */ true);
2469 __ Move(dst_low, dst_high);
2470 __ Sra(dst_high, dst_high, 31);
2471 } else {
2472 __ Sra(AT, dst_high, 31);
2473 __ Movn(dst_low, dst_high, TMP);
2474 __ Movn(dst_high, AT, TMP);
2475 }
Alexey Frunze92d90602015-12-18 18:16:36 -08002476 } else if (instr->IsUShr()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002477 __ Srlv(dst_high, lhs_high, rhs_reg);
2478 __ Nor(AT, ZERO, rhs_reg);
2479 __ Sll(TMP, lhs_high, 1);
2480 __ Sllv(TMP, TMP, AT);
2481 __ Srlv(dst_low, lhs_low, rhs_reg);
2482 __ Or(dst_low, dst_low, TMP);
2483 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
Chris Larsen3e5fecd2017-11-09 14:21:28 -08002484 if (isR6) {
2485 __ Beqzc(TMP, &done, /* is_bare */ true);
2486 __ Move(dst_low, dst_high);
2487 __ Move(dst_high, ZERO);
2488 } else {
2489 __ Movn(dst_low, dst_high, TMP);
2490 __ Movn(dst_high, ZERO, TMP);
2491 }
2492 } else { // Rotate.
Alexey Frunze92d90602015-12-18 18:16:36 -08002493 __ Nor(AT, ZERO, rhs_reg);
2494 __ Srlv(TMP, lhs_low, rhs_reg);
2495 __ Sll(dst_low, lhs_high, 1);
2496 __ Sllv(dst_low, dst_low, AT);
2497 __ Or(dst_low, dst_low, TMP);
2498 __ Srlv(TMP, lhs_high, rhs_reg);
2499 __ Sll(dst_high, lhs_low, 1);
2500 __ Sllv(dst_high, dst_high, AT);
2501 __ Or(dst_high, dst_high, TMP);
2502 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
Chris Larsen3e5fecd2017-11-09 14:21:28 -08002503 if (isR6) {
2504 __ Beqzc(TMP, &done, /* is_bare */ true);
2505 __ Move(TMP, dst_high);
2506 __ Move(dst_high, dst_low);
2507 __ Move(dst_low, TMP);
2508 } else {
2509 __ Movn(AT, dst_high, TMP);
2510 __ Movn(dst_high, dst_low, TMP);
2511 __ Movn(dst_low, AT, TMP);
2512 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002513 }
2514 __ Bind(&done);
2515 }
2516 break;
2517 }
2518
2519 default:
2520 LOG(FATAL) << "Unexpected shift operation type " << type;
2521 }
2522}
2523
2524void LocationsBuilderMIPS::VisitAdd(HAdd* instruction) {
2525 HandleBinaryOp(instruction);
2526}
2527
2528void InstructionCodeGeneratorMIPS::VisitAdd(HAdd* instruction) {
2529 HandleBinaryOp(instruction);
2530}
2531
2532void LocationsBuilderMIPS::VisitAnd(HAnd* instruction) {
2533 HandleBinaryOp(instruction);
2534}
2535
2536void InstructionCodeGeneratorMIPS::VisitAnd(HAnd* instruction) {
2537 HandleBinaryOp(instruction);
2538}
2539
2540void LocationsBuilderMIPS::VisitArrayGet(HArrayGet* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002541 DataType::Type type = instruction->GetType();
Alexey Frunze15958152017-02-09 19:08:30 -08002542 bool object_array_get_with_read_barrier =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002543 kEmitCompilerReadBarrier && (type == DataType::Type::kReference);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002544 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01002545 new (GetGraph()->GetAllocator()) LocationSummary(instruction,
2546 object_array_get_with_read_barrier
2547 ? LocationSummary::kCallOnSlowPath
2548 : LocationSummary::kNoCall);
Alexey Frunzec61c0762017-04-10 13:54:23 -07002549 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
2550 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
2551 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002552 locations->SetInAt(0, Location::RequiresRegister());
2553 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002554 if (DataType::IsFloatingPointType(type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002555 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2556 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08002557 // The output overlaps in the case of an object array get with
2558 // read barriers enabled: we do not want the move to overwrite the
2559 // array's location, as we need it to emit the read barrier.
2560 locations->SetOut(Location::RequiresRegister(),
2561 object_array_get_with_read_barrier
2562 ? Location::kOutputOverlap
2563 : Location::kNoOutputOverlap);
2564 }
2565 // We need a temporary register for the read barrier marking slow
2566 // path in CodeGeneratorMIPS::GenerateArrayLoadWithBakerReadBarrier.
2567 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07002568 bool temp_needed = instruction->GetIndex()->IsConstant()
2569 ? !kBakerReadBarrierThunksEnableForFields
2570 : !kBakerReadBarrierThunksEnableForArrays;
2571 if (temp_needed) {
2572 locations->AddTemp(Location::RequiresRegister());
2573 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002574 }
2575}
2576
Tijana Jakovljevic57433862017-01-17 16:59:03 +01002577static auto GetImplicitNullChecker(HInstruction* instruction, CodeGeneratorMIPS* codegen) {
2578 auto null_checker = [codegen, instruction]() {
2579 codegen->MaybeRecordImplicitNullCheck(instruction);
Alexey Frunze2923db72016-08-20 01:55:47 -07002580 };
2581 return null_checker;
2582}
2583
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002584void InstructionCodeGeneratorMIPS::VisitArrayGet(HArrayGet* instruction) {
2585 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08002586 Location obj_loc = locations->InAt(0);
2587 Register obj = obj_loc.AsRegister<Register>();
2588 Location out_loc = locations->Out();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002589 Location index = locations->InAt(1);
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01002590 uint32_t data_offset = CodeGenerator::GetArrayDataOffset(instruction);
Tijana Jakovljevic57433862017-01-17 16:59:03 +01002591 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002592
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002593 DataType::Type type = instruction->GetType();
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002594 const bool maybe_compressed_char_at = mirror::kUseStringCompression &&
2595 instruction->IsStringCharAt();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002596 switch (type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002597 case DataType::Type::kBool:
2598 case DataType::Type::kUint8: {
Alexey Frunze15958152017-02-09 19:08:30 -08002599 Register out = out_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002600 if (index.IsConstant()) {
2601 size_t offset =
2602 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002603 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002604 } else {
2605 __ Addu(TMP, obj, index.AsRegister<Register>());
Alexey Frunze2923db72016-08-20 01:55:47 -07002606 __ LoadFromOffset(kLoadUnsignedByte, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002607 }
2608 break;
2609 }
2610
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002611 case DataType::Type::kInt8: {
Alexey Frunze15958152017-02-09 19:08:30 -08002612 Register out = out_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002613 if (index.IsConstant()) {
2614 size_t offset =
2615 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002616 __ LoadFromOffset(kLoadSignedByte, out, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002617 } else {
2618 __ Addu(TMP, obj, index.AsRegister<Register>());
Alexey Frunze2923db72016-08-20 01:55:47 -07002619 __ LoadFromOffset(kLoadSignedByte, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002620 }
2621 break;
2622 }
2623
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002624 case DataType::Type::kUint16: {
Alexey Frunze15958152017-02-09 19:08:30 -08002625 Register out = out_loc.AsRegister<Register>();
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002626 if (maybe_compressed_char_at) {
2627 uint32_t count_offset = mirror::String::CountOffset().Uint32Value();
2628 __ LoadFromOffset(kLoadWord, TMP, obj, count_offset, null_checker);
2629 __ Sll(TMP, TMP, 31); // Extract compression flag into the most significant bit of TMP.
2630 static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u,
2631 "Expecting 0=compressed, 1=uncompressed");
2632 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002633 if (index.IsConstant()) {
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002634 int32_t const_index = index.GetConstant()->AsIntConstant()->GetValue();
2635 if (maybe_compressed_char_at) {
2636 MipsLabel uncompressed_load, done;
2637 __ Bnez(TMP, &uncompressed_load);
2638 __ LoadFromOffset(kLoadUnsignedByte,
2639 out,
2640 obj,
2641 data_offset + (const_index << TIMES_1));
2642 __ B(&done);
2643 __ Bind(&uncompressed_load);
2644 __ LoadFromOffset(kLoadUnsignedHalfword,
2645 out,
2646 obj,
2647 data_offset + (const_index << TIMES_2));
2648 __ Bind(&done);
2649 } else {
2650 __ LoadFromOffset(kLoadUnsignedHalfword,
2651 out,
2652 obj,
2653 data_offset + (const_index << TIMES_2),
2654 null_checker);
2655 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002656 } else {
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002657 Register index_reg = index.AsRegister<Register>();
2658 if (maybe_compressed_char_at) {
2659 MipsLabel uncompressed_load, done;
2660 __ Bnez(TMP, &uncompressed_load);
2661 __ Addu(TMP, obj, index_reg);
2662 __ LoadFromOffset(kLoadUnsignedByte, out, TMP, data_offset);
2663 __ B(&done);
2664 __ Bind(&uncompressed_load);
Chris Larsencd0295d2017-03-31 15:26:54 -07002665 __ ShiftAndAdd(TMP, index_reg, obj, TIMES_2, TMP);
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002666 __ LoadFromOffset(kLoadUnsignedHalfword, out, TMP, data_offset);
2667 __ Bind(&done);
Lena Djokica2901602017-09-21 13:50:52 +02002668 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2669 __ Addu(TMP, index_reg, obj);
2670 __ LoadFromOffset(kLoadUnsignedHalfword, out, TMP, data_offset, null_checker);
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002671 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002672 __ ShiftAndAdd(TMP, index_reg, obj, TIMES_2, TMP);
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002673 __ LoadFromOffset(kLoadUnsignedHalfword, out, TMP, data_offset, null_checker);
2674 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002675 }
2676 break;
2677 }
2678
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002679 case DataType::Type::kInt16: {
2680 Register out = out_loc.AsRegister<Register>();
2681 if (index.IsConstant()) {
2682 size_t offset =
2683 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
2684 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset, null_checker);
Lena Djokica2901602017-09-21 13:50:52 +02002685 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2686 __ Addu(TMP, index.AsRegister<Register>(), obj);
2687 __ LoadFromOffset(kLoadSignedHalfword, out, TMP, data_offset, null_checker);
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002688 } else {
2689 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_2, TMP);
2690 __ LoadFromOffset(kLoadSignedHalfword, out, TMP, data_offset, null_checker);
2691 }
2692 break;
2693 }
2694
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002695 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002696 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
Alexey Frunze15958152017-02-09 19:08:30 -08002697 Register out = out_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002698 if (index.IsConstant()) {
2699 size_t offset =
2700 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002701 __ LoadFromOffset(kLoadWord, out, obj, offset, null_checker);
Lena Djokica2901602017-09-21 13:50:52 +02002702 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2703 __ Addu(TMP, index.AsRegister<Register>(), obj);
2704 __ LoadFromOffset(kLoadWord, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002705 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002706 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_4, TMP);
Alexey Frunze2923db72016-08-20 01:55:47 -07002707 __ LoadFromOffset(kLoadWord, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002708 }
2709 break;
2710 }
2711
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002712 case DataType::Type::kReference: {
Alexey Frunze15958152017-02-09 19:08:30 -08002713 static_assert(
2714 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
2715 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
2716 // /* HeapReference<Object> */ out =
2717 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
2718 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07002719 bool temp_needed = index.IsConstant()
2720 ? !kBakerReadBarrierThunksEnableForFields
2721 : !kBakerReadBarrierThunksEnableForArrays;
2722 Location temp = temp_needed ? locations->GetTemp(0) : Location::NoLocation();
Alexey Frunze15958152017-02-09 19:08:30 -08002723 // Note that a potential implicit null check is handled in this
2724 // CodeGeneratorMIPS::GenerateArrayLoadWithBakerReadBarrier call.
Alexey Frunze4147fcc2017-06-17 19:57:27 -07002725 DCHECK(!instruction->CanDoImplicitNullCheckOn(instruction->InputAt(0)));
2726 if (index.IsConstant()) {
2727 // Array load with a constant index can be treated as a field load.
2728 size_t offset =
2729 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2730 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
2731 out_loc,
2732 obj,
2733 offset,
2734 temp,
2735 /* needs_null_check */ false);
2736 } else {
2737 codegen_->GenerateArrayLoadWithBakerReadBarrier(instruction,
2738 out_loc,
2739 obj,
2740 data_offset,
2741 index,
2742 temp,
2743 /* needs_null_check */ false);
2744 }
Alexey Frunze15958152017-02-09 19:08:30 -08002745 } else {
2746 Register out = out_loc.AsRegister<Register>();
2747 if (index.IsConstant()) {
2748 size_t offset =
2749 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2750 __ LoadFromOffset(kLoadWord, out, obj, offset, null_checker);
2751 // If read barriers are enabled, emit read barriers other than
2752 // Baker's using a slow path (and also unpoison the loaded
2753 // reference, if heap poisoning is enabled).
2754 codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset);
2755 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002756 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_4, TMP);
Alexey Frunze15958152017-02-09 19:08:30 -08002757 __ LoadFromOffset(kLoadWord, out, TMP, data_offset, null_checker);
2758 // If read barriers are enabled, emit read barriers other than
2759 // Baker's using a slow path (and also unpoison the loaded
2760 // reference, if heap poisoning is enabled).
2761 codegen_->MaybeGenerateReadBarrierSlow(instruction,
2762 out_loc,
2763 out_loc,
2764 obj_loc,
2765 data_offset,
2766 index);
2767 }
2768 }
2769 break;
2770 }
2771
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002772 case DataType::Type::kInt64: {
Alexey Frunze15958152017-02-09 19:08:30 -08002773 Register out = out_loc.AsRegisterPairLow<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002774 if (index.IsConstant()) {
2775 size_t offset =
2776 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002777 __ LoadFromOffset(kLoadDoubleword, out, obj, offset, null_checker);
Lena Djokica2901602017-09-21 13:50:52 +02002778 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2779 __ Addu(TMP, index.AsRegister<Register>(), obj);
2780 __ LoadFromOffset(kLoadDoubleword, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002781 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002782 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_8, TMP);
Alexey Frunze2923db72016-08-20 01:55:47 -07002783 __ LoadFromOffset(kLoadDoubleword, out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002784 }
2785 break;
2786 }
2787
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002788 case DataType::Type::kFloat32: {
Alexey Frunze15958152017-02-09 19:08:30 -08002789 FRegister out = out_loc.AsFpuRegister<FRegister>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002790 if (index.IsConstant()) {
2791 size_t offset =
2792 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002793 __ LoadSFromOffset(out, obj, offset, null_checker);
Lena Djokica2901602017-09-21 13:50:52 +02002794 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2795 __ Addu(TMP, index.AsRegister<Register>(), obj);
2796 __ LoadSFromOffset(out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002797 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002798 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_4, TMP);
Alexey Frunze2923db72016-08-20 01:55:47 -07002799 __ LoadSFromOffset(out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002800 }
2801 break;
2802 }
2803
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002804 case DataType::Type::kFloat64: {
Alexey Frunze15958152017-02-09 19:08:30 -08002805 FRegister out = out_loc.AsFpuRegister<FRegister>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002806 if (index.IsConstant()) {
2807 size_t offset =
2808 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Alexey Frunze2923db72016-08-20 01:55:47 -07002809 __ LoadDFromOffset(out, obj, offset, null_checker);
Lena Djokica2901602017-09-21 13:50:52 +02002810 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2811 __ Addu(TMP, index.AsRegister<Register>(), obj);
2812 __ LoadDFromOffset(out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002813 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002814 __ ShiftAndAdd(TMP, index.AsRegister<Register>(), obj, TIMES_8, TMP);
Alexey Frunze2923db72016-08-20 01:55:47 -07002815 __ LoadDFromOffset(out, TMP, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002816 }
2817 break;
2818 }
2819
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002820 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002821 LOG(FATAL) << "Unreachable type " << instruction->GetType();
2822 UNREACHABLE();
2823 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002824}
2825
2826void LocationsBuilderMIPS::VisitArrayLength(HArrayLength* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01002827 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002828 locations->SetInAt(0, Location::RequiresRegister());
2829 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2830}
2831
2832void InstructionCodeGeneratorMIPS::VisitArrayLength(HArrayLength* instruction) {
2833 LocationSummary* locations = instruction->GetLocations();
Vladimir Markodce016e2016-04-28 13:10:02 +01002834 uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002835 Register obj = locations->InAt(0).AsRegister<Register>();
2836 Register out = locations->Out().AsRegister<Register>();
2837 __ LoadFromOffset(kLoadWord, out, obj, offset);
2838 codegen_->MaybeRecordImplicitNullCheck(instruction);
Goran Jakovljevicf94fa812017-02-10 17:48:52 +01002839 // Mask out compression flag from String's array length.
2840 if (mirror::kUseStringCompression && instruction->IsStringLength()) {
2841 __ Srl(out, out, 1u);
2842 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002843}
2844
Alexey Frunzef58b2482016-09-02 22:14:06 -07002845Location LocationsBuilderMIPS::RegisterOrZeroConstant(HInstruction* instruction) {
2846 return (instruction->IsConstant() && instruction->AsConstant()->IsZeroBitPattern())
2847 ? Location::ConstantLocation(instruction->AsConstant())
2848 : Location::RequiresRegister();
2849}
2850
2851Location LocationsBuilderMIPS::FpuRegisterOrConstantForStore(HInstruction* instruction) {
2852 // We can store 0.0 directly (from the ZERO register) without loading it into an FPU register.
2853 // We can store a non-zero float or double constant without first loading it into the FPU,
2854 // but we should only prefer this if the constant has a single use.
2855 if (instruction->IsConstant() &&
2856 (instruction->AsConstant()->IsZeroBitPattern() ||
2857 instruction->GetUses().HasExactlyOneElement())) {
2858 return Location::ConstantLocation(instruction->AsConstant());
2859 // Otherwise fall through and require an FPU register for the constant.
2860 }
2861 return Location::RequiresFpuRegister();
2862}
2863
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002864void LocationsBuilderMIPS::VisitArraySet(HArraySet* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002865 DataType::Type value_type = instruction->GetComponentType();
Alexey Frunze15958152017-02-09 19:08:30 -08002866
2867 bool needs_write_barrier =
2868 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
2869 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
2870
Vladimir Markoca6fff82017-10-03 14:49:14 +01002871 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002872 instruction,
Alexey Frunze15958152017-02-09 19:08:30 -08002873 may_need_runtime_call_for_type_check ?
2874 LocationSummary::kCallOnSlowPath :
2875 LocationSummary::kNoCall);
2876
2877 locations->SetInAt(0, Location::RequiresRegister());
2878 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002879 if (DataType::IsFloatingPointType(instruction->InputAt(2)->GetType())) {
Alexey Frunze15958152017-02-09 19:08:30 -08002880 locations->SetInAt(2, FpuRegisterOrConstantForStore(instruction->InputAt(2)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002881 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08002882 locations->SetInAt(2, RegisterOrZeroConstant(instruction->InputAt(2)));
2883 }
2884 if (needs_write_barrier) {
2885 // Temporary register for the write barrier.
2886 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002887 }
2888}
2889
2890void InstructionCodeGeneratorMIPS::VisitArraySet(HArraySet* instruction) {
2891 LocationSummary* locations = instruction->GetLocations();
2892 Register obj = locations->InAt(0).AsRegister<Register>();
2893 Location index = locations->InAt(1);
Alexey Frunzef58b2482016-09-02 22:14:06 -07002894 Location value_location = locations->InAt(2);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002895 DataType::Type value_type = instruction->GetComponentType();
Alexey Frunze15958152017-02-09 19:08:30 -08002896 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002897 bool needs_write_barrier =
2898 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Tijana Jakovljevic57433862017-01-17 16:59:03 +01002899 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Alexey Frunzef58b2482016-09-02 22:14:06 -07002900 Register base_reg = index.IsConstant() ? obj : TMP;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002901
2902 switch (value_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002903 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002904 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002905 case DataType::Type::kInt8: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002906 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002907 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07002908 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002909 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07002910 __ Addu(base_reg, obj, index.AsRegister<Register>());
2911 }
2912 if (value_location.IsConstant()) {
2913 int32_t value = CodeGenerator::GetInt32ValueOf(value_location.GetConstant());
2914 __ StoreConstToOffset(kStoreByte, value, base_reg, data_offset, TMP, null_checker);
2915 } else {
2916 Register value = value_location.AsRegister<Register>();
2917 __ StoreToOffset(kStoreByte, value, base_reg, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002918 }
2919 break;
2920 }
2921
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01002922 case DataType::Type::kUint16:
2923 case DataType::Type::kInt16: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002924 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002925 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07002926 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2;
Lena Djokica2901602017-09-21 13:50:52 +02002927 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2928 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002929 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002930 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_2, base_reg);
Alexey Frunzef58b2482016-09-02 22:14:06 -07002931 }
2932 if (value_location.IsConstant()) {
2933 int32_t value = CodeGenerator::GetInt32ValueOf(value_location.GetConstant());
2934 __ StoreConstToOffset(kStoreHalfword, value, base_reg, data_offset, TMP, null_checker);
2935 } else {
2936 Register value = value_location.AsRegister<Register>();
2937 __ StoreToOffset(kStoreHalfword, value, base_reg, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002938 }
2939 break;
2940 }
2941
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002942 case DataType::Type::kInt32: {
Alexey Frunze15958152017-02-09 19:08:30 -08002943 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
2944 if (index.IsConstant()) {
2945 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4;
Lena Djokica2901602017-09-21 13:50:52 +02002946 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2947 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Alexey Frunze15958152017-02-09 19:08:30 -08002948 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002949 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_4, base_reg);
Alexey Frunze15958152017-02-09 19:08:30 -08002950 }
2951 if (value_location.IsConstant()) {
2952 int32_t value = CodeGenerator::GetInt32ValueOf(value_location.GetConstant());
2953 __ StoreConstToOffset(kStoreWord, value, base_reg, data_offset, TMP, null_checker);
2954 } else {
2955 Register value = value_location.AsRegister<Register>();
2956 __ StoreToOffset(kStoreWord, value, base_reg, data_offset, null_checker);
2957 }
2958 break;
2959 }
2960
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002961 case DataType::Type::kReference: {
Alexey Frunze15958152017-02-09 19:08:30 -08002962 if (value_location.IsConstant()) {
2963 // Just setting null.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002964 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002965 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07002966 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002967 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07002968 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_4, base_reg);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002969 }
Alexey Frunze15958152017-02-09 19:08:30 -08002970 int32_t value = CodeGenerator::GetInt32ValueOf(value_location.GetConstant());
2971 DCHECK_EQ(value, 0);
2972 __ StoreConstToOffset(kStoreWord, value, base_reg, data_offset, TMP, null_checker);
2973 DCHECK(!needs_write_barrier);
2974 DCHECK(!may_need_runtime_call_for_type_check);
2975 break;
2976 }
2977
2978 DCHECK(needs_write_barrier);
2979 Register value = value_location.AsRegister<Register>();
2980 Register temp1 = locations->GetTemp(0).AsRegister<Register>();
2981 Register temp2 = TMP; // Doesn't need to survive slow path.
2982 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2983 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2984 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2985 MipsLabel done;
2986 SlowPathCodeMIPS* slow_path = nullptr;
2987
2988 if (may_need_runtime_call_for_type_check) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01002989 slow_path = new (codegen_->GetScopedAllocator()) ArraySetSlowPathMIPS(instruction);
Alexey Frunze15958152017-02-09 19:08:30 -08002990 codegen_->AddSlowPath(slow_path);
2991 if (instruction->GetValueCanBeNull()) {
2992 MipsLabel non_zero;
2993 __ Bnez(value, &non_zero);
2994 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
2995 if (index.IsConstant()) {
2996 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4;
Lena Djokica2901602017-09-21 13:50:52 +02002997 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
2998 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Alexey Frunzec061de12017-02-14 13:27:23 -08002999 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07003000 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_4, base_reg);
Alexey Frunzec061de12017-02-14 13:27:23 -08003001 }
Alexey Frunze15958152017-02-09 19:08:30 -08003002 __ StoreToOffset(kStoreWord, value, base_reg, data_offset, null_checker);
3003 __ B(&done);
3004 __ Bind(&non_zero);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003005 }
Alexey Frunze15958152017-02-09 19:08:30 -08003006
3007 // Note that when read barriers are enabled, the type checks
3008 // are performed without read barriers. This is fine, even in
3009 // the case where a class object is in the from-space after
3010 // the flip, as a comparison involving such a type would not
3011 // produce a false positive; it may of course produce a false
3012 // negative, in which case we would take the ArraySet slow
3013 // path.
3014
3015 // /* HeapReference<Class> */ temp1 = obj->klass_
3016 __ LoadFromOffset(kLoadWord, temp1, obj, class_offset, null_checker);
3017 __ MaybeUnpoisonHeapReference(temp1);
3018
3019 // /* HeapReference<Class> */ temp1 = temp1->component_type_
3020 __ LoadFromOffset(kLoadWord, temp1, temp1, component_offset);
3021 // /* HeapReference<Class> */ temp2 = value->klass_
3022 __ LoadFromOffset(kLoadWord, temp2, value, class_offset);
3023 // If heap poisoning is enabled, no need to unpoison `temp1`
3024 // nor `temp2`, as we are comparing two poisoned references.
3025
3026 if (instruction->StaticTypeOfArrayIsObjectArray()) {
3027 MipsLabel do_put;
3028 __ Beq(temp1, temp2, &do_put);
3029 // If heap poisoning is enabled, the `temp1` reference has
3030 // not been unpoisoned yet; unpoison it now.
3031 __ MaybeUnpoisonHeapReference(temp1);
3032
3033 // /* HeapReference<Class> */ temp1 = temp1->super_class_
3034 __ LoadFromOffset(kLoadWord, temp1, temp1, super_offset);
3035 // If heap poisoning is enabled, no need to unpoison
3036 // `temp1`, as we are comparing against null below.
3037 __ Bnez(temp1, slow_path->GetEntryLabel());
3038 __ Bind(&do_put);
3039 } else {
3040 __ Bne(temp1, temp2, slow_path->GetEntryLabel());
3041 }
3042 }
3043
3044 Register source = value;
3045 if (kPoisonHeapReferences) {
3046 // Note that in the case where `value` is a null reference,
3047 // we do not enter this block, as a null reference does not
3048 // need poisoning.
3049 __ Move(temp1, value);
3050 __ PoisonHeapReference(temp1);
3051 source = temp1;
3052 }
3053
3054 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
3055 if (index.IsConstant()) {
3056 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003057 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07003058 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_4, base_reg);
Alexey Frunze15958152017-02-09 19:08:30 -08003059 }
3060 __ StoreToOffset(kStoreWord, source, base_reg, data_offset);
3061
3062 if (!may_need_runtime_call_for_type_check) {
3063 codegen_->MaybeRecordImplicitNullCheck(instruction);
3064 }
3065
3066 codegen_->MarkGCCard(obj, value, instruction->GetValueCanBeNull());
3067
3068 if (done.IsLinked()) {
3069 __ Bind(&done);
3070 }
3071
3072 if (slow_path != nullptr) {
3073 __ Bind(slow_path->GetExitLabel());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003074 }
3075 break;
3076 }
3077
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003078 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003079 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003080 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07003081 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8;
Lena Djokica2901602017-09-21 13:50:52 +02003082 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
3083 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003084 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07003085 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_8, base_reg);
Alexey Frunzef58b2482016-09-02 22:14:06 -07003086 }
3087 if (value_location.IsConstant()) {
3088 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
3089 __ StoreConstToOffset(kStoreDoubleword, value, base_reg, data_offset, TMP, null_checker);
3090 } else {
3091 Register value = value_location.AsRegisterPairLow<Register>();
3092 __ StoreToOffset(kStoreDoubleword, value, base_reg, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003093 }
3094 break;
3095 }
3096
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003097 case DataType::Type::kFloat32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003098 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003099 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07003100 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4;
Lena Djokica2901602017-09-21 13:50:52 +02003101 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
3102 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003103 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07003104 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_4, base_reg);
Alexey Frunzef58b2482016-09-02 22:14:06 -07003105 }
3106 if (value_location.IsConstant()) {
3107 int32_t value = CodeGenerator::GetInt32ValueOf(value_location.GetConstant());
3108 __ StoreConstToOffset(kStoreWord, value, base_reg, data_offset, TMP, null_checker);
3109 } else {
3110 FRegister value = value_location.AsFpuRegister<FRegister>();
3111 __ StoreSToOffset(value, base_reg, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003112 }
3113 break;
3114 }
3115
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003116 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003117 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003118 if (index.IsConstant()) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07003119 data_offset += index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8;
Lena Djokica2901602017-09-21 13:50:52 +02003120 } else if (instruction->InputAt(1)->IsIntermediateArrayAddressIndex()) {
3121 __ Addu(base_reg, index.AsRegister<Register>(), obj);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003122 } else {
Chris Larsencd0295d2017-03-31 15:26:54 -07003123 __ ShiftAndAdd(base_reg, index.AsRegister<Register>(), obj, TIMES_8, base_reg);
Alexey Frunzef58b2482016-09-02 22:14:06 -07003124 }
3125 if (value_location.IsConstant()) {
3126 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
3127 __ StoreConstToOffset(kStoreDoubleword, value, base_reg, data_offset, TMP, null_checker);
3128 } else {
3129 FRegister value = value_location.AsFpuRegister<FRegister>();
3130 __ StoreDToOffset(value, base_reg, data_offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003131 }
3132 break;
3133 }
3134
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003135 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003136 LOG(FATAL) << "Unreachable type " << instruction->GetType();
3137 UNREACHABLE();
3138 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003139}
3140
Lena Djokica2901602017-09-21 13:50:52 +02003141void LocationsBuilderMIPS::VisitIntermediateArrayAddressIndex(
3142 HIntermediateArrayAddressIndex* instruction) {
3143 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003144 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Lena Djokica2901602017-09-21 13:50:52 +02003145
3146 HIntConstant* shift = instruction->GetShift()->AsIntConstant();
3147
3148 locations->SetInAt(0, Location::RequiresRegister());
3149 locations->SetInAt(1, Location::ConstantLocation(shift));
3150 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3151}
3152
3153void InstructionCodeGeneratorMIPS::VisitIntermediateArrayAddressIndex(
3154 HIntermediateArrayAddressIndex* instruction) {
3155 LocationSummary* locations = instruction->GetLocations();
3156 Register index_reg = locations->InAt(0).AsRegister<Register>();
3157 uint32_t shift = instruction->GetShift()->AsIntConstant()->GetValue();
3158 __ Sll(locations->Out().AsRegister<Register>(), index_reg, shift);
3159}
3160
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003161void LocationsBuilderMIPS::VisitBoundsCheck(HBoundsCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01003162 RegisterSet caller_saves = RegisterSet::Empty();
3163 InvokeRuntimeCallingConvention calling_convention;
3164 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3165 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3166 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction, caller_saves);
Goran Jakovljevicdbd43032017-11-15 16:31:56 +01003167
3168 HInstruction* index = instruction->InputAt(0);
3169 HInstruction* length = instruction->InputAt(1);
3170
3171 bool const_index = false;
3172 bool const_length = false;
3173
3174 if (index->IsConstant()) {
3175 if (length->IsConstant()) {
3176 const_index = true;
3177 const_length = true;
3178 } else {
3179 int32_t index_value = index->AsIntConstant()->GetValue();
3180 if (index_value < 0 || IsInt<16>(index_value + 1)) {
3181 const_index = true;
3182 }
3183 }
3184 } else if (length->IsConstant()) {
3185 int32_t length_value = length->AsIntConstant()->GetValue();
3186 if (IsUint<15>(length_value)) {
3187 const_length = true;
3188 }
3189 }
3190
3191 locations->SetInAt(0, const_index
3192 ? Location::ConstantLocation(index->AsConstant())
3193 : Location::RequiresRegister());
3194 locations->SetInAt(1, const_length
3195 ? Location::ConstantLocation(length->AsConstant())
3196 : Location::RequiresRegister());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003197}
3198
3199void InstructionCodeGeneratorMIPS::VisitBoundsCheck(HBoundsCheck* instruction) {
3200 LocationSummary* locations = instruction->GetLocations();
Goran Jakovljevicdbd43032017-11-15 16:31:56 +01003201 Location index_loc = locations->InAt(0);
3202 Location length_loc = locations->InAt(1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003203
Goran Jakovljevicdbd43032017-11-15 16:31:56 +01003204 if (length_loc.IsConstant()) {
3205 int32_t length = length_loc.GetConstant()->AsIntConstant()->GetValue();
3206 if (index_loc.IsConstant()) {
3207 int32_t index = index_loc.GetConstant()->AsIntConstant()->GetValue();
3208 if (index < 0 || index >= length) {
3209 BoundsCheckSlowPathMIPS* slow_path =
3210 new (codegen_->GetScopedAllocator()) BoundsCheckSlowPathMIPS(instruction);
3211 codegen_->AddSlowPath(slow_path);
3212 __ B(slow_path->GetEntryLabel());
3213 } else {
3214 // Nothing to be done.
3215 }
3216 return;
3217 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003218
Goran Jakovljevicdbd43032017-11-15 16:31:56 +01003219 BoundsCheckSlowPathMIPS* slow_path =
3220 new (codegen_->GetScopedAllocator()) BoundsCheckSlowPathMIPS(instruction);
3221 codegen_->AddSlowPath(slow_path);
3222 Register index = index_loc.AsRegister<Register>();
3223 if (length == 0) {
3224 __ B(slow_path->GetEntryLabel());
3225 } else if (length == 1) {
3226 __ Bnez(index, slow_path->GetEntryLabel());
3227 } else {
3228 DCHECK(IsUint<15>(length)) << length;
3229 __ Sltiu(TMP, index, length);
3230 __ Beqz(TMP, slow_path->GetEntryLabel());
3231 }
3232 } else {
3233 Register length = length_loc.AsRegister<Register>();
3234 BoundsCheckSlowPathMIPS* slow_path =
3235 new (codegen_->GetScopedAllocator()) BoundsCheckSlowPathMIPS(instruction);
3236 codegen_->AddSlowPath(slow_path);
3237 if (index_loc.IsConstant()) {
3238 int32_t index = index_loc.GetConstant()->AsIntConstant()->GetValue();
3239 if (index < 0) {
3240 __ B(slow_path->GetEntryLabel());
3241 } else if (index == 0) {
3242 __ Blez(length, slow_path->GetEntryLabel());
3243 } else {
3244 DCHECK(IsInt<16>(index + 1)) << index;
3245 __ Sltiu(TMP, length, index + 1);
3246 __ Bnez(TMP, slow_path->GetEntryLabel());
3247 }
3248 } else {
3249 Register index = index_loc.AsRegister<Register>();
3250 __ Bgeu(index, length, slow_path->GetEntryLabel());
3251 }
3252 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003253}
3254
Alexey Frunze15958152017-02-09 19:08:30 -08003255// Temp is used for read barrier.
3256static size_t NumberOfInstanceOfTemps(TypeCheckKind type_check_kind) {
3257 if (kEmitCompilerReadBarrier &&
Alexey Frunze4147fcc2017-06-17 19:57:27 -07003258 !(kUseBakerReadBarrier && kBakerReadBarrierThunksEnableForFields) &&
Alexey Frunze15958152017-02-09 19:08:30 -08003259 (kUseBakerReadBarrier ||
3260 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
3261 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
3262 type_check_kind == TypeCheckKind::kArrayObjectCheck)) {
3263 return 1;
3264 }
3265 return 0;
3266}
3267
3268// Extra temp is used for read barrier.
3269static size_t NumberOfCheckCastTemps(TypeCheckKind type_check_kind) {
3270 return 1 + NumberOfInstanceOfTemps(type_check_kind);
3271}
3272
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003273void LocationsBuilderMIPS::VisitCheckCast(HCheckCast* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003274 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
3275 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
3276
3277 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
3278 switch (type_check_kind) {
3279 case TypeCheckKind::kExactCheck:
3280 case TypeCheckKind::kAbstractClassCheck:
3281 case TypeCheckKind::kClassHierarchyCheck:
3282 case TypeCheckKind::kArrayObjectCheck:
Alexey Frunze15958152017-02-09 19:08:30 -08003283 call_kind = (throws_into_catch || kEmitCompilerReadBarrier)
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003284 ? LocationSummary::kCallOnSlowPath
3285 : LocationSummary::kNoCall; // In fact, call on a fatal (non-returning) slow path.
3286 break;
3287 case TypeCheckKind::kArrayCheck:
3288 case TypeCheckKind::kUnresolvedCheck:
3289 case TypeCheckKind::kInterfaceCheck:
3290 call_kind = LocationSummary::kCallOnSlowPath;
3291 break;
3292 }
3293
Vladimir Markoca6fff82017-10-03 14:49:14 +01003294 LocationSummary* locations =
3295 new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003296 locations->SetInAt(0, Location::RequiresRegister());
3297 locations->SetInAt(1, Location::RequiresRegister());
Alexey Frunze15958152017-02-09 19:08:30 -08003298 locations->AddRegisterTemps(NumberOfCheckCastTemps(type_check_kind));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003299}
3300
3301void InstructionCodeGeneratorMIPS::VisitCheckCast(HCheckCast* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003302 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003303 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08003304 Location obj_loc = locations->InAt(0);
3305 Register obj = obj_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003306 Register cls = locations->InAt(1).AsRegister<Register>();
Alexey Frunze15958152017-02-09 19:08:30 -08003307 Location temp_loc = locations->GetTemp(0);
3308 Register temp = temp_loc.AsRegister<Register>();
3309 const size_t num_temps = NumberOfCheckCastTemps(type_check_kind);
3310 DCHECK_LE(num_temps, 2u);
3311 Location maybe_temp2_loc = (num_temps >= 2) ? locations->GetTemp(1) : Location::NoLocation();
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003312 const uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3313 const uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
3314 const uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
3315 const uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
3316 const uint32_t iftable_offset = mirror::Class::IfTableOffset().Uint32Value();
3317 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value();
3318 const uint32_t object_array_data_offset =
3319 mirror::Array::DataOffset(kHeapReferenceSize).Uint32Value();
3320 MipsLabel done;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003321
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003322 // Always false for read barriers since we may need to go to the entrypoint for non-fatal cases
3323 // from false negatives. The false negatives may come from avoiding read barriers below. Avoiding
3324 // read barriers is done for performance and code size reasons.
3325 bool is_type_check_slow_path_fatal = false;
3326 if (!kEmitCompilerReadBarrier) {
3327 is_type_check_slow_path_fatal =
3328 (type_check_kind == TypeCheckKind::kExactCheck ||
3329 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
3330 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
3331 type_check_kind == TypeCheckKind::kArrayObjectCheck) &&
3332 !instruction->CanThrowIntoCatchBlock();
3333 }
3334 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01003335 new (codegen_->GetScopedAllocator()) TypeCheckSlowPathMIPS(
3336 instruction, is_type_check_slow_path_fatal);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003337 codegen_->AddSlowPath(slow_path);
3338
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003339 // Avoid this check if we know `obj` is not null.
3340 if (instruction->MustDoNullCheck()) {
3341 __ Beqz(obj, &done);
3342 }
3343
3344 switch (type_check_kind) {
3345 case TypeCheckKind::kExactCheck:
3346 case TypeCheckKind::kArrayCheck: {
3347 // /* HeapReference<Class> */ temp = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08003348 GenerateReferenceLoadTwoRegisters(instruction,
3349 temp_loc,
3350 obj_loc,
3351 class_offset,
3352 maybe_temp2_loc,
3353 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003354 // Jump to slow path for throwing the exception or doing a
3355 // more involved array check.
3356 __ Bne(temp, cls, slow_path->GetEntryLabel());
3357 break;
3358 }
3359
3360 case TypeCheckKind::kAbstractClassCheck: {
3361 // /* HeapReference<Class> */ temp = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08003362 GenerateReferenceLoadTwoRegisters(instruction,
3363 temp_loc,
3364 obj_loc,
3365 class_offset,
3366 maybe_temp2_loc,
3367 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003368 // If the class is abstract, we eagerly fetch the super class of the
3369 // object to avoid doing a comparison we know will fail.
3370 MipsLabel loop;
3371 __ Bind(&loop);
3372 // /* HeapReference<Class> */ temp = temp->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08003373 GenerateReferenceLoadOneRegister(instruction,
3374 temp_loc,
3375 super_offset,
3376 maybe_temp2_loc,
3377 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003378 // If the class reference currently in `temp` is null, jump to the slow path to throw the
3379 // exception.
3380 __ Beqz(temp, slow_path->GetEntryLabel());
3381 // Otherwise, compare the classes.
3382 __ Bne(temp, cls, &loop);
3383 break;
3384 }
3385
3386 case TypeCheckKind::kClassHierarchyCheck: {
3387 // /* HeapReference<Class> */ temp = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08003388 GenerateReferenceLoadTwoRegisters(instruction,
3389 temp_loc,
3390 obj_loc,
3391 class_offset,
3392 maybe_temp2_loc,
3393 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003394 // Walk over the class hierarchy to find a match.
3395 MipsLabel loop;
3396 __ Bind(&loop);
3397 __ Beq(temp, cls, &done);
3398 // /* HeapReference<Class> */ temp = temp->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08003399 GenerateReferenceLoadOneRegister(instruction,
3400 temp_loc,
3401 super_offset,
3402 maybe_temp2_loc,
3403 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003404 // If the class reference currently in `temp` is null, jump to the slow path to throw the
3405 // exception. Otherwise, jump to the beginning of the loop.
3406 __ Bnez(temp, &loop);
3407 __ B(slow_path->GetEntryLabel());
3408 break;
3409 }
3410
3411 case TypeCheckKind::kArrayObjectCheck: {
3412 // /* HeapReference<Class> */ temp = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08003413 GenerateReferenceLoadTwoRegisters(instruction,
3414 temp_loc,
3415 obj_loc,
3416 class_offset,
3417 maybe_temp2_loc,
3418 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003419 // Do an exact check.
3420 __ Beq(temp, cls, &done);
3421 // Otherwise, we need to check that the object's class is a non-primitive array.
3422 // /* HeapReference<Class> */ temp = temp->component_type_
Alexey Frunze15958152017-02-09 19:08:30 -08003423 GenerateReferenceLoadOneRegister(instruction,
3424 temp_loc,
3425 component_offset,
3426 maybe_temp2_loc,
3427 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003428 // If the component type is null, jump to the slow path to throw the exception.
3429 __ Beqz(temp, slow_path->GetEntryLabel());
3430 // Otherwise, the object is indeed an array, further check that this component
3431 // type is not a primitive type.
3432 __ LoadFromOffset(kLoadUnsignedHalfword, temp, temp, primitive_offset);
3433 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
3434 __ Bnez(temp, slow_path->GetEntryLabel());
3435 break;
3436 }
3437
3438 case TypeCheckKind::kUnresolvedCheck:
3439 // We always go into the type check slow path for the unresolved check case.
3440 // We cannot directly call the CheckCast runtime entry point
3441 // without resorting to a type checking slow path here (i.e. by
3442 // calling InvokeRuntime directly), as it would require to
3443 // assign fixed registers for the inputs of this HInstanceOf
3444 // instruction (following the runtime calling convention), which
3445 // might be cluttered by the potential first read barrier
3446 // emission at the beginning of this method.
3447 __ B(slow_path->GetEntryLabel());
3448 break;
3449
3450 case TypeCheckKind::kInterfaceCheck: {
3451 // Avoid read barriers to improve performance of the fast path. We can not get false
3452 // positives by doing this.
3453 // /* HeapReference<Class> */ temp = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08003454 GenerateReferenceLoadTwoRegisters(instruction,
3455 temp_loc,
3456 obj_loc,
3457 class_offset,
3458 maybe_temp2_loc,
3459 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003460 // /* HeapReference<Class> */ temp = temp->iftable_
Alexey Frunze15958152017-02-09 19:08:30 -08003461 GenerateReferenceLoadTwoRegisters(instruction,
3462 temp_loc,
3463 temp_loc,
3464 iftable_offset,
3465 maybe_temp2_loc,
3466 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08003467 // Iftable is never null.
3468 __ Lw(TMP, temp, array_length_offset);
3469 // Loop through the iftable and check if any class matches.
3470 MipsLabel loop;
3471 __ Bind(&loop);
3472 __ Addiu(temp, temp, 2 * kHeapReferenceSize); // Possibly in delay slot on R2.
3473 __ Beqz(TMP, slow_path->GetEntryLabel());
3474 __ Lw(AT, temp, object_array_data_offset - 2 * kHeapReferenceSize);
3475 __ MaybeUnpoisonHeapReference(AT);
3476 // Go to next interface.
3477 __ Addiu(TMP, TMP, -2);
3478 // Compare the classes and continue the loop if they do not match.
3479 __ Bne(AT, cls, &loop);
3480 break;
3481 }
3482 }
3483
3484 __ Bind(&done);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003485 __ Bind(slow_path->GetExitLabel());
3486}
3487
3488void LocationsBuilderMIPS::VisitClinitCheck(HClinitCheck* check) {
3489 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003490 new (GetGraph()->GetAllocator()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003491 locations->SetInAt(0, Location::RequiresRegister());
3492 if (check->HasUses()) {
3493 locations->SetOut(Location::SameAsFirstInput());
3494 }
3495}
3496
3497void InstructionCodeGeneratorMIPS::VisitClinitCheck(HClinitCheck* check) {
3498 // We assume the class is not null.
Vladimir Marko174b2e22017-10-12 13:34:49 +01003499 SlowPathCodeMIPS* slow_path = new (codegen_->GetScopedAllocator()) LoadClassSlowPathMIPS(
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003500 check->GetLoadClass(),
3501 check,
3502 check->GetDexPc(),
3503 true);
3504 codegen_->AddSlowPath(slow_path);
3505 GenerateClassInitializationCheck(slow_path,
3506 check->GetLocations()->InAt(0).AsRegister<Register>());
3507}
3508
3509void LocationsBuilderMIPS::VisitCompare(HCompare* compare) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003510 DataType::Type in_type = compare->InputAt(0)->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003511
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003512 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01003513 new (GetGraph()->GetAllocator()) LocationSummary(compare, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003514
3515 switch (in_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003516 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003517 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003518 case DataType::Type::kInt8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003519 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003520 case DataType::Type::kInt16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003521 case DataType::Type::kInt32:
Alexey Frunzee7697712016-09-15 21:37:49 -07003522 locations->SetInAt(0, Location::RequiresRegister());
3523 locations->SetInAt(1, Location::RequiresRegister());
3524 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3525 break;
3526
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003527 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003528 locations->SetInAt(0, Location::RequiresRegister());
3529 locations->SetInAt(1, Location::RequiresRegister());
3530 // Output overlaps because it is written before doing the low comparison.
3531 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3532 break;
3533
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003534 case DataType::Type::kFloat32:
3535 case DataType::Type::kFloat64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003536 locations->SetInAt(0, Location::RequiresFpuRegister());
3537 locations->SetInAt(1, Location::RequiresFpuRegister());
3538 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003539 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003540
3541 default:
3542 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
3543 }
3544}
3545
3546void InstructionCodeGeneratorMIPS::VisitCompare(HCompare* instruction) {
3547 LocationSummary* locations = instruction->GetLocations();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003548 Register res = locations->Out().AsRegister<Register>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003549 DataType::Type in_type = instruction->InputAt(0)->GetType();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003550 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003551
3552 // 0 if: left == right
3553 // 1 if: left > right
3554 // -1 if: left < right
3555 switch (in_type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003556 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003557 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003558 case DataType::Type::kInt8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003559 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003560 case DataType::Type::kInt16:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003561 case DataType::Type::kInt32: {
Aart Bika19616e2016-02-01 18:57:58 -08003562 Register lhs = locations->InAt(0).AsRegister<Register>();
3563 Register rhs = locations->InAt(1).AsRegister<Register>();
3564 __ Slt(TMP, lhs, rhs);
3565 __ Slt(res, rhs, lhs);
3566 __ Subu(res, res, TMP);
3567 break;
3568 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003569 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003570 MipsLabel done;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003571 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
3572 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
3573 Register rhs_high = locations->InAt(1).AsRegisterPairHigh<Register>();
3574 Register rhs_low = locations->InAt(1).AsRegisterPairLow<Register>();
3575 // TODO: more efficient (direct) comparison with a constant.
3576 __ Slt(TMP, lhs_high, rhs_high);
3577 __ Slt(AT, rhs_high, lhs_high); // Inverted: is actually gt.
3578 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ].
3579 __ Bnez(res, &done); // If we compared ==, check if lower bits are also equal.
3580 __ Sltu(TMP, lhs_low, rhs_low);
3581 __ Sltu(AT, rhs_low, lhs_low); // Inverted: is actually gt.
3582 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ].
3583 __ Bind(&done);
3584 break;
3585 }
3586
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003587 case DataType::Type::kFloat32: {
Roland Levillain32ca3752016-02-17 16:49:37 +00003588 bool gt_bias = instruction->IsGtBias();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003589 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
3590 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
3591 MipsLabel done;
3592 if (isR6) {
3593 __ CmpEqS(FTMP, lhs, rhs);
3594 __ LoadConst32(res, 0);
3595 __ Bc1nez(FTMP, &done);
3596 if (gt_bias) {
3597 __ CmpLtS(FTMP, lhs, rhs);
3598 __ LoadConst32(res, -1);
3599 __ Bc1nez(FTMP, &done);
3600 __ LoadConst32(res, 1);
3601 } else {
3602 __ CmpLtS(FTMP, rhs, lhs);
3603 __ LoadConst32(res, 1);
3604 __ Bc1nez(FTMP, &done);
3605 __ LoadConst32(res, -1);
3606 }
3607 } else {
3608 if (gt_bias) {
3609 __ ColtS(0, lhs, rhs);
3610 __ LoadConst32(res, -1);
3611 __ Bc1t(0, &done);
3612 __ CeqS(0, lhs, rhs);
3613 __ LoadConst32(res, 1);
3614 __ Movt(res, ZERO, 0);
3615 } else {
3616 __ ColtS(0, rhs, lhs);
3617 __ LoadConst32(res, 1);
3618 __ Bc1t(0, &done);
3619 __ CeqS(0, lhs, rhs);
3620 __ LoadConst32(res, -1);
3621 __ Movt(res, ZERO, 0);
3622 }
3623 }
3624 __ Bind(&done);
3625 break;
3626 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003627 case DataType::Type::kFloat64: {
Roland Levillain32ca3752016-02-17 16:49:37 +00003628 bool gt_bias = instruction->IsGtBias();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003629 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
3630 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
3631 MipsLabel done;
3632 if (isR6) {
3633 __ CmpEqD(FTMP, lhs, rhs);
3634 __ LoadConst32(res, 0);
3635 __ Bc1nez(FTMP, &done);
3636 if (gt_bias) {
3637 __ CmpLtD(FTMP, lhs, rhs);
3638 __ LoadConst32(res, -1);
3639 __ Bc1nez(FTMP, &done);
3640 __ LoadConst32(res, 1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003641 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003642 __ CmpLtD(FTMP, rhs, lhs);
3643 __ LoadConst32(res, 1);
3644 __ Bc1nez(FTMP, &done);
3645 __ LoadConst32(res, -1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003646 }
3647 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003648 if (gt_bias) {
3649 __ ColtD(0, lhs, rhs);
3650 __ LoadConst32(res, -1);
3651 __ Bc1t(0, &done);
3652 __ CeqD(0, lhs, rhs);
3653 __ LoadConst32(res, 1);
3654 __ Movt(res, ZERO, 0);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003655 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003656 __ ColtD(0, rhs, lhs);
3657 __ LoadConst32(res, 1);
3658 __ Bc1t(0, &done);
3659 __ CeqD(0, lhs, rhs);
3660 __ LoadConst32(res, -1);
3661 __ Movt(res, ZERO, 0);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003662 }
3663 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003664 __ Bind(&done);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003665 break;
3666 }
3667
3668 default:
3669 LOG(FATAL) << "Unimplemented compare type " << in_type;
3670 }
3671}
3672
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00003673void LocationsBuilderMIPS::HandleCondition(HCondition* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01003674 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003675 switch (instruction->InputAt(0)->GetType()) {
3676 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003677 case DataType::Type::kInt64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003678 locations->SetInAt(0, Location::RequiresRegister());
3679 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
3680 break;
3681
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003682 case DataType::Type::kFloat32:
3683 case DataType::Type::kFloat64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003684 locations->SetInAt(0, Location::RequiresFpuRegister());
3685 locations->SetInAt(1, Location::RequiresFpuRegister());
3686 break;
3687 }
David Brazdilb3e773e2016-01-26 11:28:37 +00003688 if (!instruction->IsEmittedAtUseSite()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003689 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3690 }
3691}
3692
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00003693void InstructionCodeGeneratorMIPS::HandleCondition(HCondition* instruction) {
David Brazdilb3e773e2016-01-26 11:28:37 +00003694 if (instruction->IsEmittedAtUseSite()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003695 return;
3696 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003697
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003698 DataType::Type type = instruction->InputAt(0)->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003699 LocationSummary* locations = instruction->GetLocations();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003700
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003701 switch (type) {
3702 default:
3703 // Integer case.
3704 GenerateIntCompare(instruction->GetCondition(), locations);
3705 return;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003706
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003707 case DataType::Type::kInt64:
Tijana Jakovljevic6d482aa2017-02-03 13:24:08 +01003708 GenerateLongCompare(instruction->GetCondition(), locations);
3709 return;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003710
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003711 case DataType::Type::kFloat32:
3712 case DataType::Type::kFloat64:
Alexey Frunze2ddb7172016-09-06 17:04:55 -07003713 GenerateFpCompare(instruction->GetCondition(), instruction->IsGtBias(), type, locations);
3714 return;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003715 }
3716}
3717
Alexey Frunze7e99e052015-11-24 19:28:01 -08003718void InstructionCodeGeneratorMIPS::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
3719 DCHECK(instruction->IsDiv() || instruction->IsRem());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003720 DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt32);
Alexey Frunze7e99e052015-11-24 19:28:01 -08003721
3722 LocationSummary* locations = instruction->GetLocations();
3723 Location second = locations->InAt(1);
3724 DCHECK(second.IsConstant());
3725
3726 Register out = locations->Out().AsRegister<Register>();
3727 Register dividend = locations->InAt(0).AsRegister<Register>();
3728 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3729 DCHECK(imm == 1 || imm == -1);
3730
3731 if (instruction->IsRem()) {
3732 __ Move(out, ZERO);
3733 } else {
3734 if (imm == -1) {
3735 __ Subu(out, ZERO, dividend);
3736 } else if (out != dividend) {
3737 __ Move(out, dividend);
3738 }
3739 }
3740}
3741
3742void InstructionCodeGeneratorMIPS::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
3743 DCHECK(instruction->IsDiv() || instruction->IsRem());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003744 DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt32);
Alexey Frunze7e99e052015-11-24 19:28:01 -08003745
3746 LocationSummary* locations = instruction->GetLocations();
3747 Location second = locations->InAt(1);
3748 DCHECK(second.IsConstant());
3749
3750 Register out = locations->Out().AsRegister<Register>();
3751 Register dividend = locations->InAt(0).AsRegister<Register>();
3752 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003753 uint32_t abs_imm = static_cast<uint32_t>(AbsOrMin(imm));
Alexey Frunze7e99e052015-11-24 19:28:01 -08003754 int ctz_imm = CTZ(abs_imm);
3755
3756 if (instruction->IsDiv()) {
3757 if (ctz_imm == 1) {
3758 // Fast path for division by +/-2, which is very common.
3759 __ Srl(TMP, dividend, 31);
3760 } else {
3761 __ Sra(TMP, dividend, 31);
3762 __ Srl(TMP, TMP, 32 - ctz_imm);
3763 }
3764 __ Addu(out, dividend, TMP);
3765 __ Sra(out, out, ctz_imm);
3766 if (imm < 0) {
3767 __ Subu(out, ZERO, out);
3768 }
3769 } else {
3770 if (ctz_imm == 1) {
3771 // Fast path for modulo +/-2, which is very common.
3772 __ Sra(TMP, dividend, 31);
3773 __ Subu(out, dividend, TMP);
3774 __ Andi(out, out, 1);
3775 __ Addu(out, out, TMP);
3776 } else {
3777 __ Sra(TMP, dividend, 31);
3778 __ Srl(TMP, TMP, 32 - ctz_imm);
3779 __ Addu(out, dividend, TMP);
3780 if (IsUint<16>(abs_imm - 1)) {
3781 __ Andi(out, out, abs_imm - 1);
3782 } else {
Lena Djokica556e6b2017-12-13 12:09:42 +01003783 if (codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2()) {
3784 __ Ins(out, ZERO, ctz_imm, 32 - ctz_imm);
3785 } else {
3786 __ Sll(out, out, 32 - ctz_imm);
3787 __ Srl(out, out, 32 - ctz_imm);
3788 }
Alexey Frunze7e99e052015-11-24 19:28:01 -08003789 }
3790 __ Subu(out, out, TMP);
3791 }
3792 }
3793}
3794
3795void InstructionCodeGeneratorMIPS::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
3796 DCHECK(instruction->IsDiv() || instruction->IsRem());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003797 DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt32);
Alexey Frunze7e99e052015-11-24 19:28:01 -08003798
3799 LocationSummary* locations = instruction->GetLocations();
3800 Location second = locations->InAt(1);
3801 DCHECK(second.IsConstant());
3802
3803 Register out = locations->Out().AsRegister<Register>();
3804 Register dividend = locations->InAt(0).AsRegister<Register>();
3805 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3806
3807 int64_t magic;
3808 int shift;
3809 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
3810
3811 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
3812
3813 __ LoadConst32(TMP, magic);
3814 if (isR6) {
3815 __ MuhR6(TMP, dividend, TMP);
3816 } else {
3817 __ MultR2(dividend, TMP);
3818 __ Mfhi(TMP);
3819 }
3820 if (imm > 0 && magic < 0) {
3821 __ Addu(TMP, TMP, dividend);
3822 } else if (imm < 0 && magic > 0) {
3823 __ Subu(TMP, TMP, dividend);
3824 }
3825
3826 if (shift != 0) {
3827 __ Sra(TMP, TMP, shift);
3828 }
3829
3830 if (instruction->IsDiv()) {
3831 __ Sra(out, TMP, 31);
3832 __ Subu(out, TMP, out);
3833 } else {
3834 __ Sra(AT, TMP, 31);
3835 __ Subu(AT, TMP, AT);
3836 __ LoadConst32(TMP, imm);
3837 if (isR6) {
3838 __ MulR6(TMP, AT, TMP);
3839 } else {
3840 __ MulR2(TMP, AT, TMP);
3841 }
3842 __ Subu(out, dividend, TMP);
3843 }
3844}
3845
3846void InstructionCodeGeneratorMIPS::GenerateDivRemIntegral(HBinaryOperation* instruction) {
3847 DCHECK(instruction->IsDiv() || instruction->IsRem());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003848 DCHECK_EQ(instruction->GetResultType(), DataType::Type::kInt32);
Alexey Frunze7e99e052015-11-24 19:28:01 -08003849
3850 LocationSummary* locations = instruction->GetLocations();
3851 Register out = locations->Out().AsRegister<Register>();
3852 Location second = locations->InAt(1);
3853
3854 if (second.IsConstant()) {
3855 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3856 if (imm == 0) {
3857 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
3858 } else if (imm == 1 || imm == -1) {
3859 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003860 } else if (IsPowerOfTwo(AbsOrMin(imm))) {
Alexey Frunze7e99e052015-11-24 19:28:01 -08003861 DivRemByPowerOfTwo(instruction);
3862 } else {
3863 DCHECK(imm <= -2 || imm >= 2);
3864 GenerateDivRemWithAnyConstant(instruction);
3865 }
3866 } else {
3867 Register dividend = locations->InAt(0).AsRegister<Register>();
3868 Register divisor = second.AsRegister<Register>();
3869 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
3870 if (instruction->IsDiv()) {
3871 if (isR6) {
3872 __ DivR6(out, dividend, divisor);
3873 } else {
3874 __ DivR2(out, dividend, divisor);
3875 }
3876 } else {
3877 if (isR6) {
3878 __ ModR6(out, dividend, divisor);
3879 } else {
3880 __ ModR2(out, dividend, divisor);
3881 }
3882 }
3883 }
3884}
3885
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003886void LocationsBuilderMIPS::VisitDiv(HDiv* div) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003887 DataType::Type type = div->GetResultType();
3888 LocationSummary::CallKind call_kind = (type == DataType::Type::kInt64)
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003889 ? LocationSummary::kCallOnMainOnly
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003890 : LocationSummary::kNoCall;
3891
Vladimir Markoca6fff82017-10-03 14:49:14 +01003892 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(div, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003893
3894 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003895 case DataType::Type::kInt32:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003896 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze7e99e052015-11-24 19:28:01 -08003897 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003898 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3899 break;
3900
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003901 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003902 InvokeRuntimeCallingConvention calling_convention;
3903 locations->SetInAt(0, Location::RegisterPairLocation(
3904 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3905 locations->SetInAt(1, Location::RegisterPairLocation(
3906 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3907 locations->SetOut(calling_convention.GetReturnLocation(type));
3908 break;
3909 }
3910
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003911 case DataType::Type::kFloat32:
3912 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003913 locations->SetInAt(0, Location::RequiresFpuRegister());
3914 locations->SetInAt(1, Location::RequiresFpuRegister());
3915 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3916 break;
3917
3918 default:
3919 LOG(FATAL) << "Unexpected div type " << type;
3920 }
3921}
3922
3923void InstructionCodeGeneratorMIPS::VisitDiv(HDiv* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003924 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003925 LocationSummary* locations = instruction->GetLocations();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003926
3927 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003928 case DataType::Type::kInt32:
Alexey Frunze7e99e052015-11-24 19:28:01 -08003929 GenerateDivRemIntegral(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003930 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003931 case DataType::Type::kInt64: {
Serban Constantinescufca16662016-07-14 09:21:59 +01003932 codegen_->InvokeRuntime(kQuickLdiv, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003933 CheckEntrypointTypes<kQuickLdiv, int64_t, int64_t, int64_t>();
3934 break;
3935 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003936 case DataType::Type::kFloat32:
3937 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003938 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
3939 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
3940 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003941 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003942 __ DivS(dst, lhs, rhs);
3943 } else {
3944 __ DivD(dst, lhs, rhs);
3945 }
3946 break;
3947 }
3948 default:
3949 LOG(FATAL) << "Unexpected div type " << type;
3950 }
3951}
3952
3953void LocationsBuilderMIPS::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01003954 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003955 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003956}
3957
3958void InstructionCodeGeneratorMIPS::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01003959 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01003960 new (codegen_->GetScopedAllocator()) DivZeroCheckSlowPathMIPS(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003961 codegen_->AddSlowPath(slow_path);
3962 Location value = instruction->GetLocations()->InAt(0);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003963 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003964
3965 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003966 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01003967 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003968 case DataType::Type::kInt8:
3969 case DataType::Type::kUint16:
3970 case DataType::Type::kInt16:
3971 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003972 if (value.IsConstant()) {
3973 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
3974 __ B(slow_path->GetEntryLabel());
3975 } else {
3976 // A division by a non-null constant is valid. We don't need to perform
3977 // any check, so simply fall through.
3978 }
3979 } else {
3980 DCHECK(value.IsRegister()) << value;
3981 __ Beqz(value.AsRegister<Register>(), slow_path->GetEntryLabel());
3982 }
3983 break;
3984 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01003985 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003986 if (value.IsConstant()) {
3987 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
3988 __ B(slow_path->GetEntryLabel());
3989 } else {
3990 // A division by a non-null constant is valid. We don't need to perform
3991 // any check, so simply fall through.
3992 }
3993 } else {
3994 DCHECK(value.IsRegisterPair()) << value;
3995 __ Or(TMP, value.AsRegisterPairHigh<Register>(), value.AsRegisterPairLow<Register>());
3996 __ Beqz(TMP, slow_path->GetEntryLabel());
3997 }
3998 break;
3999 }
4000 default:
4001 LOG(FATAL) << "Unexpected type " << type << " for DivZeroCheck.";
4002 }
4003}
4004
4005void LocationsBuilderMIPS::VisitDoubleConstant(HDoubleConstant* constant) {
4006 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004007 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004008 locations->SetOut(Location::ConstantLocation(constant));
4009}
4010
4011void InstructionCodeGeneratorMIPS::VisitDoubleConstant(HDoubleConstant* cst ATTRIBUTE_UNUSED) {
4012 // Will be generated at use site.
4013}
4014
4015void LocationsBuilderMIPS::VisitExit(HExit* exit) {
4016 exit->SetLocations(nullptr);
4017}
4018
4019void InstructionCodeGeneratorMIPS::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
4020}
4021
4022void LocationsBuilderMIPS::VisitFloatConstant(HFloatConstant* constant) {
4023 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01004024 new (GetGraph()->GetAllocator()) LocationSummary(constant, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004025 locations->SetOut(Location::ConstantLocation(constant));
4026}
4027
4028void InstructionCodeGeneratorMIPS::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
4029 // Will be generated at use site.
4030}
4031
4032void LocationsBuilderMIPS::VisitGoto(HGoto* got) {
4033 got->SetLocations(nullptr);
4034}
4035
4036void InstructionCodeGeneratorMIPS::HandleGoto(HInstruction* got, HBasicBlock* successor) {
4037 DCHECK(!successor->IsExitBlock());
4038 HBasicBlock* block = got->GetBlock();
4039 HInstruction* previous = got->GetPrevious();
4040 HLoopInformation* info = block->GetLoopInformation();
4041
4042 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004043 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
4044 return;
4045 }
4046 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
4047 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
4048 }
4049 if (!codegen_->GoesToNextBlock(block, successor)) {
4050 __ B(codegen_->GetLabelOf(successor));
4051 }
4052}
4053
4054void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) {
4055 HandleGoto(got, got->GetSuccessor());
4056}
4057
4058void LocationsBuilderMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
4059 try_boundary->SetLocations(nullptr);
4060}
4061
4062void InstructionCodeGeneratorMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
4063 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
4064 if (!successor->IsExitBlock()) {
4065 HandleGoto(try_boundary, successor);
4066 }
4067}
4068
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004069void InstructionCodeGeneratorMIPS::GenerateIntCompare(IfCondition cond,
4070 LocationSummary* locations) {
4071 Register dst = locations->Out().AsRegister<Register>();
4072 Register lhs = locations->InAt(0).AsRegister<Register>();
4073 Location rhs_location = locations->InAt(1);
4074 Register rhs_reg = ZERO;
4075 int64_t rhs_imm = 0;
4076 bool use_imm = rhs_location.IsConstant();
4077 if (use_imm) {
4078 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4079 } else {
4080 rhs_reg = rhs_location.AsRegister<Register>();
4081 }
4082
4083 switch (cond) {
4084 case kCondEQ:
4085 case kCondNE:
Alexey Frunzee7697712016-09-15 21:37:49 -07004086 if (use_imm && IsInt<16>(-rhs_imm)) {
4087 if (rhs_imm == 0) {
4088 if (cond == kCondEQ) {
4089 __ Sltiu(dst, lhs, 1);
4090 } else {
4091 __ Sltu(dst, ZERO, lhs);
4092 }
4093 } else {
4094 __ Addiu(dst, lhs, -rhs_imm);
4095 if (cond == kCondEQ) {
4096 __ Sltiu(dst, dst, 1);
4097 } else {
4098 __ Sltu(dst, ZERO, dst);
4099 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004100 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004101 } else {
Alexey Frunzee7697712016-09-15 21:37:49 -07004102 if (use_imm && IsUint<16>(rhs_imm)) {
4103 __ Xori(dst, lhs, rhs_imm);
4104 } else {
4105 if (use_imm) {
4106 rhs_reg = TMP;
4107 __ LoadConst32(rhs_reg, rhs_imm);
4108 }
4109 __ Xor(dst, lhs, rhs_reg);
4110 }
4111 if (cond == kCondEQ) {
4112 __ Sltiu(dst, dst, 1);
4113 } else {
4114 __ Sltu(dst, ZERO, dst);
4115 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004116 }
4117 break;
4118
4119 case kCondLT:
4120 case kCondGE:
4121 if (use_imm && IsInt<16>(rhs_imm)) {
4122 __ Slti(dst, lhs, rhs_imm);
4123 } else {
4124 if (use_imm) {
4125 rhs_reg = TMP;
4126 __ LoadConst32(rhs_reg, rhs_imm);
4127 }
4128 __ Slt(dst, lhs, rhs_reg);
4129 }
4130 if (cond == kCondGE) {
4131 // Simulate lhs >= rhs via !(lhs < rhs) since there's
4132 // only the slt instruction but no sge.
4133 __ Xori(dst, dst, 1);
4134 }
4135 break;
4136
4137 case kCondLE:
4138 case kCondGT:
4139 if (use_imm && IsInt<16>(rhs_imm + 1)) {
4140 // Simulate lhs <= rhs via lhs < rhs + 1.
4141 __ Slti(dst, lhs, rhs_imm + 1);
4142 if (cond == kCondGT) {
4143 // Simulate lhs > rhs via !(lhs <= rhs) since there's
4144 // only the slti instruction but no sgti.
4145 __ Xori(dst, dst, 1);
4146 }
4147 } else {
4148 if (use_imm) {
4149 rhs_reg = TMP;
4150 __ LoadConst32(rhs_reg, rhs_imm);
4151 }
4152 __ Slt(dst, rhs_reg, lhs);
4153 if (cond == kCondLE) {
4154 // Simulate lhs <= rhs via !(rhs < lhs) since there's
4155 // only the slt instruction but no sle.
4156 __ Xori(dst, dst, 1);
4157 }
4158 }
4159 break;
4160
4161 case kCondB:
4162 case kCondAE:
4163 if (use_imm && IsInt<16>(rhs_imm)) {
4164 // Sltiu sign-extends its 16-bit immediate operand before
4165 // the comparison and thus lets us compare directly with
4166 // unsigned values in the ranges [0, 0x7fff] and
4167 // [0xffff8000, 0xffffffff].
4168 __ Sltiu(dst, lhs, rhs_imm);
4169 } else {
4170 if (use_imm) {
4171 rhs_reg = TMP;
4172 __ LoadConst32(rhs_reg, rhs_imm);
4173 }
4174 __ Sltu(dst, lhs, rhs_reg);
4175 }
4176 if (cond == kCondAE) {
4177 // Simulate lhs >= rhs via !(lhs < rhs) since there's
4178 // only the sltu instruction but no sgeu.
4179 __ Xori(dst, dst, 1);
4180 }
4181 break;
4182
4183 case kCondBE:
4184 case kCondA:
4185 if (use_imm && (rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4186 // Simulate lhs <= rhs via lhs < rhs + 1.
4187 // Note that this only works if rhs + 1 does not overflow
4188 // to 0, hence the check above.
4189 // Sltiu sign-extends its 16-bit immediate operand before
4190 // the comparison and thus lets us compare directly with
4191 // unsigned values in the ranges [0, 0x7fff] and
4192 // [0xffff8000, 0xffffffff].
4193 __ Sltiu(dst, lhs, rhs_imm + 1);
4194 if (cond == kCondA) {
4195 // Simulate lhs > rhs via !(lhs <= rhs) since there's
4196 // only the sltiu instruction but no sgtiu.
4197 __ Xori(dst, dst, 1);
4198 }
4199 } else {
4200 if (use_imm) {
4201 rhs_reg = TMP;
4202 __ LoadConst32(rhs_reg, rhs_imm);
4203 }
4204 __ Sltu(dst, rhs_reg, lhs);
4205 if (cond == kCondBE) {
4206 // Simulate lhs <= rhs via !(rhs < lhs) since there's
4207 // only the sltu instruction but no sleu.
4208 __ Xori(dst, dst, 1);
4209 }
4210 }
4211 break;
4212 }
4213}
4214
Alexey Frunze674b9ee2016-09-20 14:54:15 -07004215bool InstructionCodeGeneratorMIPS::MaterializeIntCompare(IfCondition cond,
4216 LocationSummary* input_locations,
4217 Register dst) {
4218 Register lhs = input_locations->InAt(0).AsRegister<Register>();
4219 Location rhs_location = input_locations->InAt(1);
4220 Register rhs_reg = ZERO;
4221 int64_t rhs_imm = 0;
4222 bool use_imm = rhs_location.IsConstant();
4223 if (use_imm) {
4224 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4225 } else {
4226 rhs_reg = rhs_location.AsRegister<Register>();
4227 }
4228
4229 switch (cond) {
4230 case kCondEQ:
4231 case kCondNE:
4232 if (use_imm && IsInt<16>(-rhs_imm)) {
4233 __ Addiu(dst, lhs, -rhs_imm);
4234 } else if (use_imm && IsUint<16>(rhs_imm)) {
4235 __ Xori(dst, lhs, rhs_imm);
4236 } else {
4237 if (use_imm) {
4238 rhs_reg = TMP;
4239 __ LoadConst32(rhs_reg, rhs_imm);
4240 }
4241 __ Xor(dst, lhs, rhs_reg);
4242 }
4243 return (cond == kCondEQ);
4244
4245 case kCondLT:
4246 case kCondGE:
4247 if (use_imm && IsInt<16>(rhs_imm)) {
4248 __ Slti(dst, lhs, rhs_imm);
4249 } else {
4250 if (use_imm) {
4251 rhs_reg = TMP;
4252 __ LoadConst32(rhs_reg, rhs_imm);
4253 }
4254 __ Slt(dst, lhs, rhs_reg);
4255 }
4256 return (cond == kCondGE);
4257
4258 case kCondLE:
4259 case kCondGT:
4260 if (use_imm && IsInt<16>(rhs_imm + 1)) {
4261 // Simulate lhs <= rhs via lhs < rhs + 1.
4262 __ Slti(dst, lhs, rhs_imm + 1);
4263 return (cond == kCondGT);
4264 } else {
4265 if (use_imm) {
4266 rhs_reg = TMP;
4267 __ LoadConst32(rhs_reg, rhs_imm);
4268 }
4269 __ Slt(dst, rhs_reg, lhs);
4270 return (cond == kCondLE);
4271 }
4272
4273 case kCondB:
4274 case kCondAE:
4275 if (use_imm && IsInt<16>(rhs_imm)) {
4276 // Sltiu sign-extends its 16-bit immediate operand before
4277 // the comparison and thus lets us compare directly with
4278 // unsigned values in the ranges [0, 0x7fff] and
4279 // [0xffff8000, 0xffffffff].
4280 __ Sltiu(dst, lhs, rhs_imm);
4281 } else {
4282 if (use_imm) {
4283 rhs_reg = TMP;
4284 __ LoadConst32(rhs_reg, rhs_imm);
4285 }
4286 __ Sltu(dst, lhs, rhs_reg);
4287 }
4288 return (cond == kCondAE);
4289
4290 case kCondBE:
4291 case kCondA:
4292 if (use_imm && (rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4293 // Simulate lhs <= rhs via lhs < rhs + 1.
4294 // Note that this only works if rhs + 1 does not overflow
4295 // to 0, hence the check above.
4296 // Sltiu sign-extends its 16-bit immediate operand before
4297 // the comparison and thus lets us compare directly with
4298 // unsigned values in the ranges [0, 0x7fff] and
4299 // [0xffff8000, 0xffffffff].
4300 __ Sltiu(dst, lhs, rhs_imm + 1);
4301 return (cond == kCondA);
4302 } else {
4303 if (use_imm) {
4304 rhs_reg = TMP;
4305 __ LoadConst32(rhs_reg, rhs_imm);
4306 }
4307 __ Sltu(dst, rhs_reg, lhs);
4308 return (cond == kCondBE);
4309 }
4310 }
4311}
4312
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004313void InstructionCodeGeneratorMIPS::GenerateIntCompareAndBranch(IfCondition cond,
4314 LocationSummary* locations,
4315 MipsLabel* label) {
4316 Register lhs = locations->InAt(0).AsRegister<Register>();
4317 Location rhs_location = locations->InAt(1);
4318 Register rhs_reg = ZERO;
Alexey Frunzee7697712016-09-15 21:37:49 -07004319 int64_t rhs_imm = 0;
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004320 bool use_imm = rhs_location.IsConstant();
4321 if (use_imm) {
4322 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4323 } else {
4324 rhs_reg = rhs_location.AsRegister<Register>();
4325 }
4326
4327 if (use_imm && rhs_imm == 0) {
4328 switch (cond) {
4329 case kCondEQ:
4330 case kCondBE: // <= 0 if zero
4331 __ Beqz(lhs, label);
4332 break;
4333 case kCondNE:
4334 case kCondA: // > 0 if non-zero
4335 __ Bnez(lhs, label);
4336 break;
4337 case kCondLT:
4338 __ Bltz(lhs, label);
4339 break;
4340 case kCondGE:
4341 __ Bgez(lhs, label);
4342 break;
4343 case kCondLE:
4344 __ Blez(lhs, label);
4345 break;
4346 case kCondGT:
4347 __ Bgtz(lhs, label);
4348 break;
4349 case kCondB: // always false
4350 break;
4351 case kCondAE: // always true
4352 __ B(label);
4353 break;
4354 }
4355 } else {
Alexey Frunzee7697712016-09-15 21:37:49 -07004356 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
4357 if (isR6 || !use_imm) {
4358 if (use_imm) {
4359 rhs_reg = TMP;
4360 __ LoadConst32(rhs_reg, rhs_imm);
4361 }
4362 switch (cond) {
4363 case kCondEQ:
4364 __ Beq(lhs, rhs_reg, label);
4365 break;
4366 case kCondNE:
4367 __ Bne(lhs, rhs_reg, label);
4368 break;
4369 case kCondLT:
4370 __ Blt(lhs, rhs_reg, label);
4371 break;
4372 case kCondGE:
4373 __ Bge(lhs, rhs_reg, label);
4374 break;
4375 case kCondLE:
4376 __ Bge(rhs_reg, lhs, label);
4377 break;
4378 case kCondGT:
4379 __ Blt(rhs_reg, lhs, label);
4380 break;
4381 case kCondB:
4382 __ Bltu(lhs, rhs_reg, label);
4383 break;
4384 case kCondAE:
4385 __ Bgeu(lhs, rhs_reg, label);
4386 break;
4387 case kCondBE:
4388 __ Bgeu(rhs_reg, lhs, label);
4389 break;
4390 case kCondA:
4391 __ Bltu(rhs_reg, lhs, label);
4392 break;
4393 }
4394 } else {
4395 // Special cases for more efficient comparison with constants on R2.
4396 switch (cond) {
4397 case kCondEQ:
4398 __ LoadConst32(TMP, rhs_imm);
4399 __ Beq(lhs, TMP, label);
4400 break;
4401 case kCondNE:
4402 __ LoadConst32(TMP, rhs_imm);
4403 __ Bne(lhs, TMP, label);
4404 break;
4405 case kCondLT:
4406 if (IsInt<16>(rhs_imm)) {
4407 __ Slti(TMP, lhs, rhs_imm);
4408 __ Bnez(TMP, label);
4409 } else {
4410 __ LoadConst32(TMP, rhs_imm);
4411 __ Blt(lhs, TMP, label);
4412 }
4413 break;
4414 case kCondGE:
4415 if (IsInt<16>(rhs_imm)) {
4416 __ Slti(TMP, lhs, rhs_imm);
4417 __ Beqz(TMP, label);
4418 } else {
4419 __ LoadConst32(TMP, rhs_imm);
4420 __ Bge(lhs, TMP, label);
4421 }
4422 break;
4423 case kCondLE:
4424 if (IsInt<16>(rhs_imm + 1)) {
4425 // Simulate lhs <= rhs via lhs < rhs + 1.
4426 __ Slti(TMP, lhs, rhs_imm + 1);
4427 __ Bnez(TMP, label);
4428 } else {
4429 __ LoadConst32(TMP, rhs_imm);
4430 __ Bge(TMP, lhs, label);
4431 }
4432 break;
4433 case kCondGT:
4434 if (IsInt<16>(rhs_imm + 1)) {
4435 // Simulate lhs > rhs via !(lhs < rhs + 1).
4436 __ Slti(TMP, lhs, rhs_imm + 1);
4437 __ Beqz(TMP, label);
4438 } else {
4439 __ LoadConst32(TMP, rhs_imm);
4440 __ Blt(TMP, lhs, label);
4441 }
4442 break;
4443 case kCondB:
4444 if (IsInt<16>(rhs_imm)) {
4445 __ Sltiu(TMP, lhs, rhs_imm);
4446 __ Bnez(TMP, label);
4447 } else {
4448 __ LoadConst32(TMP, rhs_imm);
4449 __ Bltu(lhs, TMP, label);
4450 }
4451 break;
4452 case kCondAE:
4453 if (IsInt<16>(rhs_imm)) {
4454 __ Sltiu(TMP, lhs, rhs_imm);
4455 __ Beqz(TMP, label);
4456 } else {
4457 __ LoadConst32(TMP, rhs_imm);
4458 __ Bgeu(lhs, TMP, label);
4459 }
4460 break;
4461 case kCondBE:
4462 if ((rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4463 // Simulate lhs <= rhs via lhs < rhs + 1.
4464 // Note that this only works if rhs + 1 does not overflow
4465 // to 0, hence the check above.
4466 __ Sltiu(TMP, lhs, rhs_imm + 1);
4467 __ Bnez(TMP, label);
4468 } else {
4469 __ LoadConst32(TMP, rhs_imm);
4470 __ Bgeu(TMP, lhs, label);
4471 }
4472 break;
4473 case kCondA:
4474 if ((rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4475 // Simulate lhs > rhs via !(lhs < rhs + 1).
4476 // Note that this only works if rhs + 1 does not overflow
4477 // to 0, hence the check above.
4478 __ Sltiu(TMP, lhs, rhs_imm + 1);
4479 __ Beqz(TMP, label);
4480 } else {
4481 __ LoadConst32(TMP, rhs_imm);
4482 __ Bltu(TMP, lhs, label);
4483 }
4484 break;
4485 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004486 }
4487 }
4488}
4489
Tijana Jakovljevic6d482aa2017-02-03 13:24:08 +01004490void InstructionCodeGeneratorMIPS::GenerateLongCompare(IfCondition cond,
4491 LocationSummary* locations) {
4492 Register dst = locations->Out().AsRegister<Register>();
4493 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4494 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
4495 Location rhs_location = locations->InAt(1);
4496 Register rhs_high = ZERO;
4497 Register rhs_low = ZERO;
4498 int64_t imm = 0;
4499 uint32_t imm_high = 0;
4500 uint32_t imm_low = 0;
4501 bool use_imm = rhs_location.IsConstant();
4502 if (use_imm) {
4503 imm = rhs_location.GetConstant()->AsLongConstant()->GetValue();
4504 imm_high = High32Bits(imm);
4505 imm_low = Low32Bits(imm);
4506 } else {
4507 rhs_high = rhs_location.AsRegisterPairHigh<Register>();
4508 rhs_low = rhs_location.AsRegisterPairLow<Register>();
4509 }
4510 if (use_imm && imm == 0) {
4511 switch (cond) {
4512 case kCondEQ:
4513 case kCondBE: // <= 0 if zero
4514 __ Or(dst, lhs_high, lhs_low);
4515 __ Sltiu(dst, dst, 1);
4516 break;
4517 case kCondNE:
4518 case kCondA: // > 0 if non-zero
4519 __ Or(dst, lhs_high, lhs_low);
4520 __ Sltu(dst, ZERO, dst);
4521 break;
4522 case kCondLT:
4523 __ Slt(dst, lhs_high, ZERO);
4524 break;
4525 case kCondGE:
4526 __ Slt(dst, lhs_high, ZERO);
4527 __ Xori(dst, dst, 1);
4528 break;
4529 case kCondLE:
4530 __ Or(TMP, lhs_high, lhs_low);
4531 __ Sra(AT, lhs_high, 31);
4532 __ Sltu(dst, AT, TMP);
4533 __ Xori(dst, dst, 1);
4534 break;
4535 case kCondGT:
4536 __ Or(TMP, lhs_high, lhs_low);
4537 __ Sra(AT, lhs_high, 31);
4538 __ Sltu(dst, AT, TMP);
4539 break;
4540 case kCondB: // always false
4541 __ Andi(dst, dst, 0);
4542 break;
4543 case kCondAE: // always true
4544 __ Ori(dst, ZERO, 1);
4545 break;
4546 }
4547 } else if (use_imm) {
4548 // TODO: more efficient comparison with constants without loading them into TMP/AT.
4549 switch (cond) {
4550 case kCondEQ:
4551 __ LoadConst32(TMP, imm_high);
4552 __ Xor(TMP, TMP, lhs_high);
4553 __ LoadConst32(AT, imm_low);
4554 __ Xor(AT, AT, lhs_low);
4555 __ Or(dst, TMP, AT);
4556 __ Sltiu(dst, dst, 1);
4557 break;
4558 case kCondNE:
4559 __ LoadConst32(TMP, imm_high);
4560 __ Xor(TMP, TMP, lhs_high);
4561 __ LoadConst32(AT, imm_low);
4562 __ Xor(AT, AT, lhs_low);
4563 __ Or(dst, TMP, AT);
4564 __ Sltu(dst, ZERO, dst);
4565 break;
4566 case kCondLT:
4567 case kCondGE:
4568 if (dst == lhs_low) {
4569 __ LoadConst32(TMP, imm_low);
4570 __ Sltu(dst, lhs_low, TMP);
4571 }
4572 __ LoadConst32(TMP, imm_high);
4573 __ Slt(AT, lhs_high, TMP);
4574 __ Slt(TMP, TMP, lhs_high);
4575 if (dst != lhs_low) {
4576 __ LoadConst32(dst, imm_low);
4577 __ Sltu(dst, lhs_low, dst);
4578 }
4579 __ Slt(dst, TMP, dst);
4580 __ Or(dst, dst, AT);
4581 if (cond == kCondGE) {
4582 __ Xori(dst, dst, 1);
4583 }
4584 break;
4585 case kCondGT:
4586 case kCondLE:
4587 if (dst == lhs_low) {
4588 __ LoadConst32(TMP, imm_low);
4589 __ Sltu(dst, TMP, lhs_low);
4590 }
4591 __ LoadConst32(TMP, imm_high);
4592 __ Slt(AT, TMP, lhs_high);
4593 __ Slt(TMP, lhs_high, TMP);
4594 if (dst != lhs_low) {
4595 __ LoadConst32(dst, imm_low);
4596 __ Sltu(dst, dst, lhs_low);
4597 }
4598 __ Slt(dst, TMP, dst);
4599 __ Or(dst, dst, AT);
4600 if (cond == kCondLE) {
4601 __ Xori(dst, dst, 1);
4602 }
4603 break;
4604 case kCondB:
4605 case kCondAE:
4606 if (dst == lhs_low) {
4607 __ LoadConst32(TMP, imm_low);
4608 __ Sltu(dst, lhs_low, TMP);
4609 }
4610 __ LoadConst32(TMP, imm_high);
4611 __ Sltu(AT, lhs_high, TMP);
4612 __ Sltu(TMP, TMP, lhs_high);
4613 if (dst != lhs_low) {
4614 __ LoadConst32(dst, imm_low);
4615 __ Sltu(dst, lhs_low, dst);
4616 }
4617 __ Slt(dst, TMP, dst);
4618 __ Or(dst, dst, AT);
4619 if (cond == kCondAE) {
4620 __ Xori(dst, dst, 1);
4621 }
4622 break;
4623 case kCondA:
4624 case kCondBE:
4625 if (dst == lhs_low) {
4626 __ LoadConst32(TMP, imm_low);
4627 __ Sltu(dst, TMP, lhs_low);
4628 }
4629 __ LoadConst32(TMP, imm_high);
4630 __ Sltu(AT, TMP, lhs_high);
4631 __ Sltu(TMP, lhs_high, TMP);
4632 if (dst != lhs_low) {
4633 __ LoadConst32(dst, imm_low);
4634 __ Sltu(dst, dst, lhs_low);
4635 }
4636 __ Slt(dst, TMP, dst);
4637 __ Or(dst, dst, AT);
4638 if (cond == kCondBE) {
4639 __ Xori(dst, dst, 1);
4640 }
4641 break;
4642 }
4643 } else {
4644 switch (cond) {
4645 case kCondEQ:
4646 __ Xor(TMP, lhs_high, rhs_high);
4647 __ Xor(AT, lhs_low, rhs_low);
4648 __ Or(dst, TMP, AT);
4649 __ Sltiu(dst, dst, 1);
4650 break;
4651 case kCondNE:
4652 __ Xor(TMP, lhs_high, rhs_high);
4653 __ Xor(AT, lhs_low, rhs_low);
4654 __ Or(dst, TMP, AT);
4655 __ Sltu(dst, ZERO, dst);
4656 break;
4657 case kCondLT:
4658 case kCondGE:
4659 __ Slt(TMP, rhs_high, lhs_high);
4660 __ Sltu(AT, lhs_low, rhs_low);
4661 __ Slt(TMP, TMP, AT);
4662 __ Slt(AT, lhs_high, rhs_high);
4663 __ Or(dst, AT, TMP);
4664 if (cond == kCondGE) {
4665 __ Xori(dst, dst, 1);
4666 }
4667 break;
4668 case kCondGT:
4669 case kCondLE:
4670 __ Slt(TMP, lhs_high, rhs_high);
4671 __ Sltu(AT, rhs_low, lhs_low);
4672 __ Slt(TMP, TMP, AT);
4673 __ Slt(AT, rhs_high, lhs_high);
4674 __ Or(dst, AT, TMP);
4675 if (cond == kCondLE) {
4676 __ Xori(dst, dst, 1);
4677 }
4678 break;
4679 case kCondB:
4680 case kCondAE:
4681 __ Sltu(TMP, rhs_high, lhs_high);
4682 __ Sltu(AT, lhs_low, rhs_low);
4683 __ Slt(TMP, TMP, AT);
4684 __ Sltu(AT, lhs_high, rhs_high);
4685 __ Or(dst, AT, TMP);
4686 if (cond == kCondAE) {
4687 __ Xori(dst, dst, 1);
4688 }
4689 break;
4690 case kCondA:
4691 case kCondBE:
4692 __ Sltu(TMP, lhs_high, rhs_high);
4693 __ Sltu(AT, rhs_low, lhs_low);
4694 __ Slt(TMP, TMP, AT);
4695 __ Sltu(AT, rhs_high, lhs_high);
4696 __ Or(dst, AT, TMP);
4697 if (cond == kCondBE) {
4698 __ Xori(dst, dst, 1);
4699 }
4700 break;
4701 }
4702 }
4703}
4704
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004705void InstructionCodeGeneratorMIPS::GenerateLongCompareAndBranch(IfCondition cond,
4706 LocationSummary* locations,
4707 MipsLabel* label) {
4708 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4709 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
4710 Location rhs_location = locations->InAt(1);
4711 Register rhs_high = ZERO;
4712 Register rhs_low = ZERO;
4713 int64_t imm = 0;
4714 uint32_t imm_high = 0;
4715 uint32_t imm_low = 0;
4716 bool use_imm = rhs_location.IsConstant();
4717 if (use_imm) {
4718 imm = rhs_location.GetConstant()->AsLongConstant()->GetValue();
4719 imm_high = High32Bits(imm);
4720 imm_low = Low32Bits(imm);
4721 } else {
4722 rhs_high = rhs_location.AsRegisterPairHigh<Register>();
4723 rhs_low = rhs_location.AsRegisterPairLow<Register>();
4724 }
4725
4726 if (use_imm && imm == 0) {
4727 switch (cond) {
4728 case kCondEQ:
4729 case kCondBE: // <= 0 if zero
4730 __ Or(TMP, lhs_high, lhs_low);
4731 __ Beqz(TMP, label);
4732 break;
4733 case kCondNE:
4734 case kCondA: // > 0 if non-zero
4735 __ Or(TMP, lhs_high, lhs_low);
4736 __ Bnez(TMP, label);
4737 break;
4738 case kCondLT:
4739 __ Bltz(lhs_high, label);
4740 break;
4741 case kCondGE:
4742 __ Bgez(lhs_high, label);
4743 break;
4744 case kCondLE:
4745 __ Or(TMP, lhs_high, lhs_low);
4746 __ Sra(AT, lhs_high, 31);
4747 __ Bgeu(AT, TMP, label);
4748 break;
4749 case kCondGT:
4750 __ Or(TMP, lhs_high, lhs_low);
4751 __ Sra(AT, lhs_high, 31);
4752 __ Bltu(AT, TMP, label);
4753 break;
4754 case kCondB: // always false
4755 break;
4756 case kCondAE: // always true
4757 __ B(label);
4758 break;
4759 }
4760 } else if (use_imm) {
4761 // TODO: more efficient comparison with constants without loading them into TMP/AT.
4762 switch (cond) {
4763 case kCondEQ:
4764 __ LoadConst32(TMP, imm_high);
4765 __ Xor(TMP, TMP, lhs_high);
4766 __ LoadConst32(AT, imm_low);
4767 __ Xor(AT, AT, lhs_low);
4768 __ Or(TMP, TMP, AT);
4769 __ Beqz(TMP, label);
4770 break;
4771 case kCondNE:
4772 __ LoadConst32(TMP, imm_high);
4773 __ Xor(TMP, TMP, lhs_high);
4774 __ LoadConst32(AT, imm_low);
4775 __ Xor(AT, AT, lhs_low);
4776 __ Or(TMP, TMP, AT);
4777 __ Bnez(TMP, label);
4778 break;
4779 case kCondLT:
4780 __ LoadConst32(TMP, imm_high);
4781 __ Blt(lhs_high, TMP, label);
4782 __ Slt(TMP, TMP, lhs_high);
4783 __ LoadConst32(AT, imm_low);
4784 __ Sltu(AT, lhs_low, AT);
4785 __ Blt(TMP, AT, label);
4786 break;
4787 case kCondGE:
4788 __ LoadConst32(TMP, imm_high);
4789 __ Blt(TMP, lhs_high, label);
4790 __ Slt(TMP, lhs_high, TMP);
4791 __ LoadConst32(AT, imm_low);
4792 __ Sltu(AT, lhs_low, AT);
4793 __ Or(TMP, TMP, AT);
4794 __ Beqz(TMP, label);
4795 break;
4796 case kCondLE:
4797 __ LoadConst32(TMP, imm_high);
4798 __ Blt(lhs_high, TMP, label);
4799 __ Slt(TMP, TMP, lhs_high);
4800 __ LoadConst32(AT, imm_low);
4801 __ Sltu(AT, AT, lhs_low);
4802 __ Or(TMP, TMP, AT);
4803 __ Beqz(TMP, label);
4804 break;
4805 case kCondGT:
4806 __ LoadConst32(TMP, imm_high);
4807 __ Blt(TMP, lhs_high, label);
4808 __ Slt(TMP, lhs_high, TMP);
4809 __ LoadConst32(AT, imm_low);
4810 __ Sltu(AT, AT, lhs_low);
4811 __ Blt(TMP, AT, label);
4812 break;
4813 case kCondB:
4814 __ LoadConst32(TMP, imm_high);
4815 __ Bltu(lhs_high, TMP, label);
4816 __ Sltu(TMP, TMP, lhs_high);
4817 __ LoadConst32(AT, imm_low);
4818 __ Sltu(AT, lhs_low, AT);
4819 __ Blt(TMP, AT, label);
4820 break;
4821 case kCondAE:
4822 __ LoadConst32(TMP, imm_high);
4823 __ Bltu(TMP, lhs_high, label);
4824 __ Sltu(TMP, lhs_high, TMP);
4825 __ LoadConst32(AT, imm_low);
4826 __ Sltu(AT, lhs_low, AT);
4827 __ Or(TMP, TMP, AT);
4828 __ Beqz(TMP, label);
4829 break;
4830 case kCondBE:
4831 __ LoadConst32(TMP, imm_high);
4832 __ Bltu(lhs_high, TMP, label);
4833 __ Sltu(TMP, TMP, lhs_high);
4834 __ LoadConst32(AT, imm_low);
4835 __ Sltu(AT, AT, lhs_low);
4836 __ Or(TMP, TMP, AT);
4837 __ Beqz(TMP, label);
4838 break;
4839 case kCondA:
4840 __ LoadConst32(TMP, imm_high);
4841 __ Bltu(TMP, lhs_high, label);
4842 __ Sltu(TMP, lhs_high, TMP);
4843 __ LoadConst32(AT, imm_low);
4844 __ Sltu(AT, AT, lhs_low);
4845 __ Blt(TMP, AT, label);
4846 break;
4847 }
4848 } else {
4849 switch (cond) {
4850 case kCondEQ:
4851 __ Xor(TMP, lhs_high, rhs_high);
4852 __ Xor(AT, lhs_low, rhs_low);
4853 __ Or(TMP, TMP, AT);
4854 __ Beqz(TMP, label);
4855 break;
4856 case kCondNE:
4857 __ Xor(TMP, lhs_high, rhs_high);
4858 __ Xor(AT, lhs_low, rhs_low);
4859 __ Or(TMP, TMP, AT);
4860 __ Bnez(TMP, label);
4861 break;
4862 case kCondLT:
4863 __ Blt(lhs_high, rhs_high, label);
4864 __ Slt(TMP, rhs_high, lhs_high);
4865 __ Sltu(AT, lhs_low, rhs_low);
4866 __ Blt(TMP, AT, label);
4867 break;
4868 case kCondGE:
4869 __ Blt(rhs_high, lhs_high, label);
4870 __ Slt(TMP, lhs_high, rhs_high);
4871 __ Sltu(AT, lhs_low, rhs_low);
4872 __ Or(TMP, TMP, AT);
4873 __ Beqz(TMP, label);
4874 break;
4875 case kCondLE:
4876 __ Blt(lhs_high, rhs_high, label);
4877 __ Slt(TMP, rhs_high, lhs_high);
4878 __ Sltu(AT, rhs_low, lhs_low);
4879 __ Or(TMP, TMP, AT);
4880 __ Beqz(TMP, label);
4881 break;
4882 case kCondGT:
4883 __ Blt(rhs_high, lhs_high, label);
4884 __ Slt(TMP, lhs_high, rhs_high);
4885 __ Sltu(AT, rhs_low, lhs_low);
4886 __ Blt(TMP, AT, label);
4887 break;
4888 case kCondB:
4889 __ Bltu(lhs_high, rhs_high, label);
4890 __ Sltu(TMP, rhs_high, lhs_high);
4891 __ Sltu(AT, lhs_low, rhs_low);
4892 __ Blt(TMP, AT, label);
4893 break;
4894 case kCondAE:
4895 __ Bltu(rhs_high, lhs_high, label);
4896 __ Sltu(TMP, lhs_high, rhs_high);
4897 __ Sltu(AT, lhs_low, rhs_low);
4898 __ Or(TMP, TMP, AT);
4899 __ Beqz(TMP, label);
4900 break;
4901 case kCondBE:
4902 __ Bltu(lhs_high, rhs_high, label);
4903 __ Sltu(TMP, rhs_high, lhs_high);
4904 __ Sltu(AT, rhs_low, lhs_low);
4905 __ Or(TMP, TMP, AT);
4906 __ Beqz(TMP, label);
4907 break;
4908 case kCondA:
4909 __ Bltu(rhs_high, lhs_high, label);
4910 __ Sltu(TMP, lhs_high, rhs_high);
4911 __ Sltu(AT, rhs_low, lhs_low);
4912 __ Blt(TMP, AT, label);
4913 break;
4914 }
4915 }
4916}
4917
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004918void InstructionCodeGeneratorMIPS::GenerateFpCompare(IfCondition cond,
4919 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004920 DataType::Type type,
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004921 LocationSummary* locations) {
4922 Register dst = locations->Out().AsRegister<Register>();
4923 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
4924 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
4925 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004926 if (type == DataType::Type::kFloat32) {
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004927 if (isR6) {
4928 switch (cond) {
4929 case kCondEQ:
4930 __ CmpEqS(FTMP, lhs, rhs);
4931 __ Mfc1(dst, FTMP);
4932 __ Andi(dst, dst, 1);
4933 break;
4934 case kCondNE:
4935 __ CmpEqS(FTMP, lhs, rhs);
4936 __ Mfc1(dst, FTMP);
4937 __ Addiu(dst, dst, 1);
4938 break;
4939 case kCondLT:
4940 if (gt_bias) {
4941 __ CmpLtS(FTMP, lhs, rhs);
4942 } else {
4943 __ CmpUltS(FTMP, lhs, rhs);
4944 }
4945 __ Mfc1(dst, FTMP);
4946 __ Andi(dst, dst, 1);
4947 break;
4948 case kCondLE:
4949 if (gt_bias) {
4950 __ CmpLeS(FTMP, lhs, rhs);
4951 } else {
4952 __ CmpUleS(FTMP, lhs, rhs);
4953 }
4954 __ Mfc1(dst, FTMP);
4955 __ Andi(dst, dst, 1);
4956 break;
4957 case kCondGT:
4958 if (gt_bias) {
4959 __ CmpUltS(FTMP, rhs, lhs);
4960 } else {
4961 __ CmpLtS(FTMP, rhs, lhs);
4962 }
4963 __ Mfc1(dst, FTMP);
4964 __ Andi(dst, dst, 1);
4965 break;
4966 case kCondGE:
4967 if (gt_bias) {
4968 __ CmpUleS(FTMP, rhs, lhs);
4969 } else {
4970 __ CmpLeS(FTMP, rhs, lhs);
4971 }
4972 __ Mfc1(dst, FTMP);
4973 __ Andi(dst, dst, 1);
4974 break;
4975 default:
4976 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
4977 UNREACHABLE();
4978 }
4979 } else {
4980 switch (cond) {
4981 case kCondEQ:
4982 __ CeqS(0, lhs, rhs);
4983 __ LoadConst32(dst, 1);
4984 __ Movf(dst, ZERO, 0);
4985 break;
4986 case kCondNE:
4987 __ CeqS(0, lhs, rhs);
4988 __ LoadConst32(dst, 1);
4989 __ Movt(dst, ZERO, 0);
4990 break;
4991 case kCondLT:
4992 if (gt_bias) {
4993 __ ColtS(0, lhs, rhs);
4994 } else {
4995 __ CultS(0, lhs, rhs);
4996 }
4997 __ LoadConst32(dst, 1);
4998 __ Movf(dst, ZERO, 0);
4999 break;
5000 case kCondLE:
5001 if (gt_bias) {
5002 __ ColeS(0, lhs, rhs);
5003 } else {
5004 __ CuleS(0, lhs, rhs);
5005 }
5006 __ LoadConst32(dst, 1);
5007 __ Movf(dst, ZERO, 0);
5008 break;
5009 case kCondGT:
5010 if (gt_bias) {
5011 __ CultS(0, rhs, lhs);
5012 } else {
5013 __ ColtS(0, rhs, lhs);
5014 }
5015 __ LoadConst32(dst, 1);
5016 __ Movf(dst, ZERO, 0);
5017 break;
5018 case kCondGE:
5019 if (gt_bias) {
5020 __ CuleS(0, rhs, lhs);
5021 } else {
5022 __ ColeS(0, rhs, lhs);
5023 }
5024 __ LoadConst32(dst, 1);
5025 __ Movf(dst, ZERO, 0);
5026 break;
5027 default:
5028 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5029 UNREACHABLE();
5030 }
5031 }
5032 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005033 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze2ddb7172016-09-06 17:04:55 -07005034 if (isR6) {
5035 switch (cond) {
5036 case kCondEQ:
5037 __ CmpEqD(FTMP, lhs, rhs);
5038 __ Mfc1(dst, FTMP);
5039 __ Andi(dst, dst, 1);
5040 break;
5041 case kCondNE:
5042 __ CmpEqD(FTMP, lhs, rhs);
5043 __ Mfc1(dst, FTMP);
5044 __ Addiu(dst, dst, 1);
5045 break;
5046 case kCondLT:
5047 if (gt_bias) {
5048 __ CmpLtD(FTMP, lhs, rhs);
5049 } else {
5050 __ CmpUltD(FTMP, lhs, rhs);
5051 }
5052 __ Mfc1(dst, FTMP);
5053 __ Andi(dst, dst, 1);
5054 break;
5055 case kCondLE:
5056 if (gt_bias) {
5057 __ CmpLeD(FTMP, lhs, rhs);
5058 } else {
5059 __ CmpUleD(FTMP, lhs, rhs);
5060 }
5061 __ Mfc1(dst, FTMP);
5062 __ Andi(dst, dst, 1);
5063 break;
5064 case kCondGT:
5065 if (gt_bias) {
5066 __ CmpUltD(FTMP, rhs, lhs);
5067 } else {
5068 __ CmpLtD(FTMP, rhs, lhs);
5069 }
5070 __ Mfc1(dst, FTMP);
5071 __ Andi(dst, dst, 1);
5072 break;
5073 case kCondGE:
5074 if (gt_bias) {
5075 __ CmpUleD(FTMP, rhs, lhs);
5076 } else {
5077 __ CmpLeD(FTMP, rhs, lhs);
5078 }
5079 __ Mfc1(dst, FTMP);
5080 __ Andi(dst, dst, 1);
5081 break;
5082 default:
5083 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5084 UNREACHABLE();
5085 }
5086 } else {
5087 switch (cond) {
5088 case kCondEQ:
5089 __ CeqD(0, lhs, rhs);
5090 __ LoadConst32(dst, 1);
5091 __ Movf(dst, ZERO, 0);
5092 break;
5093 case kCondNE:
5094 __ CeqD(0, lhs, rhs);
5095 __ LoadConst32(dst, 1);
5096 __ Movt(dst, ZERO, 0);
5097 break;
5098 case kCondLT:
5099 if (gt_bias) {
5100 __ ColtD(0, lhs, rhs);
5101 } else {
5102 __ CultD(0, lhs, rhs);
5103 }
5104 __ LoadConst32(dst, 1);
5105 __ Movf(dst, ZERO, 0);
5106 break;
5107 case kCondLE:
5108 if (gt_bias) {
5109 __ ColeD(0, lhs, rhs);
5110 } else {
5111 __ CuleD(0, lhs, rhs);
5112 }
5113 __ LoadConst32(dst, 1);
5114 __ Movf(dst, ZERO, 0);
5115 break;
5116 case kCondGT:
5117 if (gt_bias) {
5118 __ CultD(0, rhs, lhs);
5119 } else {
5120 __ ColtD(0, rhs, lhs);
5121 }
5122 __ LoadConst32(dst, 1);
5123 __ Movf(dst, ZERO, 0);
5124 break;
5125 case kCondGE:
5126 if (gt_bias) {
5127 __ CuleD(0, rhs, lhs);
5128 } else {
5129 __ ColeD(0, rhs, lhs);
5130 }
5131 __ LoadConst32(dst, 1);
5132 __ Movf(dst, ZERO, 0);
5133 break;
5134 default:
5135 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5136 UNREACHABLE();
5137 }
5138 }
5139 }
5140}
5141
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005142bool InstructionCodeGeneratorMIPS::MaterializeFpCompareR2(IfCondition cond,
5143 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005144 DataType::Type type,
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005145 LocationSummary* input_locations,
5146 int cc) {
5147 FRegister lhs = input_locations->InAt(0).AsFpuRegister<FRegister>();
5148 FRegister rhs = input_locations->InAt(1).AsFpuRegister<FRegister>();
5149 CHECK(!codegen_->GetInstructionSetFeatures().IsR6());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005150 if (type == DataType::Type::kFloat32) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005151 switch (cond) {
5152 case kCondEQ:
5153 __ CeqS(cc, lhs, rhs);
5154 return false;
5155 case kCondNE:
5156 __ CeqS(cc, lhs, rhs);
5157 return true;
5158 case kCondLT:
5159 if (gt_bias) {
5160 __ ColtS(cc, lhs, rhs);
5161 } else {
5162 __ CultS(cc, lhs, rhs);
5163 }
5164 return false;
5165 case kCondLE:
5166 if (gt_bias) {
5167 __ ColeS(cc, lhs, rhs);
5168 } else {
5169 __ CuleS(cc, lhs, rhs);
5170 }
5171 return false;
5172 case kCondGT:
5173 if (gt_bias) {
5174 __ CultS(cc, rhs, lhs);
5175 } else {
5176 __ ColtS(cc, rhs, lhs);
5177 }
5178 return false;
5179 case kCondGE:
5180 if (gt_bias) {
5181 __ CuleS(cc, rhs, lhs);
5182 } else {
5183 __ ColeS(cc, rhs, lhs);
5184 }
5185 return false;
5186 default:
5187 LOG(FATAL) << "Unexpected non-floating-point condition";
5188 UNREACHABLE();
5189 }
5190 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005191 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005192 switch (cond) {
5193 case kCondEQ:
5194 __ CeqD(cc, lhs, rhs);
5195 return false;
5196 case kCondNE:
5197 __ CeqD(cc, lhs, rhs);
5198 return true;
5199 case kCondLT:
5200 if (gt_bias) {
5201 __ ColtD(cc, lhs, rhs);
5202 } else {
5203 __ CultD(cc, lhs, rhs);
5204 }
5205 return false;
5206 case kCondLE:
5207 if (gt_bias) {
5208 __ ColeD(cc, lhs, rhs);
5209 } else {
5210 __ CuleD(cc, lhs, rhs);
5211 }
5212 return false;
5213 case kCondGT:
5214 if (gt_bias) {
5215 __ CultD(cc, rhs, lhs);
5216 } else {
5217 __ ColtD(cc, rhs, lhs);
5218 }
5219 return false;
5220 case kCondGE:
5221 if (gt_bias) {
5222 __ CuleD(cc, rhs, lhs);
5223 } else {
5224 __ ColeD(cc, rhs, lhs);
5225 }
5226 return false;
5227 default:
5228 LOG(FATAL) << "Unexpected non-floating-point condition";
5229 UNREACHABLE();
5230 }
5231 }
5232}
5233
5234bool InstructionCodeGeneratorMIPS::MaterializeFpCompareR6(IfCondition cond,
5235 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005236 DataType::Type type,
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005237 LocationSummary* input_locations,
5238 FRegister dst) {
5239 FRegister lhs = input_locations->InAt(0).AsFpuRegister<FRegister>();
5240 FRegister rhs = input_locations->InAt(1).AsFpuRegister<FRegister>();
5241 CHECK(codegen_->GetInstructionSetFeatures().IsR6());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005242 if (type == DataType::Type::kFloat32) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005243 switch (cond) {
5244 case kCondEQ:
5245 __ CmpEqS(dst, lhs, rhs);
5246 return false;
5247 case kCondNE:
5248 __ CmpEqS(dst, lhs, rhs);
5249 return true;
5250 case kCondLT:
5251 if (gt_bias) {
5252 __ CmpLtS(dst, lhs, rhs);
5253 } else {
5254 __ CmpUltS(dst, lhs, rhs);
5255 }
5256 return false;
5257 case kCondLE:
5258 if (gt_bias) {
5259 __ CmpLeS(dst, lhs, rhs);
5260 } else {
5261 __ CmpUleS(dst, lhs, rhs);
5262 }
5263 return false;
5264 case kCondGT:
5265 if (gt_bias) {
5266 __ CmpUltS(dst, rhs, lhs);
5267 } else {
5268 __ CmpLtS(dst, rhs, lhs);
5269 }
5270 return false;
5271 case kCondGE:
5272 if (gt_bias) {
5273 __ CmpUleS(dst, rhs, lhs);
5274 } else {
5275 __ CmpLeS(dst, rhs, lhs);
5276 }
5277 return false;
5278 default:
5279 LOG(FATAL) << "Unexpected non-floating-point condition";
5280 UNREACHABLE();
5281 }
5282 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005283 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005284 switch (cond) {
5285 case kCondEQ:
5286 __ CmpEqD(dst, lhs, rhs);
5287 return false;
5288 case kCondNE:
5289 __ CmpEqD(dst, lhs, rhs);
5290 return true;
5291 case kCondLT:
5292 if (gt_bias) {
5293 __ CmpLtD(dst, lhs, rhs);
5294 } else {
5295 __ CmpUltD(dst, lhs, rhs);
5296 }
5297 return false;
5298 case kCondLE:
5299 if (gt_bias) {
5300 __ CmpLeD(dst, lhs, rhs);
5301 } else {
5302 __ CmpUleD(dst, lhs, rhs);
5303 }
5304 return false;
5305 case kCondGT:
5306 if (gt_bias) {
5307 __ CmpUltD(dst, rhs, lhs);
5308 } else {
5309 __ CmpLtD(dst, rhs, lhs);
5310 }
5311 return false;
5312 case kCondGE:
5313 if (gt_bias) {
5314 __ CmpUleD(dst, rhs, lhs);
5315 } else {
5316 __ CmpLeD(dst, rhs, lhs);
5317 }
5318 return false;
5319 default:
5320 LOG(FATAL) << "Unexpected non-floating-point condition";
5321 UNREACHABLE();
5322 }
5323 }
5324}
5325
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005326void InstructionCodeGeneratorMIPS::GenerateFpCompareAndBranch(IfCondition cond,
5327 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005328 DataType::Type type,
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005329 LocationSummary* locations,
5330 MipsLabel* label) {
5331 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
5332 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
5333 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005334 if (type == DataType::Type::kFloat32) {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005335 if (isR6) {
5336 switch (cond) {
5337 case kCondEQ:
5338 __ CmpEqS(FTMP, lhs, rhs);
5339 __ Bc1nez(FTMP, label);
5340 break;
5341 case kCondNE:
5342 __ CmpEqS(FTMP, lhs, rhs);
5343 __ Bc1eqz(FTMP, label);
5344 break;
5345 case kCondLT:
5346 if (gt_bias) {
5347 __ CmpLtS(FTMP, lhs, rhs);
5348 } else {
5349 __ CmpUltS(FTMP, lhs, rhs);
5350 }
5351 __ Bc1nez(FTMP, label);
5352 break;
5353 case kCondLE:
5354 if (gt_bias) {
5355 __ CmpLeS(FTMP, lhs, rhs);
5356 } else {
5357 __ CmpUleS(FTMP, lhs, rhs);
5358 }
5359 __ Bc1nez(FTMP, label);
5360 break;
5361 case kCondGT:
5362 if (gt_bias) {
5363 __ CmpUltS(FTMP, rhs, lhs);
5364 } else {
5365 __ CmpLtS(FTMP, rhs, lhs);
5366 }
5367 __ Bc1nez(FTMP, label);
5368 break;
5369 case kCondGE:
5370 if (gt_bias) {
5371 __ CmpUleS(FTMP, rhs, lhs);
5372 } else {
5373 __ CmpLeS(FTMP, rhs, lhs);
5374 }
5375 __ Bc1nez(FTMP, label);
5376 break;
5377 default:
5378 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005379 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005380 }
5381 } else {
5382 switch (cond) {
5383 case kCondEQ:
5384 __ CeqS(0, lhs, rhs);
5385 __ Bc1t(0, label);
5386 break;
5387 case kCondNE:
5388 __ CeqS(0, lhs, rhs);
5389 __ Bc1f(0, label);
5390 break;
5391 case kCondLT:
5392 if (gt_bias) {
5393 __ ColtS(0, lhs, rhs);
5394 } else {
5395 __ CultS(0, lhs, rhs);
5396 }
5397 __ Bc1t(0, label);
5398 break;
5399 case kCondLE:
5400 if (gt_bias) {
5401 __ ColeS(0, lhs, rhs);
5402 } else {
5403 __ CuleS(0, lhs, rhs);
5404 }
5405 __ Bc1t(0, label);
5406 break;
5407 case kCondGT:
5408 if (gt_bias) {
5409 __ CultS(0, rhs, lhs);
5410 } else {
5411 __ ColtS(0, rhs, lhs);
5412 }
5413 __ Bc1t(0, label);
5414 break;
5415 case kCondGE:
5416 if (gt_bias) {
5417 __ CuleS(0, rhs, lhs);
5418 } else {
5419 __ ColeS(0, rhs, lhs);
5420 }
5421 __ Bc1t(0, label);
5422 break;
5423 default:
5424 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005425 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005426 }
5427 }
5428 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005429 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005430 if (isR6) {
5431 switch (cond) {
5432 case kCondEQ:
5433 __ CmpEqD(FTMP, lhs, rhs);
5434 __ Bc1nez(FTMP, label);
5435 break;
5436 case kCondNE:
5437 __ CmpEqD(FTMP, lhs, rhs);
5438 __ Bc1eqz(FTMP, label);
5439 break;
5440 case kCondLT:
5441 if (gt_bias) {
5442 __ CmpLtD(FTMP, lhs, rhs);
5443 } else {
5444 __ CmpUltD(FTMP, lhs, rhs);
5445 }
5446 __ Bc1nez(FTMP, label);
5447 break;
5448 case kCondLE:
5449 if (gt_bias) {
5450 __ CmpLeD(FTMP, lhs, rhs);
5451 } else {
5452 __ CmpUleD(FTMP, lhs, rhs);
5453 }
5454 __ Bc1nez(FTMP, label);
5455 break;
5456 case kCondGT:
5457 if (gt_bias) {
5458 __ CmpUltD(FTMP, rhs, lhs);
5459 } else {
5460 __ CmpLtD(FTMP, rhs, lhs);
5461 }
5462 __ Bc1nez(FTMP, label);
5463 break;
5464 case kCondGE:
5465 if (gt_bias) {
5466 __ CmpUleD(FTMP, rhs, lhs);
5467 } else {
5468 __ CmpLeD(FTMP, rhs, lhs);
5469 }
5470 __ Bc1nez(FTMP, label);
5471 break;
5472 default:
5473 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005474 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005475 }
5476 } else {
5477 switch (cond) {
5478 case kCondEQ:
5479 __ CeqD(0, lhs, rhs);
5480 __ Bc1t(0, label);
5481 break;
5482 case kCondNE:
5483 __ CeqD(0, lhs, rhs);
5484 __ Bc1f(0, label);
5485 break;
5486 case kCondLT:
5487 if (gt_bias) {
5488 __ ColtD(0, lhs, rhs);
5489 } else {
5490 __ CultD(0, lhs, rhs);
5491 }
5492 __ Bc1t(0, label);
5493 break;
5494 case kCondLE:
5495 if (gt_bias) {
5496 __ ColeD(0, lhs, rhs);
5497 } else {
5498 __ CuleD(0, lhs, rhs);
5499 }
5500 __ Bc1t(0, label);
5501 break;
5502 case kCondGT:
5503 if (gt_bias) {
5504 __ CultD(0, rhs, lhs);
5505 } else {
5506 __ ColtD(0, rhs, lhs);
5507 }
5508 __ Bc1t(0, label);
5509 break;
5510 case kCondGE:
5511 if (gt_bias) {
5512 __ CuleD(0, rhs, lhs);
5513 } else {
5514 __ ColeD(0, rhs, lhs);
5515 }
5516 __ Bc1t(0, label);
5517 break;
5518 default:
5519 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005520 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005521 }
5522 }
5523 }
5524}
5525
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005526void InstructionCodeGeneratorMIPS::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00005527 size_t condition_input_index,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005528 MipsLabel* true_target,
David Brazdil0debae72015-11-12 18:37:00 +00005529 MipsLabel* false_target) {
5530 HInstruction* cond = instruction->InputAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005531
David Brazdil0debae72015-11-12 18:37:00 +00005532 if (true_target == nullptr && false_target == nullptr) {
5533 // Nothing to do. The code always falls through.
5534 return;
5535 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00005536 // Constant condition, statically compared against "true" (integer value 1).
5537 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00005538 if (true_target != nullptr) {
5539 __ B(true_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005540 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005541 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00005542 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00005543 if (false_target != nullptr) {
5544 __ B(false_target);
5545 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005546 }
David Brazdil0debae72015-11-12 18:37:00 +00005547 return;
5548 }
5549
5550 // The following code generates these patterns:
5551 // (1) true_target == nullptr && false_target != nullptr
5552 // - opposite condition true => branch to false_target
5553 // (2) true_target != nullptr && false_target == nullptr
5554 // - condition true => branch to true_target
5555 // (3) true_target != nullptr && false_target != nullptr
5556 // - condition true => branch to true_target
5557 // - branch to false_target
5558 if (IsBooleanValueOrMaterializedCondition(cond)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005559 // The condition instruction has been materialized, compare the output to 0.
David Brazdil0debae72015-11-12 18:37:00 +00005560 Location cond_val = instruction->GetLocations()->InAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005561 DCHECK(cond_val.IsRegister());
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005562 if (true_target == nullptr) {
David Brazdil0debae72015-11-12 18:37:00 +00005563 __ Beqz(cond_val.AsRegister<Register>(), false_target);
5564 } else {
5565 __ Bnez(cond_val.AsRegister<Register>(), true_target);
5566 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005567 } else {
5568 // The condition instruction has not been materialized, use its inputs as
5569 // the comparison and its condition as the branch condition.
David Brazdil0debae72015-11-12 18:37:00 +00005570 HCondition* condition = cond->AsCondition();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005571 DataType::Type type = condition->InputAt(0)->GetType();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005572 LocationSummary* locations = cond->GetLocations();
5573 IfCondition if_cond = condition->GetCondition();
5574 MipsLabel* branch_target = true_target;
David Brazdil0debae72015-11-12 18:37:00 +00005575
David Brazdil0debae72015-11-12 18:37:00 +00005576 if (true_target == nullptr) {
5577 if_cond = condition->GetOppositeCondition();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005578 branch_target = false_target;
David Brazdil0debae72015-11-12 18:37:00 +00005579 }
5580
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005581 switch (type) {
5582 default:
5583 GenerateIntCompareAndBranch(if_cond, locations, branch_target);
5584 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005585 case DataType::Type::kInt64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005586 GenerateLongCompareAndBranch(if_cond, locations, branch_target);
5587 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005588 case DataType::Type::kFloat32:
5589 case DataType::Type::kFloat64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005590 GenerateFpCompareAndBranch(if_cond, condition->IsGtBias(), type, locations, branch_target);
5591 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005592 }
5593 }
David Brazdil0debae72015-11-12 18:37:00 +00005594
5595 // If neither branch falls through (case 3), the conditional branch to `true_target`
5596 // was already emitted (case 2) and we need to emit a jump to `false_target`.
5597 if (true_target != nullptr && false_target != nullptr) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005598 __ B(false_target);
5599 }
5600}
5601
5602void LocationsBuilderMIPS::VisitIf(HIf* if_instr) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005603 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(if_instr);
David Brazdil0debae72015-11-12 18:37:00 +00005604 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005605 locations->SetInAt(0, Location::RequiresRegister());
5606 }
5607}
5608
5609void InstructionCodeGeneratorMIPS::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00005610 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
5611 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
5612 MipsLabel* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
5613 nullptr : codegen_->GetLabelOf(true_successor);
5614 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
5615 nullptr : codegen_->GetLabelOf(false_successor);
5616 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005617}
5618
5619void LocationsBuilderMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005620 LocationSummary* locations = new (GetGraph()->GetAllocator())
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005621 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01005622 InvokeRuntimeCallingConvention calling_convention;
5623 RegisterSet caller_saves = RegisterSet::Empty();
5624 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5625 locations->SetCustomSlowPathCallerSaves(caller_saves);
David Brazdil0debae72015-11-12 18:37:00 +00005626 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005627 locations->SetInAt(0, Location::RequiresRegister());
5628 }
5629}
5630
5631void InstructionCodeGeneratorMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08005632 SlowPathCodeMIPS* slow_path =
5633 deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathMIPS>(deoptimize);
David Brazdil0debae72015-11-12 18:37:00 +00005634 GenerateTestAndBranch(deoptimize,
5635 /* condition_input_index */ 0,
5636 slow_path->GetEntryLabel(),
5637 /* false_target */ nullptr);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005638}
5639
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005640// This function returns true if a conditional move can be generated for HSelect.
5641// Otherwise it returns false and HSelect must be implemented in terms of conditonal
5642// branches and regular moves.
5643//
5644// If `locations_to_set` isn't nullptr, its inputs and outputs are set for HSelect.
5645//
5646// While determining feasibility of a conditional move and setting inputs/outputs
5647// are two distinct tasks, this function does both because they share quite a bit
5648// of common logic.
5649static bool CanMoveConditionally(HSelect* select, bool is_r6, LocationSummary* locations_to_set) {
5650 bool materialized = IsBooleanValueOrMaterializedCondition(select->GetCondition());
5651 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
5652 HCondition* condition = cond->AsCondition();
5653
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005654 DataType::Type cond_type =
5655 materialized ? DataType::Type::kInt32 : condition->InputAt(0)->GetType();
5656 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005657
5658 HConstant* cst_true_value = select->GetTrueValue()->AsConstant();
5659 HConstant* cst_false_value = select->GetFalseValue()->AsConstant();
5660 bool is_true_value_zero_constant =
5661 (cst_true_value != nullptr && cst_true_value->IsZeroBitPattern());
5662 bool is_false_value_zero_constant =
5663 (cst_false_value != nullptr && cst_false_value->IsZeroBitPattern());
5664
5665 bool can_move_conditionally = false;
5666 bool use_const_for_false_in = false;
5667 bool use_const_for_true_in = false;
5668
5669 if (!cond->IsConstant()) {
5670 switch (cond_type) {
5671 default:
5672 switch (dst_type) {
5673 default:
5674 // Moving int on int condition.
5675 if (is_r6) {
5676 if (is_true_value_zero_constant) {
5677 // seleqz out_reg, false_reg, cond_reg
5678 can_move_conditionally = true;
5679 use_const_for_true_in = true;
5680 } else if (is_false_value_zero_constant) {
5681 // selnez out_reg, true_reg, cond_reg
5682 can_move_conditionally = true;
5683 use_const_for_false_in = true;
5684 } else if (materialized) {
5685 // Not materializing unmaterialized int conditions
5686 // to keep the instruction count low.
5687 // selnez AT, true_reg, cond_reg
5688 // seleqz TMP, false_reg, cond_reg
5689 // or out_reg, AT, TMP
5690 can_move_conditionally = true;
5691 }
5692 } else {
5693 // movn out_reg, true_reg/ZERO, cond_reg
5694 can_move_conditionally = true;
5695 use_const_for_true_in = is_true_value_zero_constant;
5696 }
5697 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005698 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005699 // Moving long on int condition.
5700 if (is_r6) {
5701 if (is_true_value_zero_constant) {
5702 // seleqz out_reg_lo, false_reg_lo, cond_reg
5703 // seleqz out_reg_hi, false_reg_hi, cond_reg
5704 can_move_conditionally = true;
5705 use_const_for_true_in = true;
5706 } else if (is_false_value_zero_constant) {
5707 // selnez out_reg_lo, true_reg_lo, cond_reg
5708 // selnez out_reg_hi, true_reg_hi, cond_reg
5709 can_move_conditionally = true;
5710 use_const_for_false_in = true;
5711 }
5712 // Other long conditional moves would generate 6+ instructions,
5713 // which is too many.
5714 } else {
5715 // movn out_reg_lo, true_reg_lo/ZERO, cond_reg
5716 // movn out_reg_hi, true_reg_hi/ZERO, cond_reg
5717 can_move_conditionally = true;
5718 use_const_for_true_in = is_true_value_zero_constant;
5719 }
5720 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005721 case DataType::Type::kFloat32:
5722 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005723 // Moving float/double on int condition.
5724 if (is_r6) {
5725 if (materialized) {
5726 // Not materializing unmaterialized int conditions
5727 // to keep the instruction count low.
5728 can_move_conditionally = true;
5729 if (is_true_value_zero_constant) {
5730 // sltu TMP, ZERO, cond_reg
5731 // mtc1 TMP, temp_cond_reg
5732 // seleqz.fmt out_reg, false_reg, temp_cond_reg
5733 use_const_for_true_in = true;
5734 } else if (is_false_value_zero_constant) {
5735 // sltu TMP, ZERO, cond_reg
5736 // mtc1 TMP, temp_cond_reg
5737 // selnez.fmt out_reg, true_reg, temp_cond_reg
5738 use_const_for_false_in = true;
5739 } else {
5740 // sltu TMP, ZERO, cond_reg
5741 // mtc1 TMP, temp_cond_reg
5742 // sel.fmt temp_cond_reg, false_reg, true_reg
5743 // mov.fmt out_reg, temp_cond_reg
5744 }
5745 }
5746 } else {
5747 // movn.fmt out_reg, true_reg, cond_reg
5748 can_move_conditionally = true;
5749 }
5750 break;
5751 }
5752 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005753 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005754 // We don't materialize long comparison now
5755 // and use conditional branches instead.
5756 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005757 case DataType::Type::kFloat32:
5758 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005759 switch (dst_type) {
5760 default:
5761 // Moving int on float/double condition.
5762 if (is_r6) {
5763 if (is_true_value_zero_constant) {
5764 // mfc1 TMP, temp_cond_reg
5765 // seleqz out_reg, false_reg, TMP
5766 can_move_conditionally = true;
5767 use_const_for_true_in = true;
5768 } else if (is_false_value_zero_constant) {
5769 // mfc1 TMP, temp_cond_reg
5770 // selnez out_reg, true_reg, TMP
5771 can_move_conditionally = true;
5772 use_const_for_false_in = true;
5773 } else {
5774 // mfc1 TMP, temp_cond_reg
5775 // selnez AT, true_reg, TMP
5776 // seleqz TMP, false_reg, TMP
5777 // or out_reg, AT, TMP
5778 can_move_conditionally = true;
5779 }
5780 } else {
5781 // movt out_reg, true_reg/ZERO, cc
5782 can_move_conditionally = true;
5783 use_const_for_true_in = is_true_value_zero_constant;
5784 }
5785 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005786 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005787 // Moving long on float/double condition.
5788 if (is_r6) {
5789 if (is_true_value_zero_constant) {
5790 // mfc1 TMP, temp_cond_reg
5791 // seleqz out_reg_lo, false_reg_lo, TMP
5792 // seleqz out_reg_hi, false_reg_hi, TMP
5793 can_move_conditionally = true;
5794 use_const_for_true_in = true;
5795 } else if (is_false_value_zero_constant) {
5796 // mfc1 TMP, temp_cond_reg
5797 // selnez out_reg_lo, true_reg_lo, TMP
5798 // selnez out_reg_hi, true_reg_hi, TMP
5799 can_move_conditionally = true;
5800 use_const_for_false_in = true;
5801 }
5802 // Other long conditional moves would generate 6+ instructions,
5803 // which is too many.
5804 } else {
5805 // movt out_reg_lo, true_reg_lo/ZERO, cc
5806 // movt out_reg_hi, true_reg_hi/ZERO, cc
5807 can_move_conditionally = true;
5808 use_const_for_true_in = is_true_value_zero_constant;
5809 }
5810 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005811 case DataType::Type::kFloat32:
5812 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005813 // Moving float/double on float/double condition.
5814 if (is_r6) {
5815 can_move_conditionally = true;
5816 if (is_true_value_zero_constant) {
5817 // seleqz.fmt out_reg, false_reg, temp_cond_reg
5818 use_const_for_true_in = true;
5819 } else if (is_false_value_zero_constant) {
5820 // selnez.fmt out_reg, true_reg, temp_cond_reg
5821 use_const_for_false_in = true;
5822 } else {
5823 // sel.fmt temp_cond_reg, false_reg, true_reg
5824 // mov.fmt out_reg, temp_cond_reg
5825 }
5826 } else {
5827 // movt.fmt out_reg, true_reg, cc
5828 can_move_conditionally = true;
5829 }
5830 break;
5831 }
5832 break;
5833 }
5834 }
5835
5836 if (can_move_conditionally) {
5837 DCHECK(!use_const_for_false_in || !use_const_for_true_in);
5838 } else {
5839 DCHECK(!use_const_for_false_in);
5840 DCHECK(!use_const_for_true_in);
5841 }
5842
5843 if (locations_to_set != nullptr) {
5844 if (use_const_for_false_in) {
5845 locations_to_set->SetInAt(0, Location::ConstantLocation(cst_false_value));
5846 } else {
5847 locations_to_set->SetInAt(0,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005848 DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005849 ? Location::RequiresFpuRegister()
5850 : Location::RequiresRegister());
5851 }
5852 if (use_const_for_true_in) {
5853 locations_to_set->SetInAt(1, Location::ConstantLocation(cst_true_value));
5854 } else {
5855 locations_to_set->SetInAt(1,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005856 DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005857 ? Location::RequiresFpuRegister()
5858 : Location::RequiresRegister());
5859 }
5860 if (materialized) {
5861 locations_to_set->SetInAt(2, Location::RequiresRegister());
5862 }
5863 // On R6 we don't require the output to be the same as the
5864 // first input for conditional moves unlike on R2.
5865 bool is_out_same_as_first_in = !can_move_conditionally || !is_r6;
5866 if (is_out_same_as_first_in) {
5867 locations_to_set->SetOut(Location::SameAsFirstInput());
5868 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005869 locations_to_set->SetOut(DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005870 ? Location::RequiresFpuRegister()
5871 : Location::RequiresRegister());
5872 }
5873 }
5874
5875 return can_move_conditionally;
5876}
5877
5878void InstructionCodeGeneratorMIPS::GenConditionalMoveR2(HSelect* select) {
5879 LocationSummary* locations = select->GetLocations();
5880 Location dst = locations->Out();
5881 Location src = locations->InAt(1);
5882 Register src_reg = ZERO;
5883 Register src_reg_high = ZERO;
5884 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
5885 Register cond_reg = TMP;
5886 int cond_cc = 0;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005887 DataType::Type cond_type = DataType::Type::kInt32;
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005888 bool cond_inverted = false;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005889 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005890
5891 if (IsBooleanValueOrMaterializedCondition(cond)) {
5892 cond_reg = locations->InAt(/* condition_input_index */ 2).AsRegister<Register>();
5893 } else {
5894 HCondition* condition = cond->AsCondition();
5895 LocationSummary* cond_locations = cond->GetLocations();
5896 IfCondition if_cond = condition->GetCondition();
5897 cond_type = condition->InputAt(0)->GetType();
5898 switch (cond_type) {
5899 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005900 DCHECK_NE(cond_type, DataType::Type::kInt64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005901 cond_inverted = MaterializeIntCompare(if_cond, cond_locations, cond_reg);
5902 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005903 case DataType::Type::kFloat32:
5904 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005905 cond_inverted = MaterializeFpCompareR2(if_cond,
5906 condition->IsGtBias(),
5907 cond_type,
5908 cond_locations,
5909 cond_cc);
5910 break;
5911 }
5912 }
5913
5914 DCHECK(dst.Equals(locations->InAt(0)));
5915 if (src.IsRegister()) {
5916 src_reg = src.AsRegister<Register>();
5917 } else if (src.IsRegisterPair()) {
5918 src_reg = src.AsRegisterPairLow<Register>();
5919 src_reg_high = src.AsRegisterPairHigh<Register>();
5920 } else if (src.IsConstant()) {
5921 DCHECK(src.GetConstant()->IsZeroBitPattern());
5922 }
5923
5924 switch (cond_type) {
5925 default:
5926 switch (dst_type) {
5927 default:
5928 if (cond_inverted) {
5929 __ Movz(dst.AsRegister<Register>(), src_reg, cond_reg);
5930 } else {
5931 __ Movn(dst.AsRegister<Register>(), src_reg, cond_reg);
5932 }
5933 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005934 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005935 if (cond_inverted) {
5936 __ Movz(dst.AsRegisterPairLow<Register>(), src_reg, cond_reg);
5937 __ Movz(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_reg);
5938 } else {
5939 __ Movn(dst.AsRegisterPairLow<Register>(), src_reg, cond_reg);
5940 __ Movn(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_reg);
5941 }
5942 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005943 case DataType::Type::kFloat32:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005944 if (cond_inverted) {
5945 __ MovzS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5946 } else {
5947 __ MovnS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5948 }
5949 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005950 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005951 if (cond_inverted) {
5952 __ MovzD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5953 } else {
5954 __ MovnD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5955 }
5956 break;
5957 }
5958 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005959 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005960 LOG(FATAL) << "Unreachable";
5961 UNREACHABLE();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005962 case DataType::Type::kFloat32:
5963 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005964 switch (dst_type) {
5965 default:
5966 if (cond_inverted) {
5967 __ Movf(dst.AsRegister<Register>(), src_reg, cond_cc);
5968 } else {
5969 __ Movt(dst.AsRegister<Register>(), src_reg, cond_cc);
5970 }
5971 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005972 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005973 if (cond_inverted) {
5974 __ Movf(dst.AsRegisterPairLow<Register>(), src_reg, cond_cc);
5975 __ Movf(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_cc);
5976 } else {
5977 __ Movt(dst.AsRegisterPairLow<Register>(), src_reg, cond_cc);
5978 __ Movt(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_cc);
5979 }
5980 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005981 case DataType::Type::kFloat32:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005982 if (cond_inverted) {
5983 __ MovfS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5984 } else {
5985 __ MovtS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5986 }
5987 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005988 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005989 if (cond_inverted) {
5990 __ MovfD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5991 } else {
5992 __ MovtD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5993 }
5994 break;
5995 }
5996 break;
5997 }
5998}
5999
6000void InstructionCodeGeneratorMIPS::GenConditionalMoveR6(HSelect* select) {
6001 LocationSummary* locations = select->GetLocations();
6002 Location dst = locations->Out();
6003 Location false_src = locations->InAt(0);
6004 Location true_src = locations->InAt(1);
6005 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
6006 Register cond_reg = TMP;
6007 FRegister fcond_reg = FTMP;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006008 DataType::Type cond_type = DataType::Type::kInt32;
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006009 bool cond_inverted = false;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006010 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006011
6012 if (IsBooleanValueOrMaterializedCondition(cond)) {
6013 cond_reg = locations->InAt(/* condition_input_index */ 2).AsRegister<Register>();
6014 } else {
6015 HCondition* condition = cond->AsCondition();
6016 LocationSummary* cond_locations = cond->GetLocations();
6017 IfCondition if_cond = condition->GetCondition();
6018 cond_type = condition->InputAt(0)->GetType();
6019 switch (cond_type) {
6020 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006021 DCHECK_NE(cond_type, DataType::Type::kInt64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006022 cond_inverted = MaterializeIntCompare(if_cond, cond_locations, cond_reg);
6023 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006024 case DataType::Type::kFloat32:
6025 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006026 cond_inverted = MaterializeFpCompareR6(if_cond,
6027 condition->IsGtBias(),
6028 cond_type,
6029 cond_locations,
6030 fcond_reg);
6031 break;
6032 }
6033 }
6034
6035 if (true_src.IsConstant()) {
6036 DCHECK(true_src.GetConstant()->IsZeroBitPattern());
6037 }
6038 if (false_src.IsConstant()) {
6039 DCHECK(false_src.GetConstant()->IsZeroBitPattern());
6040 }
6041
6042 switch (dst_type) {
6043 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006044 if (DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006045 __ Mfc1(cond_reg, fcond_reg);
6046 }
6047 if (true_src.IsConstant()) {
6048 if (cond_inverted) {
6049 __ Selnez(dst.AsRegister<Register>(), false_src.AsRegister<Register>(), cond_reg);
6050 } else {
6051 __ Seleqz(dst.AsRegister<Register>(), false_src.AsRegister<Register>(), cond_reg);
6052 }
6053 } else if (false_src.IsConstant()) {
6054 if (cond_inverted) {
6055 __ Seleqz(dst.AsRegister<Register>(), true_src.AsRegister<Register>(), cond_reg);
6056 } else {
6057 __ Selnez(dst.AsRegister<Register>(), true_src.AsRegister<Register>(), cond_reg);
6058 }
6059 } else {
6060 DCHECK_NE(cond_reg, AT);
6061 if (cond_inverted) {
6062 __ Seleqz(AT, true_src.AsRegister<Register>(), cond_reg);
6063 __ Selnez(TMP, false_src.AsRegister<Register>(), cond_reg);
6064 } else {
6065 __ Selnez(AT, true_src.AsRegister<Register>(), cond_reg);
6066 __ Seleqz(TMP, false_src.AsRegister<Register>(), cond_reg);
6067 }
6068 __ Or(dst.AsRegister<Register>(), AT, TMP);
6069 }
6070 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006071 case DataType::Type::kInt64: {
6072 if (DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006073 __ Mfc1(cond_reg, fcond_reg);
6074 }
6075 Register dst_lo = dst.AsRegisterPairLow<Register>();
6076 Register dst_hi = dst.AsRegisterPairHigh<Register>();
6077 if (true_src.IsConstant()) {
6078 Register src_lo = false_src.AsRegisterPairLow<Register>();
6079 Register src_hi = false_src.AsRegisterPairHigh<Register>();
6080 if (cond_inverted) {
6081 __ Selnez(dst_lo, src_lo, cond_reg);
6082 __ Selnez(dst_hi, src_hi, cond_reg);
6083 } else {
6084 __ Seleqz(dst_lo, src_lo, cond_reg);
6085 __ Seleqz(dst_hi, src_hi, cond_reg);
6086 }
6087 } else {
6088 DCHECK(false_src.IsConstant());
6089 Register src_lo = true_src.AsRegisterPairLow<Register>();
6090 Register src_hi = true_src.AsRegisterPairHigh<Register>();
6091 if (cond_inverted) {
6092 __ Seleqz(dst_lo, src_lo, cond_reg);
6093 __ Seleqz(dst_hi, src_hi, cond_reg);
6094 } else {
6095 __ Selnez(dst_lo, src_lo, cond_reg);
6096 __ Selnez(dst_hi, src_hi, cond_reg);
6097 }
6098 }
6099 break;
6100 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006101 case DataType::Type::kFloat32: {
6102 if (!DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006103 // sel*.fmt tests bit 0 of the condition register, account for that.
6104 __ Sltu(TMP, ZERO, cond_reg);
6105 __ Mtc1(TMP, fcond_reg);
6106 }
6107 FRegister dst_reg = dst.AsFpuRegister<FRegister>();
6108 if (true_src.IsConstant()) {
6109 FRegister src_reg = false_src.AsFpuRegister<FRegister>();
6110 if (cond_inverted) {
6111 __ SelnezS(dst_reg, src_reg, fcond_reg);
6112 } else {
6113 __ SeleqzS(dst_reg, src_reg, fcond_reg);
6114 }
6115 } else if (false_src.IsConstant()) {
6116 FRegister src_reg = true_src.AsFpuRegister<FRegister>();
6117 if (cond_inverted) {
6118 __ SeleqzS(dst_reg, src_reg, fcond_reg);
6119 } else {
6120 __ SelnezS(dst_reg, src_reg, fcond_reg);
6121 }
6122 } else {
6123 if (cond_inverted) {
6124 __ SelS(fcond_reg,
6125 true_src.AsFpuRegister<FRegister>(),
6126 false_src.AsFpuRegister<FRegister>());
6127 } else {
6128 __ SelS(fcond_reg,
6129 false_src.AsFpuRegister<FRegister>(),
6130 true_src.AsFpuRegister<FRegister>());
6131 }
6132 __ MovS(dst_reg, fcond_reg);
6133 }
6134 break;
6135 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006136 case DataType::Type::kFloat64: {
6137 if (!DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006138 // sel*.fmt tests bit 0 of the condition register, account for that.
6139 __ Sltu(TMP, ZERO, cond_reg);
6140 __ Mtc1(TMP, fcond_reg);
6141 }
6142 FRegister dst_reg = dst.AsFpuRegister<FRegister>();
6143 if (true_src.IsConstant()) {
6144 FRegister src_reg = false_src.AsFpuRegister<FRegister>();
6145 if (cond_inverted) {
6146 __ SelnezD(dst_reg, src_reg, fcond_reg);
6147 } else {
6148 __ SeleqzD(dst_reg, src_reg, fcond_reg);
6149 }
6150 } else if (false_src.IsConstant()) {
6151 FRegister src_reg = true_src.AsFpuRegister<FRegister>();
6152 if (cond_inverted) {
6153 __ SeleqzD(dst_reg, src_reg, fcond_reg);
6154 } else {
6155 __ SelnezD(dst_reg, src_reg, fcond_reg);
6156 }
6157 } else {
6158 if (cond_inverted) {
6159 __ SelD(fcond_reg,
6160 true_src.AsFpuRegister<FRegister>(),
6161 false_src.AsFpuRegister<FRegister>());
6162 } else {
6163 __ SelD(fcond_reg,
6164 false_src.AsFpuRegister<FRegister>(),
6165 true_src.AsFpuRegister<FRegister>());
6166 }
6167 __ MovD(dst_reg, fcond_reg);
6168 }
6169 break;
6170 }
6171 }
6172}
6173
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006174void LocationsBuilderMIPS::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006175 LocationSummary* locations = new (GetGraph()->GetAllocator())
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006176 LocationSummary(flag, LocationSummary::kNoCall);
6177 locations->SetOut(Location::RequiresRegister());
Mingyao Yang063fc772016-08-02 11:02:54 -07006178}
6179
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006180void InstructionCodeGeneratorMIPS::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
6181 __ LoadFromOffset(kLoadWord,
6182 flag->GetLocations()->Out().AsRegister<Register>(),
6183 SP,
6184 codegen_->GetStackOffsetOfShouldDeoptimizeFlag());
Mingyao Yang063fc772016-08-02 11:02:54 -07006185}
6186
David Brazdil74eb1b22015-12-14 11:44:01 +00006187void LocationsBuilderMIPS::VisitSelect(HSelect* select) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006188 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(select);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006189 CanMoveConditionally(select, codegen_->GetInstructionSetFeatures().IsR6(), locations);
David Brazdil74eb1b22015-12-14 11:44:01 +00006190}
6191
6192void InstructionCodeGeneratorMIPS::VisitSelect(HSelect* select) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006193 bool is_r6 = codegen_->GetInstructionSetFeatures().IsR6();
6194 if (CanMoveConditionally(select, is_r6, /* locations_to_set */ nullptr)) {
6195 if (is_r6) {
6196 GenConditionalMoveR6(select);
6197 } else {
6198 GenConditionalMoveR2(select);
6199 }
6200 } else {
6201 LocationSummary* locations = select->GetLocations();
6202 MipsLabel false_target;
6203 GenerateTestAndBranch(select,
6204 /* condition_input_index */ 2,
6205 /* true_target */ nullptr,
6206 &false_target);
6207 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
6208 __ Bind(&false_target);
6209 }
David Brazdil74eb1b22015-12-14 11:44:01 +00006210}
6211
David Srbecky0cf44932015-12-09 14:09:59 +00006212void LocationsBuilderMIPS::VisitNativeDebugInfo(HNativeDebugInfo* info) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006213 new (GetGraph()->GetAllocator()) LocationSummary(info);
David Srbecky0cf44932015-12-09 14:09:59 +00006214}
6215
David Srbeckyd28f4a02016-03-14 17:14:24 +00006216void InstructionCodeGeneratorMIPS::VisitNativeDebugInfo(HNativeDebugInfo*) {
6217 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00006218}
6219
6220void CodeGeneratorMIPS::GenerateNop() {
6221 __ Nop();
David Srbecky0cf44932015-12-09 14:09:59 +00006222}
6223
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006224void LocationsBuilderMIPS::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006225 DataType::Type field_type = field_info.GetFieldType();
6226 bool is_wide = (field_type == DataType::Type::kInt64) || (field_type == DataType::Type::kFloat64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006227 bool generate_volatile = field_info.IsVolatile() && is_wide;
Alexey Frunze15958152017-02-09 19:08:30 -08006228 bool object_field_get_with_read_barrier =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006229 kEmitCompilerReadBarrier && (field_type == DataType::Type::kReference);
Vladimir Markoca6fff82017-10-03 14:49:14 +01006230 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Alexey Frunze15958152017-02-09 19:08:30 -08006231 instruction,
6232 generate_volatile
6233 ? LocationSummary::kCallOnMainOnly
6234 : (object_field_get_with_read_barrier
6235 ? LocationSummary::kCallOnSlowPath
6236 : LocationSummary::kNoCall));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006237
Alexey Frunzec61c0762017-04-10 13:54:23 -07006238 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
6239 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
6240 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006241 locations->SetInAt(0, Location::RequiresRegister());
6242 if (generate_volatile) {
6243 InvokeRuntimeCallingConvention calling_convention;
6244 // need A0 to hold base + offset
6245 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006246 if (field_type == DataType::Type::kInt64) {
6247 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kInt64));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006248 } else {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006249 // Use Location::Any() to prevent situations when running out of available fp registers.
6250 locations->SetOut(Location::Any());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006251 // Need some temp core regs since FP results are returned in core registers
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006252 Location reg = calling_convention.GetReturnLocation(DataType::Type::kInt64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006253 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairLow<Register>()));
6254 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairHigh<Register>()));
6255 }
6256 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006257 if (DataType::IsFloatingPointType(instruction->GetType())) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006258 locations->SetOut(Location::RequiresFpuRegister());
6259 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006260 // The output overlaps in the case of an object field get with
6261 // read barriers enabled: we do not want the move to overwrite the
6262 // object's location, as we need it to emit the read barrier.
6263 locations->SetOut(Location::RequiresRegister(),
6264 object_field_get_with_read_barrier
6265 ? Location::kOutputOverlap
6266 : Location::kNoOutputOverlap);
6267 }
6268 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
6269 // We need a temporary register for the read barrier marking slow
6270 // path in CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier.
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006271 if (!kBakerReadBarrierThunksEnableForFields) {
6272 locations->AddTemp(Location::RequiresRegister());
6273 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006274 }
6275 }
6276}
6277
6278void InstructionCodeGeneratorMIPS::HandleFieldGet(HInstruction* instruction,
6279 const FieldInfo& field_info,
6280 uint32_t dex_pc) {
Vladimir Marko61b92282017-10-11 13:23:17 +01006281 DCHECK_EQ(DataType::Size(field_info.GetFieldType()), DataType::Size(instruction->GetType()));
6282 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006283 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08006284 Location obj_loc = locations->InAt(0);
6285 Register obj = obj_loc.AsRegister<Register>();
6286 Location dst_loc = locations->Out();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006287 LoadOperandType load_type = kLoadUnsignedByte;
6288 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006289 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Tijana Jakovljevic57433862017-01-17 16:59:03 +01006290 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006291
6292 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006293 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006294 case DataType::Type::kUint8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006295 load_type = kLoadUnsignedByte;
6296 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006297 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006298 load_type = kLoadSignedByte;
6299 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006300 case DataType::Type::kUint16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006301 load_type = kLoadUnsignedHalfword;
6302 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006303 case DataType::Type::kInt16:
6304 load_type = kLoadSignedHalfword;
6305 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006306 case DataType::Type::kInt32:
6307 case DataType::Type::kFloat32:
6308 case DataType::Type::kReference:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006309 load_type = kLoadWord;
6310 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006311 case DataType::Type::kInt64:
6312 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006313 load_type = kLoadDoubleword;
6314 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006315 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006316 LOG(FATAL) << "Unreachable type " << type;
6317 UNREACHABLE();
6318 }
6319
6320 if (is_volatile && load_type == kLoadDoubleword) {
6321 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006322 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006323 // Do implicit Null check
Goran Jakovljevic2e61a572017-10-23 08:58:15 +02006324 __ LoadFromOffset(kLoadWord,
6325 ZERO,
6326 locations->GetTemp(0).AsRegister<Register>(),
6327 0,
6328 null_checker);
Serban Constantinescufca16662016-07-14 09:21:59 +01006329 codegen_->InvokeRuntime(kQuickA64Load, instruction, dex_pc);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006330 CheckEntrypointTypes<kQuickA64Load, int64_t, volatile const int64_t*>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006331 if (type == DataType::Type::kFloat64) {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006332 // FP results are returned in core registers. Need to move them.
Alexey Frunze15958152017-02-09 19:08:30 -08006333 if (dst_loc.IsFpuRegister()) {
6334 __ Mtc1(locations->GetTemp(1).AsRegister<Register>(), dst_loc.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006335 __ MoveToFpuHigh(locations->GetTemp(2).AsRegister<Register>(),
Alexey Frunze15958152017-02-09 19:08:30 -08006336 dst_loc.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006337 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006338 DCHECK(dst_loc.IsDoubleStackSlot());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006339 __ StoreToOffset(kStoreWord,
6340 locations->GetTemp(1).AsRegister<Register>(),
6341 SP,
Alexey Frunze15958152017-02-09 19:08:30 -08006342 dst_loc.GetStackIndex());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006343 __ StoreToOffset(kStoreWord,
6344 locations->GetTemp(2).AsRegister<Register>(),
6345 SP,
Alexey Frunze15958152017-02-09 19:08:30 -08006346 dst_loc.GetStackIndex() + 4);
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006347 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006348 }
6349 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006350 if (type == DataType::Type::kReference) {
Alexey Frunze15958152017-02-09 19:08:30 -08006351 // /* HeapReference<Object> */ dst = *(obj + offset)
6352 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006353 Location temp_loc =
6354 kBakerReadBarrierThunksEnableForFields ? Location::NoLocation() : locations->GetTemp(0);
Alexey Frunze15958152017-02-09 19:08:30 -08006355 // Note that a potential implicit null check is handled in this
6356 // CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier call.
6357 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6358 dst_loc,
6359 obj,
6360 offset,
6361 temp_loc,
6362 /* needs_null_check */ true);
6363 if (is_volatile) {
6364 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6365 }
6366 } else {
6367 __ LoadFromOffset(kLoadWord, dst_loc.AsRegister<Register>(), obj, offset, null_checker);
6368 if (is_volatile) {
6369 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6370 }
6371 // If read barriers are enabled, emit read barriers other than
6372 // Baker's using a slow path (and also unpoison the loaded
6373 // reference, if heap poisoning is enabled).
6374 codegen_->MaybeGenerateReadBarrierSlow(instruction, dst_loc, dst_loc, obj_loc, offset);
6375 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006376 } else if (!DataType::IsFloatingPointType(type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006377 Register dst;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006378 if (type == DataType::Type::kInt64) {
Alexey Frunze15958152017-02-09 19:08:30 -08006379 DCHECK(dst_loc.IsRegisterPair());
6380 dst = dst_loc.AsRegisterPairLow<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006381 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006382 DCHECK(dst_loc.IsRegister());
6383 dst = dst_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006384 }
Alexey Frunze2923db72016-08-20 01:55:47 -07006385 __ LoadFromOffset(load_type, dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006386 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006387 DCHECK(dst_loc.IsFpuRegister());
6388 FRegister dst = dst_loc.AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006389 if (type == DataType::Type::kFloat32) {
Alexey Frunze2923db72016-08-20 01:55:47 -07006390 __ LoadSFromOffset(dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006391 } else {
Alexey Frunze2923db72016-08-20 01:55:47 -07006392 __ LoadDFromOffset(dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006393 }
6394 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006395 }
6396
Alexey Frunze15958152017-02-09 19:08:30 -08006397 // Memory barriers, in the case of references, are handled in the
6398 // previous switch statement.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006399 if (is_volatile && (type != DataType::Type::kReference)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006400 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6401 }
6402}
6403
6404void LocationsBuilderMIPS::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006405 DataType::Type field_type = field_info.GetFieldType();
6406 bool is_wide = (field_type == DataType::Type::kInt64) || (field_type == DataType::Type::kFloat64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006407 bool generate_volatile = field_info.IsVolatile() && is_wide;
Vladimir Markoca6fff82017-10-03 14:49:14 +01006408 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006409 instruction, generate_volatile ? LocationSummary::kCallOnMainOnly : LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006410
6411 locations->SetInAt(0, Location::RequiresRegister());
6412 if (generate_volatile) {
6413 InvokeRuntimeCallingConvention calling_convention;
6414 // need A0 to hold base + offset
6415 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006416 if (field_type == DataType::Type::kInt64) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006417 locations->SetInAt(1, Location::RegisterPairLocation(
6418 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
6419 } else {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006420 // Use Location::Any() to prevent situations when running out of available fp registers.
6421 locations->SetInAt(1, Location::Any());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006422 // Pass FP parameters in core registers.
6423 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
6424 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(3)));
6425 }
6426 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006427 if (DataType::IsFloatingPointType(field_type)) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006428 locations->SetInAt(1, FpuRegisterOrConstantForStore(instruction->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006429 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006430 locations->SetInAt(1, RegisterOrZeroConstant(instruction->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006431 }
6432 }
6433}
6434
6435void InstructionCodeGeneratorMIPS::HandleFieldSet(HInstruction* instruction,
6436 const FieldInfo& field_info,
Goran Jakovljevice114da22016-12-26 14:21:43 +01006437 uint32_t dex_pc,
6438 bool value_can_be_null) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006439 DataType::Type type = field_info.GetFieldType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006440 LocationSummary* locations = instruction->GetLocations();
6441 Register obj = locations->InAt(0).AsRegister<Register>();
Alexey Frunzef58b2482016-09-02 22:14:06 -07006442 Location value_location = locations->InAt(1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006443 StoreOperandType store_type = kStoreByte;
6444 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006445 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Alexey Frunzec061de12017-02-14 13:27:23 -08006446 bool needs_write_barrier = CodeGenerator::StoreNeedsWriteBarrier(type, instruction->InputAt(1));
Tijana Jakovljevic57433862017-01-17 16:59:03 +01006447 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006448
6449 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006450 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006451 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006452 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006453 store_type = kStoreByte;
6454 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006455 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006456 case DataType::Type::kInt16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006457 store_type = kStoreHalfword;
6458 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006459 case DataType::Type::kInt32:
6460 case DataType::Type::kFloat32:
6461 case DataType::Type::kReference:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006462 store_type = kStoreWord;
6463 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006464 case DataType::Type::kInt64:
6465 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006466 store_type = kStoreDoubleword;
6467 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006468 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006469 LOG(FATAL) << "Unreachable type " << type;
6470 UNREACHABLE();
6471 }
6472
6473 if (is_volatile) {
6474 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
6475 }
6476
6477 if (is_volatile && store_type == kStoreDoubleword) {
6478 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006479 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006480 // Do implicit Null check.
Goran Jakovljevic2e61a572017-10-23 08:58:15 +02006481 __ LoadFromOffset(kLoadWord,
6482 ZERO,
6483 locations->GetTemp(0).AsRegister<Register>(),
6484 0,
6485 null_checker);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006486 if (type == DataType::Type::kFloat64) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006487 // Pass FP parameters in core registers.
Alexey Frunzef58b2482016-09-02 22:14:06 -07006488 if (value_location.IsFpuRegister()) {
6489 __ Mfc1(locations->GetTemp(1).AsRegister<Register>(),
6490 value_location.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006491 __ MoveFromFpuHigh(locations->GetTemp(2).AsRegister<Register>(),
Alexey Frunzef58b2482016-09-02 22:14:06 -07006492 value_location.AsFpuRegister<FRegister>());
6493 } else if (value_location.IsDoubleStackSlot()) {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006494 __ LoadFromOffset(kLoadWord,
6495 locations->GetTemp(1).AsRegister<Register>(),
6496 SP,
Alexey Frunzef58b2482016-09-02 22:14:06 -07006497 value_location.GetStackIndex());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006498 __ LoadFromOffset(kLoadWord,
6499 locations->GetTemp(2).AsRegister<Register>(),
6500 SP,
Alexey Frunzef58b2482016-09-02 22:14:06 -07006501 value_location.GetStackIndex() + 4);
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006502 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006503 DCHECK(value_location.IsConstant());
6504 DCHECK(value_location.GetConstant()->IsDoubleConstant());
6505 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006506 __ LoadConst64(locations->GetTemp(2).AsRegister<Register>(),
6507 locations->GetTemp(1).AsRegister<Register>(),
6508 value);
6509 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006510 }
Serban Constantinescufca16662016-07-14 09:21:59 +01006511 codegen_->InvokeRuntime(kQuickA64Store, instruction, dex_pc);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006512 CheckEntrypointTypes<kQuickA64Store, void, volatile int64_t *, int64_t>();
6513 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006514 if (value_location.IsConstant()) {
6515 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
6516 __ StoreConstToOffset(store_type, value, obj, offset, TMP, null_checker);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006517 } else if (!DataType::IsFloatingPointType(type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006518 Register src;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006519 if (type == DataType::Type::kInt64) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006520 src = value_location.AsRegisterPairLow<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006521 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006522 src = value_location.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006523 }
Alexey Frunzec061de12017-02-14 13:27:23 -08006524 if (kPoisonHeapReferences && needs_write_barrier) {
6525 // Note that in the case where `value` is a null reference,
6526 // we do not enter this block, as a null reference does not
6527 // need poisoning.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006528 DCHECK_EQ(type, DataType::Type::kReference);
Alexey Frunzec061de12017-02-14 13:27:23 -08006529 __ PoisonHeapReference(TMP, src);
6530 __ StoreToOffset(store_type, TMP, obj, offset, null_checker);
6531 } else {
6532 __ StoreToOffset(store_type, src, obj, offset, null_checker);
6533 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006534 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006535 FRegister src = value_location.AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006536 if (type == DataType::Type::kFloat32) {
Alexey Frunze2923db72016-08-20 01:55:47 -07006537 __ StoreSToOffset(src, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006538 } else {
Alexey Frunze2923db72016-08-20 01:55:47 -07006539 __ StoreDToOffset(src, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006540 }
6541 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006542 }
6543
Alexey Frunzec061de12017-02-14 13:27:23 -08006544 if (needs_write_barrier) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006545 Register src = value_location.AsRegister<Register>();
Goran Jakovljevice114da22016-12-26 14:21:43 +01006546 codegen_->MarkGCCard(obj, src, value_can_be_null);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006547 }
6548
6549 if (is_volatile) {
6550 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
6551 }
6552}
6553
6554void LocationsBuilderMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
6555 HandleFieldGet(instruction, instruction->GetFieldInfo());
6556}
6557
6558void InstructionCodeGeneratorMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
6559 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
6560}
6561
6562void LocationsBuilderMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
6563 HandleFieldSet(instruction, instruction->GetFieldInfo());
6564}
6565
6566void InstructionCodeGeneratorMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Goran Jakovljevice114da22016-12-26 14:21:43 +01006567 HandleFieldSet(instruction,
6568 instruction->GetFieldInfo(),
6569 instruction->GetDexPc(),
6570 instruction->GetValueCanBeNull());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006571}
6572
Alexey Frunze15958152017-02-09 19:08:30 -08006573void InstructionCodeGeneratorMIPS::GenerateReferenceLoadOneRegister(
6574 HInstruction* instruction,
6575 Location out,
6576 uint32_t offset,
6577 Location maybe_temp,
6578 ReadBarrierOption read_barrier_option) {
6579 Register out_reg = out.AsRegister<Register>();
6580 if (read_barrier_option == kWithReadBarrier) {
6581 CHECK(kEmitCompilerReadBarrier);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006582 if (!kUseBakerReadBarrier || !kBakerReadBarrierThunksEnableForFields) {
6583 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
6584 }
Alexey Frunze15958152017-02-09 19:08:30 -08006585 if (kUseBakerReadBarrier) {
6586 // Load with fast path based Baker's read barrier.
6587 // /* HeapReference<Object> */ out = *(out + offset)
6588 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6589 out,
6590 out_reg,
6591 offset,
6592 maybe_temp,
6593 /* needs_null_check */ false);
6594 } else {
6595 // Load with slow path based read barrier.
6596 // Save the value of `out` into `maybe_temp` before overwriting it
6597 // in the following move operation, as we will need it for the
6598 // read barrier below.
6599 __ Move(maybe_temp.AsRegister<Register>(), out_reg);
6600 // /* HeapReference<Object> */ out = *(out + offset)
6601 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
6602 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
6603 }
6604 } else {
6605 // Plain load with no read barrier.
6606 // /* HeapReference<Object> */ out = *(out + offset)
6607 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
6608 __ MaybeUnpoisonHeapReference(out_reg);
6609 }
6610}
6611
6612void InstructionCodeGeneratorMIPS::GenerateReferenceLoadTwoRegisters(
6613 HInstruction* instruction,
6614 Location out,
6615 Location obj,
6616 uint32_t offset,
6617 Location maybe_temp,
6618 ReadBarrierOption read_barrier_option) {
6619 Register out_reg = out.AsRegister<Register>();
6620 Register obj_reg = obj.AsRegister<Register>();
6621 if (read_barrier_option == kWithReadBarrier) {
6622 CHECK(kEmitCompilerReadBarrier);
6623 if (kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006624 if (!kBakerReadBarrierThunksEnableForFields) {
6625 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
6626 }
Alexey Frunze15958152017-02-09 19:08:30 -08006627 // Load with fast path based Baker's read barrier.
6628 // /* HeapReference<Object> */ out = *(obj + offset)
6629 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6630 out,
6631 obj_reg,
6632 offset,
6633 maybe_temp,
6634 /* needs_null_check */ false);
6635 } else {
6636 // Load with slow path based read barrier.
6637 // /* HeapReference<Object> */ out = *(obj + offset)
6638 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6639 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
6640 }
6641 } else {
6642 // Plain load with no read barrier.
6643 // /* HeapReference<Object> */ out = *(obj + offset)
6644 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6645 __ MaybeUnpoisonHeapReference(out_reg);
6646 }
6647}
6648
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006649static inline int GetBakerMarkThunkNumber(Register reg) {
6650 static_assert(BAKER_MARK_INTROSPECTION_REGISTER_COUNT == 21, "Expecting equal");
6651 if (reg >= V0 && reg <= T7) { // 14 consequtive regs.
6652 return reg - V0;
6653 } else if (reg >= S2 && reg <= S7) { // 6 consequtive regs.
6654 return 14 + (reg - S2);
6655 } else if (reg == FP) { // One more.
6656 return 20;
6657 }
6658 LOG(FATAL) << "Unexpected register " << reg;
6659 UNREACHABLE();
6660}
6661
6662static inline int GetBakerMarkFieldArrayThunkDisplacement(Register reg, bool short_offset) {
6663 int num = GetBakerMarkThunkNumber(reg) +
6664 (short_offset ? BAKER_MARK_INTROSPECTION_REGISTER_COUNT : 0);
6665 return num * BAKER_MARK_INTROSPECTION_FIELD_ARRAY_ENTRY_SIZE;
6666}
6667
6668static inline int GetBakerMarkGcRootThunkDisplacement(Register reg) {
6669 return GetBakerMarkThunkNumber(reg) * BAKER_MARK_INTROSPECTION_GC_ROOT_ENTRY_SIZE +
6670 BAKER_MARK_INTROSPECTION_GC_ROOT_ENTRIES_OFFSET;
6671}
6672
Alexey Frunze15958152017-02-09 19:08:30 -08006673void InstructionCodeGeneratorMIPS::GenerateGcRootFieldLoad(HInstruction* instruction,
6674 Location root,
6675 Register obj,
6676 uint32_t offset,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006677 ReadBarrierOption read_barrier_option,
6678 MipsLabel* label_low) {
6679 bool reordering;
6680 if (label_low != nullptr) {
6681 DCHECK_EQ(offset, 0x5678u);
6682 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006683 Register root_reg = root.AsRegister<Register>();
Alexey Frunze15958152017-02-09 19:08:30 -08006684 if (read_barrier_option == kWithReadBarrier) {
6685 DCHECK(kEmitCompilerReadBarrier);
6686 if (kUseBakerReadBarrier) {
6687 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
6688 // Baker's read barrier are used:
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006689 if (kBakerReadBarrierThunksEnableForGcRoots) {
6690 // Note that we do not actually check the value of `GetIsGcMarking()`
6691 // to decide whether to mark the loaded GC root or not. Instead, we
6692 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6693 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6694 // vice versa.
6695 //
6696 // We use thunks for the slow path. That thunk checks the reference
6697 // and jumps to the entrypoint if needed.
6698 //
6699 // temp = Thread::Current()->pReadBarrierMarkReg00
6700 // // AKA &art_quick_read_barrier_mark_introspection.
6701 // GcRoot<mirror::Object> root = *(obj+offset); // Original reference load.
6702 // if (temp != nullptr) {
6703 // temp = &gc_root_thunk<root_reg>
6704 // root = temp(root)
6705 // }
Alexey Frunze15958152017-02-09 19:08:30 -08006706
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006707 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
6708 const int32_t entry_point_offset =
6709 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6710 const int thunk_disp = GetBakerMarkGcRootThunkDisplacement(root_reg);
6711 int16_t offset_low = Low16Bits(offset);
6712 int16_t offset_high = High16Bits(offset - offset_low); // Accounts for sign
6713 // extension in lw.
6714 bool short_offset = IsInt<16>(static_cast<int32_t>(offset));
6715 Register base = short_offset ? obj : TMP;
6716 // Loading the entrypoint does not require a load acquire since it is only changed when
6717 // threads are suspended or running a checkpoint.
6718 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6719 reordering = __ SetReorder(false);
6720 if (!short_offset) {
6721 DCHECK(!label_low);
6722 __ AddUpper(base, obj, offset_high);
6723 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006724 MipsLabel skip_call;
6725 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006726 if (label_low != nullptr) {
6727 DCHECK(short_offset);
6728 __ Bind(label_low);
6729 }
6730 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6731 __ LoadFromOffset(kLoadWord, root_reg, base, offset_low); // Single instruction
6732 // in delay slot.
6733 if (isR6) {
6734 __ Jialc(T9, thunk_disp);
6735 } else {
6736 __ Addiu(T9, T9, thunk_disp);
6737 __ Jalr(T9);
6738 __ Nop();
6739 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006740 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006741 __ SetReorder(reordering);
6742 } else {
6743 // Note that we do not actually check the value of `GetIsGcMarking()`
6744 // to decide whether to mark the loaded GC root or not. Instead, we
6745 // load into `temp` (T9) the read barrier mark entry point corresponding
6746 // to register `root`. If `temp` is null, it means that `GetIsGcMarking()`
6747 // is false, and vice versa.
6748 //
6749 // GcRoot<mirror::Object> root = *(obj+offset); // Original reference load.
6750 // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg()
6751 // if (temp != null) {
6752 // root = temp(root)
6753 // }
Alexey Frunze15958152017-02-09 19:08:30 -08006754
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006755 if (label_low != nullptr) {
6756 reordering = __ SetReorder(false);
6757 __ Bind(label_low);
6758 }
6759 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6760 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6761 if (label_low != nullptr) {
6762 __ SetReorder(reordering);
6763 }
6764 static_assert(
6765 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
6766 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
6767 "have different sizes.");
6768 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
6769 "art::mirror::CompressedReference<mirror::Object> and int32_t "
6770 "have different sizes.");
Alexey Frunze15958152017-02-09 19:08:30 -08006771
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006772 // Slow path marking the GC root `root`.
6773 Location temp = Location::RegisterLocation(T9);
6774 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01006775 new (codegen_->GetScopedAllocator()) ReadBarrierMarkSlowPathMIPS(
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006776 instruction,
6777 root,
6778 /*entrypoint*/ temp);
6779 codegen_->AddSlowPath(slow_path);
6780
6781 const int32_t entry_point_offset =
6782 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(root.reg() - 1);
6783 // Loading the entrypoint does not require a load acquire since it is only changed when
6784 // threads are suspended or running a checkpoint.
6785 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), TR, entry_point_offset);
6786 __ Bnez(temp.AsRegister<Register>(), slow_path->GetEntryLabel());
6787 __ Bind(slow_path->GetExitLabel());
6788 }
Alexey Frunze15958152017-02-09 19:08:30 -08006789 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006790 if (label_low != nullptr) {
6791 reordering = __ SetReorder(false);
6792 __ Bind(label_low);
6793 }
Alexey Frunze15958152017-02-09 19:08:30 -08006794 // GC root loaded through a slow path for read barriers other
6795 // than Baker's.
6796 // /* GcRoot<mirror::Object>* */ root = obj + offset
6797 __ Addiu32(root_reg, obj, offset);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006798 if (label_low != nullptr) {
6799 __ SetReorder(reordering);
6800 }
Alexey Frunze15958152017-02-09 19:08:30 -08006801 // /* mirror::Object* */ root = root->Read()
6802 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
6803 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006804 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006805 if (label_low != nullptr) {
6806 reordering = __ SetReorder(false);
6807 __ Bind(label_low);
6808 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006809 // Plain GC root load with no read barrier.
6810 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6811 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6812 // Note that GC roots are not affected by heap poisoning, thus we
6813 // do not have to unpoison `root_reg` here.
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006814 if (label_low != nullptr) {
6815 __ SetReorder(reordering);
6816 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006817 }
6818}
6819
Alexey Frunze15958152017-02-09 19:08:30 -08006820void CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
6821 Location ref,
6822 Register obj,
6823 uint32_t offset,
6824 Location temp,
6825 bool needs_null_check) {
6826 DCHECK(kEmitCompilerReadBarrier);
6827 DCHECK(kUseBakerReadBarrier);
6828
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006829 if (kBakerReadBarrierThunksEnableForFields) {
6830 // Note that we do not actually check the value of `GetIsGcMarking()`
6831 // to decide whether to mark the loaded reference or not. Instead, we
6832 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6833 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6834 // vice versa.
6835 //
6836 // We use thunks for the slow path. That thunk checks the reference
6837 // and jumps to the entrypoint if needed. If the holder is not gray,
6838 // it issues a load-load memory barrier and returns to the original
6839 // reference load.
6840 //
6841 // temp = Thread::Current()->pReadBarrierMarkReg00
6842 // // AKA &art_quick_read_barrier_mark_introspection.
6843 // if (temp != nullptr) {
6844 // temp = &field_array_thunk<holder_reg>
6845 // temp()
6846 // }
6847 // not_gray_return_address:
6848 // // If the offset is too large to fit into the lw instruction, we
6849 // // use an adjusted base register (TMP) here. This register
6850 // // receives bits 16 ... 31 of the offset before the thunk invocation
6851 // // and the thunk benefits from it.
6852 // HeapReference<mirror::Object> reference = *(obj+offset); // Original reference load.
6853 // gray_return_address:
6854
6855 DCHECK(temp.IsInvalid());
6856 bool isR6 = GetInstructionSetFeatures().IsR6();
6857 int16_t offset_low = Low16Bits(offset);
6858 int16_t offset_high = High16Bits(offset - offset_low); // Accounts for sign extension in lw.
6859 bool short_offset = IsInt<16>(static_cast<int32_t>(offset));
6860 bool reordering = __ SetReorder(false);
6861 const int32_t entry_point_offset =
6862 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6863 // There may have or may have not been a null check if the field offset is smaller than
6864 // the page size.
6865 // There must've been a null check in case it's actually a load from an array.
6866 // We will, however, perform an explicit null check in the thunk as it's easier to
6867 // do it than not.
6868 if (instruction->IsArrayGet()) {
6869 DCHECK(!needs_null_check);
6870 }
6871 const int thunk_disp = GetBakerMarkFieldArrayThunkDisplacement(obj, short_offset);
6872 // Loading the entrypoint does not require a load acquire since it is only changed when
6873 // threads are suspended or running a checkpoint.
6874 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6875 Register ref_reg = ref.AsRegister<Register>();
6876 Register base = short_offset ? obj : TMP;
Alexey Frunze0cab6562017-07-25 15:19:36 -07006877 MipsLabel skip_call;
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006878 if (short_offset) {
6879 if (isR6) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006880 __ Beqzc(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006881 __ Nop(); // In forbidden slot.
6882 __ Jialc(T9, thunk_disp);
6883 } else {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006884 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006885 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6886 __ Jalr(T9);
6887 __ Nop(); // In delay slot.
6888 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006889 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006890 } else {
6891 if (isR6) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006892 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006893 __ Aui(base, obj, offset_high); // In delay slot.
6894 __ Jialc(T9, thunk_disp);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006895 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006896 } else {
6897 __ Lui(base, offset_high);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006898 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006899 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6900 __ Jalr(T9);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006901 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006902 __ Addu(base, base, obj); // In delay slot.
6903 }
6904 }
6905 // /* HeapReference<Object> */ ref = *(obj + offset)
6906 __ LoadFromOffset(kLoadWord, ref_reg, base, offset_low); // Single instruction.
6907 if (needs_null_check) {
6908 MaybeRecordImplicitNullCheck(instruction);
6909 }
6910 __ MaybeUnpoisonHeapReference(ref_reg);
6911 __ SetReorder(reordering);
6912 return;
6913 }
6914
Alexey Frunze15958152017-02-09 19:08:30 -08006915 // /* HeapReference<Object> */ ref = *(obj + offset)
6916 Location no_index = Location::NoLocation();
6917 ScaleFactor no_scale_factor = TIMES_1;
6918 GenerateReferenceLoadWithBakerReadBarrier(instruction,
6919 ref,
6920 obj,
6921 offset,
6922 no_index,
6923 no_scale_factor,
6924 temp,
6925 needs_null_check);
6926}
6927
6928void CodeGeneratorMIPS::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
6929 Location ref,
6930 Register obj,
6931 uint32_t data_offset,
6932 Location index,
6933 Location temp,
6934 bool needs_null_check) {
6935 DCHECK(kEmitCompilerReadBarrier);
6936 DCHECK(kUseBakerReadBarrier);
6937
6938 static_assert(
6939 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
6940 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006941 ScaleFactor scale_factor = TIMES_4;
6942
6943 if (kBakerReadBarrierThunksEnableForArrays) {
6944 // Note that we do not actually check the value of `GetIsGcMarking()`
6945 // to decide whether to mark the loaded reference or not. Instead, we
6946 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6947 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6948 // vice versa.
6949 //
6950 // We use thunks for the slow path. That thunk checks the reference
6951 // and jumps to the entrypoint if needed. If the holder is not gray,
6952 // it issues a load-load memory barrier and returns to the original
6953 // reference load.
6954 //
6955 // temp = Thread::Current()->pReadBarrierMarkReg00
6956 // // AKA &art_quick_read_barrier_mark_introspection.
6957 // if (temp != nullptr) {
6958 // temp = &field_array_thunk<holder_reg>
6959 // temp()
6960 // }
6961 // not_gray_return_address:
6962 // // The element address is pre-calculated in the TMP register before the
6963 // // thunk invocation and the thunk benefits from it.
6964 // HeapReference<mirror::Object> reference = data[index]; // Original reference load.
6965 // gray_return_address:
6966
6967 DCHECK(temp.IsInvalid());
6968 DCHECK(index.IsValid());
6969 bool reordering = __ SetReorder(false);
6970 const int32_t entry_point_offset =
6971 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6972 // We will not do the explicit null check in the thunk as some form of a null check
6973 // must've been done earlier.
6974 DCHECK(!needs_null_check);
6975 const int thunk_disp = GetBakerMarkFieldArrayThunkDisplacement(obj, /* short_offset */ false);
6976 // Loading the entrypoint does not require a load acquire since it is only changed when
6977 // threads are suspended or running a checkpoint.
6978 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6979 Register ref_reg = ref.AsRegister<Register>();
6980 Register index_reg = index.IsRegisterPair()
6981 ? index.AsRegisterPairLow<Register>()
6982 : index.AsRegister<Register>();
Alexey Frunze0cab6562017-07-25 15:19:36 -07006983 MipsLabel skip_call;
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006984 if (GetInstructionSetFeatures().IsR6()) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006985 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006986 __ Lsa(TMP, index_reg, obj, scale_factor); // In delay slot.
6987 __ Jialc(T9, thunk_disp);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006988 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006989 } else {
6990 __ Sll(TMP, index_reg, scale_factor);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006991 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006992 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6993 __ Jalr(T9);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006994 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006995 __ Addu(TMP, TMP, obj); // In delay slot.
6996 }
6997 // /* HeapReference<Object> */ ref = *(obj + data_offset + (index << scale_factor))
6998 DCHECK(IsInt<16>(static_cast<int32_t>(data_offset))) << data_offset;
6999 __ LoadFromOffset(kLoadWord, ref_reg, TMP, data_offset); // Single instruction.
7000 __ MaybeUnpoisonHeapReference(ref_reg);
7001 __ SetReorder(reordering);
7002 return;
7003 }
7004
Alexey Frunze15958152017-02-09 19:08:30 -08007005 // /* HeapReference<Object> */ ref =
7006 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
Alexey Frunze15958152017-02-09 19:08:30 -08007007 GenerateReferenceLoadWithBakerReadBarrier(instruction,
7008 ref,
7009 obj,
7010 data_offset,
7011 index,
7012 scale_factor,
7013 temp,
7014 needs_null_check);
7015}
7016
7017void CodeGeneratorMIPS::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
7018 Location ref,
7019 Register obj,
7020 uint32_t offset,
7021 Location index,
7022 ScaleFactor scale_factor,
7023 Location temp,
7024 bool needs_null_check,
7025 bool always_update_field) {
7026 DCHECK(kEmitCompilerReadBarrier);
7027 DCHECK(kUseBakerReadBarrier);
7028
7029 // In slow path based read barriers, the read barrier call is
7030 // inserted after the original load. However, in fast path based
7031 // Baker's read barriers, we need to perform the load of
7032 // mirror::Object::monitor_ *before* the original reference load.
7033 // This load-load ordering is required by the read barrier.
7034 // The fast path/slow path (for Baker's algorithm) should look like:
7035 //
7036 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
7037 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
7038 // HeapReference<Object> ref = *src; // Original reference load.
7039 // bool is_gray = (rb_state == ReadBarrier::GrayState());
7040 // if (is_gray) {
7041 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
7042 // }
7043 //
7044 // Note: the original implementation in ReadBarrier::Barrier is
7045 // slightly more complex as it performs additional checks that we do
7046 // not do here for performance reasons.
7047
7048 Register ref_reg = ref.AsRegister<Register>();
7049 Register temp_reg = temp.AsRegister<Register>();
7050 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
7051
7052 // /* int32_t */ monitor = obj->monitor_
7053 __ LoadFromOffset(kLoadWord, temp_reg, obj, monitor_offset);
7054 if (needs_null_check) {
7055 MaybeRecordImplicitNullCheck(instruction);
7056 }
7057 // /* LockWord */ lock_word = LockWord(monitor)
7058 static_assert(sizeof(LockWord) == sizeof(int32_t),
7059 "art::LockWord and int32_t have different sizes.");
7060
7061 __ Sync(0); // Barrier to prevent load-load reordering.
7062
7063 // The actual reference load.
7064 if (index.IsValid()) {
7065 // Load types involving an "index": ArrayGet,
7066 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7067 // intrinsics.
7068 // /* HeapReference<Object> */ ref = *(obj + offset + (index << scale_factor))
7069 if (index.IsConstant()) {
7070 size_t computed_offset =
7071 (index.GetConstant()->AsIntConstant()->GetValue() << scale_factor) + offset;
7072 __ LoadFromOffset(kLoadWord, ref_reg, obj, computed_offset);
7073 } else {
7074 // Handle the special case of the
7075 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7076 // intrinsics, which use a register pair as index ("long
7077 // offset"), of which only the low part contains data.
7078 Register index_reg = index.IsRegisterPair()
7079 ? index.AsRegisterPairLow<Register>()
7080 : index.AsRegister<Register>();
Chris Larsencd0295d2017-03-31 15:26:54 -07007081 __ ShiftAndAdd(TMP, index_reg, obj, scale_factor, TMP);
Alexey Frunze15958152017-02-09 19:08:30 -08007082 __ LoadFromOffset(kLoadWord, ref_reg, TMP, offset);
7083 }
7084 } else {
7085 // /* HeapReference<Object> */ ref = *(obj + offset)
7086 __ LoadFromOffset(kLoadWord, ref_reg, obj, offset);
7087 }
7088
7089 // Object* ref = ref_addr->AsMirrorPtr()
7090 __ MaybeUnpoisonHeapReference(ref_reg);
7091
7092 // Slow path marking the object `ref` when it is gray.
7093 SlowPathCodeMIPS* slow_path;
7094 if (always_update_field) {
7095 // ReadBarrierMarkAndUpdateFieldSlowPathMIPS only supports address
7096 // of the form `obj + field_offset`, where `obj` is a register and
7097 // `field_offset` is a register pair (of which only the lower half
7098 // is used). Thus `offset` and `scale_factor` above are expected
7099 // to be null in this code path.
7100 DCHECK_EQ(offset, 0u);
7101 DCHECK_EQ(scale_factor, ScaleFactor::TIMES_1);
Vladimir Marko174b2e22017-10-12 13:34:49 +01007102 slow_path = new (GetScopedAllocator())
Alexey Frunze15958152017-02-09 19:08:30 -08007103 ReadBarrierMarkAndUpdateFieldSlowPathMIPS(instruction,
7104 ref,
7105 obj,
7106 /* field_offset */ index,
7107 temp_reg);
7108 } else {
Vladimir Marko174b2e22017-10-12 13:34:49 +01007109 slow_path = new (GetScopedAllocator()) ReadBarrierMarkSlowPathMIPS(instruction, ref);
Alexey Frunze15958152017-02-09 19:08:30 -08007110 }
7111 AddSlowPath(slow_path);
7112
7113 // if (rb_state == ReadBarrier::GrayState())
7114 // ref = ReadBarrier::Mark(ref);
7115 // Given the numeric representation, it's enough to check the low bit of the
7116 // rb_state. We do that by shifting the bit into the sign bit (31) and
7117 // performing a branch on less than zero.
7118 static_assert(ReadBarrier::WhiteState() == 0, "Expecting white to have value 0");
7119 static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1");
7120 static_assert(LockWord::kReadBarrierStateSize == 1, "Expecting 1-bit read barrier state size");
7121 __ Sll(temp_reg, temp_reg, 31 - LockWord::kReadBarrierStateShift);
7122 __ Bltz(temp_reg, slow_path->GetEntryLabel());
7123 __ Bind(slow_path->GetExitLabel());
7124}
7125
7126void CodeGeneratorMIPS::GenerateReadBarrierSlow(HInstruction* instruction,
7127 Location out,
7128 Location ref,
7129 Location obj,
7130 uint32_t offset,
7131 Location index) {
7132 DCHECK(kEmitCompilerReadBarrier);
7133
7134 // Insert a slow path based read barrier *after* the reference load.
7135 //
7136 // If heap poisoning is enabled, the unpoisoning of the loaded
7137 // reference will be carried out by the runtime within the slow
7138 // path.
7139 //
7140 // Note that `ref` currently does not get unpoisoned (when heap
7141 // poisoning is enabled), which is alright as the `ref` argument is
7142 // not used by the artReadBarrierSlow entry point.
7143 //
7144 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
Vladimir Marko174b2e22017-10-12 13:34:49 +01007145 SlowPathCodeMIPS* slow_path = new (GetScopedAllocator())
Alexey Frunze15958152017-02-09 19:08:30 -08007146 ReadBarrierForHeapReferenceSlowPathMIPS(instruction, out, ref, obj, offset, index);
7147 AddSlowPath(slow_path);
7148
7149 __ B(slow_path->GetEntryLabel());
7150 __ Bind(slow_path->GetExitLabel());
7151}
7152
7153void CodeGeneratorMIPS::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
7154 Location out,
7155 Location ref,
7156 Location obj,
7157 uint32_t offset,
7158 Location index) {
7159 if (kEmitCompilerReadBarrier) {
7160 // Baker's read barriers shall be handled by the fast path
7161 // (CodeGeneratorMIPS::GenerateReferenceLoadWithBakerReadBarrier).
7162 DCHECK(!kUseBakerReadBarrier);
7163 // If heap poisoning is enabled, unpoisoning will be taken care of
7164 // by the runtime within the slow path.
7165 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
7166 } else if (kPoisonHeapReferences) {
7167 __ UnpoisonHeapReference(out.AsRegister<Register>());
7168 }
7169}
7170
7171void CodeGeneratorMIPS::GenerateReadBarrierForRootSlow(HInstruction* instruction,
7172 Location out,
7173 Location root) {
7174 DCHECK(kEmitCompilerReadBarrier);
7175
7176 // Insert a slow path based read barrier *after* the GC root load.
7177 //
7178 // Note that GC roots are not affected by heap poisoning, so we do
7179 // not need to do anything special for this here.
7180 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01007181 new (GetScopedAllocator()) ReadBarrierForRootSlowPathMIPS(instruction, out, root);
Alexey Frunze15958152017-02-09 19:08:30 -08007182 AddSlowPath(slow_path);
7183
7184 __ B(slow_path->GetEntryLabel());
7185 __ Bind(slow_path->GetExitLabel());
7186}
7187
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007188void LocationsBuilderMIPS::VisitInstanceOf(HInstanceOf* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007189 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
7190 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Alexey Frunzec61c0762017-04-10 13:54:23 -07007191 bool baker_read_barrier_slow_path = false;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007192 switch (type_check_kind) {
7193 case TypeCheckKind::kExactCheck:
7194 case TypeCheckKind::kAbstractClassCheck:
7195 case TypeCheckKind::kClassHierarchyCheck:
7196 case TypeCheckKind::kArrayObjectCheck:
Alexey Frunze15958152017-02-09 19:08:30 -08007197 call_kind =
7198 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007199 baker_read_barrier_slow_path = kUseBakerReadBarrier;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007200 break;
7201 case TypeCheckKind::kArrayCheck:
7202 case TypeCheckKind::kUnresolvedCheck:
7203 case TypeCheckKind::kInterfaceCheck:
7204 call_kind = LocationSummary::kCallOnSlowPath;
7205 break;
7206 }
7207
Vladimir Markoca6fff82017-10-03 14:49:14 +01007208 LocationSummary* locations =
7209 new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind);
Alexey Frunzec61c0762017-04-10 13:54:23 -07007210 if (baker_read_barrier_slow_path) {
7211 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
7212 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007213 locations->SetInAt(0, Location::RequiresRegister());
7214 locations->SetInAt(1, Location::RequiresRegister());
7215 // The output does overlap inputs.
7216 // Note that TypeCheckSlowPathMIPS uses this register too.
7217 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Alexey Frunze15958152017-02-09 19:08:30 -08007218 locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007219}
7220
7221void InstructionCodeGeneratorMIPS::VisitInstanceOf(HInstanceOf* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007222 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007223 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08007224 Location obj_loc = locations->InAt(0);
7225 Register obj = obj_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007226 Register cls = locations->InAt(1).AsRegister<Register>();
Alexey Frunze15958152017-02-09 19:08:30 -08007227 Location out_loc = locations->Out();
7228 Register out = out_loc.AsRegister<Register>();
7229 const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind);
7230 DCHECK_LE(num_temps, 1u);
7231 Location maybe_temp_loc = (num_temps >= 1) ? locations->GetTemp(0) : Location::NoLocation();
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007232 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
7233 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
7234 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
7235 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007236 MipsLabel done;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007237 SlowPathCodeMIPS* slow_path = nullptr;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007238
7239 // Return 0 if `obj` is null.
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007240 // Avoid this check if we know `obj` is not null.
7241 if (instruction->MustDoNullCheck()) {
7242 __ Move(out, ZERO);
7243 __ Beqz(obj, &done);
7244 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007245
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007246 switch (type_check_kind) {
7247 case TypeCheckKind::kExactCheck: {
7248 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007249 GenerateReferenceLoadTwoRegisters(instruction,
7250 out_loc,
7251 obj_loc,
7252 class_offset,
7253 maybe_temp_loc,
7254 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007255 // Classes must be equal for the instanceof to succeed.
7256 __ Xor(out, out, cls);
7257 __ Sltiu(out, out, 1);
7258 break;
7259 }
7260
7261 case TypeCheckKind::kAbstractClassCheck: {
7262 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007263 GenerateReferenceLoadTwoRegisters(instruction,
7264 out_loc,
7265 obj_loc,
7266 class_offset,
7267 maybe_temp_loc,
7268 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007269 // If the class is abstract, we eagerly fetch the super class of the
7270 // object to avoid doing a comparison we know will fail.
7271 MipsLabel loop;
7272 __ Bind(&loop);
7273 // /* HeapReference<Class> */ out = out->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08007274 GenerateReferenceLoadOneRegister(instruction,
7275 out_loc,
7276 super_offset,
7277 maybe_temp_loc,
7278 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007279 // If `out` is null, we use it for the result, and jump to `done`.
7280 __ Beqz(out, &done);
7281 __ Bne(out, cls, &loop);
7282 __ LoadConst32(out, 1);
7283 break;
7284 }
7285
7286 case TypeCheckKind::kClassHierarchyCheck: {
7287 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007288 GenerateReferenceLoadTwoRegisters(instruction,
7289 out_loc,
7290 obj_loc,
7291 class_offset,
7292 maybe_temp_loc,
7293 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007294 // Walk over the class hierarchy to find a match.
7295 MipsLabel loop, success;
7296 __ Bind(&loop);
7297 __ Beq(out, cls, &success);
7298 // /* HeapReference<Class> */ out = out->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08007299 GenerateReferenceLoadOneRegister(instruction,
7300 out_loc,
7301 super_offset,
7302 maybe_temp_loc,
7303 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007304 __ Bnez(out, &loop);
7305 // If `out` is null, we use it for the result, and jump to `done`.
7306 __ B(&done);
7307 __ Bind(&success);
7308 __ LoadConst32(out, 1);
7309 break;
7310 }
7311
7312 case TypeCheckKind::kArrayObjectCheck: {
7313 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007314 GenerateReferenceLoadTwoRegisters(instruction,
7315 out_loc,
7316 obj_loc,
7317 class_offset,
7318 maybe_temp_loc,
7319 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007320 // Do an exact check.
7321 MipsLabel success;
7322 __ Beq(out, cls, &success);
7323 // Otherwise, we need to check that the object's class is a non-primitive array.
7324 // /* HeapReference<Class> */ out = out->component_type_
Alexey Frunze15958152017-02-09 19:08:30 -08007325 GenerateReferenceLoadOneRegister(instruction,
7326 out_loc,
7327 component_offset,
7328 maybe_temp_loc,
7329 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007330 // If `out` is null, we use it for the result, and jump to `done`.
7331 __ Beqz(out, &done);
7332 __ LoadFromOffset(kLoadUnsignedHalfword, out, out, primitive_offset);
7333 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
7334 __ Sltiu(out, out, 1);
7335 __ B(&done);
7336 __ Bind(&success);
7337 __ LoadConst32(out, 1);
7338 break;
7339 }
7340
7341 case TypeCheckKind::kArrayCheck: {
7342 // No read barrier since the slow path will retry upon failure.
7343 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007344 GenerateReferenceLoadTwoRegisters(instruction,
7345 out_loc,
7346 obj_loc,
7347 class_offset,
7348 maybe_temp_loc,
7349 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007350 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007351 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathMIPS(
7352 instruction, /* is_fatal */ false);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007353 codegen_->AddSlowPath(slow_path);
7354 __ Bne(out, cls, slow_path->GetEntryLabel());
7355 __ LoadConst32(out, 1);
7356 break;
7357 }
7358
7359 case TypeCheckKind::kUnresolvedCheck:
7360 case TypeCheckKind::kInterfaceCheck: {
7361 // Note that we indeed only call on slow path, but we always go
7362 // into the slow path for the unresolved and interface check
7363 // cases.
7364 //
7365 // We cannot directly call the InstanceofNonTrivial runtime
7366 // entry point without resorting to a type checking slow path
7367 // here (i.e. by calling InvokeRuntime directly), as it would
7368 // require to assign fixed registers for the inputs of this
7369 // HInstanceOf instruction (following the runtime calling
7370 // convention), which might be cluttered by the potential first
7371 // read barrier emission at the beginning of this method.
7372 //
7373 // TODO: Introduce a new runtime entry point taking the object
7374 // to test (instead of its class) as argument, and let it deal
7375 // with the read barrier issues. This will let us refactor this
7376 // case of the `switch` code as it was previously (with a direct
7377 // call to the runtime not using a type checking slow path).
7378 // This should also be beneficial for the other cases above.
7379 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007380 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathMIPS(
7381 instruction, /* is_fatal */ false);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007382 codegen_->AddSlowPath(slow_path);
7383 __ B(slow_path->GetEntryLabel());
7384 break;
7385 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007386 }
7387
7388 __ Bind(&done);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007389
7390 if (slow_path != nullptr) {
7391 __ Bind(slow_path->GetExitLabel());
7392 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007393}
7394
7395void LocationsBuilderMIPS::VisitIntConstant(HIntConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007396 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007397 locations->SetOut(Location::ConstantLocation(constant));
7398}
7399
7400void InstructionCodeGeneratorMIPS::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
7401 // Will be generated at use site.
7402}
7403
7404void LocationsBuilderMIPS::VisitNullConstant(HNullConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007405 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007406 locations->SetOut(Location::ConstantLocation(constant));
7407}
7408
7409void InstructionCodeGeneratorMIPS::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
7410 // Will be generated at use site.
7411}
7412
7413void LocationsBuilderMIPS::HandleInvoke(HInvoke* invoke) {
7414 InvokeDexCallingConventionVisitorMIPS calling_convention_visitor;
7415 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
7416}
7417
7418void LocationsBuilderMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
7419 HandleInvoke(invoke);
Alexey Frunze1b8464d2016-11-12 17:22:05 -08007420 // The register T7 is required to be used for the hidden argument in
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007421 // art_quick_imt_conflict_trampoline, so add the hidden argument.
Alexey Frunze1b8464d2016-11-12 17:22:05 -08007422 invoke->GetLocations()->AddTemp(Location::RegisterLocation(T7));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007423}
7424
7425void InstructionCodeGeneratorMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
7426 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
7427 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007428 Location receiver = invoke->GetLocations()->InAt(0);
7429 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -07007430 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007431
7432 // Set the hidden argument.
7433 __ LoadConst32(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
7434 invoke->GetDexMethodIndex());
7435
7436 // temp = object->GetClass();
7437 if (receiver.IsStackSlot()) {
7438 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
7439 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
7440 } else {
7441 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
7442 }
7443 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexey Frunzec061de12017-02-14 13:27:23 -08007444 // Instead of simply (possibly) unpoisoning `temp` here, we should
7445 // emit a read barrier for the previous class reference load.
7446 // However this is not required in practice, as this is an
7447 // intermediate/temporary reference and because the current
7448 // concurrent copying collector keeps the from-space memory
7449 // intact/accessible until the end of the marking phase (the
7450 // concurrent copying collector may not in the future).
7451 __ MaybeUnpoisonHeapReference(temp);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007452 __ LoadFromOffset(kLoadWord, temp, temp,
7453 mirror::Class::ImtPtrOffset(kMipsPointerSize).Uint32Value());
7454 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00007455 invoke->GetImtIndex(), kMipsPointerSize));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007456 // temp = temp->GetImtEntryAt(method_offset);
7457 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7458 // T9 = temp->GetEntryPoint();
7459 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
7460 // T9();
7461 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007462 __ NopIfNoReordering();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007463 DCHECK(!codegen_->IsLeafMethod());
7464 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
7465}
7466
7467void LocationsBuilderMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Chris Larsen701566a2015-10-27 15:29:13 -07007468 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
7469 if (intrinsic.TryDispatch(invoke)) {
7470 return;
7471 }
7472
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007473 HandleInvoke(invoke);
7474}
7475
7476void LocationsBuilderMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00007477 // Explicit clinit checks triggered by static invokes must have been pruned by
7478 // art::PrepareForRegisterAllocation.
7479 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007480
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007481 bool is_r6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007482 bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
7483 bool has_extra_input = invoke->HasPcRelativeMethodLoadKind() && !is_r6 && !has_irreducible_loops;
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007484
Chris Larsen701566a2015-10-27 15:29:13 -07007485 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
7486 if (intrinsic.TryDispatch(invoke)) {
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007487 if (invoke->GetLocations()->CanCall() && has_extra_input) {
7488 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::Any());
7489 }
Chris Larsen701566a2015-10-27 15:29:13 -07007490 return;
7491 }
7492
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007493 HandleInvoke(invoke);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007494
7495 // Add the extra input register if either the dex cache array base register
7496 // or the PC-relative base register for accessing literals is needed.
7497 if (has_extra_input) {
7498 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::RequiresRegister());
7499 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007500}
7501
Orion Hodsonac141392017-01-13 11:53:47 +00007502void LocationsBuilderMIPS::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
7503 HandleInvoke(invoke);
7504}
7505
7506void InstructionCodeGeneratorMIPS::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
7507 codegen_->GenerateInvokePolymorphicCall(invoke);
7508}
7509
Chris Larsen701566a2015-10-27 15:29:13 -07007510static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorMIPS* codegen) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007511 if (invoke->GetLocations()->Intrinsified()) {
Chris Larsen701566a2015-10-27 15:29:13 -07007512 IntrinsicCodeGeneratorMIPS intrinsic(codegen);
7513 intrinsic.Dispatch(invoke);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007514 return true;
7515 }
7516 return false;
7517}
7518
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007519HLoadString::LoadKind CodeGeneratorMIPS::GetSupportedLoadStringKind(
Alexey Frunze06a46c42016-07-19 15:00:40 -07007520 HLoadString::LoadKind desired_string_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007521 switch (desired_string_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007522 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01007523 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00007524 case HLoadString::LoadKind::kBssEntry:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007525 DCHECK(!Runtime::Current()->UseJitCompilation());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007526 break;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007527 case HLoadString::LoadKind::kJitTableAddress:
7528 DCHECK(Runtime::Current()->UseJitCompilation());
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007529 break;
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007530 case HLoadString::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007531 case HLoadString::LoadKind::kRuntimeCall:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007532 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007533 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007534 return desired_string_load_kind;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007535}
7536
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007537HLoadClass::LoadKind CodeGeneratorMIPS::GetSupportedLoadClassKind(
7538 HLoadClass::LoadKind desired_class_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007539 switch (desired_class_load_kind) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00007540 case HLoadClass::LoadKind::kInvalid:
7541 LOG(FATAL) << "UNREACHABLE";
7542 UNREACHABLE();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007543 case HLoadClass::LoadKind::kReferrersClass:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007544 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007545 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007546 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007547 case HLoadClass::LoadKind::kBssEntry:
7548 DCHECK(!Runtime::Current()->UseJitCompilation());
7549 break;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007550 case HLoadClass::LoadKind::kJitTableAddress:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007551 DCHECK(Runtime::Current()->UseJitCompilation());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007552 break;
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007553 case HLoadClass::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007554 case HLoadClass::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007555 break;
7556 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007557 return desired_class_load_kind;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007558}
7559
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007560Register CodeGeneratorMIPS::GetInvokeStaticOrDirectExtraParameter(HInvokeStaticOrDirect* invoke,
7561 Register temp) {
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007562 CHECK(!GetInstructionSetFeatures().IsR6());
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007563 CHECK(!GetGraph()->HasIrreducibleLoops());
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007564 CHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
7565 Location location = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
7566 if (!invoke->GetLocations()->Intrinsified()) {
7567 return location.AsRegister<Register>();
7568 }
7569 // For intrinsics we allow any location, so it may be on the stack.
7570 if (!location.IsRegister()) {
7571 __ LoadFromOffset(kLoadWord, temp, SP, location.GetStackIndex());
7572 return temp;
7573 }
7574 // For register locations, check if the register was saved. If so, get it from the stack.
7575 // Note: There is a chance that the register was saved but not overwritten, so we could
7576 // save one load. However, since this is just an intrinsic slow path we prefer this
7577 // simple and more robust approach rather that trying to determine if that's the case.
7578 SlowPathCode* slow_path = GetCurrentSlowPath();
7579 DCHECK(slow_path != nullptr); // For intrinsified invokes the call is emitted on the slow path.
7580 if (slow_path->IsCoreRegisterSaved(location.AsRegister<Register>())) {
7581 int stack_offset = slow_path->GetStackOffsetOfCoreRegister(location.AsRegister<Register>());
7582 __ LoadFromOffset(kLoadWord, temp, SP, stack_offset);
7583 return temp;
7584 }
7585 return location.AsRegister<Register>();
7586}
7587
Vladimir Markodc151b22015-10-15 18:02:30 +01007588HInvokeStaticOrDirect::DispatchInfo CodeGeneratorMIPS::GetSupportedInvokeStaticOrDirectDispatch(
7589 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01007590 HInvokeStaticOrDirect* invoke ATTRIBUTE_UNUSED) {
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007591 return desired_dispatch_info;
Vladimir Markodc151b22015-10-15 18:02:30 +01007592}
7593
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007594void CodeGeneratorMIPS::GenerateStaticOrDirectCall(
7595 HInvokeStaticOrDirect* invoke, Location temp, SlowPathCode* slow_path) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007596 // All registers are assumed to be correctly set up per the calling convention.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007597 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007598 HInvokeStaticOrDirect::MethodLoadKind method_load_kind = invoke->GetMethodLoadKind();
7599 HInvokeStaticOrDirect::CodePtrLocation code_ptr_location = invoke->GetCodePtrLocation();
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007600 bool is_r6 = GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007601 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
7602 Register base_reg = (invoke->HasPcRelativeMethodLoadKind() && !is_r6 && !has_irreducible_loops)
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007603 ? GetInvokeStaticOrDirectExtraParameter(invoke, temp.AsRegister<Register>())
7604 : ZERO;
7605
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007606 switch (method_load_kind) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007607 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007608 // temp = thread->string_init_entrypoint
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007609 uint32_t offset =
7610 GetThreadOffset<kMipsPointerSize>(invoke->GetStringInitEntryPoint()).Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007611 __ LoadFromOffset(kLoadWord,
7612 temp.AsRegister<Register>(),
7613 TR,
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007614 offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007615 break;
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007616 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007617 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00007618 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007619 break;
Vladimir Marko65979462017-05-19 17:25:12 +01007620 case HInvokeStaticOrDirect::MethodLoadKind::kBootImageLinkTimePcRelative: {
7621 DCHECK(GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007622 PcRelativePatchInfo* info_high = NewPcRelativeMethodPatch(invoke->GetTargetMethod());
7623 PcRelativePatchInfo* info_low =
7624 NewPcRelativeMethodPatch(invoke->GetTargetMethod(), info_high);
Vladimir Marko65979462017-05-19 17:25:12 +01007625 Register temp_reg = temp.AsRegister<Register>();
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007626 EmitPcRelativeAddressPlaceholderHigh(info_high, TMP, base_reg);
7627 __ Addiu(temp_reg, TMP, /* placeholder */ 0x5678, &info_low->label);
Vladimir Marko65979462017-05-19 17:25:12 +01007628 break;
7629 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007630 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
7631 __ LoadConst32(temp.AsRegister<Register>(), invoke->GetMethodAddress());
7632 break;
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007633 case HInvokeStaticOrDirect::MethodLoadKind::kBssEntry: {
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007634 PcRelativePatchInfo* info_high = NewMethodBssEntryPatch(
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007635 MethodReference(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex()));
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007636 PcRelativePatchInfo* info_low = NewMethodBssEntryPatch(
7637 MethodReference(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex()), info_high);
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007638 Register temp_reg = temp.AsRegister<Register>();
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007639 EmitPcRelativeAddressPlaceholderHigh(info_high, TMP, base_reg);
7640 __ Lw(temp_reg, TMP, /* placeholder */ 0x5678, &info_low->label);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007641 break;
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007642 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007643 case HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall: {
7644 GenerateInvokeStaticOrDirectRuntimeCall(invoke, temp, slow_path);
7645 return; // No code pointer retrieval; the runtime performs the call directly.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007646 }
7647 }
7648
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007649 switch (code_ptr_location) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007650 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007651 __ Bal(&frame_entry_label_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007652 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007653 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
7654 // T9 = callee_method->entry_point_from_quick_compiled_code_;
Goran Jakovljevic1a878372015-10-26 14:28:52 +01007655 __ LoadFromOffset(kLoadWord,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007656 T9,
7657 callee_method.AsRegister<Register>(),
7658 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07007659 kMipsPointerSize).Int32Value());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007660 // T9()
7661 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007662 __ NopIfNoReordering();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007663 break;
7664 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007665 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
7666
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007667 DCHECK(!IsLeafMethod());
7668}
7669
7670void InstructionCodeGeneratorMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00007671 // Explicit clinit checks triggered by static invokes must have been pruned by
7672 // art::PrepareForRegisterAllocation.
7673 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007674
7675 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
7676 return;
7677 }
7678
7679 LocationSummary* locations = invoke->GetLocations();
7680 codegen_->GenerateStaticOrDirectCall(invoke,
7681 locations->HasTemps()
7682 ? locations->GetTemp(0)
7683 : Location::NoLocation());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007684}
7685
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007686void CodeGeneratorMIPS::GenerateVirtualCall(
7687 HInvokeVirtual* invoke, Location temp_location, SlowPathCode* slow_path) {
Goran Jakovljevice919b072016-10-04 10:17:34 +02007688 // Use the calling convention instead of the location of the receiver, as
7689 // intrinsics may have put the receiver in a different register. In the intrinsics
7690 // slow path, the arguments have been moved to the right place, so here we are
7691 // guaranteed that the receiver is the first register of the calling convention.
7692 InvokeDexCallingConvention calling_convention;
7693 Register receiver = calling_convention.GetRegisterAt(0);
7694
Chris Larsen3acee732015-11-18 13:31:08 -08007695 Register temp = temp_location.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007696 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
7697 invoke->GetVTableIndex(), kMipsPointerSize).SizeValue();
7698 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -07007699 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007700
7701 // temp = object->GetClass();
Goran Jakovljevice919b072016-10-04 10:17:34 +02007702 __ LoadFromOffset(kLoadWord, temp, receiver, class_offset);
Chris Larsen3acee732015-11-18 13:31:08 -08007703 MaybeRecordImplicitNullCheck(invoke);
Alexey Frunzec061de12017-02-14 13:27:23 -08007704 // Instead of simply (possibly) unpoisoning `temp` here, we should
7705 // emit a read barrier for the previous class reference load.
7706 // However this is not required in practice, as this is an
7707 // intermediate/temporary reference and because the current
7708 // concurrent copying collector keeps the from-space memory
7709 // intact/accessible until the end of the marking phase (the
7710 // concurrent copying collector may not in the future).
7711 __ MaybeUnpoisonHeapReference(temp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007712 // temp = temp->GetMethodAt(method_offset);
7713 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7714 // T9 = temp->GetEntryPoint();
7715 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
7716 // T9();
7717 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007718 __ NopIfNoReordering();
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007719 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
Chris Larsen3acee732015-11-18 13:31:08 -08007720}
7721
7722void InstructionCodeGeneratorMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
7723 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
7724 return;
7725 }
7726
7727 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007728 DCHECK(!codegen_->IsLeafMethod());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007729}
7730
7731void LocationsBuilderMIPS::VisitLoadClass(HLoadClass* cls) {
Vladimir Marko41559982017-01-06 14:04:23 +00007732 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007733 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007734 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007735 Location loc = Location::RegisterLocation(calling_convention.GetRegisterAt(0));
7736 CodeGenerator::CreateLoadClassRuntimeCallLocationSummary(cls, loc, loc);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007737 return;
7738 }
Vladimir Marko41559982017-01-06 14:04:23 +00007739 DCHECK(!cls->NeedsAccessCheck());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007740 const bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007741 const bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
Alexey Frunze15958152017-02-09 19:08:30 -08007742 const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage();
7743 LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier)
Alexey Frunze06a46c42016-07-19 15:00:40 -07007744 ? LocationSummary::kCallOnSlowPath
7745 : LocationSummary::kNoCall;
Vladimir Markoca6fff82017-10-03 14:49:14 +01007746 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(cls, call_kind);
Alexey Frunzec61c0762017-04-10 13:54:23 -07007747 if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) {
7748 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
7749 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007750 switch (load_kind) {
7751 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007752 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007753 case HLoadClass::LoadKind::kBootImageAddress:
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007754 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007755 case HLoadClass::LoadKind::kBssEntry:
Alexey Frunzec61c0762017-04-10 13:54:23 -07007756 if (isR6) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007757 break;
7758 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007759 if (has_irreducible_loops) {
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07007760 if (load_kind != HLoadClass::LoadKind::kBootImageAddress) {
7761 codegen_->ClobberRA();
7762 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007763 break;
7764 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007765 FALLTHROUGH_INTENDED;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007766 case HLoadClass::LoadKind::kReferrersClass:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007767 locations->SetInAt(0, Location::RequiresRegister());
7768 break;
7769 default:
7770 break;
7771 }
7772 locations->SetOut(Location::RequiresRegister());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007773 if (load_kind == HLoadClass::LoadKind::kBssEntry) {
7774 if (!kUseReadBarrier || kUseBakerReadBarrier) {
7775 // Rely on the type resolution or initialization and marking to save everything we need.
Alexey Frunzec61c0762017-04-10 13:54:23 -07007776 RegisterSet caller_saves = RegisterSet::Empty();
7777 InvokeRuntimeCallingConvention calling_convention;
7778 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
7779 locations->SetCustomSlowPathCallerSaves(caller_saves);
7780 } else {
7781 // For non-Baker read barriers we have a temp-clobbering call.
7782 }
7783 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007784}
7785
Nicolas Geoffray5247c082017-01-13 14:17:29 +00007786// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
7787// move.
7788void InstructionCodeGeneratorMIPS::VisitLoadClass(HLoadClass* cls) NO_THREAD_SAFETY_ANALYSIS {
Vladimir Marko41559982017-01-06 14:04:23 +00007789 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007790 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Vladimir Marko41559982017-01-06 14:04:23 +00007791 codegen_->GenerateLoadClassRuntimeCall(cls);
Pavle Batutae87a7182015-10-28 13:10:42 +01007792 return;
7793 }
Vladimir Marko41559982017-01-06 14:04:23 +00007794 DCHECK(!cls->NeedsAccessCheck());
Pavle Batutae87a7182015-10-28 13:10:42 +01007795
Vladimir Marko41559982017-01-06 14:04:23 +00007796 LocationSummary* locations = cls->GetLocations();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007797 Location out_loc = locations->Out();
7798 Register out = out_loc.AsRegister<Register>();
7799 Register base_or_current_method_reg;
7800 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007801 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007802 switch (load_kind) {
7803 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007804 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007805 case HLoadClass::LoadKind::kBootImageAddress:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007806 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007807 case HLoadClass::LoadKind::kBssEntry:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007808 base_or_current_method_reg =
7809 (isR6 || has_irreducible_loops) ? ZERO : locations->InAt(0).AsRegister<Register>();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007810 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007811 case HLoadClass::LoadKind::kReferrersClass:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007812 case HLoadClass::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007813 base_or_current_method_reg = locations->InAt(0).AsRegister<Register>();
7814 break;
7815 default:
7816 base_or_current_method_reg = ZERO;
7817 break;
7818 }
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00007819
Alexey Frunze15958152017-02-09 19:08:30 -08007820 const ReadBarrierOption read_barrier_option = cls->IsInBootImage()
7821 ? kWithoutReadBarrier
7822 : kCompilerReadBarrierOption;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007823 bool generate_null_check = false;
7824 switch (load_kind) {
7825 case HLoadClass::LoadKind::kReferrersClass: {
7826 DCHECK(!cls->CanCallRuntime());
7827 DCHECK(!cls->MustGenerateClinitCheck());
7828 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
7829 GenerateGcRootFieldLoad(cls,
7830 out_loc,
7831 base_or_current_method_reg,
Alexey Frunze15958152017-02-09 19:08:30 -08007832 ArtMethod::DeclaringClassOffset().Int32Value(),
7833 read_barrier_option);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007834 break;
7835 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007836 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007837 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze15958152017-02-09 19:08:30 -08007838 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007839 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Alexey Frunze06a46c42016-07-19 15:00:40 -07007840 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007841 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7842 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007843 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
7844 out,
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007845 base_or_current_method_reg);
7846 __ Addiu(out, out, /* placeholder */ 0x5678, &info_low->label);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007847 break;
7848 }
7849 case HLoadClass::LoadKind::kBootImageAddress: {
Alexey Frunze15958152017-02-09 19:08:30 -08007850 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00007851 uint32_t address = dchecked_integral_cast<uint32_t>(
7852 reinterpret_cast<uintptr_t>(cls->GetClass().Get()));
7853 DCHECK_NE(address, 0u);
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007854 if (isR6 || !has_irreducible_loops) {
7855 __ LoadLiteral(out,
7856 base_or_current_method_reg,
7857 codegen_->DeduplicateBootImageAddressLiteral(address));
7858 } else {
7859 __ LoadConst32(out, address);
7860 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007861 break;
7862 }
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007863 case HLoadClass::LoadKind::kBootImageClassTable: {
7864 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
7865 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
7866 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex());
7867 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7868 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex(), info_high);
7869 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
7870 out,
7871 base_or_current_method_reg);
7872 __ Lw(out, out, /* placeholder */ 0x5678, &info_low->label);
7873 // Extract the reference from the slot data, i.e. clear the hash bits.
7874 int32_t masked_hash = ClassTable::TableSlot::MaskHash(
7875 ComputeModifiedUtf8Hash(cls->GetDexFile().StringByTypeIdx(cls->GetTypeIndex())));
7876 if (masked_hash != 0) {
7877 __ Addiu(out, out, -masked_hash);
7878 }
7879 break;
7880 }
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007881 case HLoadClass::LoadKind::kBssEntry: {
Vladimir Markof3c52b42017-11-17 17:32:12 +00007882 CodeGeneratorMIPS::PcRelativePatchInfo* bss_info_high =
7883 codegen_->NewTypeBssEntryPatch(cls->GetDexFile(), cls->GetTypeIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007884 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7885 codegen_->NewTypeBssEntryPatch(cls->GetDexFile(), cls->GetTypeIndex(), bss_info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007886 codegen_->EmitPcRelativeAddressPlaceholderHigh(bss_info_high,
Vladimir Markof3c52b42017-11-17 17:32:12 +00007887 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007888 base_or_current_method_reg);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007889 GenerateGcRootFieldLoad(cls,
7890 out_loc,
Vladimir Markof3c52b42017-11-17 17:32:12 +00007891 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007892 /* placeholder */ 0x5678,
7893 read_barrier_option,
7894 &info_low->label);
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007895 generate_null_check = true;
7896 break;
7897 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007898 case HLoadClass::LoadKind::kJitTableAddress: {
Alexey Frunze627c1a02017-01-30 19:28:14 -08007899 CodeGeneratorMIPS::JitPatchInfo* info = codegen_->NewJitRootClassPatch(cls->GetDexFile(),
7900 cls->GetTypeIndex(),
7901 cls->GetClass());
7902 bool reordering = __ SetReorder(false);
7903 __ Bind(&info->high_label);
7904 __ Lui(out, /* placeholder */ 0x1234);
Alexey Frunze627c1a02017-01-30 19:28:14 -08007905 __ SetReorder(reordering);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007906 GenerateGcRootFieldLoad(cls,
7907 out_loc,
7908 out,
7909 /* placeholder */ 0x5678,
7910 read_barrier_option,
7911 &info->low_label);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007912 break;
7913 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007914 case HLoadClass::LoadKind::kRuntimeCall:
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00007915 case HLoadClass::LoadKind::kInvalid:
Vladimir Marko41559982017-01-06 14:04:23 +00007916 LOG(FATAL) << "UNREACHABLE";
7917 UNREACHABLE();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007918 }
7919
7920 if (generate_null_check || cls->MustGenerateClinitCheck()) {
7921 DCHECK(cls->CanCallRuntime());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007922 SlowPathCodeMIPS* slow_path = new (codegen_->GetScopedAllocator()) LoadClassSlowPathMIPS(
Vladimir Markof3c52b42017-11-17 17:32:12 +00007923 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007924 codegen_->AddSlowPath(slow_path);
7925 if (generate_null_check) {
7926 __ Beqz(out, slow_path->GetEntryLabel());
7927 }
7928 if (cls->MustGenerateClinitCheck()) {
7929 GenerateClassInitializationCheck(slow_path, out);
7930 } else {
7931 __ Bind(slow_path->GetExitLabel());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007932 }
7933 }
7934}
7935
7936static int32_t GetExceptionTlsOffset() {
Andreas Gampe542451c2016-07-26 09:02:02 -07007937 return Thread::ExceptionOffset<kMipsPointerSize>().Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007938}
7939
7940void LocationsBuilderMIPS::VisitLoadException(HLoadException* load) {
7941 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007942 new (GetGraph()->GetAllocator()) LocationSummary(load, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007943 locations->SetOut(Location::RequiresRegister());
7944}
7945
7946void InstructionCodeGeneratorMIPS::VisitLoadException(HLoadException* load) {
7947 Register out = load->GetLocations()->Out().AsRegister<Register>();
7948 __ LoadFromOffset(kLoadWord, out, TR, GetExceptionTlsOffset());
7949}
7950
7951void LocationsBuilderMIPS::VisitClearException(HClearException* clear) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007952 new (GetGraph()->GetAllocator()) LocationSummary(clear, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007953}
7954
7955void InstructionCodeGeneratorMIPS::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
7956 __ StoreToOffset(kStoreWord, ZERO, TR, GetExceptionTlsOffset());
7957}
7958
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007959void LocationsBuilderMIPS::VisitLoadString(HLoadString* load) {
Alexey Frunzef63f5692016-12-13 17:43:11 -08007960 LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load);
Vladimir Markoca6fff82017-10-03 14:49:14 +01007961 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(load, call_kind);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007962 HLoadString::LoadKind load_kind = load->GetLoadKind();
Alexey Frunzec61c0762017-04-10 13:54:23 -07007963 const bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007964 const bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007965 switch (load_kind) {
7966 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007967 case HLoadString::LoadKind::kBootImageAddress:
7968 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01007969 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00007970 case HLoadString::LoadKind::kBssEntry:
Alexey Frunzec61c0762017-04-10 13:54:23 -07007971 if (isR6) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007972 break;
7973 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007974 if (has_irreducible_loops) {
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07007975 if (load_kind != HLoadString::LoadKind::kBootImageAddress) {
7976 codegen_->ClobberRA();
7977 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007978 break;
7979 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007980 FALLTHROUGH_INTENDED;
7981 // We need an extra register for PC-relative dex cache accesses.
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007982 case HLoadString::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007983 locations->SetInAt(0, Location::RequiresRegister());
7984 break;
7985 default:
7986 break;
7987 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007988 if (load_kind == HLoadString::LoadKind::kRuntimeCall) {
Alexey Frunzebb51df82016-11-01 16:07:32 -07007989 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007990 locations->SetOut(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Alexey Frunzebb51df82016-11-01 16:07:32 -07007991 } else {
7992 locations->SetOut(Location::RequiresRegister());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007993 if (load_kind == HLoadString::LoadKind::kBssEntry) {
7994 if (!kUseReadBarrier || kUseBakerReadBarrier) {
7995 // Rely on the pResolveString and marking to save everything we need.
Alexey Frunzec61c0762017-04-10 13:54:23 -07007996 RegisterSet caller_saves = RegisterSet::Empty();
7997 InvokeRuntimeCallingConvention calling_convention;
7998 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
7999 locations->SetCustomSlowPathCallerSaves(caller_saves);
8000 } else {
8001 // For non-Baker read barriers we have a temp-clobbering call.
8002 }
8003 }
Alexey Frunzebb51df82016-11-01 16:07:32 -07008004 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008005}
8006
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00008007// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
8008// move.
8009void InstructionCodeGeneratorMIPS::VisitLoadString(HLoadString* load) NO_THREAD_SAFETY_ANALYSIS {
Alexey Frunze06a46c42016-07-19 15:00:40 -07008010 HLoadString::LoadKind load_kind = load->GetLoadKind();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008011 LocationSummary* locations = load->GetLocations();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008012 Location out_loc = locations->Out();
8013 Register out = out_loc.AsRegister<Register>();
8014 Register base_or_current_method_reg;
8015 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008016 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008017 switch (load_kind) {
8018 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07008019 case HLoadString::LoadKind::kBootImageAddress:
8020 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008021 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00008022 case HLoadString::LoadKind::kBssEntry:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008023 base_or_current_method_reg =
8024 (isR6 || has_irreducible_loops) ? ZERO : locations->InAt(0).AsRegister<Register>();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008025 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008026 default:
8027 base_or_current_method_reg = ZERO;
8028 break;
8029 }
8030
8031 switch (load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07008032 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Markoaad75c62016-10-03 08:46:48 +00008033 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008034 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Vladimir Marko6bec91c2017-01-09 15:03:12 +00008035 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008036 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8037 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008038 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
8039 out,
Alexey Frunzea663d9d2017-07-31 18:43:18 -07008040 base_or_current_method_reg);
8041 __ Addiu(out, out, /* placeholder */ 0x5678, &info_low->label);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008042 return;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008043 }
8044 case HLoadString::LoadKind::kBootImageAddress: {
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00008045 uint32_t address = dchecked_integral_cast<uint32_t>(
8046 reinterpret_cast<uintptr_t>(load->GetString().Get()));
8047 DCHECK_NE(address, 0u);
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008048 if (isR6 || !has_irreducible_loops) {
8049 __ LoadLiteral(out,
8050 base_or_current_method_reg,
8051 codegen_->DeduplicateBootImageAddressLiteral(address));
8052 } else {
8053 __ LoadConst32(out, address);
8054 }
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008055 return;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008056 }
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008057 case HLoadString::LoadKind::kBootImageInternTable: {
Vladimir Markoaad75c62016-10-03 08:46:48 +00008058 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008059 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Vladimir Marko6bec91c2017-01-09 15:03:12 +00008060 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008061 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8062 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008063 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
8064 out,
8065 base_or_current_method_reg);
8066 __ Lw(out, out, /* placeholder */ 0x5678, &info_low->label);
8067 return;
8068 }
8069 case HLoadString::LoadKind::kBssEntry: {
8070 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
8071 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
8072 codegen_->NewStringBssEntryPatch(load->GetDexFile(), load->GetStringIndex());
8073 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8074 codegen_->NewStringBssEntryPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008075 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
Vladimir Markof3c52b42017-11-17 17:32:12 +00008076 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008077 base_or_current_method_reg);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008078 GenerateGcRootFieldLoad(load,
8079 out_loc,
Vladimir Markof3c52b42017-11-17 17:32:12 +00008080 out,
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008081 /* placeholder */ 0x5678,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008082 kCompilerReadBarrierOption,
8083 &info_low->label);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008084 SlowPathCodeMIPS* slow_path =
Vladimir Markof3c52b42017-11-17 17:32:12 +00008085 new (codegen_->GetScopedAllocator()) LoadStringSlowPathMIPS(load);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008086 codegen_->AddSlowPath(slow_path);
8087 __ Beqz(out, slow_path->GetEntryLabel());
8088 __ Bind(slow_path->GetExitLabel());
8089 return;
8090 }
Alexey Frunze627c1a02017-01-30 19:28:14 -08008091 case HLoadString::LoadKind::kJitTableAddress: {
8092 CodeGeneratorMIPS::JitPatchInfo* info =
8093 codegen_->NewJitRootStringPatch(load->GetDexFile(),
8094 load->GetStringIndex(),
8095 load->GetString());
8096 bool reordering = __ SetReorder(false);
8097 __ Bind(&info->high_label);
8098 __ Lui(out, /* placeholder */ 0x1234);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008099 __ SetReorder(reordering);
Alexey Frunze15958152017-02-09 19:08:30 -08008100 GenerateGcRootFieldLoad(load,
8101 out_loc,
8102 out,
8103 /* placeholder */ 0x5678,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008104 kCompilerReadBarrierOption,
8105 &info->low_label);
Alexey Frunze627c1a02017-01-30 19:28:14 -08008106 return;
8107 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07008108 default:
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07008109 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008110 }
Nicolas Geoffray917d0162015-11-24 18:25:35 +00008111
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07008112 // TODO: Re-add the compiler code to do string dex cache lookup again.
Vladimir Marko847e6ce2017-06-02 13:55:07 +01008113 DCHECK(load_kind == HLoadString::LoadKind::kRuntimeCall);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008114 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07008115 DCHECK_EQ(calling_convention.GetRegisterAt(0), out);
Andreas Gampe8a0128a2016-11-28 07:38:35 -08008116 __ LoadConst32(calling_convention.GetRegisterAt(0), load->GetStringIndex().index_);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008117 codegen_->InvokeRuntime(kQuickResolveString, load, load->GetDexPc());
8118 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008119}
8120
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008121void LocationsBuilderMIPS::VisitLongConstant(HLongConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008122 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008123 locations->SetOut(Location::ConstantLocation(constant));
8124}
8125
8126void InstructionCodeGeneratorMIPS::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
8127 // Will be generated at use site.
8128}
8129
8130void LocationsBuilderMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008131 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8132 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008133 InvokeRuntimeCallingConvention calling_convention;
8134 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8135}
8136
8137void InstructionCodeGeneratorMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
8138 if (instruction->IsEnter()) {
Serban Constantinescufca16662016-07-14 09:21:59 +01008139 codegen_->InvokeRuntime(kQuickLockObject, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008140 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
8141 } else {
Serban Constantinescufca16662016-07-14 09:21:59 +01008142 codegen_->InvokeRuntime(kQuickUnlockObject, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008143 }
8144 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
8145}
8146
8147void LocationsBuilderMIPS::VisitMul(HMul* mul) {
8148 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008149 new (GetGraph()->GetAllocator()) LocationSummary(mul, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008150 switch (mul->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008151 case DataType::Type::kInt32:
8152 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008153 locations->SetInAt(0, Location::RequiresRegister());
8154 locations->SetInAt(1, Location::RequiresRegister());
8155 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8156 break;
8157
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008158 case DataType::Type::kFloat32:
8159 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008160 locations->SetInAt(0, Location::RequiresFpuRegister());
8161 locations->SetInAt(1, Location::RequiresFpuRegister());
8162 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8163 break;
8164
8165 default:
8166 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
8167 }
8168}
8169
8170void InstructionCodeGeneratorMIPS::VisitMul(HMul* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008171 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008172 LocationSummary* locations = instruction->GetLocations();
8173 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
8174
8175 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008176 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008177 Register dst = locations->Out().AsRegister<Register>();
8178 Register lhs = locations->InAt(0).AsRegister<Register>();
8179 Register rhs = locations->InAt(1).AsRegister<Register>();
8180
8181 if (isR6) {
8182 __ MulR6(dst, lhs, rhs);
8183 } else {
8184 __ MulR2(dst, lhs, rhs);
8185 }
8186 break;
8187 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008188 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008189 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8190 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8191 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8192 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
8193 Register rhs_high = locations->InAt(1).AsRegisterPairHigh<Register>();
8194 Register rhs_low = locations->InAt(1).AsRegisterPairLow<Register>();
8195
8196 // Extra checks to protect caused by the existance of A1_A2.
8197 // The algorithm is wrong if dst_high is either lhs_lo or rhs_lo:
8198 // (e.g. lhs=a0_a1, rhs=a2_a3 and dst=a1_a2).
8199 DCHECK_NE(dst_high, lhs_low);
8200 DCHECK_NE(dst_high, rhs_low);
8201
8202 // A_B * C_D
8203 // dst_hi: [ low(A*D) + low(B*C) + hi(B*D) ]
8204 // dst_lo: [ low(B*D) ]
8205 // Note: R2 and R6 MUL produce the low 32 bit of the multiplication result.
8206
8207 if (isR6) {
8208 __ MulR6(TMP, lhs_high, rhs_low);
8209 __ MulR6(dst_high, lhs_low, rhs_high);
8210 __ Addu(dst_high, dst_high, TMP);
8211 __ MuhuR6(TMP, lhs_low, rhs_low);
8212 __ Addu(dst_high, dst_high, TMP);
8213 __ MulR6(dst_low, lhs_low, rhs_low);
8214 } else {
8215 __ MulR2(TMP, lhs_high, rhs_low);
8216 __ MulR2(dst_high, lhs_low, rhs_high);
8217 __ Addu(dst_high, dst_high, TMP);
8218 __ MultuR2(lhs_low, rhs_low);
8219 __ Mfhi(TMP);
8220 __ Addu(dst_high, dst_high, TMP);
8221 __ Mflo(dst_low);
8222 }
8223 break;
8224 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008225 case DataType::Type::kFloat32:
8226 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008227 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8228 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
8229 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008230 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008231 __ MulS(dst, lhs, rhs);
8232 } else {
8233 __ MulD(dst, lhs, rhs);
8234 }
8235 break;
8236 }
8237 default:
8238 LOG(FATAL) << "Unexpected mul type " << type;
8239 }
8240}
8241
8242void LocationsBuilderMIPS::VisitNeg(HNeg* neg) {
8243 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008244 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008245 switch (neg->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008246 case DataType::Type::kInt32:
8247 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008248 locations->SetInAt(0, Location::RequiresRegister());
8249 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8250 break;
8251
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008252 case DataType::Type::kFloat32:
8253 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008254 locations->SetInAt(0, Location::RequiresFpuRegister());
8255 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8256 break;
8257
8258 default:
8259 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
8260 }
8261}
8262
8263void InstructionCodeGeneratorMIPS::VisitNeg(HNeg* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008264 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008265 LocationSummary* locations = instruction->GetLocations();
8266
8267 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008268 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008269 Register dst = locations->Out().AsRegister<Register>();
8270 Register src = locations->InAt(0).AsRegister<Register>();
8271 __ Subu(dst, ZERO, src);
8272 break;
8273 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008274 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008275 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8276 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8277 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8278 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8279 __ Subu(dst_low, ZERO, src_low);
8280 __ Sltu(TMP, ZERO, dst_low);
8281 __ Subu(dst_high, ZERO, src_high);
8282 __ Subu(dst_high, dst_high, TMP);
8283 break;
8284 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008285 case DataType::Type::kFloat32:
8286 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008287 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8288 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008289 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008290 __ NegS(dst, src);
8291 } else {
8292 __ NegD(dst, src);
8293 }
8294 break;
8295 }
8296 default:
8297 LOG(FATAL) << "Unexpected neg type " << type;
8298 }
8299}
8300
8301void LocationsBuilderMIPS::VisitNewArray(HNewArray* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008302 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8303 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008304 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008305 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kReference));
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00008306 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8307 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008308}
8309
8310void InstructionCodeGeneratorMIPS::VisitNewArray(HNewArray* instruction) {
Alexey Frunzec061de12017-02-14 13:27:23 -08008311 // Note: if heap poisoning is enabled, the entry point takes care
8312 // of poisoning the reference.
Goran Jakovljevic854df412017-06-27 14:41:39 +02008313 QuickEntrypointEnum entrypoint =
8314 CodeGenerator::GetArrayAllocationEntrypoint(instruction->GetLoadClass()->GetClass());
8315 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc());
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00008316 CheckEntrypointTypes<kQuickAllocArrayResolved, void*, mirror::Class*, int32_t>();
Goran Jakovljevic854df412017-06-27 14:41:39 +02008317 DCHECK(!codegen_->IsLeafMethod());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008318}
8319
8320void LocationsBuilderMIPS::VisitNewInstance(HNewInstance* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008321 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8322 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008323 InvokeRuntimeCallingConvention calling_convention;
David Brazdil6de19382016-01-08 17:37:10 +00008324 if (instruction->IsStringAlloc()) {
8325 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
8326 } else {
8327 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
David Brazdil6de19382016-01-08 17:37:10 +00008328 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008329 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kReference));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008330}
8331
8332void InstructionCodeGeneratorMIPS::VisitNewInstance(HNewInstance* instruction) {
Alexey Frunzec061de12017-02-14 13:27:23 -08008333 // Note: if heap poisoning is enabled, the entry point takes care
8334 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00008335 if (instruction->IsStringAlloc()) {
8336 // String is allocated through StringFactory. Call NewEmptyString entry point.
8337 Register temp = instruction->GetLocations()->GetTemp(0).AsRegister<Register>();
Andreas Gampe542451c2016-07-26 09:02:02 -07008338 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
David Brazdil6de19382016-01-08 17:37:10 +00008339 __ LoadFromOffset(kLoadWord, temp, TR, QUICK_ENTRY_POINT(pNewEmptyString));
8340 __ LoadFromOffset(kLoadWord, T9, temp, code_offset.Int32Value());
8341 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07008342 __ NopIfNoReordering();
David Brazdil6de19382016-01-08 17:37:10 +00008343 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
8344 } else {
Serban Constantinescufca16662016-07-14 09:21:59 +01008345 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Nicolas Geoffray0d3998b2017-01-12 15:35:12 +00008346 CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>();
David Brazdil6de19382016-01-08 17:37:10 +00008347 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008348}
8349
8350void LocationsBuilderMIPS::VisitNot(HNot* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008351 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008352 locations->SetInAt(0, Location::RequiresRegister());
8353 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8354}
8355
8356void InstructionCodeGeneratorMIPS::VisitNot(HNot* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008357 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008358 LocationSummary* locations = instruction->GetLocations();
8359
8360 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008361 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008362 Register dst = locations->Out().AsRegister<Register>();
8363 Register src = locations->InAt(0).AsRegister<Register>();
8364 __ Nor(dst, src, ZERO);
8365 break;
8366 }
8367
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008368 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008369 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8370 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8371 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8372 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8373 __ Nor(dst_high, src_high, ZERO);
8374 __ Nor(dst_low, src_low, ZERO);
8375 break;
8376 }
8377
8378 default:
8379 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
8380 }
8381}
8382
8383void LocationsBuilderMIPS::VisitBooleanNot(HBooleanNot* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008384 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008385 locations->SetInAt(0, Location::RequiresRegister());
8386 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8387}
8388
8389void InstructionCodeGeneratorMIPS::VisitBooleanNot(HBooleanNot* instruction) {
8390 LocationSummary* locations = instruction->GetLocations();
8391 __ Xori(locations->Out().AsRegister<Register>(),
8392 locations->InAt(0).AsRegister<Register>(),
8393 1);
8394}
8395
8396void LocationsBuilderMIPS::VisitNullCheck(HNullCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01008397 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
8398 locations->SetInAt(0, Location::RequiresRegister());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008399}
8400
Calin Juravle2ae48182016-03-16 14:05:09 +00008401void CodeGeneratorMIPS::GenerateImplicitNullCheck(HNullCheck* instruction) {
8402 if (CanMoveNullCheckToUser(instruction)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008403 return;
8404 }
8405 Location obj = instruction->GetLocations()->InAt(0);
8406
8407 __ Lw(ZERO, obj.AsRegister<Register>(), 0);
Calin Juravle2ae48182016-03-16 14:05:09 +00008408 RecordPcInfo(instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008409}
8410
Calin Juravle2ae48182016-03-16 14:05:09 +00008411void CodeGeneratorMIPS::GenerateExplicitNullCheck(HNullCheck* instruction) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01008412 SlowPathCodeMIPS* slow_path = new (GetScopedAllocator()) NullCheckSlowPathMIPS(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00008413 AddSlowPath(slow_path);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008414
8415 Location obj = instruction->GetLocations()->InAt(0);
8416
8417 __ Beqz(obj.AsRegister<Register>(), slow_path->GetEntryLabel());
8418}
8419
8420void InstructionCodeGeneratorMIPS::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00008421 codegen_->GenerateNullCheck(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008422}
8423
8424void LocationsBuilderMIPS::VisitOr(HOr* instruction) {
8425 HandleBinaryOp(instruction);
8426}
8427
8428void InstructionCodeGeneratorMIPS::VisitOr(HOr* instruction) {
8429 HandleBinaryOp(instruction);
8430}
8431
8432void LocationsBuilderMIPS::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
8433 LOG(FATAL) << "Unreachable";
8434}
8435
8436void InstructionCodeGeneratorMIPS::VisitParallelMove(HParallelMove* instruction) {
Vladimir Markobea75ff2017-10-11 20:39:54 +01008437 if (instruction->GetNext()->IsSuspendCheck() &&
8438 instruction->GetBlock()->GetLoopInformation() != nullptr) {
8439 HSuspendCheck* suspend_check = instruction->GetNext()->AsSuspendCheck();
8440 // The back edge will generate the suspend check.
8441 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(suspend_check, instruction);
8442 }
8443
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008444 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
8445}
8446
8447void LocationsBuilderMIPS::VisitParameterValue(HParameterValue* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008448 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008449 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
8450 if (location.IsStackSlot()) {
8451 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
8452 } else if (location.IsDoubleStackSlot()) {
8453 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
8454 }
8455 locations->SetOut(location);
8456}
8457
8458void InstructionCodeGeneratorMIPS::VisitParameterValue(HParameterValue* instruction
8459 ATTRIBUTE_UNUSED) {
8460 // Nothing to do, the parameter is already at its location.
8461}
8462
8463void LocationsBuilderMIPS::VisitCurrentMethod(HCurrentMethod* instruction) {
8464 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008465 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008466 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
8467}
8468
8469void InstructionCodeGeneratorMIPS::VisitCurrentMethod(HCurrentMethod* instruction
8470 ATTRIBUTE_UNUSED) {
8471 // Nothing to do, the method is already at its location.
8472}
8473
8474void LocationsBuilderMIPS::VisitPhi(HPhi* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008475 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Vladimir Marko372f10e2016-05-17 16:30:10 +01008476 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008477 locations->SetInAt(i, Location::Any());
8478 }
8479 locations->SetOut(Location::Any());
8480}
8481
8482void InstructionCodeGeneratorMIPS::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
8483 LOG(FATAL) << "Unreachable";
8484}
8485
8486void LocationsBuilderMIPS::VisitRem(HRem* rem) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008487 DataType::Type type = rem->GetResultType();
8488 LocationSummary::CallKind call_kind = (type == DataType::Type::kInt32)
8489 ? LocationSummary::kNoCall
8490 : LocationSummary::kCallOnMainOnly;
Vladimir Markoca6fff82017-10-03 14:49:14 +01008491 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(rem, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008492
8493 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008494 case DataType::Type::kInt32:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008495 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze7e99e052015-11-24 19:28:01 -08008496 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008497 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8498 break;
8499
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008500 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008501 InvokeRuntimeCallingConvention calling_convention;
8502 locations->SetInAt(0, Location::RegisterPairLocation(
8503 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
8504 locations->SetInAt(1, Location::RegisterPairLocation(
8505 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
8506 locations->SetOut(calling_convention.GetReturnLocation(type));
8507 break;
8508 }
8509
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008510 case DataType::Type::kFloat32:
8511 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008512 InvokeRuntimeCallingConvention calling_convention;
8513 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
8514 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
8515 locations->SetOut(calling_convention.GetReturnLocation(type));
8516 break;
8517 }
8518
8519 default:
8520 LOG(FATAL) << "Unexpected rem type " << type;
8521 }
8522}
8523
8524void InstructionCodeGeneratorMIPS::VisitRem(HRem* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008525 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008526
8527 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008528 case DataType::Type::kInt32:
Alexey Frunze7e99e052015-11-24 19:28:01 -08008529 GenerateDivRemIntegral(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008530 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008531 case DataType::Type::kInt64: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008532 codegen_->InvokeRuntime(kQuickLmod, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008533 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
8534 break;
8535 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008536 case DataType::Type::kFloat32: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008537 codegen_->InvokeRuntime(kQuickFmodf, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00008538 CheckEntrypointTypes<kQuickFmodf, float, float, float>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008539 break;
8540 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008541 case DataType::Type::kFloat64: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008542 codegen_->InvokeRuntime(kQuickFmod, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00008543 CheckEntrypointTypes<kQuickFmod, double, double, double>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008544 break;
8545 }
8546 default:
8547 LOG(FATAL) << "Unexpected rem type " << type;
8548 }
8549}
8550
Igor Murashkind01745e2017-04-05 16:40:31 -07008551void LocationsBuilderMIPS::VisitConstructorFence(HConstructorFence* constructor_fence) {
8552 constructor_fence->SetLocations(nullptr);
8553}
8554
8555void InstructionCodeGeneratorMIPS::VisitConstructorFence(
8556 HConstructorFence* constructor_fence ATTRIBUTE_UNUSED) {
8557 GenerateMemoryBarrier(MemBarrierKind::kStoreStore);
8558}
8559
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008560void LocationsBuilderMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
8561 memory_barrier->SetLocations(nullptr);
8562}
8563
8564void InstructionCodeGeneratorMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
8565 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
8566}
8567
8568void LocationsBuilderMIPS::VisitReturn(HReturn* ret) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008569 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(ret);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008570 DataType::Type return_type = ret->InputAt(0)->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008571 locations->SetInAt(0, MipsReturnLocation(return_type));
8572}
8573
8574void InstructionCodeGeneratorMIPS::VisitReturn(HReturn* ret ATTRIBUTE_UNUSED) {
8575 codegen_->GenerateFrameExit();
8576}
8577
8578void LocationsBuilderMIPS::VisitReturnVoid(HReturnVoid* ret) {
8579 ret->SetLocations(nullptr);
8580}
8581
8582void InstructionCodeGeneratorMIPS::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
8583 codegen_->GenerateFrameExit();
8584}
8585
Alexey Frunze92d90602015-12-18 18:16:36 -08008586void LocationsBuilderMIPS::VisitRor(HRor* ror) {
8587 HandleShift(ror);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00008588}
8589
Alexey Frunze92d90602015-12-18 18:16:36 -08008590void InstructionCodeGeneratorMIPS::VisitRor(HRor* ror) {
8591 HandleShift(ror);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00008592}
8593
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008594void LocationsBuilderMIPS::VisitShl(HShl* shl) {
8595 HandleShift(shl);
8596}
8597
8598void InstructionCodeGeneratorMIPS::VisitShl(HShl* shl) {
8599 HandleShift(shl);
8600}
8601
8602void LocationsBuilderMIPS::VisitShr(HShr* shr) {
8603 HandleShift(shr);
8604}
8605
8606void InstructionCodeGeneratorMIPS::VisitShr(HShr* shr) {
8607 HandleShift(shr);
8608}
8609
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008610void LocationsBuilderMIPS::VisitSub(HSub* instruction) {
8611 HandleBinaryOp(instruction);
8612}
8613
8614void InstructionCodeGeneratorMIPS::VisitSub(HSub* instruction) {
8615 HandleBinaryOp(instruction);
8616}
8617
8618void LocationsBuilderMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
8619 HandleFieldGet(instruction, instruction->GetFieldInfo());
8620}
8621
8622void InstructionCodeGeneratorMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
8623 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
8624}
8625
8626void LocationsBuilderMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
8627 HandleFieldSet(instruction, instruction->GetFieldInfo());
8628}
8629
8630void InstructionCodeGeneratorMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Goran Jakovljevice114da22016-12-26 14:21:43 +01008631 HandleFieldSet(instruction,
8632 instruction->GetFieldInfo(),
8633 instruction->GetDexPc(),
8634 instruction->GetValueCanBeNull());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008635}
8636
8637void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldGet(
8638 HUnresolvedInstanceFieldGet* instruction) {
8639 FieldAccessCallingConventionMIPS calling_convention;
8640 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8641 instruction->GetFieldType(),
8642 calling_convention);
8643}
8644
8645void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldGet(
8646 HUnresolvedInstanceFieldGet* instruction) {
8647 FieldAccessCallingConventionMIPS calling_convention;
8648 codegen_->GenerateUnresolvedFieldAccess(instruction,
8649 instruction->GetFieldType(),
8650 instruction->GetFieldIndex(),
8651 instruction->GetDexPc(),
8652 calling_convention);
8653}
8654
8655void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldSet(
8656 HUnresolvedInstanceFieldSet* instruction) {
8657 FieldAccessCallingConventionMIPS calling_convention;
8658 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8659 instruction->GetFieldType(),
8660 calling_convention);
8661}
8662
8663void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldSet(
8664 HUnresolvedInstanceFieldSet* instruction) {
8665 FieldAccessCallingConventionMIPS calling_convention;
8666 codegen_->GenerateUnresolvedFieldAccess(instruction,
8667 instruction->GetFieldType(),
8668 instruction->GetFieldIndex(),
8669 instruction->GetDexPc(),
8670 calling_convention);
8671}
8672
8673void LocationsBuilderMIPS::VisitUnresolvedStaticFieldGet(
8674 HUnresolvedStaticFieldGet* instruction) {
8675 FieldAccessCallingConventionMIPS calling_convention;
8676 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8677 instruction->GetFieldType(),
8678 calling_convention);
8679}
8680
8681void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldGet(
8682 HUnresolvedStaticFieldGet* instruction) {
8683 FieldAccessCallingConventionMIPS calling_convention;
8684 codegen_->GenerateUnresolvedFieldAccess(instruction,
8685 instruction->GetFieldType(),
8686 instruction->GetFieldIndex(),
8687 instruction->GetDexPc(),
8688 calling_convention);
8689}
8690
8691void LocationsBuilderMIPS::VisitUnresolvedStaticFieldSet(
8692 HUnresolvedStaticFieldSet* instruction) {
8693 FieldAccessCallingConventionMIPS calling_convention;
8694 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8695 instruction->GetFieldType(),
8696 calling_convention);
8697}
8698
8699void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldSet(
8700 HUnresolvedStaticFieldSet* instruction) {
8701 FieldAccessCallingConventionMIPS calling_convention;
8702 codegen_->GenerateUnresolvedFieldAccess(instruction,
8703 instruction->GetFieldType(),
8704 instruction->GetFieldIndex(),
8705 instruction->GetDexPc(),
8706 calling_convention);
8707}
8708
8709void LocationsBuilderMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008710 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8711 instruction, LocationSummary::kCallOnSlowPath);
Lena Djokicca8c2952017-05-29 11:31:46 +02008712 // In suspend check slow path, usually there are no caller-save registers at all.
8713 // If SIMD instructions are present, however, we force spilling all live SIMD
8714 // registers in full width (since the runtime only saves/restores lower part).
8715 locations->SetCustomSlowPathCallerSaves(
8716 GetGraph()->HasSIMD() ? RegisterSet::AllFpu() : RegisterSet::Empty());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008717}
8718
8719void InstructionCodeGeneratorMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
8720 HBasicBlock* block = instruction->GetBlock();
8721 if (block->GetLoopInformation() != nullptr) {
8722 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
8723 // The back edge will generate the suspend check.
8724 return;
8725 }
8726 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
8727 // The goto will generate the suspend check.
8728 return;
8729 }
8730 GenerateSuspendCheck(instruction, nullptr);
8731}
8732
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008733void LocationsBuilderMIPS::VisitThrow(HThrow* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008734 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8735 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008736 InvokeRuntimeCallingConvention calling_convention;
8737 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8738}
8739
8740void InstructionCodeGeneratorMIPS::VisitThrow(HThrow* instruction) {
Serban Constantinescufca16662016-07-14 09:21:59 +01008741 codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008742 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
8743}
8744
8745void LocationsBuilderMIPS::VisitTypeConversion(HTypeConversion* conversion) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008746 DataType::Type input_type = conversion->GetInputType();
8747 DataType::Type result_type = conversion->GetResultType();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008748 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
8749 << input_type << " -> " << result_type;
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008750 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008751
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008752 if ((input_type == DataType::Type::kReference) || (input_type == DataType::Type::kVoid) ||
8753 (result_type == DataType::Type::kReference) || (result_type == DataType::Type::kVoid)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008754 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
8755 }
8756
8757 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008758 if (!isR6 &&
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008759 ((DataType::IsFloatingPointType(result_type) && input_type == DataType::Type::kInt64) ||
8760 (result_type == DataType::Type::kInt64 && DataType::IsFloatingPointType(input_type)))) {
Serban Constantinescu54ff4822016-07-07 18:03:19 +01008761 call_kind = LocationSummary::kCallOnMainOnly;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008762 }
8763
Vladimir Markoca6fff82017-10-03 14:49:14 +01008764 LocationSummary* locations =
8765 new (GetGraph()->GetAllocator()) LocationSummary(conversion, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008766
8767 if (call_kind == LocationSummary::kNoCall) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008768 if (DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008769 locations->SetInAt(0, Location::RequiresFpuRegister());
8770 } else {
8771 locations->SetInAt(0, Location::RequiresRegister());
8772 }
8773
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008774 if (DataType::IsFloatingPointType(result_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008775 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8776 } else {
8777 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8778 }
8779 } else {
8780 InvokeRuntimeCallingConvention calling_convention;
8781
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008782 if (DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008783 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
8784 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008785 DCHECK_EQ(input_type, DataType::Type::kInt64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008786 locations->SetInAt(0, Location::RegisterPairLocation(
8787 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
8788 }
8789
8790 locations->SetOut(calling_convention.GetReturnLocation(result_type));
8791 }
8792}
8793
8794void InstructionCodeGeneratorMIPS::VisitTypeConversion(HTypeConversion* conversion) {
8795 LocationSummary* locations = conversion->GetLocations();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008796 DataType::Type result_type = conversion->GetResultType();
8797 DataType::Type input_type = conversion->GetInputType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008798 bool has_sign_extension = codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2();
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008799 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008800
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008801 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
8802 << input_type << " -> " << result_type;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008803
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008804 if (result_type == DataType::Type::kInt64 && DataType::IsIntegralType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008805 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8806 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8807 Register src = locations->InAt(0).AsRegister<Register>();
8808
Alexey Frunzea871ef12016-06-27 15:20:11 -07008809 if (dst_low != src) {
8810 __ Move(dst_low, src);
8811 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008812 __ Sra(dst_high, src, 31);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008813 } else if (DataType::IsIntegralType(result_type) && DataType::IsIntegralType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008814 Register dst = locations->Out().AsRegister<Register>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008815 Register src = (input_type == DataType::Type::kInt64)
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008816 ? locations->InAt(0).AsRegisterPairLow<Register>()
8817 : locations->InAt(0).AsRegister<Register>();
8818
8819 switch (result_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008820 case DataType::Type::kUint8:
8821 __ Andi(dst, src, 0xFF);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008822 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008823 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008824 if (has_sign_extension) {
8825 __ Seb(dst, src);
8826 } else {
8827 __ Sll(dst, src, 24);
8828 __ Sra(dst, dst, 24);
8829 }
8830 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008831 case DataType::Type::kUint16:
8832 __ Andi(dst, src, 0xFFFF);
8833 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008834 case DataType::Type::kInt16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008835 if (has_sign_extension) {
8836 __ Seh(dst, src);
8837 } else {
8838 __ Sll(dst, src, 16);
8839 __ Sra(dst, dst, 16);
8840 }
8841 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008842 case DataType::Type::kInt32:
Alexey Frunzea871ef12016-06-27 15:20:11 -07008843 if (dst != src) {
8844 __ Move(dst, src);
8845 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008846 break;
8847
8848 default:
8849 LOG(FATAL) << "Unexpected type conversion from " << input_type
8850 << " to " << result_type;
8851 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008852 } else if (DataType::IsFloatingPointType(result_type) && DataType::IsIntegralType(input_type)) {
8853 if (input_type == DataType::Type::kInt64) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008854 if (isR6) {
8855 // cvt.s.l/cvt.d.l requires MIPSR2+ with FR=1. MIPS32R6 is implemented as a secondary
8856 // architecture on top of MIPS64R6, which has FR=1, and therefore can use the instruction.
8857 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8858 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8859 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8860 __ Mtc1(src_low, FTMP);
8861 __ Mthc1(src_high, FTMP);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008862 if (result_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008863 __ Cvtsl(dst, FTMP);
8864 } else {
8865 __ Cvtdl(dst, FTMP);
8866 }
8867 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008868 QuickEntrypointEnum entrypoint =
8869 (result_type == DataType::Type::kFloat32) ? kQuickL2f : kQuickL2d;
Serban Constantinescufca16662016-07-14 09:21:59 +01008870 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008871 if (result_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008872 CheckEntrypointTypes<kQuickL2f, float, int64_t>();
8873 } else {
8874 CheckEntrypointTypes<kQuickL2d, double, int64_t>();
8875 }
8876 }
8877 } else {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008878 Register src = locations->InAt(0).AsRegister<Register>();
8879 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8880 __ Mtc1(src, FTMP);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008881 if (result_type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008882 __ Cvtsw(dst, FTMP);
8883 } else {
8884 __ Cvtdw(dst, FTMP);
8885 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008886 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008887 } else if (DataType::IsIntegralType(result_type) && DataType::IsFloatingPointType(input_type)) {
8888 CHECK(result_type == DataType::Type::kInt32 || result_type == DataType::Type::kInt64);
Lena Djokicf4e23a82017-05-09 15:43:45 +02008889
8890 // When NAN2008=1 (R6), the truncate instruction caps the output at the minimum/maximum
8891 // value of the output type if the input is outside of the range after the truncation or
8892 // produces 0 when the input is a NaN. IOW, the three special cases produce three distinct
8893 // results. This matches the desired float/double-to-int/long conversion exactly.
8894 //
8895 // When NAN2008=0 (R2 and before), the truncate instruction produces the maximum positive
8896 // value when the input is either a NaN or is outside of the range of the output type
8897 // after the truncation. IOW, the three special cases (NaN, too small, too big) produce
8898 // the same result.
8899 //
8900 // The code takes care of the different behaviors by first comparing the input to the
8901 // minimum output value (-2**-63 for truncating to long, -2**-31 for truncating to int).
8902 // If the input is greater than or equal to the minimum, it procedes to the truncate
8903 // instruction, which will handle such an input the same way irrespective of NAN2008.
8904 // Otherwise the input is compared to itself to determine whether it is a NaN or not
8905 // in order to return either zero or the minimum value.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008906 if (result_type == DataType::Type::kInt64) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008907 if (isR6) {
8908 // trunc.l.s/trunc.l.d requires MIPSR2+ with FR=1. MIPS32R6 is implemented as a secondary
8909 // architecture on top of MIPS64R6, which has FR=1, and therefore can use the instruction.
8910 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
8911 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8912 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008913
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008914 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008915 __ TruncLS(FTMP, src);
8916 } else {
8917 __ TruncLD(FTMP, src);
8918 }
8919 __ Mfc1(dst_low, FTMP);
8920 __ Mfhc1(dst_high, FTMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008921 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008922 QuickEntrypointEnum entrypoint =
8923 (input_type == DataType::Type::kFloat32) ? kQuickF2l : kQuickD2l;
Serban Constantinescufca16662016-07-14 09:21:59 +01008924 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008925 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008926 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
8927 } else {
8928 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
8929 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008930 }
8931 } else {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008932 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
8933 Register dst = locations->Out().AsRegister<Register>();
8934 MipsLabel truncate;
8935 MipsLabel done;
8936
Lena Djokicf4e23a82017-05-09 15:43:45 +02008937 if (!isR6) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008938 if (input_type == DataType::Type::kFloat32) {
Lena Djokicf4e23a82017-05-09 15:43:45 +02008939 uint32_t min_val = bit_cast<uint32_t, float>(std::numeric_limits<int32_t>::min());
8940 __ LoadConst32(TMP, min_val);
8941 __ Mtc1(TMP, FTMP);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008942 } else {
Lena Djokicf4e23a82017-05-09 15:43:45 +02008943 uint64_t min_val = bit_cast<uint64_t, double>(std::numeric_limits<int32_t>::min());
8944 __ LoadConst32(TMP, High32Bits(min_val));
8945 __ Mtc1(ZERO, FTMP);
8946 __ MoveToFpuHigh(TMP, FTMP);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008947 }
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008948
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008949 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008950 __ ColeS(0, FTMP, src);
8951 } else {
8952 __ ColeD(0, FTMP, src);
8953 }
8954 __ Bc1t(0, &truncate);
8955
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008956 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008957 __ CeqS(0, src, src);
8958 } else {
8959 __ CeqD(0, src, src);
8960 }
8961 __ LoadConst32(dst, std::numeric_limits<int32_t>::min());
8962 __ Movf(dst, ZERO, 0);
Lena Djokicf4e23a82017-05-09 15:43:45 +02008963
8964 __ B(&done);
8965
8966 __ Bind(&truncate);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008967 }
8968
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008969 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008970 __ TruncWS(FTMP, src);
8971 } else {
8972 __ TruncWD(FTMP, src);
8973 }
8974 __ Mfc1(dst, FTMP);
8975
Lena Djokicf4e23a82017-05-09 15:43:45 +02008976 if (!isR6) {
8977 __ Bind(&done);
8978 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008979 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008980 } else if (DataType::IsFloatingPointType(result_type) &&
8981 DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008982 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8983 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008984 if (result_type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008985 __ Cvtsd(dst, src);
8986 } else {
8987 __ Cvtds(dst, src);
8988 }
8989 } else {
8990 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
8991 << " to " << result_type;
8992 }
8993}
8994
8995void LocationsBuilderMIPS::VisitUShr(HUShr* ushr) {
8996 HandleShift(ushr);
8997}
8998
8999void InstructionCodeGeneratorMIPS::VisitUShr(HUShr* ushr) {
9000 HandleShift(ushr);
9001}
9002
9003void LocationsBuilderMIPS::VisitXor(HXor* instruction) {
9004 HandleBinaryOp(instruction);
9005}
9006
9007void InstructionCodeGeneratorMIPS::VisitXor(HXor* instruction) {
9008 HandleBinaryOp(instruction);
9009}
9010
9011void LocationsBuilderMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
9012 // Nothing to do, this should be removed during prepare for register allocator.
9013 LOG(FATAL) << "Unreachable";
9014}
9015
9016void InstructionCodeGeneratorMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
9017 // Nothing to do, this should be removed during prepare for register allocator.
9018 LOG(FATAL) << "Unreachable";
9019}
9020
9021void LocationsBuilderMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009022 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009023}
9024
9025void InstructionCodeGeneratorMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009026 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009027}
9028
9029void LocationsBuilderMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009030 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009031}
9032
9033void InstructionCodeGeneratorMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009034 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009035}
9036
9037void LocationsBuilderMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009038 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009039}
9040
9041void InstructionCodeGeneratorMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009042 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009043}
9044
9045void LocationsBuilderMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009046 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009047}
9048
9049void InstructionCodeGeneratorMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009050 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009051}
9052
9053void LocationsBuilderMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009054 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009055}
9056
9057void InstructionCodeGeneratorMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009058 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009059}
9060
9061void LocationsBuilderMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009062 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009063}
9064
9065void InstructionCodeGeneratorMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009066 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009067}
9068
9069void LocationsBuilderMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009070 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009071}
9072
9073void InstructionCodeGeneratorMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009074 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009075}
9076
9077void LocationsBuilderMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009078 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009079}
9080
9081void InstructionCodeGeneratorMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009082 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009083}
9084
9085void LocationsBuilderMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009086 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009087}
9088
9089void InstructionCodeGeneratorMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009090 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009091}
9092
9093void LocationsBuilderMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009094 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009095}
9096
9097void InstructionCodeGeneratorMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009098 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009099}
9100
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009101void LocationsBuilderMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
9102 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009103 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009104 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009105 if (!codegen_->GetInstructionSetFeatures().IsR6()) {
9106 uint32_t num_entries = switch_instr->GetNumEntries();
9107 if (num_entries > InstructionCodeGeneratorMIPS::kPackedSwitchJumpTableThreshold) {
9108 // When there's no HMipsComputeBaseMethodAddress input, R2 uses the NAL
9109 // instruction to simulate PC-relative addressing when accessing the jump table.
9110 // NAL clobbers RA. Make sure RA is preserved.
9111 codegen_->ClobberRA();
9112 }
9113 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009114}
9115
Alexey Frunze96b66822016-09-10 02:32:44 -07009116void InstructionCodeGeneratorMIPS::GenPackedSwitchWithCompares(Register value_reg,
9117 int32_t lower_bound,
9118 uint32_t num_entries,
9119 HBasicBlock* switch_block,
9120 HBasicBlock* default_block) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009121 // Create a set of compare/jumps.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009122 Register temp_reg = TMP;
9123 __ Addiu32(temp_reg, value_reg, -lower_bound);
9124 // Jump to default if index is negative
9125 // Note: We don't check the case that index is positive while value < lower_bound, because in
9126 // this case, index >= num_entries must be true. So that we can save one branch instruction.
9127 __ Bltz(temp_reg, codegen_->GetLabelOf(default_block));
9128
Alexey Frunze96b66822016-09-10 02:32:44 -07009129 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009130 // Jump to successors[0] if value == lower_bound.
9131 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[0]));
9132 int32_t last_index = 0;
9133 for (; num_entries - last_index > 2; last_index += 2) {
9134 __ Addiu(temp_reg, temp_reg, -2);
9135 // Jump to successors[last_index + 1] if value < case_value[last_index + 2].
9136 __ Bltz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
9137 // Jump to successors[last_index + 2] if value == case_value[last_index + 2].
9138 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 2]));
9139 }
9140 if (num_entries - last_index == 2) {
9141 // The last missing case_value.
9142 __ Addiu(temp_reg, temp_reg, -1);
9143 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009144 }
9145
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009146 // And the default for any other value.
Alexey Frunze96b66822016-09-10 02:32:44 -07009147 if (!codegen_->GoesToNextBlock(switch_block, default_block)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009148 __ B(codegen_->GetLabelOf(default_block));
9149 }
9150}
9151
Alexey Frunze96b66822016-09-10 02:32:44 -07009152void InstructionCodeGeneratorMIPS::GenTableBasedPackedSwitch(Register value_reg,
9153 Register constant_area,
9154 int32_t lower_bound,
9155 uint32_t num_entries,
9156 HBasicBlock* switch_block,
9157 HBasicBlock* default_block) {
9158 // Create a jump table.
9159 std::vector<MipsLabel*> labels(num_entries);
9160 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
9161 for (uint32_t i = 0; i < num_entries; i++) {
9162 labels[i] = codegen_->GetLabelOf(successors[i]);
9163 }
9164 JumpTable* table = __ CreateJumpTable(std::move(labels));
9165
9166 // Is the value in range?
9167 __ Addiu32(TMP, value_reg, -lower_bound);
9168 if (IsInt<16>(static_cast<int32_t>(num_entries))) {
9169 __ Sltiu(AT, TMP, num_entries);
9170 __ Beqz(AT, codegen_->GetLabelOf(default_block));
9171 } else {
9172 __ LoadConst32(AT, num_entries);
9173 __ Bgeu(TMP, AT, codegen_->GetLabelOf(default_block));
9174 }
9175
9176 // We are in the range of the table.
9177 // Load the target address from the jump table, indexing by the value.
9178 __ LoadLabelAddress(AT, constant_area, table->GetLabel());
Chris Larsencd0295d2017-03-31 15:26:54 -07009179 __ ShiftAndAdd(TMP, TMP, AT, 2, TMP);
Alexey Frunze96b66822016-09-10 02:32:44 -07009180 __ Lw(TMP, TMP, 0);
9181 // Compute the absolute target address by adding the table start address
9182 // (the table contains offsets to targets relative to its start).
9183 __ Addu(TMP, TMP, AT);
9184 // And jump.
9185 __ Jr(TMP);
9186 __ NopIfNoReordering();
9187}
9188
9189void InstructionCodeGeneratorMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
9190 int32_t lower_bound = switch_instr->GetStartValue();
9191 uint32_t num_entries = switch_instr->GetNumEntries();
9192 LocationSummary* locations = switch_instr->GetLocations();
9193 Register value_reg = locations->InAt(0).AsRegister<Register>();
9194 HBasicBlock* switch_block = switch_instr->GetBlock();
9195 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
9196
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009197 if (num_entries > kPackedSwitchJumpTableThreshold) {
Alexey Frunze96b66822016-09-10 02:32:44 -07009198 // R6 uses PC-relative addressing to access the jump table.
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009199 //
9200 // R2, OTOH, uses an HMipsComputeBaseMethodAddress input (when available)
9201 // to access the jump table and it is implemented by changing HPackedSwitch to
9202 // HMipsPackedSwitch, which bears HMipsComputeBaseMethodAddress (see
9203 // VisitMipsPackedSwitch()).
9204 //
9205 // When there's no HMipsComputeBaseMethodAddress input (e.g. in presence of
9206 // irreducible loops), R2 uses the NAL instruction to simulate PC-relative
9207 // addressing.
Alexey Frunze96b66822016-09-10 02:32:44 -07009208 GenTableBasedPackedSwitch(value_reg,
9209 ZERO,
9210 lower_bound,
9211 num_entries,
9212 switch_block,
9213 default_block);
9214 } else {
9215 GenPackedSwitchWithCompares(value_reg,
9216 lower_bound,
9217 num_entries,
9218 switch_block,
9219 default_block);
9220 }
9221}
9222
9223void LocationsBuilderMIPS::VisitMipsPackedSwitch(HMipsPackedSwitch* switch_instr) {
9224 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009225 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Alexey Frunze96b66822016-09-10 02:32:44 -07009226 locations->SetInAt(0, Location::RequiresRegister());
9227 // Constant area pointer (HMipsComputeBaseMethodAddress).
9228 locations->SetInAt(1, Location::RequiresRegister());
9229}
9230
9231void InstructionCodeGeneratorMIPS::VisitMipsPackedSwitch(HMipsPackedSwitch* switch_instr) {
9232 int32_t lower_bound = switch_instr->GetStartValue();
9233 uint32_t num_entries = switch_instr->GetNumEntries();
9234 LocationSummary* locations = switch_instr->GetLocations();
9235 Register value_reg = locations->InAt(0).AsRegister<Register>();
9236 Register constant_area = locations->InAt(1).AsRegister<Register>();
9237 HBasicBlock* switch_block = switch_instr->GetBlock();
9238 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
9239
9240 // This is an R2-only path. HPackedSwitch has been changed to
9241 // HMipsPackedSwitch, which bears HMipsComputeBaseMethodAddress
9242 // required to address the jump table relative to PC.
9243 GenTableBasedPackedSwitch(value_reg,
9244 constant_area,
9245 lower_bound,
9246 num_entries,
9247 switch_block,
9248 default_block);
9249}
9250
Alexey Frunzee3fb2452016-05-10 16:08:05 -07009251void LocationsBuilderMIPS::VisitMipsComputeBaseMethodAddress(
9252 HMipsComputeBaseMethodAddress* insn) {
9253 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009254 new (GetGraph()->GetAllocator()) LocationSummary(insn, LocationSummary::kNoCall);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07009255 locations->SetOut(Location::RequiresRegister());
9256}
9257
9258void InstructionCodeGeneratorMIPS::VisitMipsComputeBaseMethodAddress(
9259 HMipsComputeBaseMethodAddress* insn) {
9260 LocationSummary* locations = insn->GetLocations();
9261 Register reg = locations->Out().AsRegister<Register>();
9262
9263 CHECK(!codegen_->GetInstructionSetFeatures().IsR6());
9264
9265 // Generate a dummy PC-relative call to obtain PC.
9266 __ Nal();
9267 // Grab the return address off RA.
9268 __ Move(reg, RA);
9269
9270 // Remember this offset (the obtained PC value) for later use with constant area.
9271 __ BindPcRelBaseLabel();
9272}
9273
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009274void LocationsBuilderMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
9275 // The trampoline uses the same calling convention as dex calling conventions,
9276 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
9277 // the method_idx.
9278 HandleInvoke(invoke);
9279}
9280
9281void InstructionCodeGeneratorMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
9282 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
9283}
9284
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009285void LocationsBuilderMIPS::VisitClassTableGet(HClassTableGet* instruction) {
9286 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009287 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009288 locations->SetInAt(0, Location::RequiresRegister());
9289 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00009290}
9291
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009292void InstructionCodeGeneratorMIPS::VisitClassTableGet(HClassTableGet* instruction) {
9293 LocationSummary* locations = instruction->GetLocations();
Vladimir Markoa1de9182016-02-25 11:37:38 +00009294 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009295 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009296 instruction->GetIndex(), kMipsPointerSize).SizeValue();
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009297 __ LoadFromOffset(kLoadWord,
9298 locations->Out().AsRegister<Register>(),
9299 locations->InAt(0).AsRegister<Register>(),
9300 method_offset);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009301 } else {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009302 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00009303 instruction->GetIndex(), kMipsPointerSize));
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00009304 __ LoadFromOffset(kLoadWord,
9305 locations->Out().AsRegister<Register>(),
9306 locations->InAt(0).AsRegister<Register>(),
9307 mirror::Class::ImtPtrOffset(kMipsPointerSize).Uint32Value());
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009308 __ LoadFromOffset(kLoadWord,
9309 locations->Out().AsRegister<Register>(),
9310 locations->Out().AsRegister<Register>(),
9311 method_offset);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009312 }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00009313}
9314
xueliang.zhonge0eb4832017-10-30 13:43:14 +00009315void LocationsBuilderMIPS::VisitIntermediateAddress(HIntermediateAddress* instruction
9316 ATTRIBUTE_UNUSED) {
9317 LOG(FATAL) << "Unreachable";
9318}
9319
9320void InstructionCodeGeneratorMIPS::VisitIntermediateAddress(HIntermediateAddress* instruction
9321 ATTRIBUTE_UNUSED) {
9322 LOG(FATAL) << "Unreachable";
9323}
9324
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009325#undef __
9326#undef QUICK_ENTRY_POINT
9327
9328} // namespace mips
9329} // namespace art