blob: 5c8e46ed1933c39039effbfa49ce79cca768dace [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) {
Aart Bika8b8e9b2018-01-09 11:01:02 -08004037 if (successor->IsExitBlock()) {
4038 DCHECK(got->GetPrevious()->AlwaysThrows());
4039 return; // no code needed
4040 }
4041
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004042 HBasicBlock* block = got->GetBlock();
4043 HInstruction* previous = got->GetPrevious();
4044 HLoopInformation* info = block->GetLoopInformation();
4045
4046 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004047 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
4048 return;
4049 }
4050 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
4051 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
4052 }
4053 if (!codegen_->GoesToNextBlock(block, successor)) {
4054 __ B(codegen_->GetLabelOf(successor));
4055 }
4056}
4057
4058void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) {
4059 HandleGoto(got, got->GetSuccessor());
4060}
4061
4062void LocationsBuilderMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
4063 try_boundary->SetLocations(nullptr);
4064}
4065
4066void InstructionCodeGeneratorMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
4067 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
4068 if (!successor->IsExitBlock()) {
4069 HandleGoto(try_boundary, successor);
4070 }
4071}
4072
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004073void InstructionCodeGeneratorMIPS::GenerateIntCompare(IfCondition cond,
4074 LocationSummary* locations) {
4075 Register dst = locations->Out().AsRegister<Register>();
4076 Register lhs = locations->InAt(0).AsRegister<Register>();
4077 Location rhs_location = locations->InAt(1);
4078 Register rhs_reg = ZERO;
4079 int64_t rhs_imm = 0;
4080 bool use_imm = rhs_location.IsConstant();
4081 if (use_imm) {
4082 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4083 } else {
4084 rhs_reg = rhs_location.AsRegister<Register>();
4085 }
4086
4087 switch (cond) {
4088 case kCondEQ:
4089 case kCondNE:
Alexey Frunzee7697712016-09-15 21:37:49 -07004090 if (use_imm && IsInt<16>(-rhs_imm)) {
4091 if (rhs_imm == 0) {
4092 if (cond == kCondEQ) {
4093 __ Sltiu(dst, lhs, 1);
4094 } else {
4095 __ Sltu(dst, ZERO, lhs);
4096 }
4097 } else {
4098 __ Addiu(dst, lhs, -rhs_imm);
4099 if (cond == kCondEQ) {
4100 __ Sltiu(dst, dst, 1);
4101 } else {
4102 __ Sltu(dst, ZERO, dst);
4103 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004104 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004105 } else {
Alexey Frunzee7697712016-09-15 21:37:49 -07004106 if (use_imm && IsUint<16>(rhs_imm)) {
4107 __ Xori(dst, lhs, rhs_imm);
4108 } else {
4109 if (use_imm) {
4110 rhs_reg = TMP;
4111 __ LoadConst32(rhs_reg, rhs_imm);
4112 }
4113 __ Xor(dst, lhs, rhs_reg);
4114 }
4115 if (cond == kCondEQ) {
4116 __ Sltiu(dst, dst, 1);
4117 } else {
4118 __ Sltu(dst, ZERO, dst);
4119 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004120 }
4121 break;
4122
4123 case kCondLT:
4124 case kCondGE:
4125 if (use_imm && IsInt<16>(rhs_imm)) {
4126 __ Slti(dst, lhs, rhs_imm);
4127 } else {
4128 if (use_imm) {
4129 rhs_reg = TMP;
4130 __ LoadConst32(rhs_reg, rhs_imm);
4131 }
4132 __ Slt(dst, lhs, rhs_reg);
4133 }
4134 if (cond == kCondGE) {
4135 // Simulate lhs >= rhs via !(lhs < rhs) since there's
4136 // only the slt instruction but no sge.
4137 __ Xori(dst, dst, 1);
4138 }
4139 break;
4140
4141 case kCondLE:
4142 case kCondGT:
4143 if (use_imm && IsInt<16>(rhs_imm + 1)) {
4144 // Simulate lhs <= rhs via lhs < rhs + 1.
4145 __ Slti(dst, lhs, rhs_imm + 1);
4146 if (cond == kCondGT) {
4147 // Simulate lhs > rhs via !(lhs <= rhs) since there's
4148 // only the slti instruction but no sgti.
4149 __ Xori(dst, dst, 1);
4150 }
4151 } else {
4152 if (use_imm) {
4153 rhs_reg = TMP;
4154 __ LoadConst32(rhs_reg, rhs_imm);
4155 }
4156 __ Slt(dst, rhs_reg, lhs);
4157 if (cond == kCondLE) {
4158 // Simulate lhs <= rhs via !(rhs < lhs) since there's
4159 // only the slt instruction but no sle.
4160 __ Xori(dst, dst, 1);
4161 }
4162 }
4163 break;
4164
4165 case kCondB:
4166 case kCondAE:
4167 if (use_imm && IsInt<16>(rhs_imm)) {
4168 // Sltiu sign-extends its 16-bit immediate operand before
4169 // the comparison and thus lets us compare directly with
4170 // unsigned values in the ranges [0, 0x7fff] and
4171 // [0xffff8000, 0xffffffff].
4172 __ Sltiu(dst, lhs, rhs_imm);
4173 } else {
4174 if (use_imm) {
4175 rhs_reg = TMP;
4176 __ LoadConst32(rhs_reg, rhs_imm);
4177 }
4178 __ Sltu(dst, lhs, rhs_reg);
4179 }
4180 if (cond == kCondAE) {
4181 // Simulate lhs >= rhs via !(lhs < rhs) since there's
4182 // only the sltu instruction but no sgeu.
4183 __ Xori(dst, dst, 1);
4184 }
4185 break;
4186
4187 case kCondBE:
4188 case kCondA:
4189 if (use_imm && (rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4190 // Simulate lhs <= rhs via lhs < rhs + 1.
4191 // Note that this only works if rhs + 1 does not overflow
4192 // to 0, hence the check above.
4193 // Sltiu sign-extends its 16-bit immediate operand before
4194 // the comparison and thus lets us compare directly with
4195 // unsigned values in the ranges [0, 0x7fff] and
4196 // [0xffff8000, 0xffffffff].
4197 __ Sltiu(dst, lhs, rhs_imm + 1);
4198 if (cond == kCondA) {
4199 // Simulate lhs > rhs via !(lhs <= rhs) since there's
4200 // only the sltiu instruction but no sgtiu.
4201 __ Xori(dst, dst, 1);
4202 }
4203 } else {
4204 if (use_imm) {
4205 rhs_reg = TMP;
4206 __ LoadConst32(rhs_reg, rhs_imm);
4207 }
4208 __ Sltu(dst, rhs_reg, lhs);
4209 if (cond == kCondBE) {
4210 // Simulate lhs <= rhs via !(rhs < lhs) since there's
4211 // only the sltu instruction but no sleu.
4212 __ Xori(dst, dst, 1);
4213 }
4214 }
4215 break;
4216 }
4217}
4218
Alexey Frunze674b9ee2016-09-20 14:54:15 -07004219bool InstructionCodeGeneratorMIPS::MaterializeIntCompare(IfCondition cond,
4220 LocationSummary* input_locations,
4221 Register dst) {
4222 Register lhs = input_locations->InAt(0).AsRegister<Register>();
4223 Location rhs_location = input_locations->InAt(1);
4224 Register rhs_reg = ZERO;
4225 int64_t rhs_imm = 0;
4226 bool use_imm = rhs_location.IsConstant();
4227 if (use_imm) {
4228 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4229 } else {
4230 rhs_reg = rhs_location.AsRegister<Register>();
4231 }
4232
4233 switch (cond) {
4234 case kCondEQ:
4235 case kCondNE:
4236 if (use_imm && IsInt<16>(-rhs_imm)) {
4237 __ Addiu(dst, lhs, -rhs_imm);
4238 } else if (use_imm && IsUint<16>(rhs_imm)) {
4239 __ Xori(dst, lhs, rhs_imm);
4240 } else {
4241 if (use_imm) {
4242 rhs_reg = TMP;
4243 __ LoadConst32(rhs_reg, rhs_imm);
4244 }
4245 __ Xor(dst, lhs, rhs_reg);
4246 }
4247 return (cond == kCondEQ);
4248
4249 case kCondLT:
4250 case kCondGE:
4251 if (use_imm && IsInt<16>(rhs_imm)) {
4252 __ Slti(dst, lhs, rhs_imm);
4253 } else {
4254 if (use_imm) {
4255 rhs_reg = TMP;
4256 __ LoadConst32(rhs_reg, rhs_imm);
4257 }
4258 __ Slt(dst, lhs, rhs_reg);
4259 }
4260 return (cond == kCondGE);
4261
4262 case kCondLE:
4263 case kCondGT:
4264 if (use_imm && IsInt<16>(rhs_imm + 1)) {
4265 // Simulate lhs <= rhs via lhs < rhs + 1.
4266 __ Slti(dst, lhs, rhs_imm + 1);
4267 return (cond == kCondGT);
4268 } else {
4269 if (use_imm) {
4270 rhs_reg = TMP;
4271 __ LoadConst32(rhs_reg, rhs_imm);
4272 }
4273 __ Slt(dst, rhs_reg, lhs);
4274 return (cond == kCondLE);
4275 }
4276
4277 case kCondB:
4278 case kCondAE:
4279 if (use_imm && IsInt<16>(rhs_imm)) {
4280 // Sltiu sign-extends its 16-bit immediate operand before
4281 // the comparison and thus lets us compare directly with
4282 // unsigned values in the ranges [0, 0x7fff] and
4283 // [0xffff8000, 0xffffffff].
4284 __ Sltiu(dst, lhs, rhs_imm);
4285 } else {
4286 if (use_imm) {
4287 rhs_reg = TMP;
4288 __ LoadConst32(rhs_reg, rhs_imm);
4289 }
4290 __ Sltu(dst, lhs, rhs_reg);
4291 }
4292 return (cond == kCondAE);
4293
4294 case kCondBE:
4295 case kCondA:
4296 if (use_imm && (rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4297 // Simulate lhs <= rhs via lhs < rhs + 1.
4298 // Note that this only works if rhs + 1 does not overflow
4299 // to 0, hence the check above.
4300 // Sltiu sign-extends its 16-bit immediate operand before
4301 // the comparison and thus lets us compare directly with
4302 // unsigned values in the ranges [0, 0x7fff] and
4303 // [0xffff8000, 0xffffffff].
4304 __ Sltiu(dst, lhs, rhs_imm + 1);
4305 return (cond == kCondA);
4306 } else {
4307 if (use_imm) {
4308 rhs_reg = TMP;
4309 __ LoadConst32(rhs_reg, rhs_imm);
4310 }
4311 __ Sltu(dst, rhs_reg, lhs);
4312 return (cond == kCondBE);
4313 }
4314 }
4315}
4316
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004317void InstructionCodeGeneratorMIPS::GenerateIntCompareAndBranch(IfCondition cond,
4318 LocationSummary* locations,
4319 MipsLabel* label) {
4320 Register lhs = locations->InAt(0).AsRegister<Register>();
4321 Location rhs_location = locations->InAt(1);
4322 Register rhs_reg = ZERO;
Alexey Frunzee7697712016-09-15 21:37:49 -07004323 int64_t rhs_imm = 0;
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004324 bool use_imm = rhs_location.IsConstant();
4325 if (use_imm) {
4326 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
4327 } else {
4328 rhs_reg = rhs_location.AsRegister<Register>();
4329 }
4330
4331 if (use_imm && rhs_imm == 0) {
4332 switch (cond) {
4333 case kCondEQ:
4334 case kCondBE: // <= 0 if zero
4335 __ Beqz(lhs, label);
4336 break;
4337 case kCondNE:
4338 case kCondA: // > 0 if non-zero
4339 __ Bnez(lhs, label);
4340 break;
4341 case kCondLT:
4342 __ Bltz(lhs, label);
4343 break;
4344 case kCondGE:
4345 __ Bgez(lhs, label);
4346 break;
4347 case kCondLE:
4348 __ Blez(lhs, label);
4349 break;
4350 case kCondGT:
4351 __ Bgtz(lhs, label);
4352 break;
4353 case kCondB: // always false
4354 break;
4355 case kCondAE: // always true
4356 __ B(label);
4357 break;
4358 }
4359 } else {
Alexey Frunzee7697712016-09-15 21:37:49 -07004360 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
4361 if (isR6 || !use_imm) {
4362 if (use_imm) {
4363 rhs_reg = TMP;
4364 __ LoadConst32(rhs_reg, rhs_imm);
4365 }
4366 switch (cond) {
4367 case kCondEQ:
4368 __ Beq(lhs, rhs_reg, label);
4369 break;
4370 case kCondNE:
4371 __ Bne(lhs, rhs_reg, label);
4372 break;
4373 case kCondLT:
4374 __ Blt(lhs, rhs_reg, label);
4375 break;
4376 case kCondGE:
4377 __ Bge(lhs, rhs_reg, label);
4378 break;
4379 case kCondLE:
4380 __ Bge(rhs_reg, lhs, label);
4381 break;
4382 case kCondGT:
4383 __ Blt(rhs_reg, lhs, label);
4384 break;
4385 case kCondB:
4386 __ Bltu(lhs, rhs_reg, label);
4387 break;
4388 case kCondAE:
4389 __ Bgeu(lhs, rhs_reg, label);
4390 break;
4391 case kCondBE:
4392 __ Bgeu(rhs_reg, lhs, label);
4393 break;
4394 case kCondA:
4395 __ Bltu(rhs_reg, lhs, label);
4396 break;
4397 }
4398 } else {
4399 // Special cases for more efficient comparison with constants on R2.
4400 switch (cond) {
4401 case kCondEQ:
4402 __ LoadConst32(TMP, rhs_imm);
4403 __ Beq(lhs, TMP, label);
4404 break;
4405 case kCondNE:
4406 __ LoadConst32(TMP, rhs_imm);
4407 __ Bne(lhs, TMP, label);
4408 break;
4409 case kCondLT:
4410 if (IsInt<16>(rhs_imm)) {
4411 __ Slti(TMP, lhs, rhs_imm);
4412 __ Bnez(TMP, label);
4413 } else {
4414 __ LoadConst32(TMP, rhs_imm);
4415 __ Blt(lhs, TMP, label);
4416 }
4417 break;
4418 case kCondGE:
4419 if (IsInt<16>(rhs_imm)) {
4420 __ Slti(TMP, lhs, rhs_imm);
4421 __ Beqz(TMP, label);
4422 } else {
4423 __ LoadConst32(TMP, rhs_imm);
4424 __ Bge(lhs, TMP, label);
4425 }
4426 break;
4427 case kCondLE:
4428 if (IsInt<16>(rhs_imm + 1)) {
4429 // Simulate lhs <= rhs via lhs < rhs + 1.
4430 __ Slti(TMP, lhs, rhs_imm + 1);
4431 __ Bnez(TMP, label);
4432 } else {
4433 __ LoadConst32(TMP, rhs_imm);
4434 __ Bge(TMP, lhs, label);
4435 }
4436 break;
4437 case kCondGT:
4438 if (IsInt<16>(rhs_imm + 1)) {
4439 // Simulate lhs > rhs via !(lhs < rhs + 1).
4440 __ Slti(TMP, lhs, rhs_imm + 1);
4441 __ Beqz(TMP, label);
4442 } else {
4443 __ LoadConst32(TMP, rhs_imm);
4444 __ Blt(TMP, lhs, label);
4445 }
4446 break;
4447 case kCondB:
4448 if (IsInt<16>(rhs_imm)) {
4449 __ Sltiu(TMP, lhs, rhs_imm);
4450 __ Bnez(TMP, label);
4451 } else {
4452 __ LoadConst32(TMP, rhs_imm);
4453 __ Bltu(lhs, TMP, label);
4454 }
4455 break;
4456 case kCondAE:
4457 if (IsInt<16>(rhs_imm)) {
4458 __ Sltiu(TMP, lhs, rhs_imm);
4459 __ Beqz(TMP, label);
4460 } else {
4461 __ LoadConst32(TMP, rhs_imm);
4462 __ Bgeu(lhs, TMP, label);
4463 }
4464 break;
4465 case kCondBE:
4466 if ((rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4467 // Simulate lhs <= rhs via lhs < rhs + 1.
4468 // Note that this only works if rhs + 1 does not overflow
4469 // to 0, hence the check above.
4470 __ Sltiu(TMP, lhs, rhs_imm + 1);
4471 __ Bnez(TMP, label);
4472 } else {
4473 __ LoadConst32(TMP, rhs_imm);
4474 __ Bgeu(TMP, lhs, label);
4475 }
4476 break;
4477 case kCondA:
4478 if ((rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
4479 // Simulate lhs > rhs via !(lhs < rhs + 1).
4480 // Note that this only works if rhs + 1 does not overflow
4481 // to 0, hence the check above.
4482 __ Sltiu(TMP, lhs, rhs_imm + 1);
4483 __ Beqz(TMP, label);
4484 } else {
4485 __ LoadConst32(TMP, rhs_imm);
4486 __ Bltu(TMP, lhs, label);
4487 }
4488 break;
4489 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004490 }
4491 }
4492}
4493
Tijana Jakovljevic6d482aa2017-02-03 13:24:08 +01004494void InstructionCodeGeneratorMIPS::GenerateLongCompare(IfCondition cond,
4495 LocationSummary* locations) {
4496 Register dst = locations->Out().AsRegister<Register>();
4497 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4498 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
4499 Location rhs_location = locations->InAt(1);
4500 Register rhs_high = ZERO;
4501 Register rhs_low = ZERO;
4502 int64_t imm = 0;
4503 uint32_t imm_high = 0;
4504 uint32_t imm_low = 0;
4505 bool use_imm = rhs_location.IsConstant();
4506 if (use_imm) {
4507 imm = rhs_location.GetConstant()->AsLongConstant()->GetValue();
4508 imm_high = High32Bits(imm);
4509 imm_low = Low32Bits(imm);
4510 } else {
4511 rhs_high = rhs_location.AsRegisterPairHigh<Register>();
4512 rhs_low = rhs_location.AsRegisterPairLow<Register>();
4513 }
4514 if (use_imm && imm == 0) {
4515 switch (cond) {
4516 case kCondEQ:
4517 case kCondBE: // <= 0 if zero
4518 __ Or(dst, lhs_high, lhs_low);
4519 __ Sltiu(dst, dst, 1);
4520 break;
4521 case kCondNE:
4522 case kCondA: // > 0 if non-zero
4523 __ Or(dst, lhs_high, lhs_low);
4524 __ Sltu(dst, ZERO, dst);
4525 break;
4526 case kCondLT:
4527 __ Slt(dst, lhs_high, ZERO);
4528 break;
4529 case kCondGE:
4530 __ Slt(dst, lhs_high, ZERO);
4531 __ Xori(dst, dst, 1);
4532 break;
4533 case kCondLE:
4534 __ Or(TMP, lhs_high, lhs_low);
4535 __ Sra(AT, lhs_high, 31);
4536 __ Sltu(dst, AT, TMP);
4537 __ Xori(dst, dst, 1);
4538 break;
4539 case kCondGT:
4540 __ Or(TMP, lhs_high, lhs_low);
4541 __ Sra(AT, lhs_high, 31);
4542 __ Sltu(dst, AT, TMP);
4543 break;
4544 case kCondB: // always false
4545 __ Andi(dst, dst, 0);
4546 break;
4547 case kCondAE: // always true
4548 __ Ori(dst, ZERO, 1);
4549 break;
4550 }
4551 } else if (use_imm) {
4552 // TODO: more efficient comparison with constants without loading them into TMP/AT.
4553 switch (cond) {
4554 case kCondEQ:
4555 __ LoadConst32(TMP, imm_high);
4556 __ Xor(TMP, TMP, lhs_high);
4557 __ LoadConst32(AT, imm_low);
4558 __ Xor(AT, AT, lhs_low);
4559 __ Or(dst, TMP, AT);
4560 __ Sltiu(dst, dst, 1);
4561 break;
4562 case kCondNE:
4563 __ LoadConst32(TMP, imm_high);
4564 __ Xor(TMP, TMP, lhs_high);
4565 __ LoadConst32(AT, imm_low);
4566 __ Xor(AT, AT, lhs_low);
4567 __ Or(dst, TMP, AT);
4568 __ Sltu(dst, ZERO, dst);
4569 break;
4570 case kCondLT:
4571 case kCondGE:
4572 if (dst == lhs_low) {
4573 __ LoadConst32(TMP, imm_low);
4574 __ Sltu(dst, lhs_low, TMP);
4575 }
4576 __ LoadConst32(TMP, imm_high);
4577 __ Slt(AT, lhs_high, TMP);
4578 __ Slt(TMP, TMP, lhs_high);
4579 if (dst != lhs_low) {
4580 __ LoadConst32(dst, imm_low);
4581 __ Sltu(dst, lhs_low, dst);
4582 }
4583 __ Slt(dst, TMP, dst);
4584 __ Or(dst, dst, AT);
4585 if (cond == kCondGE) {
4586 __ Xori(dst, dst, 1);
4587 }
4588 break;
4589 case kCondGT:
4590 case kCondLE:
4591 if (dst == lhs_low) {
4592 __ LoadConst32(TMP, imm_low);
4593 __ Sltu(dst, TMP, lhs_low);
4594 }
4595 __ LoadConst32(TMP, imm_high);
4596 __ Slt(AT, TMP, lhs_high);
4597 __ Slt(TMP, lhs_high, TMP);
4598 if (dst != lhs_low) {
4599 __ LoadConst32(dst, imm_low);
4600 __ Sltu(dst, dst, lhs_low);
4601 }
4602 __ Slt(dst, TMP, dst);
4603 __ Or(dst, dst, AT);
4604 if (cond == kCondLE) {
4605 __ Xori(dst, dst, 1);
4606 }
4607 break;
4608 case kCondB:
4609 case kCondAE:
4610 if (dst == lhs_low) {
4611 __ LoadConst32(TMP, imm_low);
4612 __ Sltu(dst, lhs_low, TMP);
4613 }
4614 __ LoadConst32(TMP, imm_high);
4615 __ Sltu(AT, lhs_high, TMP);
4616 __ Sltu(TMP, TMP, lhs_high);
4617 if (dst != lhs_low) {
4618 __ LoadConst32(dst, imm_low);
4619 __ Sltu(dst, lhs_low, dst);
4620 }
4621 __ Slt(dst, TMP, dst);
4622 __ Or(dst, dst, AT);
4623 if (cond == kCondAE) {
4624 __ Xori(dst, dst, 1);
4625 }
4626 break;
4627 case kCondA:
4628 case kCondBE:
4629 if (dst == lhs_low) {
4630 __ LoadConst32(TMP, imm_low);
4631 __ Sltu(dst, TMP, lhs_low);
4632 }
4633 __ LoadConst32(TMP, imm_high);
4634 __ Sltu(AT, TMP, lhs_high);
4635 __ Sltu(TMP, lhs_high, TMP);
4636 if (dst != lhs_low) {
4637 __ LoadConst32(dst, imm_low);
4638 __ Sltu(dst, dst, lhs_low);
4639 }
4640 __ Slt(dst, TMP, dst);
4641 __ Or(dst, dst, AT);
4642 if (cond == kCondBE) {
4643 __ Xori(dst, dst, 1);
4644 }
4645 break;
4646 }
4647 } else {
4648 switch (cond) {
4649 case kCondEQ:
4650 __ Xor(TMP, lhs_high, rhs_high);
4651 __ Xor(AT, lhs_low, rhs_low);
4652 __ Or(dst, TMP, AT);
4653 __ Sltiu(dst, dst, 1);
4654 break;
4655 case kCondNE:
4656 __ Xor(TMP, lhs_high, rhs_high);
4657 __ Xor(AT, lhs_low, rhs_low);
4658 __ Or(dst, TMP, AT);
4659 __ Sltu(dst, ZERO, dst);
4660 break;
4661 case kCondLT:
4662 case kCondGE:
4663 __ Slt(TMP, rhs_high, lhs_high);
4664 __ Sltu(AT, lhs_low, rhs_low);
4665 __ Slt(TMP, TMP, AT);
4666 __ Slt(AT, lhs_high, rhs_high);
4667 __ Or(dst, AT, TMP);
4668 if (cond == kCondGE) {
4669 __ Xori(dst, dst, 1);
4670 }
4671 break;
4672 case kCondGT:
4673 case kCondLE:
4674 __ Slt(TMP, lhs_high, rhs_high);
4675 __ Sltu(AT, rhs_low, lhs_low);
4676 __ Slt(TMP, TMP, AT);
4677 __ Slt(AT, rhs_high, lhs_high);
4678 __ Or(dst, AT, TMP);
4679 if (cond == kCondLE) {
4680 __ Xori(dst, dst, 1);
4681 }
4682 break;
4683 case kCondB:
4684 case kCondAE:
4685 __ Sltu(TMP, rhs_high, lhs_high);
4686 __ Sltu(AT, lhs_low, rhs_low);
4687 __ Slt(TMP, TMP, AT);
4688 __ Sltu(AT, lhs_high, rhs_high);
4689 __ Or(dst, AT, TMP);
4690 if (cond == kCondAE) {
4691 __ Xori(dst, dst, 1);
4692 }
4693 break;
4694 case kCondA:
4695 case kCondBE:
4696 __ Sltu(TMP, lhs_high, rhs_high);
4697 __ Sltu(AT, rhs_low, lhs_low);
4698 __ Slt(TMP, TMP, AT);
4699 __ Sltu(AT, rhs_high, lhs_high);
4700 __ Or(dst, AT, TMP);
4701 if (cond == kCondBE) {
4702 __ Xori(dst, dst, 1);
4703 }
4704 break;
4705 }
4706 }
4707}
4708
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08004709void InstructionCodeGeneratorMIPS::GenerateLongCompareAndBranch(IfCondition cond,
4710 LocationSummary* locations,
4711 MipsLabel* label) {
4712 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4713 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
4714 Location rhs_location = locations->InAt(1);
4715 Register rhs_high = ZERO;
4716 Register rhs_low = ZERO;
4717 int64_t imm = 0;
4718 uint32_t imm_high = 0;
4719 uint32_t imm_low = 0;
4720 bool use_imm = rhs_location.IsConstant();
4721 if (use_imm) {
4722 imm = rhs_location.GetConstant()->AsLongConstant()->GetValue();
4723 imm_high = High32Bits(imm);
4724 imm_low = Low32Bits(imm);
4725 } else {
4726 rhs_high = rhs_location.AsRegisterPairHigh<Register>();
4727 rhs_low = rhs_location.AsRegisterPairLow<Register>();
4728 }
4729
4730 if (use_imm && imm == 0) {
4731 switch (cond) {
4732 case kCondEQ:
4733 case kCondBE: // <= 0 if zero
4734 __ Or(TMP, lhs_high, lhs_low);
4735 __ Beqz(TMP, label);
4736 break;
4737 case kCondNE:
4738 case kCondA: // > 0 if non-zero
4739 __ Or(TMP, lhs_high, lhs_low);
4740 __ Bnez(TMP, label);
4741 break;
4742 case kCondLT:
4743 __ Bltz(lhs_high, label);
4744 break;
4745 case kCondGE:
4746 __ Bgez(lhs_high, label);
4747 break;
4748 case kCondLE:
4749 __ Or(TMP, lhs_high, lhs_low);
4750 __ Sra(AT, lhs_high, 31);
4751 __ Bgeu(AT, TMP, label);
4752 break;
4753 case kCondGT:
4754 __ Or(TMP, lhs_high, lhs_low);
4755 __ Sra(AT, lhs_high, 31);
4756 __ Bltu(AT, TMP, label);
4757 break;
4758 case kCondB: // always false
4759 break;
4760 case kCondAE: // always true
4761 __ B(label);
4762 break;
4763 }
4764 } else if (use_imm) {
4765 // TODO: more efficient comparison with constants without loading them into TMP/AT.
4766 switch (cond) {
4767 case kCondEQ:
4768 __ LoadConst32(TMP, imm_high);
4769 __ Xor(TMP, TMP, lhs_high);
4770 __ LoadConst32(AT, imm_low);
4771 __ Xor(AT, AT, lhs_low);
4772 __ Or(TMP, TMP, AT);
4773 __ Beqz(TMP, label);
4774 break;
4775 case kCondNE:
4776 __ LoadConst32(TMP, imm_high);
4777 __ Xor(TMP, TMP, lhs_high);
4778 __ LoadConst32(AT, imm_low);
4779 __ Xor(AT, AT, lhs_low);
4780 __ Or(TMP, TMP, AT);
4781 __ Bnez(TMP, label);
4782 break;
4783 case kCondLT:
4784 __ LoadConst32(TMP, imm_high);
4785 __ Blt(lhs_high, TMP, label);
4786 __ Slt(TMP, TMP, lhs_high);
4787 __ LoadConst32(AT, imm_low);
4788 __ Sltu(AT, lhs_low, AT);
4789 __ Blt(TMP, AT, label);
4790 break;
4791 case kCondGE:
4792 __ LoadConst32(TMP, imm_high);
4793 __ Blt(TMP, lhs_high, label);
4794 __ Slt(TMP, lhs_high, TMP);
4795 __ LoadConst32(AT, imm_low);
4796 __ Sltu(AT, lhs_low, AT);
4797 __ Or(TMP, TMP, AT);
4798 __ Beqz(TMP, label);
4799 break;
4800 case kCondLE:
4801 __ LoadConst32(TMP, imm_high);
4802 __ Blt(lhs_high, TMP, label);
4803 __ Slt(TMP, TMP, lhs_high);
4804 __ LoadConst32(AT, imm_low);
4805 __ Sltu(AT, AT, lhs_low);
4806 __ Or(TMP, TMP, AT);
4807 __ Beqz(TMP, label);
4808 break;
4809 case kCondGT:
4810 __ LoadConst32(TMP, imm_high);
4811 __ Blt(TMP, lhs_high, label);
4812 __ Slt(TMP, lhs_high, TMP);
4813 __ LoadConst32(AT, imm_low);
4814 __ Sltu(AT, AT, lhs_low);
4815 __ Blt(TMP, AT, label);
4816 break;
4817 case kCondB:
4818 __ LoadConst32(TMP, imm_high);
4819 __ Bltu(lhs_high, TMP, label);
4820 __ Sltu(TMP, TMP, lhs_high);
4821 __ LoadConst32(AT, imm_low);
4822 __ Sltu(AT, lhs_low, AT);
4823 __ Blt(TMP, AT, label);
4824 break;
4825 case kCondAE:
4826 __ LoadConst32(TMP, imm_high);
4827 __ Bltu(TMP, lhs_high, label);
4828 __ Sltu(TMP, lhs_high, TMP);
4829 __ LoadConst32(AT, imm_low);
4830 __ Sltu(AT, lhs_low, AT);
4831 __ Or(TMP, TMP, AT);
4832 __ Beqz(TMP, label);
4833 break;
4834 case kCondBE:
4835 __ LoadConst32(TMP, imm_high);
4836 __ Bltu(lhs_high, TMP, label);
4837 __ Sltu(TMP, TMP, lhs_high);
4838 __ LoadConst32(AT, imm_low);
4839 __ Sltu(AT, AT, lhs_low);
4840 __ Or(TMP, TMP, AT);
4841 __ Beqz(TMP, label);
4842 break;
4843 case kCondA:
4844 __ LoadConst32(TMP, imm_high);
4845 __ Bltu(TMP, lhs_high, label);
4846 __ Sltu(TMP, lhs_high, TMP);
4847 __ LoadConst32(AT, imm_low);
4848 __ Sltu(AT, AT, lhs_low);
4849 __ Blt(TMP, AT, label);
4850 break;
4851 }
4852 } else {
4853 switch (cond) {
4854 case kCondEQ:
4855 __ Xor(TMP, lhs_high, rhs_high);
4856 __ Xor(AT, lhs_low, rhs_low);
4857 __ Or(TMP, TMP, AT);
4858 __ Beqz(TMP, label);
4859 break;
4860 case kCondNE:
4861 __ Xor(TMP, lhs_high, rhs_high);
4862 __ Xor(AT, lhs_low, rhs_low);
4863 __ Or(TMP, TMP, AT);
4864 __ Bnez(TMP, label);
4865 break;
4866 case kCondLT:
4867 __ Blt(lhs_high, rhs_high, label);
4868 __ Slt(TMP, rhs_high, lhs_high);
4869 __ Sltu(AT, lhs_low, rhs_low);
4870 __ Blt(TMP, AT, label);
4871 break;
4872 case kCondGE:
4873 __ Blt(rhs_high, lhs_high, label);
4874 __ Slt(TMP, lhs_high, rhs_high);
4875 __ Sltu(AT, lhs_low, rhs_low);
4876 __ Or(TMP, TMP, AT);
4877 __ Beqz(TMP, label);
4878 break;
4879 case kCondLE:
4880 __ Blt(lhs_high, rhs_high, label);
4881 __ Slt(TMP, rhs_high, lhs_high);
4882 __ Sltu(AT, rhs_low, lhs_low);
4883 __ Or(TMP, TMP, AT);
4884 __ Beqz(TMP, label);
4885 break;
4886 case kCondGT:
4887 __ Blt(rhs_high, lhs_high, label);
4888 __ Slt(TMP, lhs_high, rhs_high);
4889 __ Sltu(AT, rhs_low, lhs_low);
4890 __ Blt(TMP, AT, label);
4891 break;
4892 case kCondB:
4893 __ Bltu(lhs_high, rhs_high, label);
4894 __ Sltu(TMP, rhs_high, lhs_high);
4895 __ Sltu(AT, lhs_low, rhs_low);
4896 __ Blt(TMP, AT, label);
4897 break;
4898 case kCondAE:
4899 __ Bltu(rhs_high, lhs_high, label);
4900 __ Sltu(TMP, lhs_high, rhs_high);
4901 __ Sltu(AT, lhs_low, rhs_low);
4902 __ Or(TMP, TMP, AT);
4903 __ Beqz(TMP, label);
4904 break;
4905 case kCondBE:
4906 __ Bltu(lhs_high, rhs_high, label);
4907 __ Sltu(TMP, rhs_high, lhs_high);
4908 __ Sltu(AT, rhs_low, lhs_low);
4909 __ Or(TMP, TMP, AT);
4910 __ Beqz(TMP, label);
4911 break;
4912 case kCondA:
4913 __ Bltu(rhs_high, lhs_high, label);
4914 __ Sltu(TMP, lhs_high, rhs_high);
4915 __ Sltu(AT, rhs_low, lhs_low);
4916 __ Blt(TMP, AT, label);
4917 break;
4918 }
4919 }
4920}
4921
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004922void InstructionCodeGeneratorMIPS::GenerateFpCompare(IfCondition cond,
4923 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004924 DataType::Type type,
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004925 LocationSummary* locations) {
4926 Register dst = locations->Out().AsRegister<Register>();
4927 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
4928 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
4929 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01004930 if (type == DataType::Type::kFloat32) {
Alexey Frunze2ddb7172016-09-06 17:04:55 -07004931 if (isR6) {
4932 switch (cond) {
4933 case kCondEQ:
4934 __ CmpEqS(FTMP, lhs, rhs);
4935 __ Mfc1(dst, FTMP);
4936 __ Andi(dst, dst, 1);
4937 break;
4938 case kCondNE:
4939 __ CmpEqS(FTMP, lhs, rhs);
4940 __ Mfc1(dst, FTMP);
4941 __ Addiu(dst, dst, 1);
4942 break;
4943 case kCondLT:
4944 if (gt_bias) {
4945 __ CmpLtS(FTMP, lhs, rhs);
4946 } else {
4947 __ CmpUltS(FTMP, lhs, rhs);
4948 }
4949 __ Mfc1(dst, FTMP);
4950 __ Andi(dst, dst, 1);
4951 break;
4952 case kCondLE:
4953 if (gt_bias) {
4954 __ CmpLeS(FTMP, lhs, rhs);
4955 } else {
4956 __ CmpUleS(FTMP, lhs, rhs);
4957 }
4958 __ Mfc1(dst, FTMP);
4959 __ Andi(dst, dst, 1);
4960 break;
4961 case kCondGT:
4962 if (gt_bias) {
4963 __ CmpUltS(FTMP, rhs, lhs);
4964 } else {
4965 __ CmpLtS(FTMP, rhs, lhs);
4966 }
4967 __ Mfc1(dst, FTMP);
4968 __ Andi(dst, dst, 1);
4969 break;
4970 case kCondGE:
4971 if (gt_bias) {
4972 __ CmpUleS(FTMP, rhs, lhs);
4973 } else {
4974 __ CmpLeS(FTMP, rhs, lhs);
4975 }
4976 __ Mfc1(dst, FTMP);
4977 __ Andi(dst, dst, 1);
4978 break;
4979 default:
4980 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
4981 UNREACHABLE();
4982 }
4983 } else {
4984 switch (cond) {
4985 case kCondEQ:
4986 __ CeqS(0, lhs, rhs);
4987 __ LoadConst32(dst, 1);
4988 __ Movf(dst, ZERO, 0);
4989 break;
4990 case kCondNE:
4991 __ CeqS(0, lhs, rhs);
4992 __ LoadConst32(dst, 1);
4993 __ Movt(dst, ZERO, 0);
4994 break;
4995 case kCondLT:
4996 if (gt_bias) {
4997 __ ColtS(0, lhs, rhs);
4998 } else {
4999 __ CultS(0, lhs, rhs);
5000 }
5001 __ LoadConst32(dst, 1);
5002 __ Movf(dst, ZERO, 0);
5003 break;
5004 case kCondLE:
5005 if (gt_bias) {
5006 __ ColeS(0, lhs, rhs);
5007 } else {
5008 __ CuleS(0, lhs, rhs);
5009 }
5010 __ LoadConst32(dst, 1);
5011 __ Movf(dst, ZERO, 0);
5012 break;
5013 case kCondGT:
5014 if (gt_bias) {
5015 __ CultS(0, rhs, lhs);
5016 } else {
5017 __ ColtS(0, rhs, lhs);
5018 }
5019 __ LoadConst32(dst, 1);
5020 __ Movf(dst, ZERO, 0);
5021 break;
5022 case kCondGE:
5023 if (gt_bias) {
5024 __ CuleS(0, rhs, lhs);
5025 } else {
5026 __ ColeS(0, rhs, lhs);
5027 }
5028 __ LoadConst32(dst, 1);
5029 __ Movf(dst, ZERO, 0);
5030 break;
5031 default:
5032 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5033 UNREACHABLE();
5034 }
5035 }
5036 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005037 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze2ddb7172016-09-06 17:04:55 -07005038 if (isR6) {
5039 switch (cond) {
5040 case kCondEQ:
5041 __ CmpEqD(FTMP, lhs, rhs);
5042 __ Mfc1(dst, FTMP);
5043 __ Andi(dst, dst, 1);
5044 break;
5045 case kCondNE:
5046 __ CmpEqD(FTMP, lhs, rhs);
5047 __ Mfc1(dst, FTMP);
5048 __ Addiu(dst, dst, 1);
5049 break;
5050 case kCondLT:
5051 if (gt_bias) {
5052 __ CmpLtD(FTMP, lhs, rhs);
5053 } else {
5054 __ CmpUltD(FTMP, lhs, rhs);
5055 }
5056 __ Mfc1(dst, FTMP);
5057 __ Andi(dst, dst, 1);
5058 break;
5059 case kCondLE:
5060 if (gt_bias) {
5061 __ CmpLeD(FTMP, lhs, rhs);
5062 } else {
5063 __ CmpUleD(FTMP, lhs, rhs);
5064 }
5065 __ Mfc1(dst, FTMP);
5066 __ Andi(dst, dst, 1);
5067 break;
5068 case kCondGT:
5069 if (gt_bias) {
5070 __ CmpUltD(FTMP, rhs, lhs);
5071 } else {
5072 __ CmpLtD(FTMP, rhs, lhs);
5073 }
5074 __ Mfc1(dst, FTMP);
5075 __ Andi(dst, dst, 1);
5076 break;
5077 case kCondGE:
5078 if (gt_bias) {
5079 __ CmpUleD(FTMP, rhs, lhs);
5080 } else {
5081 __ CmpLeD(FTMP, rhs, lhs);
5082 }
5083 __ Mfc1(dst, FTMP);
5084 __ Andi(dst, dst, 1);
5085 break;
5086 default:
5087 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5088 UNREACHABLE();
5089 }
5090 } else {
5091 switch (cond) {
5092 case kCondEQ:
5093 __ CeqD(0, lhs, rhs);
5094 __ LoadConst32(dst, 1);
5095 __ Movf(dst, ZERO, 0);
5096 break;
5097 case kCondNE:
5098 __ CeqD(0, lhs, rhs);
5099 __ LoadConst32(dst, 1);
5100 __ Movt(dst, ZERO, 0);
5101 break;
5102 case kCondLT:
5103 if (gt_bias) {
5104 __ ColtD(0, lhs, rhs);
5105 } else {
5106 __ CultD(0, lhs, rhs);
5107 }
5108 __ LoadConst32(dst, 1);
5109 __ Movf(dst, ZERO, 0);
5110 break;
5111 case kCondLE:
5112 if (gt_bias) {
5113 __ ColeD(0, lhs, rhs);
5114 } else {
5115 __ CuleD(0, lhs, rhs);
5116 }
5117 __ LoadConst32(dst, 1);
5118 __ Movf(dst, ZERO, 0);
5119 break;
5120 case kCondGT:
5121 if (gt_bias) {
5122 __ CultD(0, rhs, lhs);
5123 } else {
5124 __ ColtD(0, rhs, lhs);
5125 }
5126 __ LoadConst32(dst, 1);
5127 __ Movf(dst, ZERO, 0);
5128 break;
5129 case kCondGE:
5130 if (gt_bias) {
5131 __ CuleD(0, rhs, lhs);
5132 } else {
5133 __ ColeD(0, rhs, lhs);
5134 }
5135 __ LoadConst32(dst, 1);
5136 __ Movf(dst, ZERO, 0);
5137 break;
5138 default:
5139 LOG(FATAL) << "Unexpected non-floating-point condition " << cond;
5140 UNREACHABLE();
5141 }
5142 }
5143 }
5144}
5145
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005146bool InstructionCodeGeneratorMIPS::MaterializeFpCompareR2(IfCondition cond,
5147 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005148 DataType::Type type,
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005149 LocationSummary* input_locations,
5150 int cc) {
5151 FRegister lhs = input_locations->InAt(0).AsFpuRegister<FRegister>();
5152 FRegister rhs = input_locations->InAt(1).AsFpuRegister<FRegister>();
5153 CHECK(!codegen_->GetInstructionSetFeatures().IsR6());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005154 if (type == DataType::Type::kFloat32) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005155 switch (cond) {
5156 case kCondEQ:
5157 __ CeqS(cc, lhs, rhs);
5158 return false;
5159 case kCondNE:
5160 __ CeqS(cc, lhs, rhs);
5161 return true;
5162 case kCondLT:
5163 if (gt_bias) {
5164 __ ColtS(cc, lhs, rhs);
5165 } else {
5166 __ CultS(cc, lhs, rhs);
5167 }
5168 return false;
5169 case kCondLE:
5170 if (gt_bias) {
5171 __ ColeS(cc, lhs, rhs);
5172 } else {
5173 __ CuleS(cc, lhs, rhs);
5174 }
5175 return false;
5176 case kCondGT:
5177 if (gt_bias) {
5178 __ CultS(cc, rhs, lhs);
5179 } else {
5180 __ ColtS(cc, rhs, lhs);
5181 }
5182 return false;
5183 case kCondGE:
5184 if (gt_bias) {
5185 __ CuleS(cc, rhs, lhs);
5186 } else {
5187 __ ColeS(cc, rhs, lhs);
5188 }
5189 return false;
5190 default:
5191 LOG(FATAL) << "Unexpected non-floating-point condition";
5192 UNREACHABLE();
5193 }
5194 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005195 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005196 switch (cond) {
5197 case kCondEQ:
5198 __ CeqD(cc, lhs, rhs);
5199 return false;
5200 case kCondNE:
5201 __ CeqD(cc, lhs, rhs);
5202 return true;
5203 case kCondLT:
5204 if (gt_bias) {
5205 __ ColtD(cc, lhs, rhs);
5206 } else {
5207 __ CultD(cc, lhs, rhs);
5208 }
5209 return false;
5210 case kCondLE:
5211 if (gt_bias) {
5212 __ ColeD(cc, lhs, rhs);
5213 } else {
5214 __ CuleD(cc, lhs, rhs);
5215 }
5216 return false;
5217 case kCondGT:
5218 if (gt_bias) {
5219 __ CultD(cc, rhs, lhs);
5220 } else {
5221 __ ColtD(cc, rhs, lhs);
5222 }
5223 return false;
5224 case kCondGE:
5225 if (gt_bias) {
5226 __ CuleD(cc, rhs, lhs);
5227 } else {
5228 __ ColeD(cc, rhs, lhs);
5229 }
5230 return false;
5231 default:
5232 LOG(FATAL) << "Unexpected non-floating-point condition";
5233 UNREACHABLE();
5234 }
5235 }
5236}
5237
5238bool InstructionCodeGeneratorMIPS::MaterializeFpCompareR6(IfCondition cond,
5239 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005240 DataType::Type type,
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005241 LocationSummary* input_locations,
5242 FRegister dst) {
5243 FRegister lhs = input_locations->InAt(0).AsFpuRegister<FRegister>();
5244 FRegister rhs = input_locations->InAt(1).AsFpuRegister<FRegister>();
5245 CHECK(codegen_->GetInstructionSetFeatures().IsR6());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005246 if (type == DataType::Type::kFloat32) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005247 switch (cond) {
5248 case kCondEQ:
5249 __ CmpEqS(dst, lhs, rhs);
5250 return false;
5251 case kCondNE:
5252 __ CmpEqS(dst, lhs, rhs);
5253 return true;
5254 case kCondLT:
5255 if (gt_bias) {
5256 __ CmpLtS(dst, lhs, rhs);
5257 } else {
5258 __ CmpUltS(dst, lhs, rhs);
5259 }
5260 return false;
5261 case kCondLE:
5262 if (gt_bias) {
5263 __ CmpLeS(dst, lhs, rhs);
5264 } else {
5265 __ CmpUleS(dst, lhs, rhs);
5266 }
5267 return false;
5268 case kCondGT:
5269 if (gt_bias) {
5270 __ CmpUltS(dst, rhs, lhs);
5271 } else {
5272 __ CmpLtS(dst, rhs, lhs);
5273 }
5274 return false;
5275 case kCondGE:
5276 if (gt_bias) {
5277 __ CmpUleS(dst, rhs, lhs);
5278 } else {
5279 __ CmpLeS(dst, rhs, lhs);
5280 }
5281 return false;
5282 default:
5283 LOG(FATAL) << "Unexpected non-floating-point condition";
5284 UNREACHABLE();
5285 }
5286 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005287 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005288 switch (cond) {
5289 case kCondEQ:
5290 __ CmpEqD(dst, lhs, rhs);
5291 return false;
5292 case kCondNE:
5293 __ CmpEqD(dst, lhs, rhs);
5294 return true;
5295 case kCondLT:
5296 if (gt_bias) {
5297 __ CmpLtD(dst, lhs, rhs);
5298 } else {
5299 __ CmpUltD(dst, lhs, rhs);
5300 }
5301 return false;
5302 case kCondLE:
5303 if (gt_bias) {
5304 __ CmpLeD(dst, lhs, rhs);
5305 } else {
5306 __ CmpUleD(dst, lhs, rhs);
5307 }
5308 return false;
5309 case kCondGT:
5310 if (gt_bias) {
5311 __ CmpUltD(dst, rhs, lhs);
5312 } else {
5313 __ CmpLtD(dst, rhs, lhs);
5314 }
5315 return false;
5316 case kCondGE:
5317 if (gt_bias) {
5318 __ CmpUleD(dst, rhs, lhs);
5319 } else {
5320 __ CmpLeD(dst, rhs, lhs);
5321 }
5322 return false;
5323 default:
5324 LOG(FATAL) << "Unexpected non-floating-point condition";
5325 UNREACHABLE();
5326 }
5327 }
5328}
5329
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005330void InstructionCodeGeneratorMIPS::GenerateFpCompareAndBranch(IfCondition cond,
5331 bool gt_bias,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005332 DataType::Type type,
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005333 LocationSummary* locations,
5334 MipsLabel* label) {
5335 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
5336 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
5337 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005338 if (type == DataType::Type::kFloat32) {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005339 if (isR6) {
5340 switch (cond) {
5341 case kCondEQ:
5342 __ CmpEqS(FTMP, lhs, rhs);
5343 __ Bc1nez(FTMP, label);
5344 break;
5345 case kCondNE:
5346 __ CmpEqS(FTMP, lhs, rhs);
5347 __ Bc1eqz(FTMP, label);
5348 break;
5349 case kCondLT:
5350 if (gt_bias) {
5351 __ CmpLtS(FTMP, lhs, rhs);
5352 } else {
5353 __ CmpUltS(FTMP, lhs, rhs);
5354 }
5355 __ Bc1nez(FTMP, label);
5356 break;
5357 case kCondLE:
5358 if (gt_bias) {
5359 __ CmpLeS(FTMP, lhs, rhs);
5360 } else {
5361 __ CmpUleS(FTMP, lhs, rhs);
5362 }
5363 __ Bc1nez(FTMP, label);
5364 break;
5365 case kCondGT:
5366 if (gt_bias) {
5367 __ CmpUltS(FTMP, rhs, lhs);
5368 } else {
5369 __ CmpLtS(FTMP, rhs, lhs);
5370 }
5371 __ Bc1nez(FTMP, label);
5372 break;
5373 case kCondGE:
5374 if (gt_bias) {
5375 __ CmpUleS(FTMP, rhs, lhs);
5376 } else {
5377 __ CmpLeS(FTMP, rhs, lhs);
5378 }
5379 __ Bc1nez(FTMP, label);
5380 break;
5381 default:
5382 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005383 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005384 }
5385 } else {
5386 switch (cond) {
5387 case kCondEQ:
5388 __ CeqS(0, lhs, rhs);
5389 __ Bc1t(0, label);
5390 break;
5391 case kCondNE:
5392 __ CeqS(0, lhs, rhs);
5393 __ Bc1f(0, label);
5394 break;
5395 case kCondLT:
5396 if (gt_bias) {
5397 __ ColtS(0, lhs, rhs);
5398 } else {
5399 __ CultS(0, lhs, rhs);
5400 }
5401 __ Bc1t(0, label);
5402 break;
5403 case kCondLE:
5404 if (gt_bias) {
5405 __ ColeS(0, lhs, rhs);
5406 } else {
5407 __ CuleS(0, lhs, rhs);
5408 }
5409 __ Bc1t(0, label);
5410 break;
5411 case kCondGT:
5412 if (gt_bias) {
5413 __ CultS(0, rhs, lhs);
5414 } else {
5415 __ ColtS(0, rhs, lhs);
5416 }
5417 __ Bc1t(0, label);
5418 break;
5419 case kCondGE:
5420 if (gt_bias) {
5421 __ CuleS(0, rhs, lhs);
5422 } else {
5423 __ ColeS(0, rhs, lhs);
5424 }
5425 __ Bc1t(0, label);
5426 break;
5427 default:
5428 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005429 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005430 }
5431 }
5432 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005433 DCHECK_EQ(type, DataType::Type::kFloat64);
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005434 if (isR6) {
5435 switch (cond) {
5436 case kCondEQ:
5437 __ CmpEqD(FTMP, lhs, rhs);
5438 __ Bc1nez(FTMP, label);
5439 break;
5440 case kCondNE:
5441 __ CmpEqD(FTMP, lhs, rhs);
5442 __ Bc1eqz(FTMP, label);
5443 break;
5444 case kCondLT:
5445 if (gt_bias) {
5446 __ CmpLtD(FTMP, lhs, rhs);
5447 } else {
5448 __ CmpUltD(FTMP, lhs, rhs);
5449 }
5450 __ Bc1nez(FTMP, label);
5451 break;
5452 case kCondLE:
5453 if (gt_bias) {
5454 __ CmpLeD(FTMP, lhs, rhs);
5455 } else {
5456 __ CmpUleD(FTMP, lhs, rhs);
5457 }
5458 __ Bc1nez(FTMP, label);
5459 break;
5460 case kCondGT:
5461 if (gt_bias) {
5462 __ CmpUltD(FTMP, rhs, lhs);
5463 } else {
5464 __ CmpLtD(FTMP, rhs, lhs);
5465 }
5466 __ Bc1nez(FTMP, label);
5467 break;
5468 case kCondGE:
5469 if (gt_bias) {
5470 __ CmpUleD(FTMP, rhs, lhs);
5471 } else {
5472 __ CmpLeD(FTMP, rhs, lhs);
5473 }
5474 __ Bc1nez(FTMP, label);
5475 break;
5476 default:
5477 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005478 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005479 }
5480 } else {
5481 switch (cond) {
5482 case kCondEQ:
5483 __ CeqD(0, lhs, rhs);
5484 __ Bc1t(0, label);
5485 break;
5486 case kCondNE:
5487 __ CeqD(0, lhs, rhs);
5488 __ Bc1f(0, label);
5489 break;
5490 case kCondLT:
5491 if (gt_bias) {
5492 __ ColtD(0, lhs, rhs);
5493 } else {
5494 __ CultD(0, lhs, rhs);
5495 }
5496 __ Bc1t(0, label);
5497 break;
5498 case kCondLE:
5499 if (gt_bias) {
5500 __ ColeD(0, lhs, rhs);
5501 } else {
5502 __ CuleD(0, lhs, rhs);
5503 }
5504 __ Bc1t(0, label);
5505 break;
5506 case kCondGT:
5507 if (gt_bias) {
5508 __ CultD(0, rhs, lhs);
5509 } else {
5510 __ ColtD(0, rhs, lhs);
5511 }
5512 __ Bc1t(0, label);
5513 break;
5514 case kCondGE:
5515 if (gt_bias) {
5516 __ CuleD(0, rhs, lhs);
5517 } else {
5518 __ ColeD(0, rhs, lhs);
5519 }
5520 __ Bc1t(0, label);
5521 break;
5522 default:
5523 LOG(FATAL) << "Unexpected non-floating-point condition";
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005524 UNREACHABLE();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005525 }
5526 }
5527 }
5528}
5529
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005530void InstructionCodeGeneratorMIPS::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00005531 size_t condition_input_index,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005532 MipsLabel* true_target,
David Brazdil0debae72015-11-12 18:37:00 +00005533 MipsLabel* false_target) {
5534 HInstruction* cond = instruction->InputAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005535
David Brazdil0debae72015-11-12 18:37:00 +00005536 if (true_target == nullptr && false_target == nullptr) {
5537 // Nothing to do. The code always falls through.
5538 return;
5539 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00005540 // Constant condition, statically compared against "true" (integer value 1).
5541 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00005542 if (true_target != nullptr) {
5543 __ B(true_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005544 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005545 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00005546 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00005547 if (false_target != nullptr) {
5548 __ B(false_target);
5549 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005550 }
David Brazdil0debae72015-11-12 18:37:00 +00005551 return;
5552 }
5553
5554 // The following code generates these patterns:
5555 // (1) true_target == nullptr && false_target != nullptr
5556 // - opposite condition true => branch to false_target
5557 // (2) true_target != nullptr && false_target == nullptr
5558 // - condition true => branch to true_target
5559 // (3) true_target != nullptr && false_target != nullptr
5560 // - condition true => branch to true_target
5561 // - branch to false_target
5562 if (IsBooleanValueOrMaterializedCondition(cond)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005563 // The condition instruction has been materialized, compare the output to 0.
David Brazdil0debae72015-11-12 18:37:00 +00005564 Location cond_val = instruction->GetLocations()->InAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005565 DCHECK(cond_val.IsRegister());
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005566 if (true_target == nullptr) {
David Brazdil0debae72015-11-12 18:37:00 +00005567 __ Beqz(cond_val.AsRegister<Register>(), false_target);
5568 } else {
5569 __ Bnez(cond_val.AsRegister<Register>(), true_target);
5570 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005571 } else {
5572 // The condition instruction has not been materialized, use its inputs as
5573 // the comparison and its condition as the branch condition.
David Brazdil0debae72015-11-12 18:37:00 +00005574 HCondition* condition = cond->AsCondition();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005575 DataType::Type type = condition->InputAt(0)->GetType();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005576 LocationSummary* locations = cond->GetLocations();
5577 IfCondition if_cond = condition->GetCondition();
5578 MipsLabel* branch_target = true_target;
David Brazdil0debae72015-11-12 18:37:00 +00005579
David Brazdil0debae72015-11-12 18:37:00 +00005580 if (true_target == nullptr) {
5581 if_cond = condition->GetOppositeCondition();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005582 branch_target = false_target;
David Brazdil0debae72015-11-12 18:37:00 +00005583 }
5584
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005585 switch (type) {
5586 default:
5587 GenerateIntCompareAndBranch(if_cond, locations, branch_target);
5588 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005589 case DataType::Type::kInt64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005590 GenerateLongCompareAndBranch(if_cond, locations, branch_target);
5591 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005592 case DataType::Type::kFloat32:
5593 case DataType::Type::kFloat64:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08005594 GenerateFpCompareAndBranch(if_cond, condition->IsGtBias(), type, locations, branch_target);
5595 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005596 }
5597 }
David Brazdil0debae72015-11-12 18:37:00 +00005598
5599 // If neither branch falls through (case 3), the conditional branch to `true_target`
5600 // was already emitted (case 2) and we need to emit a jump to `false_target`.
5601 if (true_target != nullptr && false_target != nullptr) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005602 __ B(false_target);
5603 }
5604}
5605
5606void LocationsBuilderMIPS::VisitIf(HIf* if_instr) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005607 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(if_instr);
David Brazdil0debae72015-11-12 18:37:00 +00005608 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005609 locations->SetInAt(0, Location::RequiresRegister());
5610 }
5611}
5612
5613void InstructionCodeGeneratorMIPS::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00005614 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
5615 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
5616 MipsLabel* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
5617 nullptr : codegen_->GetLabelOf(true_successor);
5618 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
5619 nullptr : codegen_->GetLabelOf(false_successor);
5620 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005621}
5622
5623void LocationsBuilderMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01005624 LocationSummary* locations = new (GetGraph()->GetAllocator())
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005625 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +01005626 InvokeRuntimeCallingConvention calling_convention;
5627 RegisterSet caller_saves = RegisterSet::Empty();
5628 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5629 locations->SetCustomSlowPathCallerSaves(caller_saves);
David Brazdil0debae72015-11-12 18:37:00 +00005630 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005631 locations->SetInAt(0, Location::RequiresRegister());
5632 }
5633}
5634
5635void InstructionCodeGeneratorMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08005636 SlowPathCodeMIPS* slow_path =
5637 deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathMIPS>(deoptimize);
David Brazdil0debae72015-11-12 18:37:00 +00005638 GenerateTestAndBranch(deoptimize,
5639 /* condition_input_index */ 0,
5640 slow_path->GetEntryLabel(),
5641 /* false_target */ nullptr);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005642}
5643
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005644// This function returns true if a conditional move can be generated for HSelect.
5645// Otherwise it returns false and HSelect must be implemented in terms of conditonal
5646// branches and regular moves.
5647//
5648// If `locations_to_set` isn't nullptr, its inputs and outputs are set for HSelect.
5649//
5650// While determining feasibility of a conditional move and setting inputs/outputs
5651// are two distinct tasks, this function does both because they share quite a bit
5652// of common logic.
5653static bool CanMoveConditionally(HSelect* select, bool is_r6, LocationSummary* locations_to_set) {
5654 bool materialized = IsBooleanValueOrMaterializedCondition(select->GetCondition());
5655 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
5656 HCondition* condition = cond->AsCondition();
5657
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005658 DataType::Type cond_type =
5659 materialized ? DataType::Type::kInt32 : condition->InputAt(0)->GetType();
5660 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005661
5662 HConstant* cst_true_value = select->GetTrueValue()->AsConstant();
5663 HConstant* cst_false_value = select->GetFalseValue()->AsConstant();
5664 bool is_true_value_zero_constant =
5665 (cst_true_value != nullptr && cst_true_value->IsZeroBitPattern());
5666 bool is_false_value_zero_constant =
5667 (cst_false_value != nullptr && cst_false_value->IsZeroBitPattern());
5668
5669 bool can_move_conditionally = false;
5670 bool use_const_for_false_in = false;
5671 bool use_const_for_true_in = false;
5672
5673 if (!cond->IsConstant()) {
5674 switch (cond_type) {
5675 default:
5676 switch (dst_type) {
5677 default:
5678 // Moving int on int condition.
5679 if (is_r6) {
5680 if (is_true_value_zero_constant) {
5681 // seleqz out_reg, false_reg, cond_reg
5682 can_move_conditionally = true;
5683 use_const_for_true_in = true;
5684 } else if (is_false_value_zero_constant) {
5685 // selnez out_reg, true_reg, cond_reg
5686 can_move_conditionally = true;
5687 use_const_for_false_in = true;
5688 } else if (materialized) {
5689 // Not materializing unmaterialized int conditions
5690 // to keep the instruction count low.
5691 // selnez AT, true_reg, cond_reg
5692 // seleqz TMP, false_reg, cond_reg
5693 // or out_reg, AT, TMP
5694 can_move_conditionally = true;
5695 }
5696 } else {
5697 // movn out_reg, true_reg/ZERO, cond_reg
5698 can_move_conditionally = true;
5699 use_const_for_true_in = is_true_value_zero_constant;
5700 }
5701 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005702 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005703 // Moving long on int condition.
5704 if (is_r6) {
5705 if (is_true_value_zero_constant) {
5706 // seleqz out_reg_lo, false_reg_lo, cond_reg
5707 // seleqz out_reg_hi, false_reg_hi, cond_reg
5708 can_move_conditionally = true;
5709 use_const_for_true_in = true;
5710 } else if (is_false_value_zero_constant) {
5711 // selnez out_reg_lo, true_reg_lo, cond_reg
5712 // selnez out_reg_hi, true_reg_hi, cond_reg
5713 can_move_conditionally = true;
5714 use_const_for_false_in = true;
5715 }
5716 // Other long conditional moves would generate 6+ instructions,
5717 // which is too many.
5718 } else {
5719 // movn out_reg_lo, true_reg_lo/ZERO, cond_reg
5720 // movn out_reg_hi, true_reg_hi/ZERO, cond_reg
5721 can_move_conditionally = true;
5722 use_const_for_true_in = is_true_value_zero_constant;
5723 }
5724 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005725 case DataType::Type::kFloat32:
5726 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005727 // Moving float/double on int condition.
5728 if (is_r6) {
5729 if (materialized) {
5730 // Not materializing unmaterialized int conditions
5731 // to keep the instruction count low.
5732 can_move_conditionally = true;
5733 if (is_true_value_zero_constant) {
5734 // sltu TMP, ZERO, cond_reg
5735 // mtc1 TMP, temp_cond_reg
5736 // seleqz.fmt out_reg, false_reg, temp_cond_reg
5737 use_const_for_true_in = true;
5738 } else if (is_false_value_zero_constant) {
5739 // sltu TMP, ZERO, cond_reg
5740 // mtc1 TMP, temp_cond_reg
5741 // selnez.fmt out_reg, true_reg, temp_cond_reg
5742 use_const_for_false_in = true;
5743 } else {
5744 // sltu TMP, ZERO, cond_reg
5745 // mtc1 TMP, temp_cond_reg
5746 // sel.fmt temp_cond_reg, false_reg, true_reg
5747 // mov.fmt out_reg, temp_cond_reg
5748 }
5749 }
5750 } else {
5751 // movn.fmt out_reg, true_reg, cond_reg
5752 can_move_conditionally = true;
5753 }
5754 break;
5755 }
5756 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005757 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005758 // We don't materialize long comparison now
5759 // and use conditional branches instead.
5760 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005761 case DataType::Type::kFloat32:
5762 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005763 switch (dst_type) {
5764 default:
5765 // Moving int on float/double condition.
5766 if (is_r6) {
5767 if (is_true_value_zero_constant) {
5768 // mfc1 TMP, temp_cond_reg
5769 // seleqz out_reg, false_reg, TMP
5770 can_move_conditionally = true;
5771 use_const_for_true_in = true;
5772 } else if (is_false_value_zero_constant) {
5773 // mfc1 TMP, temp_cond_reg
5774 // selnez out_reg, true_reg, TMP
5775 can_move_conditionally = true;
5776 use_const_for_false_in = true;
5777 } else {
5778 // mfc1 TMP, temp_cond_reg
5779 // selnez AT, true_reg, TMP
5780 // seleqz TMP, false_reg, TMP
5781 // or out_reg, AT, TMP
5782 can_move_conditionally = true;
5783 }
5784 } else {
5785 // movt out_reg, true_reg/ZERO, cc
5786 can_move_conditionally = true;
5787 use_const_for_true_in = is_true_value_zero_constant;
5788 }
5789 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005790 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005791 // Moving long on float/double condition.
5792 if (is_r6) {
5793 if (is_true_value_zero_constant) {
5794 // mfc1 TMP, temp_cond_reg
5795 // seleqz out_reg_lo, false_reg_lo, TMP
5796 // seleqz out_reg_hi, false_reg_hi, TMP
5797 can_move_conditionally = true;
5798 use_const_for_true_in = true;
5799 } else if (is_false_value_zero_constant) {
5800 // mfc1 TMP, temp_cond_reg
5801 // selnez out_reg_lo, true_reg_lo, TMP
5802 // selnez out_reg_hi, true_reg_hi, TMP
5803 can_move_conditionally = true;
5804 use_const_for_false_in = true;
5805 }
5806 // Other long conditional moves would generate 6+ instructions,
5807 // which is too many.
5808 } else {
5809 // movt out_reg_lo, true_reg_lo/ZERO, cc
5810 // movt out_reg_hi, true_reg_hi/ZERO, cc
5811 can_move_conditionally = true;
5812 use_const_for_true_in = is_true_value_zero_constant;
5813 }
5814 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005815 case DataType::Type::kFloat32:
5816 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005817 // Moving float/double on float/double condition.
5818 if (is_r6) {
5819 can_move_conditionally = true;
5820 if (is_true_value_zero_constant) {
5821 // seleqz.fmt out_reg, false_reg, temp_cond_reg
5822 use_const_for_true_in = true;
5823 } else if (is_false_value_zero_constant) {
5824 // selnez.fmt out_reg, true_reg, temp_cond_reg
5825 use_const_for_false_in = true;
5826 } else {
5827 // sel.fmt temp_cond_reg, false_reg, true_reg
5828 // mov.fmt out_reg, temp_cond_reg
5829 }
5830 } else {
5831 // movt.fmt out_reg, true_reg, cc
5832 can_move_conditionally = true;
5833 }
5834 break;
5835 }
5836 break;
5837 }
5838 }
5839
5840 if (can_move_conditionally) {
5841 DCHECK(!use_const_for_false_in || !use_const_for_true_in);
5842 } else {
5843 DCHECK(!use_const_for_false_in);
5844 DCHECK(!use_const_for_true_in);
5845 }
5846
5847 if (locations_to_set != nullptr) {
5848 if (use_const_for_false_in) {
5849 locations_to_set->SetInAt(0, Location::ConstantLocation(cst_false_value));
5850 } else {
5851 locations_to_set->SetInAt(0,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005852 DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005853 ? Location::RequiresFpuRegister()
5854 : Location::RequiresRegister());
5855 }
5856 if (use_const_for_true_in) {
5857 locations_to_set->SetInAt(1, Location::ConstantLocation(cst_true_value));
5858 } else {
5859 locations_to_set->SetInAt(1,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005860 DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005861 ? Location::RequiresFpuRegister()
5862 : Location::RequiresRegister());
5863 }
5864 if (materialized) {
5865 locations_to_set->SetInAt(2, Location::RequiresRegister());
5866 }
5867 // On R6 we don't require the output to be the same as the
5868 // first input for conditional moves unlike on R2.
5869 bool is_out_same_as_first_in = !can_move_conditionally || !is_r6;
5870 if (is_out_same_as_first_in) {
5871 locations_to_set->SetOut(Location::SameAsFirstInput());
5872 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005873 locations_to_set->SetOut(DataType::IsFloatingPointType(dst_type)
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005874 ? Location::RequiresFpuRegister()
5875 : Location::RequiresRegister());
5876 }
5877 }
5878
5879 return can_move_conditionally;
5880}
5881
5882void InstructionCodeGeneratorMIPS::GenConditionalMoveR2(HSelect* select) {
5883 LocationSummary* locations = select->GetLocations();
5884 Location dst = locations->Out();
5885 Location src = locations->InAt(1);
5886 Register src_reg = ZERO;
5887 Register src_reg_high = ZERO;
5888 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
5889 Register cond_reg = TMP;
5890 int cond_cc = 0;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005891 DataType::Type cond_type = DataType::Type::kInt32;
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005892 bool cond_inverted = false;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005893 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005894
5895 if (IsBooleanValueOrMaterializedCondition(cond)) {
5896 cond_reg = locations->InAt(/* condition_input_index */ 2).AsRegister<Register>();
5897 } else {
5898 HCondition* condition = cond->AsCondition();
5899 LocationSummary* cond_locations = cond->GetLocations();
5900 IfCondition if_cond = condition->GetCondition();
5901 cond_type = condition->InputAt(0)->GetType();
5902 switch (cond_type) {
5903 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005904 DCHECK_NE(cond_type, DataType::Type::kInt64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005905 cond_inverted = MaterializeIntCompare(if_cond, cond_locations, cond_reg);
5906 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005907 case DataType::Type::kFloat32:
5908 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005909 cond_inverted = MaterializeFpCompareR2(if_cond,
5910 condition->IsGtBias(),
5911 cond_type,
5912 cond_locations,
5913 cond_cc);
5914 break;
5915 }
5916 }
5917
5918 DCHECK(dst.Equals(locations->InAt(0)));
5919 if (src.IsRegister()) {
5920 src_reg = src.AsRegister<Register>();
5921 } else if (src.IsRegisterPair()) {
5922 src_reg = src.AsRegisterPairLow<Register>();
5923 src_reg_high = src.AsRegisterPairHigh<Register>();
5924 } else if (src.IsConstant()) {
5925 DCHECK(src.GetConstant()->IsZeroBitPattern());
5926 }
5927
5928 switch (cond_type) {
5929 default:
5930 switch (dst_type) {
5931 default:
5932 if (cond_inverted) {
5933 __ Movz(dst.AsRegister<Register>(), src_reg, cond_reg);
5934 } else {
5935 __ Movn(dst.AsRegister<Register>(), src_reg, cond_reg);
5936 }
5937 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005938 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005939 if (cond_inverted) {
5940 __ Movz(dst.AsRegisterPairLow<Register>(), src_reg, cond_reg);
5941 __ Movz(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_reg);
5942 } else {
5943 __ Movn(dst.AsRegisterPairLow<Register>(), src_reg, cond_reg);
5944 __ Movn(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_reg);
5945 }
5946 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005947 case DataType::Type::kFloat32:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005948 if (cond_inverted) {
5949 __ MovzS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5950 } else {
5951 __ MovnS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5952 }
5953 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005954 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005955 if (cond_inverted) {
5956 __ MovzD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5957 } else {
5958 __ MovnD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_reg);
5959 }
5960 break;
5961 }
5962 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005963 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005964 LOG(FATAL) << "Unreachable";
5965 UNREACHABLE();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005966 case DataType::Type::kFloat32:
5967 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005968 switch (dst_type) {
5969 default:
5970 if (cond_inverted) {
5971 __ Movf(dst.AsRegister<Register>(), src_reg, cond_cc);
5972 } else {
5973 __ Movt(dst.AsRegister<Register>(), src_reg, cond_cc);
5974 }
5975 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005976 case DataType::Type::kInt64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005977 if (cond_inverted) {
5978 __ Movf(dst.AsRegisterPairLow<Register>(), src_reg, cond_cc);
5979 __ Movf(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_cc);
5980 } else {
5981 __ Movt(dst.AsRegisterPairLow<Register>(), src_reg, cond_cc);
5982 __ Movt(dst.AsRegisterPairHigh<Register>(), src_reg_high, cond_cc);
5983 }
5984 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005985 case DataType::Type::kFloat32:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005986 if (cond_inverted) {
5987 __ MovfS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5988 } else {
5989 __ MovtS(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5990 }
5991 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01005992 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07005993 if (cond_inverted) {
5994 __ MovfD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5995 } else {
5996 __ MovtD(dst.AsFpuRegister<FRegister>(), src.AsFpuRegister<FRegister>(), cond_cc);
5997 }
5998 break;
5999 }
6000 break;
6001 }
6002}
6003
6004void InstructionCodeGeneratorMIPS::GenConditionalMoveR6(HSelect* select) {
6005 LocationSummary* locations = select->GetLocations();
6006 Location dst = locations->Out();
6007 Location false_src = locations->InAt(0);
6008 Location true_src = locations->InAt(1);
6009 HInstruction* cond = select->InputAt(/* condition_input_index */ 2);
6010 Register cond_reg = TMP;
6011 FRegister fcond_reg = FTMP;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006012 DataType::Type cond_type = DataType::Type::kInt32;
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006013 bool cond_inverted = false;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006014 DataType::Type dst_type = select->GetType();
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006015
6016 if (IsBooleanValueOrMaterializedCondition(cond)) {
6017 cond_reg = locations->InAt(/* condition_input_index */ 2).AsRegister<Register>();
6018 } else {
6019 HCondition* condition = cond->AsCondition();
6020 LocationSummary* cond_locations = cond->GetLocations();
6021 IfCondition if_cond = condition->GetCondition();
6022 cond_type = condition->InputAt(0)->GetType();
6023 switch (cond_type) {
6024 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006025 DCHECK_NE(cond_type, DataType::Type::kInt64);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006026 cond_inverted = MaterializeIntCompare(if_cond, cond_locations, cond_reg);
6027 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006028 case DataType::Type::kFloat32:
6029 case DataType::Type::kFloat64:
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006030 cond_inverted = MaterializeFpCompareR6(if_cond,
6031 condition->IsGtBias(),
6032 cond_type,
6033 cond_locations,
6034 fcond_reg);
6035 break;
6036 }
6037 }
6038
6039 if (true_src.IsConstant()) {
6040 DCHECK(true_src.GetConstant()->IsZeroBitPattern());
6041 }
6042 if (false_src.IsConstant()) {
6043 DCHECK(false_src.GetConstant()->IsZeroBitPattern());
6044 }
6045
6046 switch (dst_type) {
6047 default:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006048 if (DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006049 __ Mfc1(cond_reg, fcond_reg);
6050 }
6051 if (true_src.IsConstant()) {
6052 if (cond_inverted) {
6053 __ Selnez(dst.AsRegister<Register>(), false_src.AsRegister<Register>(), cond_reg);
6054 } else {
6055 __ Seleqz(dst.AsRegister<Register>(), false_src.AsRegister<Register>(), cond_reg);
6056 }
6057 } else if (false_src.IsConstant()) {
6058 if (cond_inverted) {
6059 __ Seleqz(dst.AsRegister<Register>(), true_src.AsRegister<Register>(), cond_reg);
6060 } else {
6061 __ Selnez(dst.AsRegister<Register>(), true_src.AsRegister<Register>(), cond_reg);
6062 }
6063 } else {
6064 DCHECK_NE(cond_reg, AT);
6065 if (cond_inverted) {
6066 __ Seleqz(AT, true_src.AsRegister<Register>(), cond_reg);
6067 __ Selnez(TMP, false_src.AsRegister<Register>(), cond_reg);
6068 } else {
6069 __ Selnez(AT, true_src.AsRegister<Register>(), cond_reg);
6070 __ Seleqz(TMP, false_src.AsRegister<Register>(), cond_reg);
6071 }
6072 __ Or(dst.AsRegister<Register>(), AT, TMP);
6073 }
6074 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006075 case DataType::Type::kInt64: {
6076 if (DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006077 __ Mfc1(cond_reg, fcond_reg);
6078 }
6079 Register dst_lo = dst.AsRegisterPairLow<Register>();
6080 Register dst_hi = dst.AsRegisterPairHigh<Register>();
6081 if (true_src.IsConstant()) {
6082 Register src_lo = false_src.AsRegisterPairLow<Register>();
6083 Register src_hi = false_src.AsRegisterPairHigh<Register>();
6084 if (cond_inverted) {
6085 __ Selnez(dst_lo, src_lo, cond_reg);
6086 __ Selnez(dst_hi, src_hi, cond_reg);
6087 } else {
6088 __ Seleqz(dst_lo, src_lo, cond_reg);
6089 __ Seleqz(dst_hi, src_hi, cond_reg);
6090 }
6091 } else {
6092 DCHECK(false_src.IsConstant());
6093 Register src_lo = true_src.AsRegisterPairLow<Register>();
6094 Register src_hi = true_src.AsRegisterPairHigh<Register>();
6095 if (cond_inverted) {
6096 __ Seleqz(dst_lo, src_lo, cond_reg);
6097 __ Seleqz(dst_hi, src_hi, cond_reg);
6098 } else {
6099 __ Selnez(dst_lo, src_lo, cond_reg);
6100 __ Selnez(dst_hi, src_hi, cond_reg);
6101 }
6102 }
6103 break;
6104 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006105 case DataType::Type::kFloat32: {
6106 if (!DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006107 // sel*.fmt tests bit 0 of the condition register, account for that.
6108 __ Sltu(TMP, ZERO, cond_reg);
6109 __ Mtc1(TMP, fcond_reg);
6110 }
6111 FRegister dst_reg = dst.AsFpuRegister<FRegister>();
6112 if (true_src.IsConstant()) {
6113 FRegister src_reg = false_src.AsFpuRegister<FRegister>();
6114 if (cond_inverted) {
6115 __ SelnezS(dst_reg, src_reg, fcond_reg);
6116 } else {
6117 __ SeleqzS(dst_reg, src_reg, fcond_reg);
6118 }
6119 } else if (false_src.IsConstant()) {
6120 FRegister src_reg = true_src.AsFpuRegister<FRegister>();
6121 if (cond_inverted) {
6122 __ SeleqzS(dst_reg, src_reg, fcond_reg);
6123 } else {
6124 __ SelnezS(dst_reg, src_reg, fcond_reg);
6125 }
6126 } else {
6127 if (cond_inverted) {
6128 __ SelS(fcond_reg,
6129 true_src.AsFpuRegister<FRegister>(),
6130 false_src.AsFpuRegister<FRegister>());
6131 } else {
6132 __ SelS(fcond_reg,
6133 false_src.AsFpuRegister<FRegister>(),
6134 true_src.AsFpuRegister<FRegister>());
6135 }
6136 __ MovS(dst_reg, fcond_reg);
6137 }
6138 break;
6139 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006140 case DataType::Type::kFloat64: {
6141 if (!DataType::IsFloatingPointType(cond_type)) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006142 // sel*.fmt tests bit 0 of the condition register, account for that.
6143 __ Sltu(TMP, ZERO, cond_reg);
6144 __ Mtc1(TMP, fcond_reg);
6145 }
6146 FRegister dst_reg = dst.AsFpuRegister<FRegister>();
6147 if (true_src.IsConstant()) {
6148 FRegister src_reg = false_src.AsFpuRegister<FRegister>();
6149 if (cond_inverted) {
6150 __ SelnezD(dst_reg, src_reg, fcond_reg);
6151 } else {
6152 __ SeleqzD(dst_reg, src_reg, fcond_reg);
6153 }
6154 } else if (false_src.IsConstant()) {
6155 FRegister src_reg = true_src.AsFpuRegister<FRegister>();
6156 if (cond_inverted) {
6157 __ SeleqzD(dst_reg, src_reg, fcond_reg);
6158 } else {
6159 __ SelnezD(dst_reg, src_reg, fcond_reg);
6160 }
6161 } else {
6162 if (cond_inverted) {
6163 __ SelD(fcond_reg,
6164 true_src.AsFpuRegister<FRegister>(),
6165 false_src.AsFpuRegister<FRegister>());
6166 } else {
6167 __ SelD(fcond_reg,
6168 false_src.AsFpuRegister<FRegister>(),
6169 true_src.AsFpuRegister<FRegister>());
6170 }
6171 __ MovD(dst_reg, fcond_reg);
6172 }
6173 break;
6174 }
6175 }
6176}
6177
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006178void LocationsBuilderMIPS::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006179 LocationSummary* locations = new (GetGraph()->GetAllocator())
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006180 LocationSummary(flag, LocationSummary::kNoCall);
6181 locations->SetOut(Location::RequiresRegister());
Mingyao Yang063fc772016-08-02 11:02:54 -07006182}
6183
Goran Jakovljevicc6418422016-12-05 16:31:55 +01006184void InstructionCodeGeneratorMIPS::VisitShouldDeoptimizeFlag(HShouldDeoptimizeFlag* flag) {
6185 __ LoadFromOffset(kLoadWord,
6186 flag->GetLocations()->Out().AsRegister<Register>(),
6187 SP,
6188 codegen_->GetStackOffsetOfShouldDeoptimizeFlag());
Mingyao Yang063fc772016-08-02 11:02:54 -07006189}
6190
David Brazdil74eb1b22015-12-14 11:44:01 +00006191void LocationsBuilderMIPS::VisitSelect(HSelect* select) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006192 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(select);
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006193 CanMoveConditionally(select, codegen_->GetInstructionSetFeatures().IsR6(), locations);
David Brazdil74eb1b22015-12-14 11:44:01 +00006194}
6195
6196void InstructionCodeGeneratorMIPS::VisitSelect(HSelect* select) {
Alexey Frunze674b9ee2016-09-20 14:54:15 -07006197 bool is_r6 = codegen_->GetInstructionSetFeatures().IsR6();
6198 if (CanMoveConditionally(select, is_r6, /* locations_to_set */ nullptr)) {
6199 if (is_r6) {
6200 GenConditionalMoveR6(select);
6201 } else {
6202 GenConditionalMoveR2(select);
6203 }
6204 } else {
6205 LocationSummary* locations = select->GetLocations();
6206 MipsLabel false_target;
6207 GenerateTestAndBranch(select,
6208 /* condition_input_index */ 2,
6209 /* true_target */ nullptr,
6210 &false_target);
6211 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
6212 __ Bind(&false_target);
6213 }
David Brazdil74eb1b22015-12-14 11:44:01 +00006214}
6215
David Srbecky0cf44932015-12-09 14:09:59 +00006216void LocationsBuilderMIPS::VisitNativeDebugInfo(HNativeDebugInfo* info) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01006217 new (GetGraph()->GetAllocator()) LocationSummary(info);
David Srbecky0cf44932015-12-09 14:09:59 +00006218}
6219
David Srbeckyd28f4a02016-03-14 17:14:24 +00006220void InstructionCodeGeneratorMIPS::VisitNativeDebugInfo(HNativeDebugInfo*) {
6221 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00006222}
6223
6224void CodeGeneratorMIPS::GenerateNop() {
6225 __ Nop();
David Srbecky0cf44932015-12-09 14:09:59 +00006226}
6227
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006228void LocationsBuilderMIPS::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006229 DataType::Type field_type = field_info.GetFieldType();
6230 bool is_wide = (field_type == DataType::Type::kInt64) || (field_type == DataType::Type::kFloat64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006231 bool generate_volatile = field_info.IsVolatile() && is_wide;
Alexey Frunze15958152017-02-09 19:08:30 -08006232 bool object_field_get_with_read_barrier =
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006233 kEmitCompilerReadBarrier && (field_type == DataType::Type::kReference);
Vladimir Markoca6fff82017-10-03 14:49:14 +01006234 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Alexey Frunze15958152017-02-09 19:08:30 -08006235 instruction,
6236 generate_volatile
6237 ? LocationSummary::kCallOnMainOnly
6238 : (object_field_get_with_read_barrier
6239 ? LocationSummary::kCallOnSlowPath
6240 : LocationSummary::kNoCall));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006241
Alexey Frunzec61c0762017-04-10 13:54:23 -07006242 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
6243 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
6244 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006245 locations->SetInAt(0, Location::RequiresRegister());
6246 if (generate_volatile) {
6247 InvokeRuntimeCallingConvention calling_convention;
6248 // need A0 to hold base + offset
6249 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006250 if (field_type == DataType::Type::kInt64) {
6251 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kInt64));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006252 } else {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006253 // Use Location::Any() to prevent situations when running out of available fp registers.
6254 locations->SetOut(Location::Any());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006255 // Need some temp core regs since FP results are returned in core registers
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006256 Location reg = calling_convention.GetReturnLocation(DataType::Type::kInt64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006257 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairLow<Register>()));
6258 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairHigh<Register>()));
6259 }
6260 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006261 if (DataType::IsFloatingPointType(instruction->GetType())) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006262 locations->SetOut(Location::RequiresFpuRegister());
6263 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006264 // The output overlaps in the case of an object field get with
6265 // read barriers enabled: we do not want the move to overwrite the
6266 // object's location, as we need it to emit the read barrier.
6267 locations->SetOut(Location::RequiresRegister(),
6268 object_field_get_with_read_barrier
6269 ? Location::kOutputOverlap
6270 : Location::kNoOutputOverlap);
6271 }
6272 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
6273 // We need a temporary register for the read barrier marking slow
6274 // path in CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier.
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006275 if (!kBakerReadBarrierThunksEnableForFields) {
6276 locations->AddTemp(Location::RequiresRegister());
6277 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006278 }
6279 }
6280}
6281
6282void InstructionCodeGeneratorMIPS::HandleFieldGet(HInstruction* instruction,
6283 const FieldInfo& field_info,
6284 uint32_t dex_pc) {
Vladimir Marko61b92282017-10-11 13:23:17 +01006285 DCHECK_EQ(DataType::Size(field_info.GetFieldType()), DataType::Size(instruction->GetType()));
6286 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006287 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08006288 Location obj_loc = locations->InAt(0);
6289 Register obj = obj_loc.AsRegister<Register>();
6290 Location dst_loc = locations->Out();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006291 LoadOperandType load_type = kLoadUnsignedByte;
6292 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006293 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Tijana Jakovljevic57433862017-01-17 16:59:03 +01006294 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006295
6296 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006297 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006298 case DataType::Type::kUint8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006299 load_type = kLoadUnsignedByte;
6300 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006301 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006302 load_type = kLoadSignedByte;
6303 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006304 case DataType::Type::kUint16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006305 load_type = kLoadUnsignedHalfword;
6306 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006307 case DataType::Type::kInt16:
6308 load_type = kLoadSignedHalfword;
6309 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006310 case DataType::Type::kInt32:
6311 case DataType::Type::kFloat32:
6312 case DataType::Type::kReference:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006313 load_type = kLoadWord;
6314 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006315 case DataType::Type::kInt64:
6316 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006317 load_type = kLoadDoubleword;
6318 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006319 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006320 LOG(FATAL) << "Unreachable type " << type;
6321 UNREACHABLE();
6322 }
6323
6324 if (is_volatile && load_type == kLoadDoubleword) {
6325 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006326 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006327 // Do implicit Null check
Goran Jakovljevic2e61a572017-10-23 08:58:15 +02006328 __ LoadFromOffset(kLoadWord,
6329 ZERO,
6330 locations->GetTemp(0).AsRegister<Register>(),
6331 0,
6332 null_checker);
Serban Constantinescufca16662016-07-14 09:21:59 +01006333 codegen_->InvokeRuntime(kQuickA64Load, instruction, dex_pc);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006334 CheckEntrypointTypes<kQuickA64Load, int64_t, volatile const int64_t*>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006335 if (type == DataType::Type::kFloat64) {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006336 // FP results are returned in core registers. Need to move them.
Alexey Frunze15958152017-02-09 19:08:30 -08006337 if (dst_loc.IsFpuRegister()) {
6338 __ Mtc1(locations->GetTemp(1).AsRegister<Register>(), dst_loc.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006339 __ MoveToFpuHigh(locations->GetTemp(2).AsRegister<Register>(),
Alexey Frunze15958152017-02-09 19:08:30 -08006340 dst_loc.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006341 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006342 DCHECK(dst_loc.IsDoubleStackSlot());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006343 __ StoreToOffset(kStoreWord,
6344 locations->GetTemp(1).AsRegister<Register>(),
6345 SP,
Alexey Frunze15958152017-02-09 19:08:30 -08006346 dst_loc.GetStackIndex());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006347 __ StoreToOffset(kStoreWord,
6348 locations->GetTemp(2).AsRegister<Register>(),
6349 SP,
Alexey Frunze15958152017-02-09 19:08:30 -08006350 dst_loc.GetStackIndex() + 4);
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006351 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006352 }
6353 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006354 if (type == DataType::Type::kReference) {
Alexey Frunze15958152017-02-09 19:08:30 -08006355 // /* HeapReference<Object> */ dst = *(obj + offset)
6356 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006357 Location temp_loc =
6358 kBakerReadBarrierThunksEnableForFields ? Location::NoLocation() : locations->GetTemp(0);
Alexey Frunze15958152017-02-09 19:08:30 -08006359 // Note that a potential implicit null check is handled in this
6360 // CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier call.
6361 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6362 dst_loc,
6363 obj,
6364 offset,
6365 temp_loc,
6366 /* needs_null_check */ true);
6367 if (is_volatile) {
6368 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6369 }
6370 } else {
6371 __ LoadFromOffset(kLoadWord, dst_loc.AsRegister<Register>(), obj, offset, null_checker);
6372 if (is_volatile) {
6373 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6374 }
6375 // If read barriers are enabled, emit read barriers other than
6376 // Baker's using a slow path (and also unpoison the loaded
6377 // reference, if heap poisoning is enabled).
6378 codegen_->MaybeGenerateReadBarrierSlow(instruction, dst_loc, dst_loc, obj_loc, offset);
6379 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006380 } else if (!DataType::IsFloatingPointType(type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006381 Register dst;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006382 if (type == DataType::Type::kInt64) {
Alexey Frunze15958152017-02-09 19:08:30 -08006383 DCHECK(dst_loc.IsRegisterPair());
6384 dst = dst_loc.AsRegisterPairLow<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006385 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006386 DCHECK(dst_loc.IsRegister());
6387 dst = dst_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006388 }
Alexey Frunze2923db72016-08-20 01:55:47 -07006389 __ LoadFromOffset(load_type, dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006390 } else {
Alexey Frunze15958152017-02-09 19:08:30 -08006391 DCHECK(dst_loc.IsFpuRegister());
6392 FRegister dst = dst_loc.AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006393 if (type == DataType::Type::kFloat32) {
Alexey Frunze2923db72016-08-20 01:55:47 -07006394 __ LoadSFromOffset(dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006395 } else {
Alexey Frunze2923db72016-08-20 01:55:47 -07006396 __ LoadDFromOffset(dst, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006397 }
6398 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006399 }
6400
Alexey Frunze15958152017-02-09 19:08:30 -08006401 // Memory barriers, in the case of references, are handled in the
6402 // previous switch statement.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006403 if (is_volatile && (type != DataType::Type::kReference)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006404 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
6405 }
6406}
6407
6408void LocationsBuilderMIPS::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006409 DataType::Type field_type = field_info.GetFieldType();
6410 bool is_wide = (field_type == DataType::Type::kInt64) || (field_type == DataType::Type::kFloat64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006411 bool generate_volatile = field_info.IsVolatile() && is_wide;
Vladimir Markoca6fff82017-10-03 14:49:14 +01006412 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006413 instruction, generate_volatile ? LocationSummary::kCallOnMainOnly : LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006414
6415 locations->SetInAt(0, Location::RequiresRegister());
6416 if (generate_volatile) {
6417 InvokeRuntimeCallingConvention calling_convention;
6418 // need A0 to hold base + offset
6419 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006420 if (field_type == DataType::Type::kInt64) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006421 locations->SetInAt(1, Location::RegisterPairLocation(
6422 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
6423 } else {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006424 // Use Location::Any() to prevent situations when running out of available fp registers.
6425 locations->SetInAt(1, Location::Any());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006426 // Pass FP parameters in core registers.
6427 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
6428 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(3)));
6429 }
6430 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006431 if (DataType::IsFloatingPointType(field_type)) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006432 locations->SetInAt(1, FpuRegisterOrConstantForStore(instruction->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006433 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006434 locations->SetInAt(1, RegisterOrZeroConstant(instruction->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006435 }
6436 }
6437}
6438
6439void InstructionCodeGeneratorMIPS::HandleFieldSet(HInstruction* instruction,
6440 const FieldInfo& field_info,
Goran Jakovljevice114da22016-12-26 14:21:43 +01006441 uint32_t dex_pc,
6442 bool value_can_be_null) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006443 DataType::Type type = field_info.GetFieldType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006444 LocationSummary* locations = instruction->GetLocations();
6445 Register obj = locations->InAt(0).AsRegister<Register>();
Alexey Frunzef58b2482016-09-02 22:14:06 -07006446 Location value_location = locations->InAt(1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006447 StoreOperandType store_type = kStoreByte;
6448 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006449 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Alexey Frunzec061de12017-02-14 13:27:23 -08006450 bool needs_write_barrier = CodeGenerator::StoreNeedsWriteBarrier(type, instruction->InputAt(1));
Tijana Jakovljevic57433862017-01-17 16:59:03 +01006451 auto null_checker = GetImplicitNullChecker(instruction, codegen_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006452
6453 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006454 case DataType::Type::kBool:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006455 case DataType::Type::kUint8:
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006456 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006457 store_type = kStoreByte;
6458 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006459 case DataType::Type::kUint16:
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01006460 case DataType::Type::kInt16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006461 store_type = kStoreHalfword;
6462 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006463 case DataType::Type::kInt32:
6464 case DataType::Type::kFloat32:
6465 case DataType::Type::kReference:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006466 store_type = kStoreWord;
6467 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006468 case DataType::Type::kInt64:
6469 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006470 store_type = kStoreDoubleword;
6471 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006472 case DataType::Type::kVoid:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006473 LOG(FATAL) << "Unreachable type " << type;
6474 UNREACHABLE();
6475 }
6476
6477 if (is_volatile) {
6478 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
6479 }
6480
6481 if (is_volatile && store_type == kStoreDoubleword) {
6482 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01006483 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006484 // Do implicit Null check.
Goran Jakovljevic2e61a572017-10-23 08:58:15 +02006485 __ LoadFromOffset(kLoadWord,
6486 ZERO,
6487 locations->GetTemp(0).AsRegister<Register>(),
6488 0,
6489 null_checker);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006490 if (type == DataType::Type::kFloat64) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006491 // Pass FP parameters in core registers.
Alexey Frunzef58b2482016-09-02 22:14:06 -07006492 if (value_location.IsFpuRegister()) {
6493 __ Mfc1(locations->GetTemp(1).AsRegister<Register>(),
6494 value_location.AsFpuRegister<FRegister>());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006495 __ MoveFromFpuHigh(locations->GetTemp(2).AsRegister<Register>(),
Alexey Frunzef58b2482016-09-02 22:14:06 -07006496 value_location.AsFpuRegister<FRegister>());
6497 } else if (value_location.IsDoubleStackSlot()) {
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006498 __ LoadFromOffset(kLoadWord,
6499 locations->GetTemp(1).AsRegister<Register>(),
6500 SP,
Alexey Frunzef58b2482016-09-02 22:14:06 -07006501 value_location.GetStackIndex());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006502 __ LoadFromOffset(kLoadWord,
6503 locations->GetTemp(2).AsRegister<Register>(),
6504 SP,
Alexey Frunzef58b2482016-09-02 22:14:06 -07006505 value_location.GetStackIndex() + 4);
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006506 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006507 DCHECK(value_location.IsConstant());
6508 DCHECK(value_location.GetConstant()->IsDoubleConstant());
6509 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
Goran Jakovljeviccdd822f2016-07-22 09:46:43 +02006510 __ LoadConst64(locations->GetTemp(2).AsRegister<Register>(),
6511 locations->GetTemp(1).AsRegister<Register>(),
6512 value);
6513 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006514 }
Serban Constantinescufca16662016-07-14 09:21:59 +01006515 codegen_->InvokeRuntime(kQuickA64Store, instruction, dex_pc);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006516 CheckEntrypointTypes<kQuickA64Store, void, volatile int64_t *, int64_t>();
6517 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006518 if (value_location.IsConstant()) {
6519 int64_t value = CodeGenerator::GetInt64ValueOf(value_location.GetConstant());
6520 __ StoreConstToOffset(store_type, value, obj, offset, TMP, null_checker);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006521 } else if (!DataType::IsFloatingPointType(type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006522 Register src;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006523 if (type == DataType::Type::kInt64) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006524 src = value_location.AsRegisterPairLow<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006525 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006526 src = value_location.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006527 }
Alexey Frunzec061de12017-02-14 13:27:23 -08006528 if (kPoisonHeapReferences && needs_write_barrier) {
6529 // Note that in the case where `value` is a null reference,
6530 // we do not enter this block, as a null reference does not
6531 // need poisoning.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006532 DCHECK_EQ(type, DataType::Type::kReference);
Alexey Frunzec061de12017-02-14 13:27:23 -08006533 __ PoisonHeapReference(TMP, src);
6534 __ StoreToOffset(store_type, TMP, obj, offset, null_checker);
6535 } else {
6536 __ StoreToOffset(store_type, src, obj, offset, null_checker);
6537 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006538 } else {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006539 FRegister src = value_location.AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01006540 if (type == DataType::Type::kFloat32) {
Alexey Frunze2923db72016-08-20 01:55:47 -07006541 __ StoreSToOffset(src, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006542 } else {
Alexey Frunze2923db72016-08-20 01:55:47 -07006543 __ StoreDToOffset(src, obj, offset, null_checker);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006544 }
6545 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006546 }
6547
Alexey Frunzec061de12017-02-14 13:27:23 -08006548 if (needs_write_barrier) {
Alexey Frunzef58b2482016-09-02 22:14:06 -07006549 Register src = value_location.AsRegister<Register>();
Goran Jakovljevice114da22016-12-26 14:21:43 +01006550 codegen_->MarkGCCard(obj, src, value_can_be_null);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006551 }
6552
6553 if (is_volatile) {
6554 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
6555 }
6556}
6557
6558void LocationsBuilderMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
6559 HandleFieldGet(instruction, instruction->GetFieldInfo());
6560}
6561
6562void InstructionCodeGeneratorMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
6563 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
6564}
6565
6566void LocationsBuilderMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
6567 HandleFieldSet(instruction, instruction->GetFieldInfo());
6568}
6569
6570void InstructionCodeGeneratorMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Goran Jakovljevice114da22016-12-26 14:21:43 +01006571 HandleFieldSet(instruction,
6572 instruction->GetFieldInfo(),
6573 instruction->GetDexPc(),
6574 instruction->GetValueCanBeNull());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02006575}
6576
Alexey Frunze15958152017-02-09 19:08:30 -08006577void InstructionCodeGeneratorMIPS::GenerateReferenceLoadOneRegister(
6578 HInstruction* instruction,
6579 Location out,
6580 uint32_t offset,
6581 Location maybe_temp,
6582 ReadBarrierOption read_barrier_option) {
6583 Register out_reg = out.AsRegister<Register>();
6584 if (read_barrier_option == kWithReadBarrier) {
6585 CHECK(kEmitCompilerReadBarrier);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006586 if (!kUseBakerReadBarrier || !kBakerReadBarrierThunksEnableForFields) {
6587 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
6588 }
Alexey Frunze15958152017-02-09 19:08:30 -08006589 if (kUseBakerReadBarrier) {
6590 // Load with fast path based Baker's read barrier.
6591 // /* HeapReference<Object> */ out = *(out + offset)
6592 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6593 out,
6594 out_reg,
6595 offset,
6596 maybe_temp,
6597 /* needs_null_check */ false);
6598 } else {
6599 // Load with slow path based read barrier.
6600 // Save the value of `out` into `maybe_temp` before overwriting it
6601 // in the following move operation, as we will need it for the
6602 // read barrier below.
6603 __ Move(maybe_temp.AsRegister<Register>(), out_reg);
6604 // /* HeapReference<Object> */ out = *(out + offset)
6605 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
6606 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
6607 }
6608 } else {
6609 // Plain load with no read barrier.
6610 // /* HeapReference<Object> */ out = *(out + offset)
6611 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
6612 __ MaybeUnpoisonHeapReference(out_reg);
6613 }
6614}
6615
6616void InstructionCodeGeneratorMIPS::GenerateReferenceLoadTwoRegisters(
6617 HInstruction* instruction,
6618 Location out,
6619 Location obj,
6620 uint32_t offset,
6621 Location maybe_temp,
6622 ReadBarrierOption read_barrier_option) {
6623 Register out_reg = out.AsRegister<Register>();
6624 Register obj_reg = obj.AsRegister<Register>();
6625 if (read_barrier_option == kWithReadBarrier) {
6626 CHECK(kEmitCompilerReadBarrier);
6627 if (kUseBakerReadBarrier) {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006628 if (!kBakerReadBarrierThunksEnableForFields) {
6629 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
6630 }
Alexey Frunze15958152017-02-09 19:08:30 -08006631 // Load with fast path based Baker's read barrier.
6632 // /* HeapReference<Object> */ out = *(obj + offset)
6633 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
6634 out,
6635 obj_reg,
6636 offset,
6637 maybe_temp,
6638 /* needs_null_check */ false);
6639 } else {
6640 // Load with slow path based read barrier.
6641 // /* HeapReference<Object> */ out = *(obj + offset)
6642 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6643 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
6644 }
6645 } else {
6646 // Plain load with no read barrier.
6647 // /* HeapReference<Object> */ out = *(obj + offset)
6648 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6649 __ MaybeUnpoisonHeapReference(out_reg);
6650 }
6651}
6652
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006653static inline int GetBakerMarkThunkNumber(Register reg) {
6654 static_assert(BAKER_MARK_INTROSPECTION_REGISTER_COUNT == 21, "Expecting equal");
6655 if (reg >= V0 && reg <= T7) { // 14 consequtive regs.
6656 return reg - V0;
6657 } else if (reg >= S2 && reg <= S7) { // 6 consequtive regs.
6658 return 14 + (reg - S2);
6659 } else if (reg == FP) { // One more.
6660 return 20;
6661 }
6662 LOG(FATAL) << "Unexpected register " << reg;
6663 UNREACHABLE();
6664}
6665
6666static inline int GetBakerMarkFieldArrayThunkDisplacement(Register reg, bool short_offset) {
6667 int num = GetBakerMarkThunkNumber(reg) +
6668 (short_offset ? BAKER_MARK_INTROSPECTION_REGISTER_COUNT : 0);
6669 return num * BAKER_MARK_INTROSPECTION_FIELD_ARRAY_ENTRY_SIZE;
6670}
6671
6672static inline int GetBakerMarkGcRootThunkDisplacement(Register reg) {
6673 return GetBakerMarkThunkNumber(reg) * BAKER_MARK_INTROSPECTION_GC_ROOT_ENTRY_SIZE +
6674 BAKER_MARK_INTROSPECTION_GC_ROOT_ENTRIES_OFFSET;
6675}
6676
Alexey Frunze15958152017-02-09 19:08:30 -08006677void InstructionCodeGeneratorMIPS::GenerateGcRootFieldLoad(HInstruction* instruction,
6678 Location root,
6679 Register obj,
6680 uint32_t offset,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006681 ReadBarrierOption read_barrier_option,
6682 MipsLabel* label_low) {
6683 bool reordering;
6684 if (label_low != nullptr) {
6685 DCHECK_EQ(offset, 0x5678u);
6686 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006687 Register root_reg = root.AsRegister<Register>();
Alexey Frunze15958152017-02-09 19:08:30 -08006688 if (read_barrier_option == kWithReadBarrier) {
6689 DCHECK(kEmitCompilerReadBarrier);
6690 if (kUseBakerReadBarrier) {
6691 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
6692 // Baker's read barrier are used:
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006693 if (kBakerReadBarrierThunksEnableForGcRoots) {
6694 // Note that we do not actually check the value of `GetIsGcMarking()`
6695 // to decide whether to mark the loaded GC root or not. Instead, we
6696 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6697 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6698 // vice versa.
6699 //
6700 // We use thunks for the slow path. That thunk checks the reference
6701 // and jumps to the entrypoint if needed.
6702 //
6703 // temp = Thread::Current()->pReadBarrierMarkReg00
6704 // // AKA &art_quick_read_barrier_mark_introspection.
6705 // GcRoot<mirror::Object> root = *(obj+offset); // Original reference load.
6706 // if (temp != nullptr) {
6707 // temp = &gc_root_thunk<root_reg>
6708 // root = temp(root)
6709 // }
Alexey Frunze15958152017-02-09 19:08:30 -08006710
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006711 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
6712 const int32_t entry_point_offset =
6713 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6714 const int thunk_disp = GetBakerMarkGcRootThunkDisplacement(root_reg);
6715 int16_t offset_low = Low16Bits(offset);
6716 int16_t offset_high = High16Bits(offset - offset_low); // Accounts for sign
6717 // extension in lw.
6718 bool short_offset = IsInt<16>(static_cast<int32_t>(offset));
6719 Register base = short_offset ? obj : TMP;
6720 // Loading the entrypoint does not require a load acquire since it is only changed when
6721 // threads are suspended or running a checkpoint.
6722 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6723 reordering = __ SetReorder(false);
6724 if (!short_offset) {
6725 DCHECK(!label_low);
6726 __ AddUpper(base, obj, offset_high);
6727 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006728 MipsLabel skip_call;
6729 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006730 if (label_low != nullptr) {
6731 DCHECK(short_offset);
6732 __ Bind(label_low);
6733 }
6734 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6735 __ LoadFromOffset(kLoadWord, root_reg, base, offset_low); // Single instruction
6736 // in delay slot.
6737 if (isR6) {
6738 __ Jialc(T9, thunk_disp);
6739 } else {
6740 __ Addiu(T9, T9, thunk_disp);
6741 __ Jalr(T9);
6742 __ Nop();
6743 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006744 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006745 __ SetReorder(reordering);
6746 } else {
6747 // Note that we do not actually check the value of `GetIsGcMarking()`
6748 // to decide whether to mark the loaded GC root or not. Instead, we
6749 // load into `temp` (T9) the read barrier mark entry point corresponding
6750 // to register `root`. If `temp` is null, it means that `GetIsGcMarking()`
6751 // is false, and vice versa.
6752 //
6753 // GcRoot<mirror::Object> root = *(obj+offset); // Original reference load.
6754 // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg()
6755 // if (temp != null) {
6756 // root = temp(root)
6757 // }
Alexey Frunze15958152017-02-09 19:08:30 -08006758
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006759 if (label_low != nullptr) {
6760 reordering = __ SetReorder(false);
6761 __ Bind(label_low);
6762 }
6763 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6764 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6765 if (label_low != nullptr) {
6766 __ SetReorder(reordering);
6767 }
6768 static_assert(
6769 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
6770 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
6771 "have different sizes.");
6772 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
6773 "art::mirror::CompressedReference<mirror::Object> and int32_t "
6774 "have different sizes.");
Alexey Frunze15958152017-02-09 19:08:30 -08006775
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006776 // Slow path marking the GC root `root`.
6777 Location temp = Location::RegisterLocation(T9);
6778 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01006779 new (codegen_->GetScopedAllocator()) ReadBarrierMarkSlowPathMIPS(
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006780 instruction,
6781 root,
6782 /*entrypoint*/ temp);
6783 codegen_->AddSlowPath(slow_path);
6784
6785 const int32_t entry_point_offset =
6786 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(root.reg() - 1);
6787 // Loading the entrypoint does not require a load acquire since it is only changed when
6788 // threads are suspended or running a checkpoint.
6789 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), TR, entry_point_offset);
6790 __ Bnez(temp.AsRegister<Register>(), slow_path->GetEntryLabel());
6791 __ Bind(slow_path->GetExitLabel());
6792 }
Alexey Frunze15958152017-02-09 19:08:30 -08006793 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006794 if (label_low != nullptr) {
6795 reordering = __ SetReorder(false);
6796 __ Bind(label_low);
6797 }
Alexey Frunze15958152017-02-09 19:08:30 -08006798 // GC root loaded through a slow path for read barriers other
6799 // than Baker's.
6800 // /* GcRoot<mirror::Object>* */ root = obj + offset
6801 __ Addiu32(root_reg, obj, offset);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006802 if (label_low != nullptr) {
6803 __ SetReorder(reordering);
6804 }
Alexey Frunze15958152017-02-09 19:08:30 -08006805 // /* mirror::Object* */ root = root->Read()
6806 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
6807 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006808 } else {
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006809 if (label_low != nullptr) {
6810 reordering = __ SetReorder(false);
6811 __ Bind(label_low);
6812 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006813 // Plain GC root load with no read barrier.
6814 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6815 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6816 // Note that GC roots are not affected by heap poisoning, thus we
6817 // do not have to unpoison `root_reg` here.
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006818 if (label_low != nullptr) {
6819 __ SetReorder(reordering);
6820 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07006821 }
6822}
6823
Alexey Frunze15958152017-02-09 19:08:30 -08006824void CodeGeneratorMIPS::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
6825 Location ref,
6826 Register obj,
6827 uint32_t offset,
6828 Location temp,
6829 bool needs_null_check) {
6830 DCHECK(kEmitCompilerReadBarrier);
6831 DCHECK(kUseBakerReadBarrier);
6832
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006833 if (kBakerReadBarrierThunksEnableForFields) {
6834 // Note that we do not actually check the value of `GetIsGcMarking()`
6835 // to decide whether to mark the loaded reference or not. Instead, we
6836 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6837 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6838 // vice versa.
6839 //
6840 // We use thunks for the slow path. That thunk checks the reference
6841 // and jumps to the entrypoint if needed. If the holder is not gray,
6842 // it issues a load-load memory barrier and returns to the original
6843 // reference load.
6844 //
6845 // temp = Thread::Current()->pReadBarrierMarkReg00
6846 // // AKA &art_quick_read_barrier_mark_introspection.
6847 // if (temp != nullptr) {
6848 // temp = &field_array_thunk<holder_reg>
6849 // temp()
6850 // }
6851 // not_gray_return_address:
6852 // // If the offset is too large to fit into the lw instruction, we
6853 // // use an adjusted base register (TMP) here. This register
6854 // // receives bits 16 ... 31 of the offset before the thunk invocation
6855 // // and the thunk benefits from it.
6856 // HeapReference<mirror::Object> reference = *(obj+offset); // Original reference load.
6857 // gray_return_address:
6858
6859 DCHECK(temp.IsInvalid());
6860 bool isR6 = GetInstructionSetFeatures().IsR6();
6861 int16_t offset_low = Low16Bits(offset);
6862 int16_t offset_high = High16Bits(offset - offset_low); // Accounts for sign extension in lw.
6863 bool short_offset = IsInt<16>(static_cast<int32_t>(offset));
6864 bool reordering = __ SetReorder(false);
6865 const int32_t entry_point_offset =
6866 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6867 // There may have or may have not been a null check if the field offset is smaller than
6868 // the page size.
6869 // There must've been a null check in case it's actually a load from an array.
6870 // We will, however, perform an explicit null check in the thunk as it's easier to
6871 // do it than not.
6872 if (instruction->IsArrayGet()) {
6873 DCHECK(!needs_null_check);
6874 }
6875 const int thunk_disp = GetBakerMarkFieldArrayThunkDisplacement(obj, short_offset);
6876 // Loading the entrypoint does not require a load acquire since it is only changed when
6877 // threads are suspended or running a checkpoint.
6878 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6879 Register ref_reg = ref.AsRegister<Register>();
6880 Register base = short_offset ? obj : TMP;
Alexey Frunze0cab6562017-07-25 15:19:36 -07006881 MipsLabel skip_call;
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006882 if (short_offset) {
6883 if (isR6) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006884 __ Beqzc(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006885 __ Nop(); // In forbidden slot.
6886 __ Jialc(T9, thunk_disp);
6887 } else {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006888 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006889 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6890 __ Jalr(T9);
6891 __ Nop(); // In delay slot.
6892 }
Alexey Frunze0cab6562017-07-25 15:19:36 -07006893 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006894 } else {
6895 if (isR6) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006896 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006897 __ Aui(base, obj, offset_high); // In delay slot.
6898 __ Jialc(T9, thunk_disp);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006899 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006900 } else {
6901 __ Lui(base, offset_high);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006902 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006903 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6904 __ Jalr(T9);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006905 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006906 __ Addu(base, base, obj); // In delay slot.
6907 }
6908 }
6909 // /* HeapReference<Object> */ ref = *(obj + offset)
6910 __ LoadFromOffset(kLoadWord, ref_reg, base, offset_low); // Single instruction.
6911 if (needs_null_check) {
6912 MaybeRecordImplicitNullCheck(instruction);
6913 }
6914 __ MaybeUnpoisonHeapReference(ref_reg);
6915 __ SetReorder(reordering);
6916 return;
6917 }
6918
Alexey Frunze15958152017-02-09 19:08:30 -08006919 // /* HeapReference<Object> */ ref = *(obj + offset)
6920 Location no_index = Location::NoLocation();
6921 ScaleFactor no_scale_factor = TIMES_1;
6922 GenerateReferenceLoadWithBakerReadBarrier(instruction,
6923 ref,
6924 obj,
6925 offset,
6926 no_index,
6927 no_scale_factor,
6928 temp,
6929 needs_null_check);
6930}
6931
6932void CodeGeneratorMIPS::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
6933 Location ref,
6934 Register obj,
6935 uint32_t data_offset,
6936 Location index,
6937 Location temp,
6938 bool needs_null_check) {
6939 DCHECK(kEmitCompilerReadBarrier);
6940 DCHECK(kUseBakerReadBarrier);
6941
6942 static_assert(
6943 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
6944 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006945 ScaleFactor scale_factor = TIMES_4;
6946
6947 if (kBakerReadBarrierThunksEnableForArrays) {
6948 // Note that we do not actually check the value of `GetIsGcMarking()`
6949 // to decide whether to mark the loaded reference or not. Instead, we
6950 // load into `temp` (T9) the read barrier mark introspection entrypoint.
6951 // If `temp` is null, it means that `GetIsGcMarking()` is false, and
6952 // vice versa.
6953 //
6954 // We use thunks for the slow path. That thunk checks the reference
6955 // and jumps to the entrypoint if needed. If the holder is not gray,
6956 // it issues a load-load memory barrier and returns to the original
6957 // reference load.
6958 //
6959 // temp = Thread::Current()->pReadBarrierMarkReg00
6960 // // AKA &art_quick_read_barrier_mark_introspection.
6961 // if (temp != nullptr) {
6962 // temp = &field_array_thunk<holder_reg>
6963 // temp()
6964 // }
6965 // not_gray_return_address:
6966 // // The element address is pre-calculated in the TMP register before the
6967 // // thunk invocation and the thunk benefits from it.
6968 // HeapReference<mirror::Object> reference = data[index]; // Original reference load.
6969 // gray_return_address:
6970
6971 DCHECK(temp.IsInvalid());
6972 DCHECK(index.IsValid());
6973 bool reordering = __ SetReorder(false);
6974 const int32_t entry_point_offset =
6975 Thread::ReadBarrierMarkEntryPointsOffset<kMipsPointerSize>(0);
6976 // We will not do the explicit null check in the thunk as some form of a null check
6977 // must've been done earlier.
6978 DCHECK(!needs_null_check);
6979 const int thunk_disp = GetBakerMarkFieldArrayThunkDisplacement(obj, /* short_offset */ false);
6980 // Loading the entrypoint does not require a load acquire since it is only changed when
6981 // threads are suspended or running a checkpoint.
6982 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
6983 Register ref_reg = ref.AsRegister<Register>();
6984 Register index_reg = index.IsRegisterPair()
6985 ? index.AsRegisterPairLow<Register>()
6986 : index.AsRegister<Register>();
Alexey Frunze0cab6562017-07-25 15:19:36 -07006987 MipsLabel skip_call;
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006988 if (GetInstructionSetFeatures().IsR6()) {
Alexey Frunze0cab6562017-07-25 15:19:36 -07006989 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006990 __ Lsa(TMP, index_reg, obj, scale_factor); // In delay slot.
6991 __ Jialc(T9, thunk_disp);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006992 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006993 } else {
6994 __ Sll(TMP, index_reg, scale_factor);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006995 __ Beqz(T9, &skip_call, /* is_bare */ true);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006996 __ Addiu(T9, T9, thunk_disp); // In delay slot.
6997 __ Jalr(T9);
Alexey Frunze0cab6562017-07-25 15:19:36 -07006998 __ Bind(&skip_call);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07006999 __ Addu(TMP, TMP, obj); // In delay slot.
7000 }
7001 // /* HeapReference<Object> */ ref = *(obj + data_offset + (index << scale_factor))
7002 DCHECK(IsInt<16>(static_cast<int32_t>(data_offset))) << data_offset;
7003 __ LoadFromOffset(kLoadWord, ref_reg, TMP, data_offset); // Single instruction.
7004 __ MaybeUnpoisonHeapReference(ref_reg);
7005 __ SetReorder(reordering);
7006 return;
7007 }
7008
Alexey Frunze15958152017-02-09 19:08:30 -08007009 // /* HeapReference<Object> */ ref =
7010 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
Alexey Frunze15958152017-02-09 19:08:30 -08007011 GenerateReferenceLoadWithBakerReadBarrier(instruction,
7012 ref,
7013 obj,
7014 data_offset,
7015 index,
7016 scale_factor,
7017 temp,
7018 needs_null_check);
7019}
7020
7021void CodeGeneratorMIPS::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
7022 Location ref,
7023 Register obj,
7024 uint32_t offset,
7025 Location index,
7026 ScaleFactor scale_factor,
7027 Location temp,
7028 bool needs_null_check,
7029 bool always_update_field) {
7030 DCHECK(kEmitCompilerReadBarrier);
7031 DCHECK(kUseBakerReadBarrier);
7032
7033 // In slow path based read barriers, the read barrier call is
7034 // inserted after the original load. However, in fast path based
7035 // Baker's read barriers, we need to perform the load of
7036 // mirror::Object::monitor_ *before* the original reference load.
7037 // This load-load ordering is required by the read barrier.
7038 // The fast path/slow path (for Baker's algorithm) should look like:
7039 //
7040 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
7041 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
7042 // HeapReference<Object> ref = *src; // Original reference load.
7043 // bool is_gray = (rb_state == ReadBarrier::GrayState());
7044 // if (is_gray) {
7045 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
7046 // }
7047 //
7048 // Note: the original implementation in ReadBarrier::Barrier is
7049 // slightly more complex as it performs additional checks that we do
7050 // not do here for performance reasons.
7051
7052 Register ref_reg = ref.AsRegister<Register>();
7053 Register temp_reg = temp.AsRegister<Register>();
7054 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
7055
7056 // /* int32_t */ monitor = obj->monitor_
7057 __ LoadFromOffset(kLoadWord, temp_reg, obj, monitor_offset);
7058 if (needs_null_check) {
7059 MaybeRecordImplicitNullCheck(instruction);
7060 }
7061 // /* LockWord */ lock_word = LockWord(monitor)
7062 static_assert(sizeof(LockWord) == sizeof(int32_t),
7063 "art::LockWord and int32_t have different sizes.");
7064
7065 __ Sync(0); // Barrier to prevent load-load reordering.
7066
7067 // The actual reference load.
7068 if (index.IsValid()) {
7069 // Load types involving an "index": ArrayGet,
7070 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7071 // intrinsics.
7072 // /* HeapReference<Object> */ ref = *(obj + offset + (index << scale_factor))
7073 if (index.IsConstant()) {
7074 size_t computed_offset =
7075 (index.GetConstant()->AsIntConstant()->GetValue() << scale_factor) + offset;
7076 __ LoadFromOffset(kLoadWord, ref_reg, obj, computed_offset);
7077 } else {
7078 // Handle the special case of the
7079 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7080 // intrinsics, which use a register pair as index ("long
7081 // offset"), of which only the low part contains data.
7082 Register index_reg = index.IsRegisterPair()
7083 ? index.AsRegisterPairLow<Register>()
7084 : index.AsRegister<Register>();
Chris Larsencd0295d2017-03-31 15:26:54 -07007085 __ ShiftAndAdd(TMP, index_reg, obj, scale_factor, TMP);
Alexey Frunze15958152017-02-09 19:08:30 -08007086 __ LoadFromOffset(kLoadWord, ref_reg, TMP, offset);
7087 }
7088 } else {
7089 // /* HeapReference<Object> */ ref = *(obj + offset)
7090 __ LoadFromOffset(kLoadWord, ref_reg, obj, offset);
7091 }
7092
7093 // Object* ref = ref_addr->AsMirrorPtr()
7094 __ MaybeUnpoisonHeapReference(ref_reg);
7095
7096 // Slow path marking the object `ref` when it is gray.
7097 SlowPathCodeMIPS* slow_path;
7098 if (always_update_field) {
7099 // ReadBarrierMarkAndUpdateFieldSlowPathMIPS only supports address
7100 // of the form `obj + field_offset`, where `obj` is a register and
7101 // `field_offset` is a register pair (of which only the lower half
7102 // is used). Thus `offset` and `scale_factor` above are expected
7103 // to be null in this code path.
7104 DCHECK_EQ(offset, 0u);
7105 DCHECK_EQ(scale_factor, ScaleFactor::TIMES_1);
Vladimir Marko174b2e22017-10-12 13:34:49 +01007106 slow_path = new (GetScopedAllocator())
Alexey Frunze15958152017-02-09 19:08:30 -08007107 ReadBarrierMarkAndUpdateFieldSlowPathMIPS(instruction,
7108 ref,
7109 obj,
7110 /* field_offset */ index,
7111 temp_reg);
7112 } else {
Vladimir Marko174b2e22017-10-12 13:34:49 +01007113 slow_path = new (GetScopedAllocator()) ReadBarrierMarkSlowPathMIPS(instruction, ref);
Alexey Frunze15958152017-02-09 19:08:30 -08007114 }
7115 AddSlowPath(slow_path);
7116
7117 // if (rb_state == ReadBarrier::GrayState())
7118 // ref = ReadBarrier::Mark(ref);
7119 // Given the numeric representation, it's enough to check the low bit of the
7120 // rb_state. We do that by shifting the bit into the sign bit (31) and
7121 // performing a branch on less than zero.
7122 static_assert(ReadBarrier::WhiteState() == 0, "Expecting white to have value 0");
7123 static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1");
7124 static_assert(LockWord::kReadBarrierStateSize == 1, "Expecting 1-bit read barrier state size");
7125 __ Sll(temp_reg, temp_reg, 31 - LockWord::kReadBarrierStateShift);
7126 __ Bltz(temp_reg, slow_path->GetEntryLabel());
7127 __ Bind(slow_path->GetExitLabel());
7128}
7129
7130void CodeGeneratorMIPS::GenerateReadBarrierSlow(HInstruction* instruction,
7131 Location out,
7132 Location ref,
7133 Location obj,
7134 uint32_t offset,
7135 Location index) {
7136 DCHECK(kEmitCompilerReadBarrier);
7137
7138 // Insert a slow path based read barrier *after* the reference load.
7139 //
7140 // If heap poisoning is enabled, the unpoisoning of the loaded
7141 // reference will be carried out by the runtime within the slow
7142 // path.
7143 //
7144 // Note that `ref` currently does not get unpoisoned (when heap
7145 // poisoning is enabled), which is alright as the `ref` argument is
7146 // not used by the artReadBarrierSlow entry point.
7147 //
7148 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
Vladimir Marko174b2e22017-10-12 13:34:49 +01007149 SlowPathCodeMIPS* slow_path = new (GetScopedAllocator())
Alexey Frunze15958152017-02-09 19:08:30 -08007150 ReadBarrierForHeapReferenceSlowPathMIPS(instruction, out, ref, obj, offset, index);
7151 AddSlowPath(slow_path);
7152
7153 __ B(slow_path->GetEntryLabel());
7154 __ Bind(slow_path->GetExitLabel());
7155}
7156
7157void CodeGeneratorMIPS::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
7158 Location out,
7159 Location ref,
7160 Location obj,
7161 uint32_t offset,
7162 Location index) {
7163 if (kEmitCompilerReadBarrier) {
7164 // Baker's read barriers shall be handled by the fast path
7165 // (CodeGeneratorMIPS::GenerateReferenceLoadWithBakerReadBarrier).
7166 DCHECK(!kUseBakerReadBarrier);
7167 // If heap poisoning is enabled, unpoisoning will be taken care of
7168 // by the runtime within the slow path.
7169 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
7170 } else if (kPoisonHeapReferences) {
7171 __ UnpoisonHeapReference(out.AsRegister<Register>());
7172 }
7173}
7174
7175void CodeGeneratorMIPS::GenerateReadBarrierForRootSlow(HInstruction* instruction,
7176 Location out,
7177 Location root) {
7178 DCHECK(kEmitCompilerReadBarrier);
7179
7180 // Insert a slow path based read barrier *after* the GC root load.
7181 //
7182 // Note that GC roots are not affected by heap poisoning, so we do
7183 // not need to do anything special for this here.
7184 SlowPathCodeMIPS* slow_path =
Vladimir Marko174b2e22017-10-12 13:34:49 +01007185 new (GetScopedAllocator()) ReadBarrierForRootSlowPathMIPS(instruction, out, root);
Alexey Frunze15958152017-02-09 19:08:30 -08007186 AddSlowPath(slow_path);
7187
7188 __ B(slow_path->GetEntryLabel());
7189 __ Bind(slow_path->GetExitLabel());
7190}
7191
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007192void LocationsBuilderMIPS::VisitInstanceOf(HInstanceOf* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007193 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
7194 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Alexey Frunzec61c0762017-04-10 13:54:23 -07007195 bool baker_read_barrier_slow_path = false;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007196 switch (type_check_kind) {
7197 case TypeCheckKind::kExactCheck:
7198 case TypeCheckKind::kAbstractClassCheck:
7199 case TypeCheckKind::kClassHierarchyCheck:
7200 case TypeCheckKind::kArrayObjectCheck:
Alexey Frunze15958152017-02-09 19:08:30 -08007201 call_kind =
7202 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007203 baker_read_barrier_slow_path = kUseBakerReadBarrier;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007204 break;
7205 case TypeCheckKind::kArrayCheck:
7206 case TypeCheckKind::kUnresolvedCheck:
7207 case TypeCheckKind::kInterfaceCheck:
7208 call_kind = LocationSummary::kCallOnSlowPath;
7209 break;
7210 }
7211
Vladimir Markoca6fff82017-10-03 14:49:14 +01007212 LocationSummary* locations =
7213 new (GetGraph()->GetAllocator()) LocationSummary(instruction, call_kind);
Alexey Frunzec61c0762017-04-10 13:54:23 -07007214 if (baker_read_barrier_slow_path) {
7215 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
7216 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007217 locations->SetInAt(0, Location::RequiresRegister());
7218 locations->SetInAt(1, Location::RequiresRegister());
7219 // The output does overlap inputs.
7220 // Note that TypeCheckSlowPathMIPS uses this register too.
7221 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Alexey Frunze15958152017-02-09 19:08:30 -08007222 locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007223}
7224
7225void InstructionCodeGeneratorMIPS::VisitInstanceOf(HInstanceOf* instruction) {
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007226 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007227 LocationSummary* locations = instruction->GetLocations();
Alexey Frunze15958152017-02-09 19:08:30 -08007228 Location obj_loc = locations->InAt(0);
7229 Register obj = obj_loc.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007230 Register cls = locations->InAt(1).AsRegister<Register>();
Alexey Frunze15958152017-02-09 19:08:30 -08007231 Location out_loc = locations->Out();
7232 Register out = out_loc.AsRegister<Register>();
7233 const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind);
7234 DCHECK_LE(num_temps, 1u);
7235 Location maybe_temp_loc = (num_temps >= 1) ? locations->GetTemp(0) : Location::NoLocation();
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007236 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
7237 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
7238 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
7239 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007240 MipsLabel done;
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007241 SlowPathCodeMIPS* slow_path = nullptr;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007242
7243 // Return 0 if `obj` is null.
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007244 // Avoid this check if we know `obj` is not null.
7245 if (instruction->MustDoNullCheck()) {
7246 __ Move(out, ZERO);
7247 __ Beqz(obj, &done);
7248 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007249
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007250 switch (type_check_kind) {
7251 case TypeCheckKind::kExactCheck: {
7252 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007253 GenerateReferenceLoadTwoRegisters(instruction,
7254 out_loc,
7255 obj_loc,
7256 class_offset,
7257 maybe_temp_loc,
7258 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007259 // Classes must be equal for the instanceof to succeed.
7260 __ Xor(out, out, cls);
7261 __ Sltiu(out, out, 1);
7262 break;
7263 }
7264
7265 case TypeCheckKind::kAbstractClassCheck: {
7266 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007267 GenerateReferenceLoadTwoRegisters(instruction,
7268 out_loc,
7269 obj_loc,
7270 class_offset,
7271 maybe_temp_loc,
7272 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007273 // If the class is abstract, we eagerly fetch the super class of the
7274 // object to avoid doing a comparison we know will fail.
7275 MipsLabel loop;
7276 __ Bind(&loop);
7277 // /* HeapReference<Class> */ out = out->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08007278 GenerateReferenceLoadOneRegister(instruction,
7279 out_loc,
7280 super_offset,
7281 maybe_temp_loc,
7282 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007283 // If `out` is null, we use it for the result, and jump to `done`.
7284 __ Beqz(out, &done);
7285 __ Bne(out, cls, &loop);
7286 __ LoadConst32(out, 1);
7287 break;
7288 }
7289
7290 case TypeCheckKind::kClassHierarchyCheck: {
7291 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007292 GenerateReferenceLoadTwoRegisters(instruction,
7293 out_loc,
7294 obj_loc,
7295 class_offset,
7296 maybe_temp_loc,
7297 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007298 // Walk over the class hierarchy to find a match.
7299 MipsLabel loop, success;
7300 __ Bind(&loop);
7301 __ Beq(out, cls, &success);
7302 // /* HeapReference<Class> */ out = out->super_class_
Alexey Frunze15958152017-02-09 19:08:30 -08007303 GenerateReferenceLoadOneRegister(instruction,
7304 out_loc,
7305 super_offset,
7306 maybe_temp_loc,
7307 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007308 __ Bnez(out, &loop);
7309 // If `out` is null, we use it for the result, and jump to `done`.
7310 __ B(&done);
7311 __ Bind(&success);
7312 __ LoadConst32(out, 1);
7313 break;
7314 }
7315
7316 case TypeCheckKind::kArrayObjectCheck: {
7317 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007318 GenerateReferenceLoadTwoRegisters(instruction,
7319 out_loc,
7320 obj_loc,
7321 class_offset,
7322 maybe_temp_loc,
7323 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007324 // Do an exact check.
7325 MipsLabel success;
7326 __ Beq(out, cls, &success);
7327 // Otherwise, we need to check that the object's class is a non-primitive array.
7328 // /* HeapReference<Class> */ out = out->component_type_
Alexey Frunze15958152017-02-09 19:08:30 -08007329 GenerateReferenceLoadOneRegister(instruction,
7330 out_loc,
7331 component_offset,
7332 maybe_temp_loc,
7333 kCompilerReadBarrierOption);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007334 // If `out` is null, we use it for the result, and jump to `done`.
7335 __ Beqz(out, &done);
7336 __ LoadFromOffset(kLoadUnsignedHalfword, out, out, primitive_offset);
7337 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
7338 __ Sltiu(out, out, 1);
7339 __ B(&done);
7340 __ Bind(&success);
7341 __ LoadConst32(out, 1);
7342 break;
7343 }
7344
7345 case TypeCheckKind::kArrayCheck: {
7346 // No read barrier since the slow path will retry upon failure.
7347 // /* HeapReference<Class> */ out = obj->klass_
Alexey Frunze15958152017-02-09 19:08:30 -08007348 GenerateReferenceLoadTwoRegisters(instruction,
7349 out_loc,
7350 obj_loc,
7351 class_offset,
7352 maybe_temp_loc,
7353 kWithoutReadBarrier);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007354 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007355 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathMIPS(
7356 instruction, /* is_fatal */ false);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007357 codegen_->AddSlowPath(slow_path);
7358 __ Bne(out, cls, slow_path->GetEntryLabel());
7359 __ LoadConst32(out, 1);
7360 break;
7361 }
7362
7363 case TypeCheckKind::kUnresolvedCheck:
7364 case TypeCheckKind::kInterfaceCheck: {
7365 // Note that we indeed only call on slow path, but we always go
7366 // into the slow path for the unresolved and interface check
7367 // cases.
7368 //
7369 // We cannot directly call the InstanceofNonTrivial runtime
7370 // entry point without resorting to a type checking slow path
7371 // here (i.e. by calling InvokeRuntime directly), as it would
7372 // require to assign fixed registers for the inputs of this
7373 // HInstanceOf instruction (following the runtime calling
7374 // convention), which might be cluttered by the potential first
7375 // read barrier emission at the beginning of this method.
7376 //
7377 // TODO: Introduce a new runtime entry point taking the object
7378 // to test (instead of its class) as argument, and let it deal
7379 // with the read barrier issues. This will let us refactor this
7380 // case of the `switch` code as it was previously (with a direct
7381 // call to the runtime not using a type checking slow path).
7382 // This should also be beneficial for the other cases above.
7383 DCHECK(locations->OnlyCallsOnSlowPath());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007384 slow_path = new (codegen_->GetScopedAllocator()) TypeCheckSlowPathMIPS(
7385 instruction, /* is_fatal */ false);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007386 codegen_->AddSlowPath(slow_path);
7387 __ B(slow_path->GetEntryLabel());
7388 break;
7389 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007390 }
7391
7392 __ Bind(&done);
Alexey Frunze66b69ad2017-02-24 00:51:44 -08007393
7394 if (slow_path != nullptr) {
7395 __ Bind(slow_path->GetExitLabel());
7396 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007397}
7398
7399void LocationsBuilderMIPS::VisitIntConstant(HIntConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007400 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007401 locations->SetOut(Location::ConstantLocation(constant));
7402}
7403
7404void InstructionCodeGeneratorMIPS::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
7405 // Will be generated at use site.
7406}
7407
7408void LocationsBuilderMIPS::VisitNullConstant(HNullConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007409 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007410 locations->SetOut(Location::ConstantLocation(constant));
7411}
7412
7413void InstructionCodeGeneratorMIPS::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
7414 // Will be generated at use site.
7415}
7416
7417void LocationsBuilderMIPS::HandleInvoke(HInvoke* invoke) {
7418 InvokeDexCallingConventionVisitorMIPS calling_convention_visitor;
7419 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
7420}
7421
7422void LocationsBuilderMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
7423 HandleInvoke(invoke);
Alexey Frunze1b8464d2016-11-12 17:22:05 -08007424 // The register T7 is required to be used for the hidden argument in
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007425 // art_quick_imt_conflict_trampoline, so add the hidden argument.
Alexey Frunze1b8464d2016-11-12 17:22:05 -08007426 invoke->GetLocations()->AddTemp(Location::RegisterLocation(T7));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007427}
7428
7429void InstructionCodeGeneratorMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
7430 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
7431 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007432 Location receiver = invoke->GetLocations()->InAt(0);
7433 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -07007434 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007435
7436 // Set the hidden argument.
7437 __ LoadConst32(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
7438 invoke->GetDexMethodIndex());
7439
7440 // temp = object->GetClass();
7441 if (receiver.IsStackSlot()) {
7442 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
7443 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
7444 } else {
7445 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
7446 }
7447 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexey Frunzec061de12017-02-14 13:27:23 -08007448 // Instead of simply (possibly) unpoisoning `temp` here, we should
7449 // emit a read barrier for the previous class reference load.
7450 // However this is not required in practice, as this is an
7451 // intermediate/temporary reference and because the current
7452 // concurrent copying collector keeps the from-space memory
7453 // intact/accessible until the end of the marking phase (the
7454 // concurrent copying collector may not in the future).
7455 __ MaybeUnpoisonHeapReference(temp);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007456 __ LoadFromOffset(kLoadWord, temp, temp,
7457 mirror::Class::ImtPtrOffset(kMipsPointerSize).Uint32Value());
7458 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00007459 invoke->GetImtIndex(), kMipsPointerSize));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007460 // temp = temp->GetImtEntryAt(method_offset);
7461 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7462 // T9 = temp->GetEntryPoint();
7463 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
7464 // T9();
7465 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007466 __ NopIfNoReordering();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007467 DCHECK(!codegen_->IsLeafMethod());
7468 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
7469}
7470
7471void LocationsBuilderMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Chris Larsen701566a2015-10-27 15:29:13 -07007472 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
7473 if (intrinsic.TryDispatch(invoke)) {
7474 return;
7475 }
7476
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007477 HandleInvoke(invoke);
7478}
7479
7480void LocationsBuilderMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00007481 // Explicit clinit checks triggered by static invokes must have been pruned by
7482 // art::PrepareForRegisterAllocation.
7483 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007484
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007485 bool is_r6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007486 bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
7487 bool has_extra_input = invoke->HasPcRelativeMethodLoadKind() && !is_r6 && !has_irreducible_loops;
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007488
Chris Larsen701566a2015-10-27 15:29:13 -07007489 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
7490 if (intrinsic.TryDispatch(invoke)) {
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007491 if (invoke->GetLocations()->CanCall() && has_extra_input) {
7492 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::Any());
7493 }
Chris Larsen701566a2015-10-27 15:29:13 -07007494 return;
7495 }
7496
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007497 HandleInvoke(invoke);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007498
7499 // Add the extra input register if either the dex cache array base register
7500 // or the PC-relative base register for accessing literals is needed.
7501 if (has_extra_input) {
7502 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::RequiresRegister());
7503 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007504}
7505
Orion Hodsonac141392017-01-13 11:53:47 +00007506void LocationsBuilderMIPS::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
7507 HandleInvoke(invoke);
7508}
7509
7510void InstructionCodeGeneratorMIPS::VisitInvokePolymorphic(HInvokePolymorphic* invoke) {
7511 codegen_->GenerateInvokePolymorphicCall(invoke);
7512}
7513
Chris Larsen701566a2015-10-27 15:29:13 -07007514static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorMIPS* codegen) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007515 if (invoke->GetLocations()->Intrinsified()) {
Chris Larsen701566a2015-10-27 15:29:13 -07007516 IntrinsicCodeGeneratorMIPS intrinsic(codegen);
7517 intrinsic.Dispatch(invoke);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007518 return true;
7519 }
7520 return false;
7521}
7522
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007523HLoadString::LoadKind CodeGeneratorMIPS::GetSupportedLoadStringKind(
Alexey Frunze06a46c42016-07-19 15:00:40 -07007524 HLoadString::LoadKind desired_string_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007525 switch (desired_string_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007526 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01007527 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00007528 case HLoadString::LoadKind::kBssEntry:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007529 DCHECK(!Runtime::Current()->UseJitCompilation());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007530 break;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007531 case HLoadString::LoadKind::kJitTableAddress:
7532 DCHECK(Runtime::Current()->UseJitCompilation());
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007533 break;
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007534 case HLoadString::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007535 case HLoadString::LoadKind::kRuntimeCall:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007536 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007537 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007538 return desired_string_load_kind;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007539}
7540
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007541HLoadClass::LoadKind CodeGeneratorMIPS::GetSupportedLoadClassKind(
7542 HLoadClass::LoadKind desired_class_load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007543 switch (desired_class_load_kind) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00007544 case HLoadClass::LoadKind::kInvalid:
7545 LOG(FATAL) << "UNREACHABLE";
7546 UNREACHABLE();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007547 case HLoadClass::LoadKind::kReferrersClass:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007548 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007549 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007550 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007551 case HLoadClass::LoadKind::kBssEntry:
7552 DCHECK(!Runtime::Current()->UseJitCompilation());
7553 break;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007554 case HLoadClass::LoadKind::kJitTableAddress:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007555 DCHECK(Runtime::Current()->UseJitCompilation());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007556 break;
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007557 case HLoadClass::LoadKind::kBootImageAddress:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007558 case HLoadClass::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007559 break;
7560 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007561 return desired_class_load_kind;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007562}
7563
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007564Register CodeGeneratorMIPS::GetInvokeStaticOrDirectExtraParameter(HInvokeStaticOrDirect* invoke,
7565 Register temp) {
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007566 CHECK(!GetInstructionSetFeatures().IsR6());
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007567 CHECK(!GetGraph()->HasIrreducibleLoops());
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007568 CHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
7569 Location location = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
7570 if (!invoke->GetLocations()->Intrinsified()) {
7571 return location.AsRegister<Register>();
7572 }
7573 // For intrinsics we allow any location, so it may be on the stack.
7574 if (!location.IsRegister()) {
7575 __ LoadFromOffset(kLoadWord, temp, SP, location.GetStackIndex());
7576 return temp;
7577 }
7578 // For register locations, check if the register was saved. If so, get it from the stack.
7579 // Note: There is a chance that the register was saved but not overwritten, so we could
7580 // save one load. However, since this is just an intrinsic slow path we prefer this
7581 // simple and more robust approach rather that trying to determine if that's the case.
7582 SlowPathCode* slow_path = GetCurrentSlowPath();
7583 DCHECK(slow_path != nullptr); // For intrinsified invokes the call is emitted on the slow path.
7584 if (slow_path->IsCoreRegisterSaved(location.AsRegister<Register>())) {
7585 int stack_offset = slow_path->GetStackOffsetOfCoreRegister(location.AsRegister<Register>());
7586 __ LoadFromOffset(kLoadWord, temp, SP, stack_offset);
7587 return temp;
7588 }
7589 return location.AsRegister<Register>();
7590}
7591
Vladimir Markodc151b22015-10-15 18:02:30 +01007592HInvokeStaticOrDirect::DispatchInfo CodeGeneratorMIPS::GetSupportedInvokeStaticOrDirectDispatch(
7593 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01007594 HInvokeStaticOrDirect* invoke ATTRIBUTE_UNUSED) {
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007595 return desired_dispatch_info;
Vladimir Markodc151b22015-10-15 18:02:30 +01007596}
7597
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007598void CodeGeneratorMIPS::GenerateStaticOrDirectCall(
7599 HInvokeStaticOrDirect* invoke, Location temp, SlowPathCode* slow_path) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007600 // All registers are assumed to be correctly set up per the calling convention.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007601 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007602 HInvokeStaticOrDirect::MethodLoadKind method_load_kind = invoke->GetMethodLoadKind();
7603 HInvokeStaticOrDirect::CodePtrLocation code_ptr_location = invoke->GetCodePtrLocation();
Alexey Frunze6b892cd2017-01-03 17:11:38 -08007604 bool is_r6 = GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007605 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
7606 Register base_reg = (invoke->HasPcRelativeMethodLoadKind() && !is_r6 && !has_irreducible_loops)
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007607 ? GetInvokeStaticOrDirectExtraParameter(invoke, temp.AsRegister<Register>())
7608 : ZERO;
7609
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007610 switch (method_load_kind) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007611 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007612 // temp = thread->string_init_entrypoint
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007613 uint32_t offset =
7614 GetThreadOffset<kMipsPointerSize>(invoke->GetStringInitEntryPoint()).Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007615 __ LoadFromOffset(kLoadWord,
7616 temp.AsRegister<Register>(),
7617 TR,
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007618 offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007619 break;
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007620 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007621 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00007622 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007623 break;
Vladimir Marko65979462017-05-19 17:25:12 +01007624 case HInvokeStaticOrDirect::MethodLoadKind::kBootImageLinkTimePcRelative: {
7625 DCHECK(GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007626 PcRelativePatchInfo* info_high = NewPcRelativeMethodPatch(invoke->GetTargetMethod());
7627 PcRelativePatchInfo* info_low =
7628 NewPcRelativeMethodPatch(invoke->GetTargetMethod(), info_high);
Vladimir Marko65979462017-05-19 17:25:12 +01007629 Register temp_reg = temp.AsRegister<Register>();
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007630 EmitPcRelativeAddressPlaceholderHigh(info_high, TMP, base_reg);
7631 __ Addiu(temp_reg, TMP, /* placeholder */ 0x5678, &info_low->label);
Vladimir Marko65979462017-05-19 17:25:12 +01007632 break;
7633 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007634 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
7635 __ LoadConst32(temp.AsRegister<Register>(), invoke->GetMethodAddress());
7636 break;
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007637 case HInvokeStaticOrDirect::MethodLoadKind::kBssEntry: {
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007638 PcRelativePatchInfo* info_high = NewMethodBssEntryPatch(
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007639 MethodReference(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex()));
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007640 PcRelativePatchInfo* info_low = NewMethodBssEntryPatch(
7641 MethodReference(&GetGraph()->GetDexFile(), invoke->GetDexMethodIndex()), info_high);
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007642 Register temp_reg = temp.AsRegister<Register>();
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007643 EmitPcRelativeAddressPlaceholderHigh(info_high, TMP, base_reg);
7644 __ Lw(temp_reg, TMP, /* placeholder */ 0x5678, &info_low->label);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007645 break;
Vladimir Marko0eb882b2017-05-15 13:39:18 +01007646 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007647 case HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall: {
7648 GenerateInvokeStaticOrDirectRuntimeCall(invoke, temp, slow_path);
7649 return; // No code pointer retrieval; the runtime performs the call directly.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007650 }
7651 }
7652
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007653 switch (code_ptr_location) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007654 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
Alexey Frunzee3fb2452016-05-10 16:08:05 -07007655 __ Bal(&frame_entry_label_);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007656 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007657 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
7658 // T9 = callee_method->entry_point_from_quick_compiled_code_;
Goran Jakovljevic1a878372015-10-26 14:28:52 +01007659 __ LoadFromOffset(kLoadWord,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007660 T9,
7661 callee_method.AsRegister<Register>(),
7662 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07007663 kMipsPointerSize).Int32Value());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007664 // T9()
7665 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007666 __ NopIfNoReordering();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007667 break;
7668 }
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007669 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
7670
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007671 DCHECK(!IsLeafMethod());
7672}
7673
7674void InstructionCodeGeneratorMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00007675 // Explicit clinit checks triggered by static invokes must have been pruned by
7676 // art::PrepareForRegisterAllocation.
7677 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007678
7679 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
7680 return;
7681 }
7682
7683 LocationSummary* locations = invoke->GetLocations();
7684 codegen_->GenerateStaticOrDirectCall(invoke,
7685 locations->HasTemps()
7686 ? locations->GetTemp(0)
7687 : Location::NoLocation());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007688}
7689
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007690void CodeGeneratorMIPS::GenerateVirtualCall(
7691 HInvokeVirtual* invoke, Location temp_location, SlowPathCode* slow_path) {
Goran Jakovljevice919b072016-10-04 10:17:34 +02007692 // Use the calling convention instead of the location of the receiver, as
7693 // intrinsics may have put the receiver in a different register. In the intrinsics
7694 // slow path, the arguments have been moved to the right place, so here we are
7695 // guaranteed that the receiver is the first register of the calling convention.
7696 InvokeDexCallingConvention calling_convention;
7697 Register receiver = calling_convention.GetRegisterAt(0);
7698
Chris Larsen3acee732015-11-18 13:31:08 -08007699 Register temp = temp_location.AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007700 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
7701 invoke->GetVTableIndex(), kMipsPointerSize).SizeValue();
7702 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -07007703 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007704
7705 // temp = object->GetClass();
Goran Jakovljevice919b072016-10-04 10:17:34 +02007706 __ LoadFromOffset(kLoadWord, temp, receiver, class_offset);
Chris Larsen3acee732015-11-18 13:31:08 -08007707 MaybeRecordImplicitNullCheck(invoke);
Alexey Frunzec061de12017-02-14 13:27:23 -08007708 // Instead of simply (possibly) unpoisoning `temp` here, we should
7709 // emit a read barrier for the previous class reference load.
7710 // However this is not required in practice, as this is an
7711 // intermediate/temporary reference and because the current
7712 // concurrent copying collector keeps the from-space memory
7713 // intact/accessible until the end of the marking phase (the
7714 // concurrent copying collector may not in the future).
7715 __ MaybeUnpoisonHeapReference(temp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007716 // temp = temp->GetMethodAt(method_offset);
7717 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7718 // T9 = temp->GetEntryPoint();
7719 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
7720 // T9();
7721 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07007722 __ NopIfNoReordering();
Vladimir Markoe7197bf2017-06-02 17:00:23 +01007723 RecordPcInfo(invoke, invoke->GetDexPc(), slow_path);
Chris Larsen3acee732015-11-18 13:31:08 -08007724}
7725
7726void InstructionCodeGeneratorMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
7727 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
7728 return;
7729 }
7730
7731 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007732 DCHECK(!codegen_->IsLeafMethod());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007733}
7734
7735void LocationsBuilderMIPS::VisitLoadClass(HLoadClass* cls) {
Vladimir Marko41559982017-01-06 14:04:23 +00007736 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007737 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007738 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007739 Location loc = Location::RegisterLocation(calling_convention.GetRegisterAt(0));
7740 CodeGenerator::CreateLoadClassRuntimeCallLocationSummary(cls, loc, loc);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007741 return;
7742 }
Vladimir Marko41559982017-01-06 14:04:23 +00007743 DCHECK(!cls->NeedsAccessCheck());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007744 const bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007745 const bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
Alexey Frunze15958152017-02-09 19:08:30 -08007746 const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage();
7747 LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier)
Alexey Frunze06a46c42016-07-19 15:00:40 -07007748 ? LocationSummary::kCallOnSlowPath
7749 : LocationSummary::kNoCall;
Vladimir Markoca6fff82017-10-03 14:49:14 +01007750 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(cls, call_kind);
Alexey Frunzec61c0762017-04-10 13:54:23 -07007751 if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) {
7752 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
7753 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007754 switch (load_kind) {
7755 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007756 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007757 case HLoadClass::LoadKind::kBootImageAddress:
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007758 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007759 case HLoadClass::LoadKind::kBssEntry:
Alexey Frunzec61c0762017-04-10 13:54:23 -07007760 if (isR6) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007761 break;
7762 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007763 if (has_irreducible_loops) {
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07007764 if (load_kind != HLoadClass::LoadKind::kBootImageAddress) {
7765 codegen_->ClobberRA();
7766 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007767 break;
7768 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007769 FALLTHROUGH_INTENDED;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007770 case HLoadClass::LoadKind::kReferrersClass:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007771 locations->SetInAt(0, Location::RequiresRegister());
7772 break;
7773 default:
7774 break;
7775 }
7776 locations->SetOut(Location::RequiresRegister());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007777 if (load_kind == HLoadClass::LoadKind::kBssEntry) {
7778 if (!kUseReadBarrier || kUseBakerReadBarrier) {
7779 // Rely on the type resolution or initialization and marking to save everything we need.
Alexey Frunzec61c0762017-04-10 13:54:23 -07007780 RegisterSet caller_saves = RegisterSet::Empty();
7781 InvokeRuntimeCallingConvention calling_convention;
7782 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
7783 locations->SetCustomSlowPathCallerSaves(caller_saves);
7784 } else {
7785 // For non-Baker read barriers we have a temp-clobbering call.
7786 }
7787 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007788}
7789
Nicolas Geoffray5247c082017-01-13 14:17:29 +00007790// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
7791// move.
7792void InstructionCodeGeneratorMIPS::VisitLoadClass(HLoadClass* cls) NO_THREAD_SAFETY_ANALYSIS {
Vladimir Marko41559982017-01-06 14:04:23 +00007793 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007794 if (load_kind == HLoadClass::LoadKind::kRuntimeCall) {
Vladimir Marko41559982017-01-06 14:04:23 +00007795 codegen_->GenerateLoadClassRuntimeCall(cls);
Pavle Batutae87a7182015-10-28 13:10:42 +01007796 return;
7797 }
Vladimir Marko41559982017-01-06 14:04:23 +00007798 DCHECK(!cls->NeedsAccessCheck());
Pavle Batutae87a7182015-10-28 13:10:42 +01007799
Vladimir Marko41559982017-01-06 14:04:23 +00007800 LocationSummary* locations = cls->GetLocations();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007801 Location out_loc = locations->Out();
7802 Register out = out_loc.AsRegister<Register>();
7803 Register base_or_current_method_reg;
7804 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007805 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007806 switch (load_kind) {
7807 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007808 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007809 case HLoadClass::LoadKind::kBootImageAddress:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007810 case HLoadClass::LoadKind::kBootImageClassTable:
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007811 case HLoadClass::LoadKind::kBssEntry:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007812 base_or_current_method_reg =
7813 (isR6 || has_irreducible_loops) ? ZERO : locations->InAt(0).AsRegister<Register>();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007814 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007815 case HLoadClass::LoadKind::kReferrersClass:
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007816 case HLoadClass::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007817 base_or_current_method_reg = locations->InAt(0).AsRegister<Register>();
7818 break;
7819 default:
7820 base_or_current_method_reg = ZERO;
7821 break;
7822 }
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00007823
Alexey Frunze15958152017-02-09 19:08:30 -08007824 const ReadBarrierOption read_barrier_option = cls->IsInBootImage()
7825 ? kWithoutReadBarrier
7826 : kCompilerReadBarrierOption;
Alexey Frunze06a46c42016-07-19 15:00:40 -07007827 bool generate_null_check = false;
7828 switch (load_kind) {
7829 case HLoadClass::LoadKind::kReferrersClass: {
7830 DCHECK(!cls->CanCallRuntime());
7831 DCHECK(!cls->MustGenerateClinitCheck());
7832 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
7833 GenerateGcRootFieldLoad(cls,
7834 out_loc,
7835 base_or_current_method_reg,
Alexey Frunze15958152017-02-09 19:08:30 -08007836 ArtMethod::DeclaringClassOffset().Int32Value(),
7837 read_barrier_option);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007838 break;
7839 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007840 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007841 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze15958152017-02-09 19:08:30 -08007842 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007843 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Alexey Frunze06a46c42016-07-19 15:00:40 -07007844 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007845 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7846 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007847 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
7848 out,
Alexey Frunzea663d9d2017-07-31 18:43:18 -07007849 base_or_current_method_reg);
7850 __ Addiu(out, out, /* placeholder */ 0x5678, &info_low->label);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007851 break;
7852 }
7853 case HLoadClass::LoadKind::kBootImageAddress: {
Alexey Frunze15958152017-02-09 19:08:30 -08007854 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00007855 uint32_t address = dchecked_integral_cast<uint32_t>(
7856 reinterpret_cast<uintptr_t>(cls->GetClass().Get()));
7857 DCHECK_NE(address, 0u);
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007858 if (isR6 || !has_irreducible_loops) {
7859 __ LoadLiteral(out,
7860 base_or_current_method_reg,
7861 codegen_->DeduplicateBootImageAddressLiteral(address));
7862 } else {
7863 __ LoadConst32(out, address);
7864 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007865 break;
7866 }
Vladimir Marko94ec2db2017-09-06 17:21:03 +01007867 case HLoadClass::LoadKind::kBootImageClassTable: {
7868 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
7869 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
7870 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex());
7871 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7872 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex(), info_high);
7873 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
7874 out,
7875 base_or_current_method_reg);
7876 __ Lw(out, out, /* placeholder */ 0x5678, &info_low->label);
7877 // Extract the reference from the slot data, i.e. clear the hash bits.
7878 int32_t masked_hash = ClassTable::TableSlot::MaskHash(
7879 ComputeModifiedUtf8Hash(cls->GetDexFile().StringByTypeIdx(cls->GetTypeIndex())));
7880 if (masked_hash != 0) {
7881 __ Addiu(out, out, -masked_hash);
7882 }
7883 break;
7884 }
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007885 case HLoadClass::LoadKind::kBssEntry: {
Vladimir Markof3c52b42017-11-17 17:32:12 +00007886 CodeGeneratorMIPS::PcRelativePatchInfo* bss_info_high =
7887 codegen_->NewTypeBssEntryPatch(cls->GetDexFile(), cls->GetTypeIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007888 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
7889 codegen_->NewTypeBssEntryPatch(cls->GetDexFile(), cls->GetTypeIndex(), bss_info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07007890 codegen_->EmitPcRelativeAddressPlaceholderHigh(bss_info_high,
Vladimir Markof3c52b42017-11-17 17:32:12 +00007891 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007892 base_or_current_method_reg);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007893 GenerateGcRootFieldLoad(cls,
7894 out_loc,
Vladimir Markof3c52b42017-11-17 17:32:12 +00007895 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007896 /* placeholder */ 0x5678,
7897 read_barrier_option,
7898 &info_low->label);
Vladimir Marko6bec91c2017-01-09 15:03:12 +00007899 generate_null_check = true;
7900 break;
7901 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00007902 case HLoadClass::LoadKind::kJitTableAddress: {
Alexey Frunze627c1a02017-01-30 19:28:14 -08007903 CodeGeneratorMIPS::JitPatchInfo* info = codegen_->NewJitRootClassPatch(cls->GetDexFile(),
7904 cls->GetTypeIndex(),
7905 cls->GetClass());
7906 bool reordering = __ SetReorder(false);
7907 __ Bind(&info->high_label);
7908 __ Lui(out, /* placeholder */ 0x1234);
Alexey Frunze627c1a02017-01-30 19:28:14 -08007909 __ SetReorder(reordering);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07007910 GenerateGcRootFieldLoad(cls,
7911 out_loc,
7912 out,
7913 /* placeholder */ 0x5678,
7914 read_barrier_option,
7915 &info->low_label);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007916 break;
7917 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007918 case HLoadClass::LoadKind::kRuntimeCall:
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00007919 case HLoadClass::LoadKind::kInvalid:
Vladimir Marko41559982017-01-06 14:04:23 +00007920 LOG(FATAL) << "UNREACHABLE";
7921 UNREACHABLE();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007922 }
7923
7924 if (generate_null_check || cls->MustGenerateClinitCheck()) {
7925 DCHECK(cls->CanCallRuntime());
Vladimir Marko174b2e22017-10-12 13:34:49 +01007926 SlowPathCodeMIPS* slow_path = new (codegen_->GetScopedAllocator()) LoadClassSlowPathMIPS(
Vladimir Markof3c52b42017-11-17 17:32:12 +00007927 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
Alexey Frunze06a46c42016-07-19 15:00:40 -07007928 codegen_->AddSlowPath(slow_path);
7929 if (generate_null_check) {
7930 __ Beqz(out, slow_path->GetEntryLabel());
7931 }
7932 if (cls->MustGenerateClinitCheck()) {
7933 GenerateClassInitializationCheck(slow_path, out);
7934 } else {
7935 __ Bind(slow_path->GetExitLabel());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007936 }
7937 }
7938}
7939
7940static int32_t GetExceptionTlsOffset() {
Andreas Gampe542451c2016-07-26 09:02:02 -07007941 return Thread::ExceptionOffset<kMipsPointerSize>().Int32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007942}
7943
7944void LocationsBuilderMIPS::VisitLoadException(HLoadException* load) {
7945 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01007946 new (GetGraph()->GetAllocator()) LocationSummary(load, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007947 locations->SetOut(Location::RequiresRegister());
7948}
7949
7950void InstructionCodeGeneratorMIPS::VisitLoadException(HLoadException* load) {
7951 Register out = load->GetLocations()->Out().AsRegister<Register>();
7952 __ LoadFromOffset(kLoadWord, out, TR, GetExceptionTlsOffset());
7953}
7954
7955void LocationsBuilderMIPS::VisitClearException(HClearException* clear) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01007956 new (GetGraph()->GetAllocator()) LocationSummary(clear, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007957}
7958
7959void InstructionCodeGeneratorMIPS::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
7960 __ StoreToOffset(kStoreWord, ZERO, TR, GetExceptionTlsOffset());
7961}
7962
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02007963void LocationsBuilderMIPS::VisitLoadString(HLoadString* load) {
Alexey Frunzef63f5692016-12-13 17:43:11 -08007964 LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load);
Vladimir Markoca6fff82017-10-03 14:49:14 +01007965 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(load, call_kind);
Alexey Frunze06a46c42016-07-19 15:00:40 -07007966 HLoadString::LoadKind load_kind = load->GetLoadKind();
Alexey Frunzec61c0762017-04-10 13:54:23 -07007967 const bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007968 const bool has_irreducible_loops = codegen_->GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07007969 switch (load_kind) {
7970 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07007971 case HLoadString::LoadKind::kBootImageAddress:
7972 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01007973 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00007974 case HLoadString::LoadKind::kBssEntry:
Alexey Frunzec61c0762017-04-10 13:54:23 -07007975 if (isR6) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07007976 break;
7977 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007978 if (has_irreducible_loops) {
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07007979 if (load_kind != HLoadString::LoadKind::kBootImageAddress) {
7980 codegen_->ClobberRA();
7981 }
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02007982 break;
7983 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07007984 FALLTHROUGH_INTENDED;
7985 // We need an extra register for PC-relative dex cache accesses.
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007986 case HLoadString::LoadKind::kRuntimeCall:
Alexey Frunze06a46c42016-07-19 15:00:40 -07007987 locations->SetInAt(0, Location::RequiresRegister());
7988 break;
7989 default:
7990 break;
7991 }
Vladimir Marko847e6ce2017-06-02 13:55:07 +01007992 if (load_kind == HLoadString::LoadKind::kRuntimeCall) {
Alexey Frunzebb51df82016-11-01 16:07:32 -07007993 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07007994 locations->SetOut(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Alexey Frunzebb51df82016-11-01 16:07:32 -07007995 } else {
7996 locations->SetOut(Location::RequiresRegister());
Alexey Frunzec61c0762017-04-10 13:54:23 -07007997 if (load_kind == HLoadString::LoadKind::kBssEntry) {
7998 if (!kUseReadBarrier || kUseBakerReadBarrier) {
7999 // Rely on the pResolveString and marking to save everything we need.
Alexey Frunzec61c0762017-04-10 13:54:23 -07008000 RegisterSet caller_saves = RegisterSet::Empty();
8001 InvokeRuntimeCallingConvention calling_convention;
8002 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8003 locations->SetCustomSlowPathCallerSaves(caller_saves);
8004 } else {
8005 // For non-Baker read barriers we have a temp-clobbering call.
8006 }
8007 }
Alexey Frunzebb51df82016-11-01 16:07:32 -07008008 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008009}
8010
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00008011// NO_THREAD_SAFETY_ANALYSIS as we manipulate handles whose internal object we know does not
8012// move.
8013void InstructionCodeGeneratorMIPS::VisitLoadString(HLoadString* load) NO_THREAD_SAFETY_ANALYSIS {
Alexey Frunze06a46c42016-07-19 15:00:40 -07008014 HLoadString::LoadKind load_kind = load->GetLoadKind();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008015 LocationSummary* locations = load->GetLocations();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008016 Location out_loc = locations->Out();
8017 Register out = out_loc.AsRegister<Register>();
8018 Register base_or_current_method_reg;
8019 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008020 bool has_irreducible_loops = GetGraph()->HasIrreducibleLoops();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008021 switch (load_kind) {
8022 // We need an extra register for PC-relative literals on R2.
Alexey Frunze06a46c42016-07-19 15:00:40 -07008023 case HLoadString::LoadKind::kBootImageAddress:
8024 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008025 case HLoadString::LoadKind::kBootImageInternTable:
Vladimir Markoaad75c62016-10-03 08:46:48 +00008026 case HLoadString::LoadKind::kBssEntry:
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008027 base_or_current_method_reg =
8028 (isR6 || has_irreducible_loops) ? ZERO : locations->InAt(0).AsRegister<Register>();
Alexey Frunze06a46c42016-07-19 15:00:40 -07008029 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008030 default:
8031 base_or_current_method_reg = ZERO;
8032 break;
8033 }
8034
8035 switch (load_kind) {
Alexey Frunze06a46c42016-07-19 15:00:40 -07008036 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Markoaad75c62016-10-03 08:46:48 +00008037 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008038 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Vladimir Marko6bec91c2017-01-09 15:03:12 +00008039 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008040 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8041 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008042 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
8043 out,
Alexey Frunzea663d9d2017-07-31 18:43:18 -07008044 base_or_current_method_reg);
8045 __ Addiu(out, out, /* placeholder */ 0x5678, &info_low->label);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008046 return;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008047 }
8048 case HLoadString::LoadKind::kBootImageAddress: {
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00008049 uint32_t address = dchecked_integral_cast<uint32_t>(
8050 reinterpret_cast<uintptr_t>(load->GetString().Get()));
8051 DCHECK_NE(address, 0u);
Goran Jakovljevicdebb5102017-09-21 14:24:06 +02008052 if (isR6 || !has_irreducible_loops) {
8053 __ LoadLiteral(out,
8054 base_or_current_method_reg,
8055 codegen_->DeduplicateBootImageAddressLiteral(address));
8056 } else {
8057 __ LoadConst32(out, address);
8058 }
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008059 return;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008060 }
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008061 case HLoadString::LoadKind::kBootImageInternTable: {
Vladimir Markoaad75c62016-10-03 08:46:48 +00008062 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008063 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
Vladimir Marko6bec91c2017-01-09 15:03:12 +00008064 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008065 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8066 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01008067 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
8068 out,
8069 base_or_current_method_reg);
8070 __ Lw(out, out, /* placeholder */ 0x5678, &info_low->label);
8071 return;
8072 }
8073 case HLoadString::LoadKind::kBssEntry: {
8074 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
8075 CodeGeneratorMIPS::PcRelativePatchInfo* info_high =
8076 codegen_->NewStringBssEntryPatch(load->GetDexFile(), load->GetStringIndex());
8077 CodeGeneratorMIPS::PcRelativePatchInfo* info_low =
8078 codegen_->NewStringBssEntryPatch(load->GetDexFile(), load->GetStringIndex(), info_high);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008079 codegen_->EmitPcRelativeAddressPlaceholderHigh(info_high,
Vladimir Markof3c52b42017-11-17 17:32:12 +00008080 out,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008081 base_or_current_method_reg);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008082 GenerateGcRootFieldLoad(load,
8083 out_loc,
Vladimir Markof3c52b42017-11-17 17:32:12 +00008084 out,
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008085 /* placeholder */ 0x5678,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008086 kCompilerReadBarrierOption,
8087 &info_low->label);
Alexey Frunze5fa5c042017-06-01 21:07:52 -07008088 SlowPathCodeMIPS* slow_path =
Vladimir Markof3c52b42017-11-17 17:32:12 +00008089 new (codegen_->GetScopedAllocator()) LoadStringSlowPathMIPS(load);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008090 codegen_->AddSlowPath(slow_path);
8091 __ Beqz(out, slow_path->GetEntryLabel());
8092 __ Bind(slow_path->GetExitLabel());
8093 return;
8094 }
Alexey Frunze627c1a02017-01-30 19:28:14 -08008095 case HLoadString::LoadKind::kJitTableAddress: {
8096 CodeGeneratorMIPS::JitPatchInfo* info =
8097 codegen_->NewJitRootStringPatch(load->GetDexFile(),
8098 load->GetStringIndex(),
8099 load->GetString());
8100 bool reordering = __ SetReorder(false);
8101 __ Bind(&info->high_label);
8102 __ Lui(out, /* placeholder */ 0x1234);
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008103 __ SetReorder(reordering);
Alexey Frunze15958152017-02-09 19:08:30 -08008104 GenerateGcRootFieldLoad(load,
8105 out_loc,
8106 out,
8107 /* placeholder */ 0x5678,
Alexey Frunze4147fcc2017-06-17 19:57:27 -07008108 kCompilerReadBarrierOption,
8109 &info->low_label);
Alexey Frunze627c1a02017-01-30 19:28:14 -08008110 return;
8111 }
Alexey Frunze06a46c42016-07-19 15:00:40 -07008112 default:
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07008113 break;
Alexey Frunze06a46c42016-07-19 15:00:40 -07008114 }
Nicolas Geoffray917d0162015-11-24 18:25:35 +00008115
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07008116 // TODO: Re-add the compiler code to do string dex cache lookup again.
Vladimir Marko847e6ce2017-06-02 13:55:07 +01008117 DCHECK(load_kind == HLoadString::LoadKind::kRuntimeCall);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008118 InvokeRuntimeCallingConvention calling_convention;
Alexey Frunzec61c0762017-04-10 13:54:23 -07008119 DCHECK_EQ(calling_convention.GetRegisterAt(0), out);
Andreas Gampe8a0128a2016-11-28 07:38:35 -08008120 __ LoadConst32(calling_convention.GetRegisterAt(0), load->GetStringIndex().index_);
Vladimir Markoaad75c62016-10-03 08:46:48 +00008121 codegen_->InvokeRuntime(kQuickResolveString, load, load->GetDexPc());
8122 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008123}
8124
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008125void LocationsBuilderMIPS::VisitLongConstant(HLongConstant* constant) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008126 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(constant);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008127 locations->SetOut(Location::ConstantLocation(constant));
8128}
8129
8130void InstructionCodeGeneratorMIPS::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
8131 // Will be generated at use site.
8132}
8133
8134void LocationsBuilderMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008135 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8136 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008137 InvokeRuntimeCallingConvention calling_convention;
8138 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8139}
8140
8141void InstructionCodeGeneratorMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
8142 if (instruction->IsEnter()) {
Serban Constantinescufca16662016-07-14 09:21:59 +01008143 codegen_->InvokeRuntime(kQuickLockObject, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008144 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
8145 } else {
Serban Constantinescufca16662016-07-14 09:21:59 +01008146 codegen_->InvokeRuntime(kQuickUnlockObject, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008147 }
8148 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
8149}
8150
8151void LocationsBuilderMIPS::VisitMul(HMul* mul) {
8152 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008153 new (GetGraph()->GetAllocator()) LocationSummary(mul, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008154 switch (mul->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008155 case DataType::Type::kInt32:
8156 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008157 locations->SetInAt(0, Location::RequiresRegister());
8158 locations->SetInAt(1, Location::RequiresRegister());
8159 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8160 break;
8161
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008162 case DataType::Type::kFloat32:
8163 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008164 locations->SetInAt(0, Location::RequiresFpuRegister());
8165 locations->SetInAt(1, Location::RequiresFpuRegister());
8166 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8167 break;
8168
8169 default:
8170 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
8171 }
8172}
8173
8174void InstructionCodeGeneratorMIPS::VisitMul(HMul* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008175 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008176 LocationSummary* locations = instruction->GetLocations();
8177 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
8178
8179 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008180 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008181 Register dst = locations->Out().AsRegister<Register>();
8182 Register lhs = locations->InAt(0).AsRegister<Register>();
8183 Register rhs = locations->InAt(1).AsRegister<Register>();
8184
8185 if (isR6) {
8186 __ MulR6(dst, lhs, rhs);
8187 } else {
8188 __ MulR2(dst, lhs, rhs);
8189 }
8190 break;
8191 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008192 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008193 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8194 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8195 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8196 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
8197 Register rhs_high = locations->InAt(1).AsRegisterPairHigh<Register>();
8198 Register rhs_low = locations->InAt(1).AsRegisterPairLow<Register>();
8199
8200 // Extra checks to protect caused by the existance of A1_A2.
8201 // The algorithm is wrong if dst_high is either lhs_lo or rhs_lo:
8202 // (e.g. lhs=a0_a1, rhs=a2_a3 and dst=a1_a2).
8203 DCHECK_NE(dst_high, lhs_low);
8204 DCHECK_NE(dst_high, rhs_low);
8205
8206 // A_B * C_D
8207 // dst_hi: [ low(A*D) + low(B*C) + hi(B*D) ]
8208 // dst_lo: [ low(B*D) ]
8209 // Note: R2 and R6 MUL produce the low 32 bit of the multiplication result.
8210
8211 if (isR6) {
8212 __ MulR6(TMP, lhs_high, rhs_low);
8213 __ MulR6(dst_high, lhs_low, rhs_high);
8214 __ Addu(dst_high, dst_high, TMP);
8215 __ MuhuR6(TMP, lhs_low, rhs_low);
8216 __ Addu(dst_high, dst_high, TMP);
8217 __ MulR6(dst_low, lhs_low, rhs_low);
8218 } else {
8219 __ MulR2(TMP, lhs_high, rhs_low);
8220 __ MulR2(dst_high, lhs_low, rhs_high);
8221 __ Addu(dst_high, dst_high, TMP);
8222 __ MultuR2(lhs_low, rhs_low);
8223 __ Mfhi(TMP);
8224 __ Addu(dst_high, dst_high, TMP);
8225 __ Mflo(dst_low);
8226 }
8227 break;
8228 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008229 case DataType::Type::kFloat32:
8230 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008231 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8232 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
8233 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008234 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008235 __ MulS(dst, lhs, rhs);
8236 } else {
8237 __ MulD(dst, lhs, rhs);
8238 }
8239 break;
8240 }
8241 default:
8242 LOG(FATAL) << "Unexpected mul type " << type;
8243 }
8244}
8245
8246void LocationsBuilderMIPS::VisitNeg(HNeg* neg) {
8247 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008248 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008249 switch (neg->GetResultType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008250 case DataType::Type::kInt32:
8251 case DataType::Type::kInt64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008252 locations->SetInAt(0, Location::RequiresRegister());
8253 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8254 break;
8255
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008256 case DataType::Type::kFloat32:
8257 case DataType::Type::kFloat64:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008258 locations->SetInAt(0, Location::RequiresFpuRegister());
8259 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8260 break;
8261
8262 default:
8263 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
8264 }
8265}
8266
8267void InstructionCodeGeneratorMIPS::VisitNeg(HNeg* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008268 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008269 LocationSummary* locations = instruction->GetLocations();
8270
8271 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008272 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008273 Register dst = locations->Out().AsRegister<Register>();
8274 Register src = locations->InAt(0).AsRegister<Register>();
8275 __ Subu(dst, ZERO, src);
8276 break;
8277 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008278 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008279 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8280 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8281 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8282 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8283 __ Subu(dst_low, ZERO, src_low);
8284 __ Sltu(TMP, ZERO, dst_low);
8285 __ Subu(dst_high, ZERO, src_high);
8286 __ Subu(dst_high, dst_high, TMP);
8287 break;
8288 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008289 case DataType::Type::kFloat32:
8290 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008291 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8292 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008293 if (type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008294 __ NegS(dst, src);
8295 } else {
8296 __ NegD(dst, src);
8297 }
8298 break;
8299 }
8300 default:
8301 LOG(FATAL) << "Unexpected neg type " << type;
8302 }
8303}
8304
8305void LocationsBuilderMIPS::VisitNewArray(HNewArray* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008306 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8307 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008308 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008309 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kReference));
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00008310 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8311 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008312}
8313
8314void InstructionCodeGeneratorMIPS::VisitNewArray(HNewArray* instruction) {
Alexey Frunzec061de12017-02-14 13:27:23 -08008315 // Note: if heap poisoning is enabled, the entry point takes care
8316 // of poisoning the reference.
Goran Jakovljevic854df412017-06-27 14:41:39 +02008317 QuickEntrypointEnum entrypoint =
8318 CodeGenerator::GetArrayAllocationEntrypoint(instruction->GetLoadClass()->GetClass());
8319 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc());
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00008320 CheckEntrypointTypes<kQuickAllocArrayResolved, void*, mirror::Class*, int32_t>();
Goran Jakovljevic854df412017-06-27 14:41:39 +02008321 DCHECK(!codegen_->IsLeafMethod());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008322}
8323
8324void LocationsBuilderMIPS::VisitNewInstance(HNewInstance* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008325 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8326 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008327 InvokeRuntimeCallingConvention calling_convention;
David Brazdil6de19382016-01-08 17:37:10 +00008328 if (instruction->IsStringAlloc()) {
8329 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
8330 } else {
8331 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
David Brazdil6de19382016-01-08 17:37:10 +00008332 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008333 locations->SetOut(calling_convention.GetReturnLocation(DataType::Type::kReference));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008334}
8335
8336void InstructionCodeGeneratorMIPS::VisitNewInstance(HNewInstance* instruction) {
Alexey Frunzec061de12017-02-14 13:27:23 -08008337 // Note: if heap poisoning is enabled, the entry point takes care
8338 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00008339 if (instruction->IsStringAlloc()) {
8340 // String is allocated through StringFactory. Call NewEmptyString entry point.
8341 Register temp = instruction->GetLocations()->GetTemp(0).AsRegister<Register>();
Andreas Gampe542451c2016-07-26 09:02:02 -07008342 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsPointerSize);
David Brazdil6de19382016-01-08 17:37:10 +00008343 __ LoadFromOffset(kLoadWord, temp, TR, QUICK_ENTRY_POINT(pNewEmptyString));
8344 __ LoadFromOffset(kLoadWord, T9, temp, code_offset.Int32Value());
8345 __ Jalr(T9);
Alexey Frunze57eb0f52016-07-29 22:04:46 -07008346 __ NopIfNoReordering();
David Brazdil6de19382016-01-08 17:37:10 +00008347 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
8348 } else {
Serban Constantinescufca16662016-07-14 09:21:59 +01008349 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Nicolas Geoffray0d3998b2017-01-12 15:35:12 +00008350 CheckEntrypointTypes<kQuickAllocObjectWithChecks, void*, mirror::Class*>();
David Brazdil6de19382016-01-08 17:37:10 +00008351 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008352}
8353
8354void LocationsBuilderMIPS::VisitNot(HNot* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008355 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008356 locations->SetInAt(0, Location::RequiresRegister());
8357 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8358}
8359
8360void InstructionCodeGeneratorMIPS::VisitNot(HNot* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008361 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008362 LocationSummary* locations = instruction->GetLocations();
8363
8364 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008365 case DataType::Type::kInt32: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008366 Register dst = locations->Out().AsRegister<Register>();
8367 Register src = locations->InAt(0).AsRegister<Register>();
8368 __ Nor(dst, src, ZERO);
8369 break;
8370 }
8371
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008372 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008373 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8374 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8375 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8376 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8377 __ Nor(dst_high, src_high, ZERO);
8378 __ Nor(dst_low, src_low, ZERO);
8379 break;
8380 }
8381
8382 default:
8383 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
8384 }
8385}
8386
8387void LocationsBuilderMIPS::VisitBooleanNot(HBooleanNot* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008388 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008389 locations->SetInAt(0, Location::RequiresRegister());
8390 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8391}
8392
8393void InstructionCodeGeneratorMIPS::VisitBooleanNot(HBooleanNot* instruction) {
8394 LocationSummary* locations = instruction->GetLocations();
8395 __ Xori(locations->Out().AsRegister<Register>(),
8396 locations->InAt(0).AsRegister<Register>(),
8397 1);
8398}
8399
8400void LocationsBuilderMIPS::VisitNullCheck(HNullCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01008401 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
8402 locations->SetInAt(0, Location::RequiresRegister());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008403}
8404
Calin Juravle2ae48182016-03-16 14:05:09 +00008405void CodeGeneratorMIPS::GenerateImplicitNullCheck(HNullCheck* instruction) {
8406 if (CanMoveNullCheckToUser(instruction)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008407 return;
8408 }
8409 Location obj = instruction->GetLocations()->InAt(0);
8410
8411 __ Lw(ZERO, obj.AsRegister<Register>(), 0);
Calin Juravle2ae48182016-03-16 14:05:09 +00008412 RecordPcInfo(instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008413}
8414
Calin Juravle2ae48182016-03-16 14:05:09 +00008415void CodeGeneratorMIPS::GenerateExplicitNullCheck(HNullCheck* instruction) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01008416 SlowPathCodeMIPS* slow_path = new (GetScopedAllocator()) NullCheckSlowPathMIPS(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00008417 AddSlowPath(slow_path);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008418
8419 Location obj = instruction->GetLocations()->InAt(0);
8420
8421 __ Beqz(obj.AsRegister<Register>(), slow_path->GetEntryLabel());
8422}
8423
8424void InstructionCodeGeneratorMIPS::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00008425 codegen_->GenerateNullCheck(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008426}
8427
8428void LocationsBuilderMIPS::VisitOr(HOr* instruction) {
8429 HandleBinaryOp(instruction);
8430}
8431
8432void InstructionCodeGeneratorMIPS::VisitOr(HOr* instruction) {
8433 HandleBinaryOp(instruction);
8434}
8435
8436void LocationsBuilderMIPS::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
8437 LOG(FATAL) << "Unreachable";
8438}
8439
8440void InstructionCodeGeneratorMIPS::VisitParallelMove(HParallelMove* instruction) {
Vladimir Markobea75ff2017-10-11 20:39:54 +01008441 if (instruction->GetNext()->IsSuspendCheck() &&
8442 instruction->GetBlock()->GetLoopInformation() != nullptr) {
8443 HSuspendCheck* suspend_check = instruction->GetNext()->AsSuspendCheck();
8444 // The back edge will generate the suspend check.
8445 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(suspend_check, instruction);
8446 }
8447
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008448 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
8449}
8450
8451void LocationsBuilderMIPS::VisitParameterValue(HParameterValue* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008452 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008453 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
8454 if (location.IsStackSlot()) {
8455 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
8456 } else if (location.IsDoubleStackSlot()) {
8457 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
8458 }
8459 locations->SetOut(location);
8460}
8461
8462void InstructionCodeGeneratorMIPS::VisitParameterValue(HParameterValue* instruction
8463 ATTRIBUTE_UNUSED) {
8464 // Nothing to do, the parameter is already at its location.
8465}
8466
8467void LocationsBuilderMIPS::VisitCurrentMethod(HCurrentMethod* instruction) {
8468 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01008469 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008470 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
8471}
8472
8473void InstructionCodeGeneratorMIPS::VisitCurrentMethod(HCurrentMethod* instruction
8474 ATTRIBUTE_UNUSED) {
8475 // Nothing to do, the method is already at its location.
8476}
8477
8478void LocationsBuilderMIPS::VisitPhi(HPhi* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008479 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction);
Vladimir Marko372f10e2016-05-17 16:30:10 +01008480 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008481 locations->SetInAt(i, Location::Any());
8482 }
8483 locations->SetOut(Location::Any());
8484}
8485
8486void InstructionCodeGeneratorMIPS::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
8487 LOG(FATAL) << "Unreachable";
8488}
8489
8490void LocationsBuilderMIPS::VisitRem(HRem* rem) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008491 DataType::Type type = rem->GetResultType();
8492 LocationSummary::CallKind call_kind = (type == DataType::Type::kInt32)
8493 ? LocationSummary::kNoCall
8494 : LocationSummary::kCallOnMainOnly;
Vladimir Markoca6fff82017-10-03 14:49:14 +01008495 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(rem, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008496
8497 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008498 case DataType::Type::kInt32:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008499 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze7e99e052015-11-24 19:28:01 -08008500 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008501 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8502 break;
8503
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008504 case DataType::Type::kInt64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008505 InvokeRuntimeCallingConvention calling_convention;
8506 locations->SetInAt(0, Location::RegisterPairLocation(
8507 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
8508 locations->SetInAt(1, Location::RegisterPairLocation(
8509 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
8510 locations->SetOut(calling_convention.GetReturnLocation(type));
8511 break;
8512 }
8513
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008514 case DataType::Type::kFloat32:
8515 case DataType::Type::kFloat64: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008516 InvokeRuntimeCallingConvention calling_convention;
8517 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
8518 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
8519 locations->SetOut(calling_convention.GetReturnLocation(type));
8520 break;
8521 }
8522
8523 default:
8524 LOG(FATAL) << "Unexpected rem type " << type;
8525 }
8526}
8527
8528void InstructionCodeGeneratorMIPS::VisitRem(HRem* instruction) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008529 DataType::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008530
8531 switch (type) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008532 case DataType::Type::kInt32:
Alexey Frunze7e99e052015-11-24 19:28:01 -08008533 GenerateDivRemIntegral(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008534 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008535 case DataType::Type::kInt64: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008536 codegen_->InvokeRuntime(kQuickLmod, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008537 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
8538 break;
8539 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008540 case DataType::Type::kFloat32: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008541 codegen_->InvokeRuntime(kQuickFmodf, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00008542 CheckEntrypointTypes<kQuickFmodf, float, float, float>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008543 break;
8544 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008545 case DataType::Type::kFloat64: {
Serban Constantinescufca16662016-07-14 09:21:59 +01008546 codegen_->InvokeRuntime(kQuickFmod, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00008547 CheckEntrypointTypes<kQuickFmod, double, double, double>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008548 break;
8549 }
8550 default:
8551 LOG(FATAL) << "Unexpected rem type " << type;
8552 }
8553}
8554
Igor Murashkind01745e2017-04-05 16:40:31 -07008555void LocationsBuilderMIPS::VisitConstructorFence(HConstructorFence* constructor_fence) {
8556 constructor_fence->SetLocations(nullptr);
8557}
8558
8559void InstructionCodeGeneratorMIPS::VisitConstructorFence(
8560 HConstructorFence* constructor_fence ATTRIBUTE_UNUSED) {
8561 GenerateMemoryBarrier(MemBarrierKind::kStoreStore);
8562}
8563
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008564void LocationsBuilderMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
8565 memory_barrier->SetLocations(nullptr);
8566}
8567
8568void InstructionCodeGeneratorMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
8569 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
8570}
8571
8572void LocationsBuilderMIPS::VisitReturn(HReturn* ret) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008573 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(ret);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008574 DataType::Type return_type = ret->InputAt(0)->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008575 locations->SetInAt(0, MipsReturnLocation(return_type));
8576}
8577
8578void InstructionCodeGeneratorMIPS::VisitReturn(HReturn* ret ATTRIBUTE_UNUSED) {
8579 codegen_->GenerateFrameExit();
8580}
8581
8582void LocationsBuilderMIPS::VisitReturnVoid(HReturnVoid* ret) {
8583 ret->SetLocations(nullptr);
8584}
8585
8586void InstructionCodeGeneratorMIPS::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
8587 codegen_->GenerateFrameExit();
8588}
8589
Alexey Frunze92d90602015-12-18 18:16:36 -08008590void LocationsBuilderMIPS::VisitRor(HRor* ror) {
8591 HandleShift(ror);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00008592}
8593
Alexey Frunze92d90602015-12-18 18:16:36 -08008594void InstructionCodeGeneratorMIPS::VisitRor(HRor* ror) {
8595 HandleShift(ror);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00008596}
8597
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008598void LocationsBuilderMIPS::VisitShl(HShl* shl) {
8599 HandleShift(shl);
8600}
8601
8602void InstructionCodeGeneratorMIPS::VisitShl(HShl* shl) {
8603 HandleShift(shl);
8604}
8605
8606void LocationsBuilderMIPS::VisitShr(HShr* shr) {
8607 HandleShift(shr);
8608}
8609
8610void InstructionCodeGeneratorMIPS::VisitShr(HShr* shr) {
8611 HandleShift(shr);
8612}
8613
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008614void LocationsBuilderMIPS::VisitSub(HSub* instruction) {
8615 HandleBinaryOp(instruction);
8616}
8617
8618void InstructionCodeGeneratorMIPS::VisitSub(HSub* instruction) {
8619 HandleBinaryOp(instruction);
8620}
8621
8622void LocationsBuilderMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
8623 HandleFieldGet(instruction, instruction->GetFieldInfo());
8624}
8625
8626void InstructionCodeGeneratorMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
8627 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
8628}
8629
8630void LocationsBuilderMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
8631 HandleFieldSet(instruction, instruction->GetFieldInfo());
8632}
8633
8634void InstructionCodeGeneratorMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Goran Jakovljevice114da22016-12-26 14:21:43 +01008635 HandleFieldSet(instruction,
8636 instruction->GetFieldInfo(),
8637 instruction->GetDexPc(),
8638 instruction->GetValueCanBeNull());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008639}
8640
8641void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldGet(
8642 HUnresolvedInstanceFieldGet* instruction) {
8643 FieldAccessCallingConventionMIPS calling_convention;
8644 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8645 instruction->GetFieldType(),
8646 calling_convention);
8647}
8648
8649void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldGet(
8650 HUnresolvedInstanceFieldGet* instruction) {
8651 FieldAccessCallingConventionMIPS calling_convention;
8652 codegen_->GenerateUnresolvedFieldAccess(instruction,
8653 instruction->GetFieldType(),
8654 instruction->GetFieldIndex(),
8655 instruction->GetDexPc(),
8656 calling_convention);
8657}
8658
8659void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldSet(
8660 HUnresolvedInstanceFieldSet* instruction) {
8661 FieldAccessCallingConventionMIPS calling_convention;
8662 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8663 instruction->GetFieldType(),
8664 calling_convention);
8665}
8666
8667void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldSet(
8668 HUnresolvedInstanceFieldSet* instruction) {
8669 FieldAccessCallingConventionMIPS calling_convention;
8670 codegen_->GenerateUnresolvedFieldAccess(instruction,
8671 instruction->GetFieldType(),
8672 instruction->GetFieldIndex(),
8673 instruction->GetDexPc(),
8674 calling_convention);
8675}
8676
8677void LocationsBuilderMIPS::VisitUnresolvedStaticFieldGet(
8678 HUnresolvedStaticFieldGet* instruction) {
8679 FieldAccessCallingConventionMIPS calling_convention;
8680 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8681 instruction->GetFieldType(),
8682 calling_convention);
8683}
8684
8685void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldGet(
8686 HUnresolvedStaticFieldGet* instruction) {
8687 FieldAccessCallingConventionMIPS calling_convention;
8688 codegen_->GenerateUnresolvedFieldAccess(instruction,
8689 instruction->GetFieldType(),
8690 instruction->GetFieldIndex(),
8691 instruction->GetDexPc(),
8692 calling_convention);
8693}
8694
8695void LocationsBuilderMIPS::VisitUnresolvedStaticFieldSet(
8696 HUnresolvedStaticFieldSet* instruction) {
8697 FieldAccessCallingConventionMIPS calling_convention;
8698 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
8699 instruction->GetFieldType(),
8700 calling_convention);
8701}
8702
8703void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldSet(
8704 HUnresolvedStaticFieldSet* instruction) {
8705 FieldAccessCallingConventionMIPS calling_convention;
8706 codegen_->GenerateUnresolvedFieldAccess(instruction,
8707 instruction->GetFieldType(),
8708 instruction->GetFieldIndex(),
8709 instruction->GetDexPc(),
8710 calling_convention);
8711}
8712
8713void LocationsBuilderMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008714 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8715 instruction, LocationSummary::kCallOnSlowPath);
Lena Djokicca8c2952017-05-29 11:31:46 +02008716 // In suspend check slow path, usually there are no caller-save registers at all.
8717 // If SIMD instructions are present, however, we force spilling all live SIMD
8718 // registers in full width (since the runtime only saves/restores lower part).
8719 locations->SetCustomSlowPathCallerSaves(
8720 GetGraph()->HasSIMD() ? RegisterSet::AllFpu() : RegisterSet::Empty());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008721}
8722
8723void InstructionCodeGeneratorMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
8724 HBasicBlock* block = instruction->GetBlock();
8725 if (block->GetLoopInformation() != nullptr) {
8726 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
8727 // The back edge will generate the suspend check.
8728 return;
8729 }
8730 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
8731 // The goto will generate the suspend check.
8732 return;
8733 }
8734 GenerateSuspendCheck(instruction, nullptr);
8735}
8736
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008737void LocationsBuilderMIPS::VisitThrow(HThrow* instruction) {
Vladimir Markoca6fff82017-10-03 14:49:14 +01008738 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(
8739 instruction, LocationSummary::kCallOnMainOnly);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008740 InvokeRuntimeCallingConvention calling_convention;
8741 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
8742}
8743
8744void InstructionCodeGeneratorMIPS::VisitThrow(HThrow* instruction) {
Serban Constantinescufca16662016-07-14 09:21:59 +01008745 codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008746 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
8747}
8748
8749void LocationsBuilderMIPS::VisitTypeConversion(HTypeConversion* conversion) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008750 DataType::Type input_type = conversion->GetInputType();
8751 DataType::Type result_type = conversion->GetResultType();
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008752 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
8753 << input_type << " -> " << result_type;
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008754 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008755
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008756 if ((input_type == DataType::Type::kReference) || (input_type == DataType::Type::kVoid) ||
8757 (result_type == DataType::Type::kReference) || (result_type == DataType::Type::kVoid)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008758 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
8759 }
8760
8761 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008762 if (!isR6 &&
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008763 ((DataType::IsFloatingPointType(result_type) && input_type == DataType::Type::kInt64) ||
8764 (result_type == DataType::Type::kInt64 && DataType::IsFloatingPointType(input_type)))) {
Serban Constantinescu54ff4822016-07-07 18:03:19 +01008765 call_kind = LocationSummary::kCallOnMainOnly;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008766 }
8767
Vladimir Markoca6fff82017-10-03 14:49:14 +01008768 LocationSummary* locations =
8769 new (GetGraph()->GetAllocator()) LocationSummary(conversion, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008770
8771 if (call_kind == LocationSummary::kNoCall) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008772 if (DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008773 locations->SetInAt(0, Location::RequiresFpuRegister());
8774 } else {
8775 locations->SetInAt(0, Location::RequiresRegister());
8776 }
8777
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008778 if (DataType::IsFloatingPointType(result_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008779 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
8780 } else {
8781 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
8782 }
8783 } else {
8784 InvokeRuntimeCallingConvention calling_convention;
8785
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008786 if (DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008787 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
8788 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008789 DCHECK_EQ(input_type, DataType::Type::kInt64);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008790 locations->SetInAt(0, Location::RegisterPairLocation(
8791 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
8792 }
8793
8794 locations->SetOut(calling_convention.GetReturnLocation(result_type));
8795 }
8796}
8797
8798void InstructionCodeGeneratorMIPS::VisitTypeConversion(HTypeConversion* conversion) {
8799 LocationSummary* locations = conversion->GetLocations();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008800 DataType::Type result_type = conversion->GetResultType();
8801 DataType::Type input_type = conversion->GetInputType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008802 bool has_sign_extension = codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2();
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008803 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008804
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008805 DCHECK(!DataType::IsTypeConversionImplicit(input_type, result_type))
8806 << input_type << " -> " << result_type;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008807
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008808 if (result_type == DataType::Type::kInt64 && DataType::IsIntegralType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008809 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8810 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
8811 Register src = locations->InAt(0).AsRegister<Register>();
8812
Alexey Frunzea871ef12016-06-27 15:20:11 -07008813 if (dst_low != src) {
8814 __ Move(dst_low, src);
8815 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008816 __ Sra(dst_high, src, 31);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008817 } else if (DataType::IsIntegralType(result_type) && DataType::IsIntegralType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008818 Register dst = locations->Out().AsRegister<Register>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008819 Register src = (input_type == DataType::Type::kInt64)
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008820 ? locations->InAt(0).AsRegisterPairLow<Register>()
8821 : locations->InAt(0).AsRegister<Register>();
8822
8823 switch (result_type) {
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008824 case DataType::Type::kUint8:
8825 __ Andi(dst, src, 0xFF);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008826 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008827 case DataType::Type::kInt8:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008828 if (has_sign_extension) {
8829 __ Seb(dst, src);
8830 } else {
8831 __ Sll(dst, src, 24);
8832 __ Sra(dst, dst, 24);
8833 }
8834 break;
Vladimir Markod5d2f2c2017-09-26 12:37:26 +01008835 case DataType::Type::kUint16:
8836 __ Andi(dst, src, 0xFFFF);
8837 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008838 case DataType::Type::kInt16:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008839 if (has_sign_extension) {
8840 __ Seh(dst, src);
8841 } else {
8842 __ Sll(dst, src, 16);
8843 __ Sra(dst, dst, 16);
8844 }
8845 break;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008846 case DataType::Type::kInt32:
Alexey Frunzea871ef12016-06-27 15:20:11 -07008847 if (dst != src) {
8848 __ Move(dst, src);
8849 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008850 break;
8851
8852 default:
8853 LOG(FATAL) << "Unexpected type conversion from " << input_type
8854 << " to " << result_type;
8855 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008856 } else if (DataType::IsFloatingPointType(result_type) && DataType::IsIntegralType(input_type)) {
8857 if (input_type == DataType::Type::kInt64) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008858 if (isR6) {
8859 // cvt.s.l/cvt.d.l requires MIPSR2+ with FR=1. MIPS32R6 is implemented as a secondary
8860 // architecture on top of MIPS64R6, which has FR=1, and therefore can use the instruction.
8861 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
8862 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
8863 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8864 __ Mtc1(src_low, FTMP);
8865 __ Mthc1(src_high, FTMP);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008866 if (result_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008867 __ Cvtsl(dst, FTMP);
8868 } else {
8869 __ Cvtdl(dst, FTMP);
8870 }
8871 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008872 QuickEntrypointEnum entrypoint =
8873 (result_type == DataType::Type::kFloat32) ? kQuickL2f : kQuickL2d;
Serban Constantinescufca16662016-07-14 09:21:59 +01008874 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008875 if (result_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008876 CheckEntrypointTypes<kQuickL2f, float, int64_t>();
8877 } else {
8878 CheckEntrypointTypes<kQuickL2d, double, int64_t>();
8879 }
8880 }
8881 } else {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008882 Register src = locations->InAt(0).AsRegister<Register>();
8883 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8884 __ Mtc1(src, FTMP);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008885 if (result_type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008886 __ Cvtsw(dst, FTMP);
8887 } else {
8888 __ Cvtdw(dst, FTMP);
8889 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008890 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008891 } else if (DataType::IsIntegralType(result_type) && DataType::IsFloatingPointType(input_type)) {
8892 CHECK(result_type == DataType::Type::kInt32 || result_type == DataType::Type::kInt64);
Lena Djokicf4e23a82017-05-09 15:43:45 +02008893
8894 // When NAN2008=1 (R6), the truncate instruction caps the output at the minimum/maximum
8895 // value of the output type if the input is outside of the range after the truncation or
8896 // produces 0 when the input is a NaN. IOW, the three special cases produce three distinct
8897 // results. This matches the desired float/double-to-int/long conversion exactly.
8898 //
8899 // When NAN2008=0 (R2 and before), the truncate instruction produces the maximum positive
8900 // value when the input is either a NaN or is outside of the range of the output type
8901 // after the truncation. IOW, the three special cases (NaN, too small, too big) produce
8902 // the same result.
8903 //
8904 // The code takes care of the different behaviors by first comparing the input to the
8905 // minimum output value (-2**-63 for truncating to long, -2**-31 for truncating to int).
8906 // If the input is greater than or equal to the minimum, it procedes to the truncate
8907 // instruction, which will handle such an input the same way irrespective of NAN2008.
8908 // Otherwise the input is compared to itself to determine whether it is a NaN or not
8909 // in order to return either zero or the minimum value.
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008910 if (result_type == DataType::Type::kInt64) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008911 if (isR6) {
8912 // trunc.l.s/trunc.l.d requires MIPSR2+ with FR=1. MIPS32R6 is implemented as a secondary
8913 // architecture on top of MIPS64R6, which has FR=1, and therefore can use the instruction.
8914 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
8915 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
8916 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008917
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008918 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008919 __ TruncLS(FTMP, src);
8920 } else {
8921 __ TruncLD(FTMP, src);
8922 }
8923 __ Mfc1(dst_low, FTMP);
8924 __ Mfhc1(dst_high, FTMP);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008925 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008926 QuickEntrypointEnum entrypoint =
8927 (input_type == DataType::Type::kFloat32) ? kQuickF2l : kQuickD2l;
Serban Constantinescufca16662016-07-14 09:21:59 +01008928 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008929 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008930 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
8931 } else {
8932 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
8933 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008934 }
8935 } else {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008936 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
8937 Register dst = locations->Out().AsRegister<Register>();
8938 MipsLabel truncate;
8939 MipsLabel done;
8940
Lena Djokicf4e23a82017-05-09 15:43:45 +02008941 if (!isR6) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008942 if (input_type == DataType::Type::kFloat32) {
Lena Djokicf4e23a82017-05-09 15:43:45 +02008943 uint32_t min_val = bit_cast<uint32_t, float>(std::numeric_limits<int32_t>::min());
8944 __ LoadConst32(TMP, min_val);
8945 __ Mtc1(TMP, FTMP);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008946 } else {
Lena Djokicf4e23a82017-05-09 15:43:45 +02008947 uint64_t min_val = bit_cast<uint64_t, double>(std::numeric_limits<int32_t>::min());
8948 __ LoadConst32(TMP, High32Bits(min_val));
8949 __ Mtc1(ZERO, FTMP);
8950 __ MoveToFpuHigh(TMP, FTMP);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008951 }
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008952
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008953 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008954 __ ColeS(0, FTMP, src);
8955 } else {
8956 __ ColeD(0, FTMP, src);
8957 }
8958 __ Bc1t(0, &truncate);
8959
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008960 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008961 __ CeqS(0, src, src);
8962 } else {
8963 __ CeqD(0, src, src);
8964 }
8965 __ LoadConst32(dst, std::numeric_limits<int32_t>::min());
8966 __ Movf(dst, ZERO, 0);
Lena Djokicf4e23a82017-05-09 15:43:45 +02008967
8968 __ B(&done);
8969
8970 __ Bind(&truncate);
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008971 }
8972
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008973 if (input_type == DataType::Type::kFloat32) {
Alexey Frunzebaf60b72015-12-22 15:15:03 -08008974 __ TruncWS(FTMP, src);
8975 } else {
8976 __ TruncWD(FTMP, src);
8977 }
8978 __ Mfc1(dst, FTMP);
8979
Lena Djokicf4e23a82017-05-09 15:43:45 +02008980 if (!isR6) {
8981 __ Bind(&done);
8982 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008983 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008984 } else if (DataType::IsFloatingPointType(result_type) &&
8985 DataType::IsFloatingPointType(input_type)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008986 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
8987 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01008988 if (result_type == DataType::Type::kFloat32) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02008989 __ Cvtsd(dst, src);
8990 } else {
8991 __ Cvtds(dst, src);
8992 }
8993 } else {
8994 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
8995 << " to " << result_type;
8996 }
8997}
8998
8999void LocationsBuilderMIPS::VisitUShr(HUShr* ushr) {
9000 HandleShift(ushr);
9001}
9002
9003void InstructionCodeGeneratorMIPS::VisitUShr(HUShr* ushr) {
9004 HandleShift(ushr);
9005}
9006
9007void LocationsBuilderMIPS::VisitXor(HXor* instruction) {
9008 HandleBinaryOp(instruction);
9009}
9010
9011void InstructionCodeGeneratorMIPS::VisitXor(HXor* instruction) {
9012 HandleBinaryOp(instruction);
9013}
9014
9015void LocationsBuilderMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
9016 // Nothing to do, this should be removed during prepare for register allocator.
9017 LOG(FATAL) << "Unreachable";
9018}
9019
9020void InstructionCodeGeneratorMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
9021 // Nothing to do, this should be removed during prepare for register allocator.
9022 LOG(FATAL) << "Unreachable";
9023}
9024
9025void LocationsBuilderMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009026 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009027}
9028
9029void InstructionCodeGeneratorMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009030 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009031}
9032
9033void LocationsBuilderMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009034 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009035}
9036
9037void InstructionCodeGeneratorMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009038 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009039}
9040
9041void LocationsBuilderMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009042 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009043}
9044
9045void InstructionCodeGeneratorMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009046 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009047}
9048
9049void LocationsBuilderMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009050 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009051}
9052
9053void InstructionCodeGeneratorMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009054 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009055}
9056
9057void LocationsBuilderMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009058 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009059}
9060
9061void InstructionCodeGeneratorMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009062 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009063}
9064
9065void LocationsBuilderMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009066 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009067}
9068
9069void InstructionCodeGeneratorMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009070 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009071}
9072
9073void LocationsBuilderMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009074 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009075}
9076
9077void InstructionCodeGeneratorMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009078 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009079}
9080
9081void LocationsBuilderMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009082 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009083}
9084
9085void InstructionCodeGeneratorMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009086 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009087}
9088
9089void LocationsBuilderMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009090 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009091}
9092
9093void InstructionCodeGeneratorMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009094 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009095}
9096
9097void LocationsBuilderMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009098 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009099}
9100
9101void InstructionCodeGeneratorMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00009102 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009103}
9104
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009105void LocationsBuilderMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
9106 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009107 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009108 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009109 if (!codegen_->GetInstructionSetFeatures().IsR6()) {
9110 uint32_t num_entries = switch_instr->GetNumEntries();
9111 if (num_entries > InstructionCodeGeneratorMIPS::kPackedSwitchJumpTableThreshold) {
9112 // When there's no HMipsComputeBaseMethodAddress input, R2 uses the NAL
9113 // instruction to simulate PC-relative addressing when accessing the jump table.
9114 // NAL clobbers RA. Make sure RA is preserved.
9115 codegen_->ClobberRA();
9116 }
9117 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009118}
9119
Alexey Frunze96b66822016-09-10 02:32:44 -07009120void InstructionCodeGeneratorMIPS::GenPackedSwitchWithCompares(Register value_reg,
9121 int32_t lower_bound,
9122 uint32_t num_entries,
9123 HBasicBlock* switch_block,
9124 HBasicBlock* default_block) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009125 // Create a set of compare/jumps.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009126 Register temp_reg = TMP;
9127 __ Addiu32(temp_reg, value_reg, -lower_bound);
9128 // Jump to default if index is negative
9129 // Note: We don't check the case that index is positive while value < lower_bound, because in
9130 // this case, index >= num_entries must be true. So that we can save one branch instruction.
9131 __ Bltz(temp_reg, codegen_->GetLabelOf(default_block));
9132
Alexey Frunze96b66822016-09-10 02:32:44 -07009133 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009134 // Jump to successors[0] if value == lower_bound.
9135 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[0]));
9136 int32_t last_index = 0;
9137 for (; num_entries - last_index > 2; last_index += 2) {
9138 __ Addiu(temp_reg, temp_reg, -2);
9139 // Jump to successors[last_index + 1] if value < case_value[last_index + 2].
9140 __ Bltz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
9141 // Jump to successors[last_index + 2] if value == case_value[last_index + 2].
9142 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 2]));
9143 }
9144 if (num_entries - last_index == 2) {
9145 // The last missing case_value.
9146 __ Addiu(temp_reg, temp_reg, -1);
9147 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009148 }
9149
Vladimir Markof3e0ee22015-12-17 15:23:13 +00009150 // And the default for any other value.
Alexey Frunze96b66822016-09-10 02:32:44 -07009151 if (!codegen_->GoesToNextBlock(switch_block, default_block)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009152 __ B(codegen_->GetLabelOf(default_block));
9153 }
9154}
9155
Alexey Frunze96b66822016-09-10 02:32:44 -07009156void InstructionCodeGeneratorMIPS::GenTableBasedPackedSwitch(Register value_reg,
9157 Register constant_area,
9158 int32_t lower_bound,
9159 uint32_t num_entries,
9160 HBasicBlock* switch_block,
9161 HBasicBlock* default_block) {
9162 // Create a jump table.
9163 std::vector<MipsLabel*> labels(num_entries);
9164 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors();
9165 for (uint32_t i = 0; i < num_entries; i++) {
9166 labels[i] = codegen_->GetLabelOf(successors[i]);
9167 }
9168 JumpTable* table = __ CreateJumpTable(std::move(labels));
9169
9170 // Is the value in range?
9171 __ Addiu32(TMP, value_reg, -lower_bound);
9172 if (IsInt<16>(static_cast<int32_t>(num_entries))) {
9173 __ Sltiu(AT, TMP, num_entries);
9174 __ Beqz(AT, codegen_->GetLabelOf(default_block));
9175 } else {
9176 __ LoadConst32(AT, num_entries);
9177 __ Bgeu(TMP, AT, codegen_->GetLabelOf(default_block));
9178 }
9179
9180 // We are in the range of the table.
9181 // Load the target address from the jump table, indexing by the value.
9182 __ LoadLabelAddress(AT, constant_area, table->GetLabel());
Chris Larsencd0295d2017-03-31 15:26:54 -07009183 __ ShiftAndAdd(TMP, TMP, AT, 2, TMP);
Alexey Frunze96b66822016-09-10 02:32:44 -07009184 __ Lw(TMP, TMP, 0);
9185 // Compute the absolute target address by adding the table start address
9186 // (the table contains offsets to targets relative to its start).
9187 __ Addu(TMP, TMP, AT);
9188 // And jump.
9189 __ Jr(TMP);
9190 __ NopIfNoReordering();
9191}
9192
9193void InstructionCodeGeneratorMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
9194 int32_t lower_bound = switch_instr->GetStartValue();
9195 uint32_t num_entries = switch_instr->GetNumEntries();
9196 LocationSummary* locations = switch_instr->GetLocations();
9197 Register value_reg = locations->InAt(0).AsRegister<Register>();
9198 HBasicBlock* switch_block = switch_instr->GetBlock();
9199 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
9200
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009201 if (num_entries > kPackedSwitchJumpTableThreshold) {
Alexey Frunze96b66822016-09-10 02:32:44 -07009202 // R6 uses PC-relative addressing to access the jump table.
Alexey Frunze3b8c82f2017-10-10 23:01:34 -07009203 //
9204 // R2, OTOH, uses an HMipsComputeBaseMethodAddress input (when available)
9205 // to access the jump table and it is implemented by changing HPackedSwitch to
9206 // HMipsPackedSwitch, which bears HMipsComputeBaseMethodAddress (see
9207 // VisitMipsPackedSwitch()).
9208 //
9209 // When there's no HMipsComputeBaseMethodAddress input (e.g. in presence of
9210 // irreducible loops), R2 uses the NAL instruction to simulate PC-relative
9211 // addressing.
Alexey Frunze96b66822016-09-10 02:32:44 -07009212 GenTableBasedPackedSwitch(value_reg,
9213 ZERO,
9214 lower_bound,
9215 num_entries,
9216 switch_block,
9217 default_block);
9218 } else {
9219 GenPackedSwitchWithCompares(value_reg,
9220 lower_bound,
9221 num_entries,
9222 switch_block,
9223 default_block);
9224 }
9225}
9226
9227void LocationsBuilderMIPS::VisitMipsPackedSwitch(HMipsPackedSwitch* switch_instr) {
9228 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009229 new (GetGraph()->GetAllocator()) LocationSummary(switch_instr, LocationSummary::kNoCall);
Alexey Frunze96b66822016-09-10 02:32:44 -07009230 locations->SetInAt(0, Location::RequiresRegister());
9231 // Constant area pointer (HMipsComputeBaseMethodAddress).
9232 locations->SetInAt(1, Location::RequiresRegister());
9233}
9234
9235void InstructionCodeGeneratorMIPS::VisitMipsPackedSwitch(HMipsPackedSwitch* switch_instr) {
9236 int32_t lower_bound = switch_instr->GetStartValue();
9237 uint32_t num_entries = switch_instr->GetNumEntries();
9238 LocationSummary* locations = switch_instr->GetLocations();
9239 Register value_reg = locations->InAt(0).AsRegister<Register>();
9240 Register constant_area = locations->InAt(1).AsRegister<Register>();
9241 HBasicBlock* switch_block = switch_instr->GetBlock();
9242 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
9243
9244 // This is an R2-only path. HPackedSwitch has been changed to
9245 // HMipsPackedSwitch, which bears HMipsComputeBaseMethodAddress
9246 // required to address the jump table relative to PC.
9247 GenTableBasedPackedSwitch(value_reg,
9248 constant_area,
9249 lower_bound,
9250 num_entries,
9251 switch_block,
9252 default_block);
9253}
9254
Alexey Frunzee3fb2452016-05-10 16:08:05 -07009255void LocationsBuilderMIPS::VisitMipsComputeBaseMethodAddress(
9256 HMipsComputeBaseMethodAddress* insn) {
9257 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009258 new (GetGraph()->GetAllocator()) LocationSummary(insn, LocationSummary::kNoCall);
Alexey Frunzee3fb2452016-05-10 16:08:05 -07009259 locations->SetOut(Location::RequiresRegister());
9260}
9261
9262void InstructionCodeGeneratorMIPS::VisitMipsComputeBaseMethodAddress(
9263 HMipsComputeBaseMethodAddress* insn) {
9264 LocationSummary* locations = insn->GetLocations();
9265 Register reg = locations->Out().AsRegister<Register>();
9266
9267 CHECK(!codegen_->GetInstructionSetFeatures().IsR6());
9268
9269 // Generate a dummy PC-relative call to obtain PC.
9270 __ Nal();
9271 // Grab the return address off RA.
9272 __ Move(reg, RA);
9273
9274 // Remember this offset (the obtained PC value) for later use with constant area.
9275 __ BindPcRelBaseLabel();
9276}
9277
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009278void LocationsBuilderMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
9279 // The trampoline uses the same calling convention as dex calling conventions,
9280 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
9281 // the method_idx.
9282 HandleInvoke(invoke);
9283}
9284
9285void InstructionCodeGeneratorMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
9286 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
9287}
9288
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009289void LocationsBuilderMIPS::VisitClassTableGet(HClassTableGet* instruction) {
9290 LocationSummary* locations =
Vladimir Markoca6fff82017-10-03 14:49:14 +01009291 new (GetGraph()->GetAllocator()) LocationSummary(instruction, LocationSummary::kNoCall);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009292 locations->SetInAt(0, Location::RequiresRegister());
9293 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00009294}
9295
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009296void InstructionCodeGeneratorMIPS::VisitClassTableGet(HClassTableGet* instruction) {
9297 LocationSummary* locations = instruction->GetLocations();
Vladimir Markoa1de9182016-02-25 11:37:38 +00009298 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009299 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009300 instruction->GetIndex(), kMipsPointerSize).SizeValue();
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009301 __ LoadFromOffset(kLoadWord,
9302 locations->Out().AsRegister<Register>(),
9303 locations->InAt(0).AsRegister<Register>(),
9304 method_offset);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009305 } else {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009306 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00009307 instruction->GetIndex(), kMipsPointerSize));
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00009308 __ LoadFromOffset(kLoadWord,
9309 locations->Out().AsRegister<Register>(),
9310 locations->InAt(0).AsRegister<Register>(),
9311 mirror::Class::ImtPtrOffset(kMipsPointerSize).Uint32Value());
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01009312 __ LoadFromOffset(kLoadWord,
9313 locations->Out().AsRegister<Register>(),
9314 locations->Out().AsRegister<Register>(),
9315 method_offset);
Roland Levillain2aba7cd2016-02-03 12:27:20 +00009316 }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00009317}
9318
xueliang.zhonge0eb4832017-10-30 13:43:14 +00009319void LocationsBuilderMIPS::VisitIntermediateAddress(HIntermediateAddress* instruction
9320 ATTRIBUTE_UNUSED) {
9321 LOG(FATAL) << "Unreachable";
9322}
9323
9324void InstructionCodeGeneratorMIPS::VisitIntermediateAddress(HIntermediateAddress* instruction
9325 ATTRIBUTE_UNUSED) {
9326 LOG(FATAL) << "Unreachable";
9327}
9328
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02009329#undef __
9330#undef QUICK_ENTRY_POINT
9331
9332} // namespace mips
9333} // namespace art