blob: 7bc0635e7507ed3849359fd29ab49543d2ca467e [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
19#include "arch/mips/entrypoints_direct_mips.h"
20#include "arch/mips/instruction_set_features_mips.h"
21#include "art_method.h"
Chris Larsen701566a2015-10-27 15:29:13 -070022#include "code_generator_utils.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020023#include "entrypoints/quick/quick_entrypoints.h"
24#include "entrypoints/quick/quick_entrypoints_enum.h"
25#include "gc/accounting/card_table.h"
26#include "intrinsics.h"
Chris Larsen701566a2015-10-27 15:29:13 -070027#include "intrinsics_mips.h"
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020028#include "mirror/array-inl.h"
29#include "mirror/class-inl.h"
30#include "offsets.h"
31#include "thread.h"
32#include "utils/assembler.h"
33#include "utils/mips/assembler_mips.h"
34#include "utils/stack_checks.h"
35
36namespace art {
37namespace mips {
38
39static constexpr int kCurrentMethodStackOffset = 0;
40static constexpr Register kMethodRegisterArgument = A0;
41
42// We need extra temporary/scratch registers (in addition to AT) in some cases.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020043static constexpr FRegister FTMP = F8;
44
Goran Jakovljevicf652cec2015-08-25 16:11:42 +020045Location MipsReturnLocation(Primitive::Type return_type) {
46 switch (return_type) {
47 case Primitive::kPrimBoolean:
48 case Primitive::kPrimByte:
49 case Primitive::kPrimChar:
50 case Primitive::kPrimShort:
51 case Primitive::kPrimInt:
52 case Primitive::kPrimNot:
53 return Location::RegisterLocation(V0);
54
55 case Primitive::kPrimLong:
56 return Location::RegisterPairLocation(V0, V1);
57
58 case Primitive::kPrimFloat:
59 case Primitive::kPrimDouble:
60 return Location::FpuRegisterLocation(F0);
61
62 case Primitive::kPrimVoid:
63 return Location();
64 }
65 UNREACHABLE();
66}
67
68Location InvokeDexCallingConventionVisitorMIPS::GetReturnLocation(Primitive::Type type) const {
69 return MipsReturnLocation(type);
70}
71
72Location InvokeDexCallingConventionVisitorMIPS::GetMethodLocation() const {
73 return Location::RegisterLocation(kMethodRegisterArgument);
74}
75
76Location InvokeDexCallingConventionVisitorMIPS::GetNextLocation(Primitive::Type type) {
77 Location next_location;
78
79 switch (type) {
80 case Primitive::kPrimBoolean:
81 case Primitive::kPrimByte:
82 case Primitive::kPrimChar:
83 case Primitive::kPrimShort:
84 case Primitive::kPrimInt:
85 case Primitive::kPrimNot: {
86 uint32_t gp_index = gp_index_++;
87 if (gp_index < calling_convention.GetNumberOfRegisters()) {
88 next_location = Location::RegisterLocation(calling_convention.GetRegisterAt(gp_index));
89 } else {
90 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
91 next_location = Location::StackSlot(stack_offset);
92 }
93 break;
94 }
95
96 case Primitive::kPrimLong: {
97 uint32_t gp_index = gp_index_;
98 gp_index_ += 2;
99 if (gp_index + 1 < calling_convention.GetNumberOfRegisters()) {
100 if (calling_convention.GetRegisterAt(gp_index) == A1) {
101 gp_index_++; // Skip A1, and use A2_A3 instead.
102 gp_index++;
103 }
104 Register low_even = calling_convention.GetRegisterAt(gp_index);
105 Register high_odd = calling_convention.GetRegisterAt(gp_index + 1);
106 DCHECK_EQ(low_even + 1, high_odd);
107 next_location = Location::RegisterPairLocation(low_even, high_odd);
108 } else {
109 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
110 next_location = Location::DoubleStackSlot(stack_offset);
111 }
112 break;
113 }
114
115 // Note: both float and double types are stored in even FPU registers. On 32 bit FPU, double
116 // will take up the even/odd pair, while floats are stored in even regs only.
117 // On 64 bit FPU, both double and float are stored in even registers only.
118 case Primitive::kPrimFloat:
119 case Primitive::kPrimDouble: {
120 uint32_t float_index = float_index_++;
121 if (float_index < calling_convention.GetNumberOfFpuRegisters()) {
122 next_location = Location::FpuRegisterLocation(
123 calling_convention.GetFpuRegisterAt(float_index));
124 } else {
125 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
126 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
127 : Location::StackSlot(stack_offset);
128 }
129 break;
130 }
131
132 case Primitive::kPrimVoid:
133 LOG(FATAL) << "Unexpected parameter type " << type;
134 break;
135 }
136
137 // Space on the stack is reserved for all arguments.
138 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
139
140 return next_location;
141}
142
143Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type type) {
144 return MipsReturnLocation(type);
145}
146
147#define __ down_cast<CodeGeneratorMIPS*>(codegen)->GetAssembler()->
148#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kMipsWordSize, x).Int32Value()
149
150class BoundsCheckSlowPathMIPS : public SlowPathCodeMIPS {
151 public:
152 explicit BoundsCheckSlowPathMIPS(HBoundsCheck* instruction) : instruction_(instruction) {}
153
154 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
155 LocationSummary* locations = instruction_->GetLocations();
156 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
157 __ Bind(GetEntryLabel());
158 if (instruction_->CanThrowIntoCatchBlock()) {
159 // Live registers will be restored in the catch block if caught.
160 SaveLiveRegisters(codegen, instruction_->GetLocations());
161 }
162 // We're moving two locations to locations that could overlap, so we need a parallel
163 // move resolver.
164 InvokeRuntimeCallingConvention calling_convention;
165 codegen->EmitParallelMoves(locations->InAt(0),
166 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
167 Primitive::kPrimInt,
168 locations->InAt(1),
169 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
170 Primitive::kPrimInt);
171 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowArrayBounds),
172 instruction_,
173 instruction_->GetDexPc(),
174 this,
175 IsDirectEntrypoint(kQuickThrowArrayBounds));
176 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
177 }
178
179 bool IsFatal() const OVERRIDE { return true; }
180
181 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathMIPS"; }
182
183 private:
184 HBoundsCheck* const instruction_;
185
186 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathMIPS);
187};
188
189class DivZeroCheckSlowPathMIPS : public SlowPathCodeMIPS {
190 public:
191 explicit DivZeroCheckSlowPathMIPS(HDivZeroCheck* instruction) : instruction_(instruction) {}
192
193 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
194 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
195 __ Bind(GetEntryLabel());
196 if (instruction_->CanThrowIntoCatchBlock()) {
197 // Live registers will be restored in the catch block if caught.
198 SaveLiveRegisters(codegen, instruction_->GetLocations());
199 }
200 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowDivZero),
201 instruction_,
202 instruction_->GetDexPc(),
203 this,
204 IsDirectEntrypoint(kQuickThrowDivZero));
205 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
206 }
207
208 bool IsFatal() const OVERRIDE { return true; }
209
210 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathMIPS"; }
211
212 private:
213 HDivZeroCheck* const instruction_;
214 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathMIPS);
215};
216
217class LoadClassSlowPathMIPS : public SlowPathCodeMIPS {
218 public:
219 LoadClassSlowPathMIPS(HLoadClass* cls,
220 HInstruction* at,
221 uint32_t dex_pc,
222 bool do_clinit)
223 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
224 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
225 }
226
227 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
228 LocationSummary* locations = at_->GetLocations();
229 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
230
231 __ Bind(GetEntryLabel());
232 SaveLiveRegisters(codegen, locations);
233
234 InvokeRuntimeCallingConvention calling_convention;
235 __ LoadConst32(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex());
236
237 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
238 : QUICK_ENTRY_POINT(pInitializeType);
239 bool direct = do_clinit_ ? IsDirectEntrypoint(kQuickInitializeStaticStorage)
240 : IsDirectEntrypoint(kQuickInitializeType);
241
242 mips_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this, direct);
243 if (do_clinit_) {
244 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
245 } else {
246 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
247 }
248
249 // Move the class to the desired location.
250 Location out = locations->Out();
251 if (out.IsValid()) {
252 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
253 Primitive::Type type = at_->GetType();
254 mips_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
255 }
256
257 RestoreLiveRegisters(codegen, locations);
258 __ B(GetExitLabel());
259 }
260
261 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathMIPS"; }
262
263 private:
264 // The class this slow path will load.
265 HLoadClass* const cls_;
266
267 // The instruction where this slow path is happening.
268 // (Might be the load class or an initialization check).
269 HInstruction* const at_;
270
271 // The dex PC of `at_`.
272 const uint32_t dex_pc_;
273
274 // Whether to initialize the class.
275 const bool do_clinit_;
276
277 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathMIPS);
278};
279
280class LoadStringSlowPathMIPS : public SlowPathCodeMIPS {
281 public:
282 explicit LoadStringSlowPathMIPS(HLoadString* instruction) : instruction_(instruction) {}
283
284 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
285 LocationSummary* locations = instruction_->GetLocations();
286 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
287 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
288
289 __ Bind(GetEntryLabel());
290 SaveLiveRegisters(codegen, locations);
291
292 InvokeRuntimeCallingConvention calling_convention;
293 __ LoadConst32(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex());
294 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pResolveString),
295 instruction_,
296 instruction_->GetDexPc(),
297 this,
298 IsDirectEntrypoint(kQuickResolveString));
299 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
300 Primitive::Type type = instruction_->GetType();
301 mips_codegen->MoveLocation(locations->Out(),
302 calling_convention.GetReturnLocation(type),
303 type);
304
305 RestoreLiveRegisters(codegen, locations);
306 __ B(GetExitLabel());
307 }
308
309 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathMIPS"; }
310
311 private:
312 HLoadString* const instruction_;
313
314 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathMIPS);
315};
316
317class NullCheckSlowPathMIPS : public SlowPathCodeMIPS {
318 public:
319 explicit NullCheckSlowPathMIPS(HNullCheck* instr) : instruction_(instr) {}
320
321 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
322 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
323 __ Bind(GetEntryLabel());
324 if (instruction_->CanThrowIntoCatchBlock()) {
325 // Live registers will be restored in the catch block if caught.
326 SaveLiveRegisters(codegen, instruction_->GetLocations());
327 }
328 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pThrowNullPointer),
329 instruction_,
330 instruction_->GetDexPc(),
331 this,
332 IsDirectEntrypoint(kQuickThrowNullPointer));
333 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
334 }
335
336 bool IsFatal() const OVERRIDE { return true; }
337
338 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathMIPS"; }
339
340 private:
341 HNullCheck* const instruction_;
342
343 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathMIPS);
344};
345
346class SuspendCheckSlowPathMIPS : public SlowPathCodeMIPS {
347 public:
348 SuspendCheckSlowPathMIPS(HSuspendCheck* instruction, HBasicBlock* successor)
349 : instruction_(instruction), successor_(successor) {}
350
351 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
352 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
353 __ Bind(GetEntryLabel());
354 SaveLiveRegisters(codegen, instruction_->GetLocations());
355 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pTestSuspend),
356 instruction_,
357 instruction_->GetDexPc(),
358 this,
359 IsDirectEntrypoint(kQuickTestSuspend));
360 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
361 RestoreLiveRegisters(codegen, instruction_->GetLocations());
362 if (successor_ == nullptr) {
363 __ B(GetReturnLabel());
364 } else {
365 __ B(mips_codegen->GetLabelOf(successor_));
366 }
367 }
368
369 MipsLabel* GetReturnLabel() {
370 DCHECK(successor_ == nullptr);
371 return &return_label_;
372 }
373
374 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathMIPS"; }
375
376 private:
377 HSuspendCheck* const instruction_;
378 // If not null, the block to branch to after the suspend check.
379 HBasicBlock* const successor_;
380
381 // If `successor_` is null, the label to branch to after the suspend check.
382 MipsLabel return_label_;
383
384 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathMIPS);
385};
386
387class TypeCheckSlowPathMIPS : public SlowPathCodeMIPS {
388 public:
389 explicit TypeCheckSlowPathMIPS(HInstruction* instruction) : instruction_(instruction) {}
390
391 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
392 LocationSummary* locations = instruction_->GetLocations();
393 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0) : locations->Out();
394 uint32_t dex_pc = instruction_->GetDexPc();
395 DCHECK(instruction_->IsCheckCast()
396 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
397 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
398
399 __ Bind(GetEntryLabel());
400 SaveLiveRegisters(codegen, locations);
401
402 // We're moving two locations to locations that could overlap, so we need a parallel
403 // move resolver.
404 InvokeRuntimeCallingConvention calling_convention;
405 codegen->EmitParallelMoves(locations->InAt(1),
406 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
407 Primitive::kPrimNot,
408 object_class,
409 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
410 Primitive::kPrimNot);
411
412 if (instruction_->IsInstanceOf()) {
413 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
414 instruction_,
415 dex_pc,
416 this,
417 IsDirectEntrypoint(kQuickInstanceofNonTrivial));
Roland Levillain888d0672015-11-23 18:53:50 +0000418 CheckEntrypointTypes<
419 kQuickInstanceofNonTrivial, uint32_t, const mirror::Class*, const mirror::Class*>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200420 Primitive::Type ret_type = instruction_->GetType();
421 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
422 mips_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200423 } else {
424 DCHECK(instruction_->IsCheckCast());
425 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
426 instruction_,
427 dex_pc,
428 this,
429 IsDirectEntrypoint(kQuickCheckCast));
430 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
431 }
432
433 RestoreLiveRegisters(codegen, locations);
434 __ B(GetExitLabel());
435 }
436
437 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathMIPS"; }
438
439 private:
440 HInstruction* const instruction_;
441
442 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathMIPS);
443};
444
445class DeoptimizationSlowPathMIPS : public SlowPathCodeMIPS {
446 public:
447 explicit DeoptimizationSlowPathMIPS(HInstruction* instruction)
448 : instruction_(instruction) {}
449
450 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
451 __ Bind(GetEntryLabel());
452 SaveLiveRegisters(codegen, instruction_->GetLocations());
453 DCHECK(instruction_->IsDeoptimize());
454 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
455 uint32_t dex_pc = deoptimize->GetDexPc();
456 CodeGeneratorMIPS* mips_codegen = down_cast<CodeGeneratorMIPS*>(codegen);
457 mips_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize),
458 instruction_,
459 dex_pc,
460 this,
461 IsDirectEntrypoint(kQuickDeoptimize));
Roland Levillain888d0672015-11-23 18:53:50 +0000462 CheckEntrypointTypes<kQuickDeoptimize, void, void>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +0200463 }
464
465 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathMIPS"; }
466
467 private:
468 HInstruction* const instruction_;
469 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathMIPS);
470};
471
472CodeGeneratorMIPS::CodeGeneratorMIPS(HGraph* graph,
473 const MipsInstructionSetFeatures& isa_features,
474 const CompilerOptions& compiler_options,
475 OptimizingCompilerStats* stats)
476 : CodeGenerator(graph,
477 kNumberOfCoreRegisters,
478 kNumberOfFRegisters,
479 kNumberOfRegisterPairs,
480 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
481 arraysize(kCoreCalleeSaves)),
482 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
483 arraysize(kFpuCalleeSaves)),
484 compiler_options,
485 stats),
486 block_labels_(nullptr),
487 location_builder_(graph, this),
488 instruction_visitor_(graph, this),
489 move_resolver_(graph->GetArena(), this),
490 assembler_(&isa_features),
491 isa_features_(isa_features) {
492 // Save RA (containing the return address) to mimic Quick.
493 AddAllocatedRegister(Location::RegisterLocation(RA));
494}
495
496#undef __
497#define __ down_cast<MipsAssembler*>(GetAssembler())->
498#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kMipsWordSize, x).Int32Value()
499
500void CodeGeneratorMIPS::Finalize(CodeAllocator* allocator) {
501 // Ensure that we fix up branches.
502 __ FinalizeCode();
503
504 // Adjust native pc offsets in stack maps.
505 for (size_t i = 0, num = stack_map_stream_.GetNumberOfStackMaps(); i != num; ++i) {
506 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
507 uint32_t new_position = __ GetAdjustedPosition(old_position);
508 DCHECK_GE(new_position, old_position);
509 stack_map_stream_.SetStackMapNativePcOffset(i, new_position);
510 }
511
512 // Adjust pc offsets for the disassembly information.
513 if (disasm_info_ != nullptr) {
514 GeneratedCodeInterval* frame_entry_interval = disasm_info_->GetFrameEntryInterval();
515 frame_entry_interval->start = __ GetAdjustedPosition(frame_entry_interval->start);
516 frame_entry_interval->end = __ GetAdjustedPosition(frame_entry_interval->end);
517 for (auto& it : *disasm_info_->GetInstructionIntervals()) {
518 it.second.start = __ GetAdjustedPosition(it.second.start);
519 it.second.end = __ GetAdjustedPosition(it.second.end);
520 }
521 for (auto& it : *disasm_info_->GetSlowPathIntervals()) {
522 it.code_interval.start = __ GetAdjustedPosition(it.code_interval.start);
523 it.code_interval.end = __ GetAdjustedPosition(it.code_interval.end);
524 }
525 }
526
527 CodeGenerator::Finalize(allocator);
528}
529
530MipsAssembler* ParallelMoveResolverMIPS::GetAssembler() const {
531 return codegen_->GetAssembler();
532}
533
534void ParallelMoveResolverMIPS::EmitMove(size_t index) {
535 DCHECK_LT(index, moves_.size());
536 MoveOperands* move = moves_[index];
537 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), move->GetType());
538}
539
540void ParallelMoveResolverMIPS::EmitSwap(size_t index) {
541 DCHECK_LT(index, moves_.size());
542 MoveOperands* move = moves_[index];
543 Primitive::Type type = move->GetType();
544 Location loc1 = move->GetDestination();
545 Location loc2 = move->GetSource();
546
547 DCHECK(!loc1.IsConstant());
548 DCHECK(!loc2.IsConstant());
549
550 if (loc1.Equals(loc2)) {
551 return;
552 }
553
554 if (loc1.IsRegister() && loc2.IsRegister()) {
555 // Swap 2 GPRs.
556 Register r1 = loc1.AsRegister<Register>();
557 Register r2 = loc2.AsRegister<Register>();
558 __ Move(TMP, r2);
559 __ Move(r2, r1);
560 __ Move(r1, TMP);
561 } else if (loc1.IsFpuRegister() && loc2.IsFpuRegister()) {
562 FRegister f1 = loc1.AsFpuRegister<FRegister>();
563 FRegister f2 = loc2.AsFpuRegister<FRegister>();
564 if (type == Primitive::kPrimFloat) {
565 __ MovS(FTMP, f2);
566 __ MovS(f2, f1);
567 __ MovS(f1, FTMP);
568 } else {
569 DCHECK_EQ(type, Primitive::kPrimDouble);
570 __ MovD(FTMP, f2);
571 __ MovD(f2, f1);
572 __ MovD(f1, FTMP);
573 }
574 } else if ((loc1.IsRegister() && loc2.IsFpuRegister()) ||
575 (loc1.IsFpuRegister() && loc2.IsRegister())) {
576 // Swap FPR and GPR.
577 DCHECK_EQ(type, Primitive::kPrimFloat); // Can only swap a float.
578 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>()
579 : loc2.AsFpuRegister<FRegister>();
580 Register r2 = loc1.IsRegister() ? loc1.AsRegister<Register>()
581 : loc2.AsRegister<Register>();
582 __ Move(TMP, r2);
583 __ Mfc1(r2, f1);
584 __ Mtc1(TMP, f1);
585 } else if (loc1.IsRegisterPair() && loc2.IsRegisterPair()) {
586 // Swap 2 GPR register pairs.
587 Register r1 = loc1.AsRegisterPairLow<Register>();
588 Register r2 = loc2.AsRegisterPairLow<Register>();
589 __ Move(TMP, r2);
590 __ Move(r2, r1);
591 __ Move(r1, TMP);
592 r1 = loc1.AsRegisterPairHigh<Register>();
593 r2 = loc2.AsRegisterPairHigh<Register>();
594 __ Move(TMP, r2);
595 __ Move(r2, r1);
596 __ Move(r1, TMP);
597 } else if ((loc1.IsRegisterPair() && loc2.IsFpuRegister()) ||
598 (loc1.IsFpuRegister() && loc2.IsRegisterPair())) {
599 // Swap FPR and GPR register pair.
600 DCHECK_EQ(type, Primitive::kPrimDouble);
601 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>()
602 : loc2.AsFpuRegister<FRegister>();
603 Register r2_l = loc1.IsRegisterPair() ? loc1.AsRegisterPairLow<Register>()
604 : loc2.AsRegisterPairLow<Register>();
605 Register r2_h = loc1.IsRegisterPair() ? loc1.AsRegisterPairHigh<Register>()
606 : loc2.AsRegisterPairHigh<Register>();
607 // Use 2 temporary registers because we can't first swap the low 32 bits of an FPR and
608 // then swap the high 32 bits of the same FPR. mtc1 makes the high 32 bits of an FPR
609 // unpredictable and the following mfch1 will fail.
610 __ Mfc1(TMP, f1);
611 __ Mfhc1(AT, f1);
612 __ Mtc1(r2_l, f1);
613 __ Mthc1(r2_h, f1);
614 __ Move(r2_l, TMP);
615 __ Move(r2_h, AT);
616 } else if (loc1.IsStackSlot() && loc2.IsStackSlot()) {
617 Exchange(loc1.GetStackIndex(), loc2.GetStackIndex(), /* double_slot */ false);
618 } else if (loc1.IsDoubleStackSlot() && loc2.IsDoubleStackSlot()) {
619 Exchange(loc1.GetStackIndex(), loc2.GetStackIndex(), /* double_slot */ true);
620 } else {
621 LOG(FATAL) << "Swap between " << loc1 << " and " << loc2 << " is unsupported";
622 }
623}
624
625void ParallelMoveResolverMIPS::RestoreScratch(int reg) {
626 __ Pop(static_cast<Register>(reg));
627}
628
629void ParallelMoveResolverMIPS::SpillScratch(int reg) {
630 __ Push(static_cast<Register>(reg));
631}
632
633void ParallelMoveResolverMIPS::Exchange(int index1, int index2, bool double_slot) {
634 // Allocate a scratch register other than TMP, if available.
635 // Else, spill V0 (arbitrary choice) and use it as a scratch register (it will be
636 // automatically unspilled when the scratch scope object is destroyed).
637 ScratchRegisterScope ensure_scratch(this, TMP, V0, codegen_->GetNumberOfCoreRegisters());
638 // If V0 spills onto the stack, SP-relative offsets need to be adjusted.
639 int stack_offset = ensure_scratch.IsSpilled() ? kMipsWordSize : 0;
640 for (int i = 0; i <= (double_slot ? 1 : 0); i++, stack_offset += kMipsWordSize) {
641 __ LoadFromOffset(kLoadWord,
642 Register(ensure_scratch.GetRegister()),
643 SP,
644 index1 + stack_offset);
645 __ LoadFromOffset(kLoadWord,
646 TMP,
647 SP,
648 index2 + stack_offset);
649 __ StoreToOffset(kStoreWord,
650 Register(ensure_scratch.GetRegister()),
651 SP,
652 index2 + stack_offset);
653 __ StoreToOffset(kStoreWord, TMP, SP, index1 + stack_offset);
654 }
655}
656
657static dwarf::Reg DWARFReg(Register reg) {
658 return dwarf::Reg::MipsCore(static_cast<int>(reg));
659}
660
661// TODO: mapping of floating-point registers to DWARF.
662
663void CodeGeneratorMIPS::GenerateFrameEntry() {
664 __ Bind(&frame_entry_label_);
665
666 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kMips) || !IsLeafMethod();
667
668 if (do_overflow_check) {
669 __ LoadFromOffset(kLoadWord,
670 ZERO,
671 SP,
672 -static_cast<int32_t>(GetStackOverflowReservedBytes(kMips)));
673 RecordPcInfo(nullptr, 0);
674 }
675
676 if (HasEmptyFrame()) {
677 return;
678 }
679
680 // Make sure the frame size isn't unreasonably large.
681 if (GetFrameSize() > GetStackOverflowReservedBytes(kMips)) {
682 LOG(FATAL) << "Stack frame larger than " << GetStackOverflowReservedBytes(kMips) << " bytes";
683 }
684
685 // Spill callee-saved registers.
686 // Note that their cumulative size is small and they can be indexed using
687 // 16-bit offsets.
688
689 // TODO: increment/decrement SP in one step instead of two or remove this comment.
690
691 uint32_t ofs = FrameEntrySpillSize();
692 bool unaligned_float = ofs & 0x7;
693 bool fpu_32bit = isa_features_.Is32BitFloatingPoint();
694 __ IncreaseFrameSize(ofs);
695
696 for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) {
697 Register reg = kCoreCalleeSaves[i];
698 if (allocated_registers_.ContainsCoreRegister(reg)) {
699 ofs -= kMipsWordSize;
700 __ Sw(reg, SP, ofs);
701 __ cfi().RelOffset(DWARFReg(reg), ofs);
702 }
703 }
704
705 for (int i = arraysize(kFpuCalleeSaves) - 1; i >= 0; --i) {
706 FRegister reg = kFpuCalleeSaves[i];
707 if (allocated_registers_.ContainsFloatingPointRegister(reg)) {
708 ofs -= kMipsDoublewordSize;
709 // TODO: Change the frame to avoid unaligned accesses for fpu registers.
710 if (unaligned_float) {
711 if (fpu_32bit) {
712 __ Swc1(reg, SP, ofs);
713 __ Swc1(static_cast<FRegister>(reg + 1), SP, ofs + 4);
714 } else {
715 __ Mfhc1(TMP, reg);
716 __ Swc1(reg, SP, ofs);
717 __ Sw(TMP, SP, ofs + 4);
718 }
719 } else {
720 __ Sdc1(reg, SP, ofs);
721 }
722 // TODO: __ cfi().RelOffset(DWARFReg(reg), ofs);
723 }
724 }
725
726 // Allocate the rest of the frame and store the current method pointer
727 // at its end.
728
729 __ IncreaseFrameSize(GetFrameSize() - FrameEntrySpillSize());
730
731 static_assert(IsInt<16>(kCurrentMethodStackOffset),
732 "kCurrentMethodStackOffset must fit into int16_t");
733 __ Sw(kMethodRegisterArgument, SP, kCurrentMethodStackOffset);
734}
735
736void CodeGeneratorMIPS::GenerateFrameExit() {
737 __ cfi().RememberState();
738
739 if (!HasEmptyFrame()) {
740 // Deallocate the rest of the frame.
741
742 __ DecreaseFrameSize(GetFrameSize() - FrameEntrySpillSize());
743
744 // Restore callee-saved registers.
745 // Note that their cumulative size is small and they can be indexed using
746 // 16-bit offsets.
747
748 // TODO: increment/decrement SP in one step instead of two or remove this comment.
749
750 uint32_t ofs = 0;
751 bool unaligned_float = FrameEntrySpillSize() & 0x7;
752 bool fpu_32bit = isa_features_.Is32BitFloatingPoint();
753
754 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
755 FRegister reg = kFpuCalleeSaves[i];
756 if (allocated_registers_.ContainsFloatingPointRegister(reg)) {
757 if (unaligned_float) {
758 if (fpu_32bit) {
759 __ Lwc1(reg, SP, ofs);
760 __ Lwc1(static_cast<FRegister>(reg + 1), SP, ofs + 4);
761 } else {
762 __ Lwc1(reg, SP, ofs);
763 __ Lw(TMP, SP, ofs + 4);
764 __ Mthc1(TMP, reg);
765 }
766 } else {
767 __ Ldc1(reg, SP, ofs);
768 }
769 ofs += kMipsDoublewordSize;
770 // TODO: __ cfi().Restore(DWARFReg(reg));
771 }
772 }
773
774 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
775 Register reg = kCoreCalleeSaves[i];
776 if (allocated_registers_.ContainsCoreRegister(reg)) {
777 __ Lw(reg, SP, ofs);
778 ofs += kMipsWordSize;
779 __ cfi().Restore(DWARFReg(reg));
780 }
781 }
782
783 DCHECK_EQ(ofs, FrameEntrySpillSize());
784 __ DecreaseFrameSize(ofs);
785 }
786
787 __ Jr(RA);
788 __ Nop();
789
790 __ cfi().RestoreState();
791 __ cfi().DefCFAOffset(GetFrameSize());
792}
793
794void CodeGeneratorMIPS::Bind(HBasicBlock* block) {
795 __ Bind(GetLabelOf(block));
796}
797
798void CodeGeneratorMIPS::MoveLocation(Location dst, Location src, Primitive::Type dst_type) {
799 if (src.Equals(dst)) {
800 return;
801 }
802
803 if (src.IsConstant()) {
804 MoveConstant(dst, src.GetConstant());
805 } else {
806 if (Primitive::Is64BitType(dst_type)) {
807 Move64(dst, src);
808 } else {
809 Move32(dst, src);
810 }
811 }
812}
813
814void CodeGeneratorMIPS::Move32(Location destination, Location source) {
815 if (source.Equals(destination)) {
816 return;
817 }
818
819 if (destination.IsRegister()) {
820 if (source.IsRegister()) {
821 __ Move(destination.AsRegister<Register>(), source.AsRegister<Register>());
822 } else if (source.IsFpuRegister()) {
823 __ Mfc1(destination.AsRegister<Register>(), source.AsFpuRegister<FRegister>());
824 } else {
825 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
826 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
827 }
828 } else if (destination.IsFpuRegister()) {
829 if (source.IsRegister()) {
830 __ Mtc1(source.AsRegister<Register>(), destination.AsFpuRegister<FRegister>());
831 } else if (source.IsFpuRegister()) {
832 __ MovS(destination.AsFpuRegister<FRegister>(), source.AsFpuRegister<FRegister>());
833 } else {
834 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
835 __ LoadSFromOffset(destination.AsFpuRegister<FRegister>(), SP, source.GetStackIndex());
836 }
837 } else {
838 DCHECK(destination.IsStackSlot()) << destination;
839 if (source.IsRegister()) {
840 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
841 } else if (source.IsFpuRegister()) {
842 __ StoreSToOffset(source.AsFpuRegister<FRegister>(), SP, destination.GetStackIndex());
843 } else {
844 DCHECK(source.IsStackSlot()) << "Cannot move from " << source << " to " << destination;
845 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex());
846 __ StoreToOffset(kStoreWord, TMP, SP, destination.GetStackIndex());
847 }
848 }
849}
850
851void CodeGeneratorMIPS::Move64(Location destination, Location source) {
852 if (source.Equals(destination)) {
853 return;
854 }
855
856 if (destination.IsRegisterPair()) {
857 if (source.IsRegisterPair()) {
858 __ Move(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
859 __ Move(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
860 } else if (source.IsFpuRegister()) {
861 Register dst_high = destination.AsRegisterPairHigh<Register>();
862 Register dst_low = destination.AsRegisterPairLow<Register>();
863 FRegister src = source.AsFpuRegister<FRegister>();
864 __ Mfc1(dst_low, src);
865 __ Mfhc1(dst_high, src);
866 } else {
867 DCHECK(source.IsDoubleStackSlot()) << "Cannot move from " << source << " to " << destination;
868 int32_t off = source.GetStackIndex();
869 Register r = destination.AsRegisterPairLow<Register>();
870 __ LoadFromOffset(kLoadDoubleword, r, SP, off);
871 }
872 } else if (destination.IsFpuRegister()) {
873 if (source.IsRegisterPair()) {
874 FRegister dst = destination.AsFpuRegister<FRegister>();
875 Register src_high = source.AsRegisterPairHigh<Register>();
876 Register src_low = source.AsRegisterPairLow<Register>();
877 __ Mtc1(src_low, dst);
878 __ Mthc1(src_high, dst);
879 } else if (source.IsFpuRegister()) {
880 __ MovD(destination.AsFpuRegister<FRegister>(), source.AsFpuRegister<FRegister>());
881 } else {
882 DCHECK(source.IsDoubleStackSlot()) << "Cannot move from " << source << " to " << destination;
883 __ LoadDFromOffset(destination.AsFpuRegister<FRegister>(), SP, source.GetStackIndex());
884 }
885 } else {
886 DCHECK(destination.IsDoubleStackSlot()) << destination;
887 int32_t off = destination.GetStackIndex();
888 if (source.IsRegisterPair()) {
889 __ StoreToOffset(kStoreDoubleword, source.AsRegisterPairLow<Register>(), SP, off);
890 } else if (source.IsFpuRegister()) {
891 __ StoreDToOffset(source.AsFpuRegister<FRegister>(), SP, off);
892 } else {
893 DCHECK(source.IsDoubleStackSlot()) << "Cannot move from " << source << " to " << destination;
894 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex());
895 __ StoreToOffset(kStoreWord, TMP, SP, off);
896 __ LoadFromOffset(kLoadWord, TMP, SP, source.GetStackIndex() + 4);
897 __ StoreToOffset(kStoreWord, TMP, SP, off + 4);
898 }
899 }
900}
901
902void CodeGeneratorMIPS::MoveConstant(Location destination, HConstant* c) {
903 if (c->IsIntConstant() || c->IsNullConstant()) {
904 // Move 32 bit constant.
905 int32_t value = GetInt32ValueOf(c);
906 if (destination.IsRegister()) {
907 Register dst = destination.AsRegister<Register>();
908 __ LoadConst32(dst, value);
909 } else {
910 DCHECK(destination.IsStackSlot())
911 << "Cannot move " << c->DebugName() << " to " << destination;
912 __ StoreConst32ToOffset(value, SP, destination.GetStackIndex(), TMP);
913 }
914 } else if (c->IsLongConstant()) {
915 // Move 64 bit constant.
916 int64_t value = GetInt64ValueOf(c);
917 if (destination.IsRegisterPair()) {
918 Register r_h = destination.AsRegisterPairHigh<Register>();
919 Register r_l = destination.AsRegisterPairLow<Register>();
920 __ LoadConst64(r_h, r_l, value);
921 } else {
922 DCHECK(destination.IsDoubleStackSlot())
923 << "Cannot move " << c->DebugName() << " to " << destination;
924 __ StoreConst64ToOffset(value, SP, destination.GetStackIndex(), TMP);
925 }
926 } else if (c->IsFloatConstant()) {
927 // Move 32 bit float constant.
928 int32_t value = GetInt32ValueOf(c);
929 if (destination.IsFpuRegister()) {
930 __ LoadSConst32(destination.AsFpuRegister<FRegister>(), value, TMP);
931 } else {
932 DCHECK(destination.IsStackSlot())
933 << "Cannot move " << c->DebugName() << " to " << destination;
934 __ StoreConst32ToOffset(value, SP, destination.GetStackIndex(), TMP);
935 }
936 } else {
937 // Move 64 bit double constant.
938 DCHECK(c->IsDoubleConstant()) << c->DebugName();
939 int64_t value = GetInt64ValueOf(c);
940 if (destination.IsFpuRegister()) {
941 FRegister fd = destination.AsFpuRegister<FRegister>();
942 __ LoadDConst64(fd, value, TMP);
943 } else {
944 DCHECK(destination.IsDoubleStackSlot())
945 << "Cannot move " << c->DebugName() << " to " << destination;
946 __ StoreConst64ToOffset(value, SP, destination.GetStackIndex(), TMP);
947 }
948 }
949}
950
951void CodeGeneratorMIPS::MoveConstant(Location destination, int32_t value) {
952 DCHECK(destination.IsRegister());
953 Register dst = destination.AsRegister<Register>();
954 __ LoadConst32(dst, value);
955}
956
957void CodeGeneratorMIPS::Move(HInstruction* instruction,
958 Location location,
959 HInstruction* move_for) {
960 LocationSummary* locations = instruction->GetLocations();
961 Primitive::Type type = instruction->GetType();
962 DCHECK_NE(type, Primitive::kPrimVoid);
963
964 if (instruction->IsCurrentMethod()) {
965 Move32(location, Location::StackSlot(kCurrentMethodStackOffset));
966 } else if (locations != nullptr && locations->Out().Equals(location)) {
967 return;
968 } else if (instruction->IsIntConstant()
969 || instruction->IsLongConstant()
970 || instruction->IsNullConstant()) {
971 MoveConstant(location, instruction->AsConstant());
972 } else if (instruction->IsTemporary()) {
973 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
974 if (temp_location.IsStackSlot()) {
975 Move32(location, temp_location);
976 } else {
977 DCHECK(temp_location.IsDoubleStackSlot());
978 Move64(location, temp_location);
979 }
980 } else if (instruction->IsLoadLocal()) {
981 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
982 if (Primitive::Is64BitType(type)) {
983 Move64(location, Location::DoubleStackSlot(stack_slot));
984 } else {
985 Move32(location, Location::StackSlot(stack_slot));
986 }
987 } else {
988 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
989 if (Primitive::Is64BitType(type)) {
990 Move64(location, locations->Out());
991 } else {
992 Move32(location, locations->Out());
993 }
994 }
995}
996
997void CodeGeneratorMIPS::AddLocationAsTemp(Location location, LocationSummary* locations) {
998 if (location.IsRegister()) {
999 locations->AddTemp(location);
Alexey Frunzec9e94f32015-10-26 16:11:39 -07001000 } else if (location.IsRegisterPair()) {
1001 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1002 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001003 } else {
1004 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1005 }
1006}
1007
1008Location CodeGeneratorMIPS::GetStackLocation(HLoadLocal* load) const {
1009 Primitive::Type type = load->GetType();
1010
1011 switch (type) {
1012 case Primitive::kPrimNot:
1013 case Primitive::kPrimInt:
1014 case Primitive::kPrimFloat:
1015 return Location::StackSlot(GetStackSlot(load->GetLocal()));
1016
1017 case Primitive::kPrimLong:
1018 case Primitive::kPrimDouble:
1019 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
1020
1021 case Primitive::kPrimBoolean:
1022 case Primitive::kPrimByte:
1023 case Primitive::kPrimChar:
1024 case Primitive::kPrimShort:
1025 case Primitive::kPrimVoid:
1026 LOG(FATAL) << "Unexpected type " << type;
1027 }
1028
1029 LOG(FATAL) << "Unreachable";
1030 return Location::NoLocation();
1031}
1032
1033void CodeGeneratorMIPS::MarkGCCard(Register object, Register value) {
1034 MipsLabel done;
1035 Register card = AT;
1036 Register temp = TMP;
1037 __ Beqz(value, &done);
1038 __ LoadFromOffset(kLoadWord,
1039 card,
1040 TR,
1041 Thread::CardTableOffset<kMipsWordSize>().Int32Value());
1042 __ Srl(temp, object, gc::accounting::CardTable::kCardShift);
1043 __ Addu(temp, card, temp);
1044 __ Sb(card, temp, 0);
1045 __ Bind(&done);
1046}
1047
1048void CodeGeneratorMIPS::SetupBlockedRegisters(bool is_baseline) const {
1049 // Don't allocate the dalvik style register pair passing.
1050 blocked_register_pairs_[A1_A2] = true;
1051
1052 // ZERO, K0, K1, GP, SP, RA are always reserved and can't be allocated.
1053 blocked_core_registers_[ZERO] = true;
1054 blocked_core_registers_[K0] = true;
1055 blocked_core_registers_[K1] = true;
1056 blocked_core_registers_[GP] = true;
1057 blocked_core_registers_[SP] = true;
1058 blocked_core_registers_[RA] = true;
1059
1060 // AT and TMP(T8) are used as temporary/scratch registers
1061 // (similar to how AT is used by MIPS assemblers).
1062 blocked_core_registers_[AT] = true;
1063 blocked_core_registers_[TMP] = true;
1064 blocked_fpu_registers_[FTMP] = true;
1065
1066 // Reserve suspend and thread registers.
1067 blocked_core_registers_[S0] = true;
1068 blocked_core_registers_[TR] = true;
1069
1070 // Reserve T9 for function calls
1071 blocked_core_registers_[T9] = true;
1072
1073 // Reserve odd-numbered FPU registers.
1074 for (size_t i = 1; i < kNumberOfFRegisters; i += 2) {
1075 blocked_fpu_registers_[i] = true;
1076 }
1077
1078 if (is_baseline) {
1079 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
1080 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
1081 }
1082
1083 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
1084 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
1085 }
1086 }
1087
1088 UpdateBlockedPairRegisters();
1089}
1090
1091void CodeGeneratorMIPS::UpdateBlockedPairRegisters() const {
1092 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
1093 MipsManagedRegister current =
1094 MipsManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
1095 if (blocked_core_registers_[current.AsRegisterPairLow()]
1096 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
1097 blocked_register_pairs_[i] = true;
1098 }
1099 }
1100}
1101
1102Location CodeGeneratorMIPS::AllocateFreeRegister(Primitive::Type type) const {
1103 switch (type) {
1104 case Primitive::kPrimLong: {
1105 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
1106 MipsManagedRegister pair =
1107 MipsManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
1108 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
1109 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
1110
1111 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
1112 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
1113 UpdateBlockedPairRegisters();
1114 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
1115 }
1116
1117 case Primitive::kPrimByte:
1118 case Primitive::kPrimBoolean:
1119 case Primitive::kPrimChar:
1120 case Primitive::kPrimShort:
1121 case Primitive::kPrimInt:
1122 case Primitive::kPrimNot: {
1123 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
1124 // Block all register pairs that contain `reg`.
1125 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
1126 MipsManagedRegister current =
1127 MipsManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
1128 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
1129 blocked_register_pairs_[i] = true;
1130 }
1131 }
1132 return Location::RegisterLocation(reg);
1133 }
1134
1135 case Primitive::kPrimFloat:
1136 case Primitive::kPrimDouble: {
1137 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfFRegisters);
1138 return Location::FpuRegisterLocation(reg);
1139 }
1140
1141 case Primitive::kPrimVoid:
1142 LOG(FATAL) << "Unreachable type " << type;
1143 }
1144
1145 UNREACHABLE();
1146}
1147
1148size_t CodeGeneratorMIPS::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
1149 __ StoreToOffset(kStoreWord, Register(reg_id), SP, stack_index);
1150 return kMipsWordSize;
1151}
1152
1153size_t CodeGeneratorMIPS::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
1154 __ LoadFromOffset(kLoadWord, Register(reg_id), SP, stack_index);
1155 return kMipsWordSize;
1156}
1157
1158size_t CodeGeneratorMIPS::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1159 __ StoreDToOffset(FRegister(reg_id), SP, stack_index);
1160 return kMipsDoublewordSize;
1161}
1162
1163size_t CodeGeneratorMIPS::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1164 __ LoadDFromOffset(FRegister(reg_id), SP, stack_index);
1165 return kMipsDoublewordSize;
1166}
1167
1168void CodeGeneratorMIPS::DumpCoreRegister(std::ostream& stream, int reg) const {
1169 stream << MipsManagedRegister::FromCoreRegister(Register(reg));
1170}
1171
1172void CodeGeneratorMIPS::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
1173 stream << MipsManagedRegister::FromFRegister(FRegister(reg));
1174}
1175
1176void CodeGeneratorMIPS::InvokeRuntime(QuickEntrypointEnum entrypoint,
1177 HInstruction* instruction,
1178 uint32_t dex_pc,
1179 SlowPathCode* slow_path) {
1180 InvokeRuntime(GetThreadOffset<kMipsWordSize>(entrypoint).Int32Value(),
1181 instruction,
1182 dex_pc,
1183 slow_path,
1184 IsDirectEntrypoint(entrypoint));
1185}
1186
1187constexpr size_t kMipsDirectEntrypointRuntimeOffset = 16;
1188
1189void CodeGeneratorMIPS::InvokeRuntime(int32_t entry_point_offset,
1190 HInstruction* instruction,
1191 uint32_t dex_pc,
1192 SlowPathCode* slow_path,
1193 bool is_direct_entrypoint) {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001194 __ LoadFromOffset(kLoadWord, T9, TR, entry_point_offset);
1195 __ Jalr(T9);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001196 if (is_direct_entrypoint) {
1197 // Reserve argument space on stack (for $a0-$a3) for
1198 // entrypoints that directly reference native implementations.
1199 // Called function may use this space to store $a0-$a3 regs.
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001200 __ IncreaseFrameSize(kMipsDirectEntrypointRuntimeOffset); // Single instruction in delay slot.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001201 __ DecreaseFrameSize(kMipsDirectEntrypointRuntimeOffset);
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001202 } else {
1203 __ Nop(); // In delay slot.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001204 }
1205 RecordPcInfo(instruction, dex_pc, slow_path);
1206}
1207
1208void InstructionCodeGeneratorMIPS::GenerateClassInitializationCheck(SlowPathCodeMIPS* slow_path,
1209 Register class_reg) {
1210 __ LoadFromOffset(kLoadWord, TMP, class_reg, mirror::Class::StatusOffset().Int32Value());
1211 __ LoadConst32(AT, mirror::Class::kStatusInitialized);
1212 __ Blt(TMP, AT, slow_path->GetEntryLabel());
1213 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
1214 __ Sync(0);
1215 __ Bind(slow_path->GetExitLabel());
1216}
1217
1218void InstructionCodeGeneratorMIPS::GenerateMemoryBarrier(MemBarrierKind kind ATTRIBUTE_UNUSED) {
1219 __ Sync(0); // Only stype 0 is supported.
1220}
1221
1222void InstructionCodeGeneratorMIPS::GenerateSuspendCheck(HSuspendCheck* instruction,
1223 HBasicBlock* successor) {
1224 SuspendCheckSlowPathMIPS* slow_path =
1225 new (GetGraph()->GetArena()) SuspendCheckSlowPathMIPS(instruction, successor);
1226 codegen_->AddSlowPath(slow_path);
1227
1228 __ LoadFromOffset(kLoadUnsignedHalfword,
1229 TMP,
1230 TR,
1231 Thread::ThreadFlagsOffset<kMipsWordSize>().Int32Value());
1232 if (successor == nullptr) {
1233 __ Bnez(TMP, slow_path->GetEntryLabel());
1234 __ Bind(slow_path->GetReturnLabel());
1235 } else {
1236 __ Beqz(TMP, codegen_->GetLabelOf(successor));
1237 __ B(slow_path->GetEntryLabel());
1238 // slow_path will return to GetLabelOf(successor).
1239 }
1240}
1241
1242InstructionCodeGeneratorMIPS::InstructionCodeGeneratorMIPS(HGraph* graph,
1243 CodeGeneratorMIPS* codegen)
1244 : HGraphVisitor(graph),
1245 assembler_(codegen->GetAssembler()),
1246 codegen_(codegen) {}
1247
1248void LocationsBuilderMIPS::HandleBinaryOp(HBinaryOperation* instruction) {
1249 DCHECK_EQ(instruction->InputCount(), 2U);
1250 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1251 Primitive::Type type = instruction->GetResultType();
1252 switch (type) {
1253 case Primitive::kPrimInt: {
1254 locations->SetInAt(0, Location::RequiresRegister());
1255 HInstruction* right = instruction->InputAt(1);
1256 bool can_use_imm = false;
1257 if (right->IsConstant()) {
1258 int32_t imm = CodeGenerator::GetInt32ValueOf(right->AsConstant());
1259 if (instruction->IsAnd() || instruction->IsOr() || instruction->IsXor()) {
1260 can_use_imm = IsUint<16>(imm);
1261 } else if (instruction->IsAdd()) {
1262 can_use_imm = IsInt<16>(imm);
1263 } else {
1264 DCHECK(instruction->IsSub());
1265 can_use_imm = IsInt<16>(-imm);
1266 }
1267 }
1268 if (can_use_imm)
1269 locations->SetInAt(1, Location::ConstantLocation(right->AsConstant()));
1270 else
1271 locations->SetInAt(1, Location::RequiresRegister());
1272 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1273 break;
1274 }
1275
1276 case Primitive::kPrimLong: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001277 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001278 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1279 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001280 break;
1281 }
1282
1283 case Primitive::kPrimFloat:
1284 case Primitive::kPrimDouble:
1285 DCHECK(instruction->IsAdd() || instruction->IsSub());
1286 locations->SetInAt(0, Location::RequiresFpuRegister());
1287 locations->SetInAt(1, Location::RequiresFpuRegister());
1288 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1289 break;
1290
1291 default:
1292 LOG(FATAL) << "Unexpected " << instruction->DebugName() << " type " << type;
1293 }
1294}
1295
1296void InstructionCodeGeneratorMIPS::HandleBinaryOp(HBinaryOperation* instruction) {
1297 Primitive::Type type = instruction->GetType();
1298 LocationSummary* locations = instruction->GetLocations();
1299
1300 switch (type) {
1301 case Primitive::kPrimInt: {
1302 Register dst = locations->Out().AsRegister<Register>();
1303 Register lhs = locations->InAt(0).AsRegister<Register>();
1304 Location rhs_location = locations->InAt(1);
1305
1306 Register rhs_reg = ZERO;
1307 int32_t rhs_imm = 0;
1308 bool use_imm = rhs_location.IsConstant();
1309 if (use_imm) {
1310 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
1311 } else {
1312 rhs_reg = rhs_location.AsRegister<Register>();
1313 }
1314
1315 if (instruction->IsAnd()) {
1316 if (use_imm)
1317 __ Andi(dst, lhs, rhs_imm);
1318 else
1319 __ And(dst, lhs, rhs_reg);
1320 } else if (instruction->IsOr()) {
1321 if (use_imm)
1322 __ Ori(dst, lhs, rhs_imm);
1323 else
1324 __ Or(dst, lhs, rhs_reg);
1325 } else if (instruction->IsXor()) {
1326 if (use_imm)
1327 __ Xori(dst, lhs, rhs_imm);
1328 else
1329 __ Xor(dst, lhs, rhs_reg);
1330 } else if (instruction->IsAdd()) {
1331 if (use_imm)
1332 __ Addiu(dst, lhs, rhs_imm);
1333 else
1334 __ Addu(dst, lhs, rhs_reg);
1335 } else {
1336 DCHECK(instruction->IsSub());
1337 if (use_imm)
1338 __ Addiu(dst, lhs, -rhs_imm);
1339 else
1340 __ Subu(dst, lhs, rhs_reg);
1341 }
1342 break;
1343 }
1344
1345 case Primitive::kPrimLong: {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001346 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
1347 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
1348 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
1349 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001350 Location rhs_location = locations->InAt(1);
1351 bool use_imm = rhs_location.IsConstant();
1352 if (!use_imm) {
1353 Register rhs_high = rhs_location.AsRegisterPairHigh<Register>();
1354 Register rhs_low = rhs_location.AsRegisterPairLow<Register>();
1355 if (instruction->IsAnd()) {
1356 __ And(dst_low, lhs_low, rhs_low);
1357 __ And(dst_high, lhs_high, rhs_high);
1358 } else if (instruction->IsOr()) {
1359 __ Or(dst_low, lhs_low, rhs_low);
1360 __ Or(dst_high, lhs_high, rhs_high);
1361 } else if (instruction->IsXor()) {
1362 __ Xor(dst_low, lhs_low, rhs_low);
1363 __ Xor(dst_high, lhs_high, rhs_high);
1364 } else if (instruction->IsAdd()) {
1365 if (lhs_low == rhs_low) {
1366 // Special case for lhs = rhs and the sum potentially overwriting both lhs and rhs.
1367 __ Slt(TMP, lhs_low, ZERO);
1368 __ Addu(dst_low, lhs_low, rhs_low);
1369 } else {
1370 __ Addu(dst_low, lhs_low, rhs_low);
1371 // If the sum overwrites rhs, lhs remains unchanged, otherwise rhs remains unchanged.
1372 __ Sltu(TMP, dst_low, (dst_low == rhs_low) ? lhs_low : rhs_low);
1373 }
1374 __ Addu(dst_high, lhs_high, rhs_high);
1375 __ Addu(dst_high, dst_high, TMP);
1376 } else {
1377 DCHECK(instruction->IsSub());
1378 __ Sltu(TMP, lhs_low, rhs_low);
1379 __ Subu(dst_low, lhs_low, rhs_low);
1380 __ Subu(dst_high, lhs_high, rhs_high);
1381 __ Subu(dst_high, dst_high, TMP);
1382 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001383 } else {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001384 int64_t value = CodeGenerator::GetInt64ValueOf(rhs_location.GetConstant()->AsConstant());
1385 if (instruction->IsOr()) {
1386 uint32_t low = Low32Bits(value);
1387 uint32_t high = High32Bits(value);
1388 if (IsUint<16>(low)) {
1389 if (dst_low != lhs_low || low != 0) {
1390 __ Ori(dst_low, lhs_low, low);
1391 }
1392 } else {
1393 __ LoadConst32(TMP, low);
1394 __ Or(dst_low, lhs_low, TMP);
1395 }
1396 if (IsUint<16>(high)) {
1397 if (dst_high != lhs_high || high != 0) {
1398 __ Ori(dst_high, lhs_high, high);
1399 }
1400 } else {
1401 if (high != low) {
1402 __ LoadConst32(TMP, high);
1403 }
1404 __ Or(dst_high, lhs_high, TMP);
1405 }
1406 } else if (instruction->IsXor()) {
1407 uint32_t low = Low32Bits(value);
1408 uint32_t high = High32Bits(value);
1409 if (IsUint<16>(low)) {
1410 if (dst_low != lhs_low || low != 0) {
1411 __ Xori(dst_low, lhs_low, low);
1412 }
1413 } else {
1414 __ LoadConst32(TMP, low);
1415 __ Xor(dst_low, lhs_low, TMP);
1416 }
1417 if (IsUint<16>(high)) {
1418 if (dst_high != lhs_high || high != 0) {
1419 __ Xori(dst_high, lhs_high, high);
1420 }
1421 } else {
1422 if (high != low) {
1423 __ LoadConst32(TMP, high);
1424 }
1425 __ Xor(dst_high, lhs_high, TMP);
1426 }
1427 } else if (instruction->IsAnd()) {
1428 uint32_t low = Low32Bits(value);
1429 uint32_t high = High32Bits(value);
1430 if (IsUint<16>(low)) {
1431 __ Andi(dst_low, lhs_low, low);
1432 } else if (low != 0xFFFFFFFF) {
1433 __ LoadConst32(TMP, low);
1434 __ And(dst_low, lhs_low, TMP);
1435 } else if (dst_low != lhs_low) {
1436 __ Move(dst_low, lhs_low);
1437 }
1438 if (IsUint<16>(high)) {
1439 __ Andi(dst_high, lhs_high, high);
1440 } else if (high != 0xFFFFFFFF) {
1441 if (high != low) {
1442 __ LoadConst32(TMP, high);
1443 }
1444 __ And(dst_high, lhs_high, TMP);
1445 } else if (dst_high != lhs_high) {
1446 __ Move(dst_high, lhs_high);
1447 }
1448 } else {
1449 if (instruction->IsSub()) {
1450 value = -value;
1451 } else {
1452 DCHECK(instruction->IsAdd());
1453 }
1454 int32_t low = Low32Bits(value);
1455 int32_t high = High32Bits(value);
1456 if (IsInt<16>(low)) {
1457 if (dst_low != lhs_low || low != 0) {
1458 __ Addiu(dst_low, lhs_low, low);
1459 }
1460 if (low != 0) {
1461 __ Sltiu(AT, dst_low, low);
1462 }
1463 } else {
1464 __ LoadConst32(TMP, low);
1465 __ Addu(dst_low, lhs_low, TMP);
1466 __ Sltu(AT, dst_low, TMP);
1467 }
1468 if (IsInt<16>(high)) {
1469 if (dst_high != lhs_high || high != 0) {
1470 __ Addiu(dst_high, lhs_high, high);
1471 }
1472 } else {
1473 if (high != low) {
1474 __ LoadConst32(TMP, high);
1475 }
1476 __ Addu(dst_high, lhs_high, TMP);
1477 }
1478 if (low != 0) {
1479 __ Addu(dst_high, dst_high, AT);
1480 }
1481 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001482 }
1483 break;
1484 }
1485
1486 case Primitive::kPrimFloat:
1487 case Primitive::kPrimDouble: {
1488 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
1489 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
1490 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
1491 if (instruction->IsAdd()) {
1492 if (type == Primitive::kPrimFloat) {
1493 __ AddS(dst, lhs, rhs);
1494 } else {
1495 __ AddD(dst, lhs, rhs);
1496 }
1497 } else {
1498 DCHECK(instruction->IsSub());
1499 if (type == Primitive::kPrimFloat) {
1500 __ SubS(dst, lhs, rhs);
1501 } else {
1502 __ SubD(dst, lhs, rhs);
1503 }
1504 }
1505 break;
1506 }
1507
1508 default:
1509 LOG(FATAL) << "Unexpected binary operation type " << type;
1510 }
1511}
1512
1513void LocationsBuilderMIPS::HandleShift(HBinaryOperation* instr) {
1514 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1515
1516 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1517 Primitive::Type type = instr->GetResultType();
1518 switch (type) {
1519 case Primitive::kPrimInt:
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001520 locations->SetInAt(0, Location::RequiresRegister());
1521 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1522 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1523 break;
1524 case Primitive::kPrimLong:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001525 locations->SetInAt(0, Location::RequiresRegister());
1526 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1527 locations->SetOut(Location::RequiresRegister());
1528 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001529 default:
1530 LOG(FATAL) << "Unexpected shift type " << type;
1531 }
1532}
1533
1534static constexpr size_t kMipsBitsPerWord = kMipsWordSize * kBitsPerByte;
1535
1536void InstructionCodeGeneratorMIPS::HandleShift(HBinaryOperation* instr) {
1537 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1538 LocationSummary* locations = instr->GetLocations();
1539 Primitive::Type type = instr->GetType();
1540
1541 Location rhs_location = locations->InAt(1);
1542 bool use_imm = rhs_location.IsConstant();
1543 Register rhs_reg = use_imm ? ZERO : rhs_location.AsRegister<Register>();
1544 int64_t rhs_imm = use_imm ? CodeGenerator::GetInt64ValueOf(rhs_location.GetConstant()) : 0;
1545 uint32_t shift_mask = (type == Primitive::kPrimInt) ? kMaxIntShiftValue : kMaxLongShiftValue;
1546 uint32_t shift_value = rhs_imm & shift_mask;
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001547 // Is the INS (Insert Bit Field) instruction supported?
1548 bool has_ins = codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001549
1550 switch (type) {
1551 case Primitive::kPrimInt: {
1552 Register dst = locations->Out().AsRegister<Register>();
1553 Register lhs = locations->InAt(0).AsRegister<Register>();
1554 if (use_imm) {
1555 if (instr->IsShl()) {
1556 __ Sll(dst, lhs, shift_value);
1557 } else if (instr->IsShr()) {
1558 __ Sra(dst, lhs, shift_value);
1559 } else {
1560 __ Srl(dst, lhs, shift_value);
1561 }
1562 } else {
1563 if (instr->IsShl()) {
1564 __ Sllv(dst, lhs, rhs_reg);
1565 } else if (instr->IsShr()) {
1566 __ Srav(dst, lhs, rhs_reg);
1567 } else {
1568 __ Srlv(dst, lhs, rhs_reg);
1569 }
1570 }
1571 break;
1572 }
1573
1574 case Primitive::kPrimLong: {
1575 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
1576 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
1577 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
1578 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
1579 if (use_imm) {
1580 if (shift_value == 0) {
1581 codegen_->Move64(locations->Out(), locations->InAt(0));
1582 } else if (shift_value < kMipsBitsPerWord) {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001583 if (has_ins) {
1584 if (instr->IsShl()) {
1585 __ Srl(dst_high, lhs_low, kMipsBitsPerWord - shift_value);
1586 __ Ins(dst_high, lhs_high, shift_value, kMipsBitsPerWord - shift_value);
1587 __ Sll(dst_low, lhs_low, shift_value);
1588 } else if (instr->IsShr()) {
1589 __ Srl(dst_low, lhs_low, shift_value);
1590 __ Ins(dst_low, lhs_high, kMipsBitsPerWord - shift_value, shift_value);
1591 __ Sra(dst_high, lhs_high, shift_value);
1592 } else {
1593 __ Srl(dst_low, lhs_low, shift_value);
1594 __ Ins(dst_low, lhs_high, kMipsBitsPerWord - shift_value, shift_value);
1595 __ Srl(dst_high, lhs_high, shift_value);
1596 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001597 } else {
Alexey Frunze5c7aed32015-11-25 19:41:54 -08001598 if (instr->IsShl()) {
1599 __ Sll(dst_low, lhs_low, shift_value);
1600 __ Srl(TMP, lhs_low, kMipsBitsPerWord - shift_value);
1601 __ Sll(dst_high, lhs_high, shift_value);
1602 __ Or(dst_high, dst_high, TMP);
1603 } else if (instr->IsShr()) {
1604 __ Sra(dst_high, lhs_high, shift_value);
1605 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value);
1606 __ Srl(dst_low, lhs_low, shift_value);
1607 __ Or(dst_low, dst_low, TMP);
1608 } else {
1609 __ Srl(dst_high, lhs_high, shift_value);
1610 __ Sll(TMP, lhs_high, kMipsBitsPerWord - shift_value);
1611 __ Srl(dst_low, lhs_low, shift_value);
1612 __ Or(dst_low, dst_low, TMP);
1613 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001614 }
1615 } else {
1616 shift_value -= kMipsBitsPerWord;
1617 if (instr->IsShl()) {
1618 __ Sll(dst_high, lhs_low, shift_value);
1619 __ Move(dst_low, ZERO);
1620 } else if (instr->IsShr()) {
1621 __ Sra(dst_low, lhs_high, shift_value);
1622 __ Sra(dst_high, dst_low, kMipsBitsPerWord - 1);
1623 } else {
1624 __ Srl(dst_low, lhs_high, shift_value);
1625 __ Move(dst_high, ZERO);
1626 }
1627 }
1628 } else {
1629 MipsLabel done;
1630 if (instr->IsShl()) {
1631 __ Sllv(dst_low, lhs_low, rhs_reg);
1632 __ Nor(AT, ZERO, rhs_reg);
1633 __ Srl(TMP, lhs_low, 1);
1634 __ Srlv(TMP, TMP, AT);
1635 __ Sllv(dst_high, lhs_high, rhs_reg);
1636 __ Or(dst_high, dst_high, TMP);
1637 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
1638 __ Beqz(TMP, &done);
1639 __ Move(dst_high, dst_low);
1640 __ Move(dst_low, ZERO);
1641 } else if (instr->IsShr()) {
1642 __ Srav(dst_high, lhs_high, rhs_reg);
1643 __ Nor(AT, ZERO, rhs_reg);
1644 __ Sll(TMP, lhs_high, 1);
1645 __ Sllv(TMP, TMP, AT);
1646 __ Srlv(dst_low, lhs_low, rhs_reg);
1647 __ Or(dst_low, dst_low, TMP);
1648 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
1649 __ Beqz(TMP, &done);
1650 __ Move(dst_low, dst_high);
1651 __ Sra(dst_high, dst_high, 31);
1652 } else {
1653 __ Srlv(dst_high, lhs_high, rhs_reg);
1654 __ Nor(AT, ZERO, rhs_reg);
1655 __ Sll(TMP, lhs_high, 1);
1656 __ Sllv(TMP, TMP, AT);
1657 __ Srlv(dst_low, lhs_low, rhs_reg);
1658 __ Or(dst_low, dst_low, TMP);
1659 __ Andi(TMP, rhs_reg, kMipsBitsPerWord);
1660 __ Beqz(TMP, &done);
1661 __ Move(dst_low, dst_high);
1662 __ Move(dst_high, ZERO);
1663 }
1664 __ Bind(&done);
1665 }
1666 break;
1667 }
1668
1669 default:
1670 LOG(FATAL) << "Unexpected shift operation type " << type;
1671 }
1672}
1673
1674void LocationsBuilderMIPS::VisitAdd(HAdd* instruction) {
1675 HandleBinaryOp(instruction);
1676}
1677
1678void InstructionCodeGeneratorMIPS::VisitAdd(HAdd* instruction) {
1679 HandleBinaryOp(instruction);
1680}
1681
1682void LocationsBuilderMIPS::VisitAnd(HAnd* instruction) {
1683 HandleBinaryOp(instruction);
1684}
1685
1686void InstructionCodeGeneratorMIPS::VisitAnd(HAnd* instruction) {
1687 HandleBinaryOp(instruction);
1688}
1689
1690void LocationsBuilderMIPS::VisitArrayGet(HArrayGet* instruction) {
1691 LocationSummary* locations =
1692 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1693 locations->SetInAt(0, Location::RequiresRegister());
1694 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1695 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1696 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1697 } else {
1698 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1699 }
1700}
1701
1702void InstructionCodeGeneratorMIPS::VisitArrayGet(HArrayGet* instruction) {
1703 LocationSummary* locations = instruction->GetLocations();
1704 Register obj = locations->InAt(0).AsRegister<Register>();
1705 Location index = locations->InAt(1);
1706 Primitive::Type type = instruction->GetType();
1707
1708 switch (type) {
1709 case Primitive::kPrimBoolean: {
1710 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
1711 Register out = locations->Out().AsRegister<Register>();
1712 if (index.IsConstant()) {
1713 size_t offset =
1714 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
1715 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
1716 } else {
1717 __ Addu(TMP, obj, index.AsRegister<Register>());
1718 __ LoadFromOffset(kLoadUnsignedByte, out, TMP, data_offset);
1719 }
1720 break;
1721 }
1722
1723 case Primitive::kPrimByte: {
1724 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
1725 Register out = locations->Out().AsRegister<Register>();
1726 if (index.IsConstant()) {
1727 size_t offset =
1728 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
1729 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
1730 } else {
1731 __ Addu(TMP, obj, index.AsRegister<Register>());
1732 __ LoadFromOffset(kLoadSignedByte, out, TMP, data_offset);
1733 }
1734 break;
1735 }
1736
1737 case Primitive::kPrimShort: {
1738 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
1739 Register out = locations->Out().AsRegister<Register>();
1740 if (index.IsConstant()) {
1741 size_t offset =
1742 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
1743 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
1744 } else {
1745 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2);
1746 __ Addu(TMP, obj, TMP);
1747 __ LoadFromOffset(kLoadSignedHalfword, out, TMP, data_offset);
1748 }
1749 break;
1750 }
1751
1752 case Primitive::kPrimChar: {
1753 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
1754 Register out = locations->Out().AsRegister<Register>();
1755 if (index.IsConstant()) {
1756 size_t offset =
1757 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
1758 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
1759 } else {
1760 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2);
1761 __ Addu(TMP, obj, TMP);
1762 __ LoadFromOffset(kLoadUnsignedHalfword, out, TMP, data_offset);
1763 }
1764 break;
1765 }
1766
1767 case Primitive::kPrimInt:
1768 case Primitive::kPrimNot: {
1769 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
1770 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
1771 Register out = locations->Out().AsRegister<Register>();
1772 if (index.IsConstant()) {
1773 size_t offset =
1774 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1775 __ LoadFromOffset(kLoadWord, out, obj, offset);
1776 } else {
1777 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4);
1778 __ Addu(TMP, obj, TMP);
1779 __ LoadFromOffset(kLoadWord, out, TMP, data_offset);
1780 }
1781 break;
1782 }
1783
1784 case Primitive::kPrimLong: {
1785 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
1786 Register out = locations->Out().AsRegisterPairLow<Register>();
1787 if (index.IsConstant()) {
1788 size_t offset =
1789 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1790 __ LoadFromOffset(kLoadDoubleword, out, obj, offset);
1791 } else {
1792 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8);
1793 __ Addu(TMP, obj, TMP);
1794 __ LoadFromOffset(kLoadDoubleword, out, TMP, data_offset);
1795 }
1796 break;
1797 }
1798
1799 case Primitive::kPrimFloat: {
1800 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1801 FRegister out = locations->Out().AsFpuRegister<FRegister>();
1802 if (index.IsConstant()) {
1803 size_t offset =
1804 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1805 __ LoadSFromOffset(out, obj, offset);
1806 } else {
1807 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4);
1808 __ Addu(TMP, obj, TMP);
1809 __ LoadSFromOffset(out, TMP, data_offset);
1810 }
1811 break;
1812 }
1813
1814 case Primitive::kPrimDouble: {
1815 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1816 FRegister out = locations->Out().AsFpuRegister<FRegister>();
1817 if (index.IsConstant()) {
1818 size_t offset =
1819 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1820 __ LoadDFromOffset(out, obj, offset);
1821 } else {
1822 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8);
1823 __ Addu(TMP, obj, TMP);
1824 __ LoadDFromOffset(out, TMP, data_offset);
1825 }
1826 break;
1827 }
1828
1829 case Primitive::kPrimVoid:
1830 LOG(FATAL) << "Unreachable type " << instruction->GetType();
1831 UNREACHABLE();
1832 }
1833 codegen_->MaybeRecordImplicitNullCheck(instruction);
1834}
1835
1836void LocationsBuilderMIPS::VisitArrayLength(HArrayLength* instruction) {
1837 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1838 locations->SetInAt(0, Location::RequiresRegister());
1839 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1840}
1841
1842void InstructionCodeGeneratorMIPS::VisitArrayLength(HArrayLength* instruction) {
1843 LocationSummary* locations = instruction->GetLocations();
1844 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
1845 Register obj = locations->InAt(0).AsRegister<Register>();
1846 Register out = locations->Out().AsRegister<Register>();
1847 __ LoadFromOffset(kLoadWord, out, obj, offset);
1848 codegen_->MaybeRecordImplicitNullCheck(instruction);
1849}
1850
1851void LocationsBuilderMIPS::VisitArraySet(HArraySet* instruction) {
Pavle Batuta934808f2015-11-03 13:23:54 +01001852 bool needs_runtime_call = instruction->NeedsTypeCheck();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001853 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1854 instruction,
Pavle Batuta934808f2015-11-03 13:23:54 +01001855 needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
1856 if (needs_runtime_call) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02001857 InvokeRuntimeCallingConvention calling_convention;
1858 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
1859 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
1860 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
1861 } else {
1862 locations->SetInAt(0, Location::RequiresRegister());
1863 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1864 if (Primitive::IsFloatingPointType(instruction->InputAt(2)->GetType())) {
1865 locations->SetInAt(2, Location::RequiresFpuRegister());
1866 } else {
1867 locations->SetInAt(2, Location::RequiresRegister());
1868 }
1869 }
1870}
1871
1872void InstructionCodeGeneratorMIPS::VisitArraySet(HArraySet* instruction) {
1873 LocationSummary* locations = instruction->GetLocations();
1874 Register obj = locations->InAt(0).AsRegister<Register>();
1875 Location index = locations->InAt(1);
1876 Primitive::Type value_type = instruction->GetComponentType();
1877 bool needs_runtime_call = locations->WillCall();
1878 bool needs_write_barrier =
1879 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
1880
1881 switch (value_type) {
1882 case Primitive::kPrimBoolean:
1883 case Primitive::kPrimByte: {
1884 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
1885 Register value = locations->InAt(2).AsRegister<Register>();
1886 if (index.IsConstant()) {
1887 size_t offset =
1888 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
1889 __ StoreToOffset(kStoreByte, value, obj, offset);
1890 } else {
1891 __ Addu(TMP, obj, index.AsRegister<Register>());
1892 __ StoreToOffset(kStoreByte, value, TMP, data_offset);
1893 }
1894 break;
1895 }
1896
1897 case Primitive::kPrimShort:
1898 case Primitive::kPrimChar: {
1899 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
1900 Register value = locations->InAt(2).AsRegister<Register>();
1901 if (index.IsConstant()) {
1902 size_t offset =
1903 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
1904 __ StoreToOffset(kStoreHalfword, value, obj, offset);
1905 } else {
1906 __ Sll(TMP, index.AsRegister<Register>(), TIMES_2);
1907 __ Addu(TMP, obj, TMP);
1908 __ StoreToOffset(kStoreHalfword, value, TMP, data_offset);
1909 }
1910 break;
1911 }
1912
1913 case Primitive::kPrimInt:
1914 case Primitive::kPrimNot: {
1915 if (!needs_runtime_call) {
1916 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
1917 Register value = locations->InAt(2).AsRegister<Register>();
1918 if (index.IsConstant()) {
1919 size_t offset =
1920 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1921 __ StoreToOffset(kStoreWord, value, obj, offset);
1922 } else {
1923 DCHECK(index.IsRegister()) << index;
1924 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4);
1925 __ Addu(TMP, obj, TMP);
1926 __ StoreToOffset(kStoreWord, value, TMP, data_offset);
1927 }
1928 codegen_->MaybeRecordImplicitNullCheck(instruction);
1929 if (needs_write_barrier) {
1930 DCHECK_EQ(value_type, Primitive::kPrimNot);
1931 codegen_->MarkGCCard(obj, value);
1932 }
1933 } else {
1934 DCHECK_EQ(value_type, Primitive::kPrimNot);
1935 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
1936 instruction,
1937 instruction->GetDexPc(),
1938 nullptr,
1939 IsDirectEntrypoint(kQuickAputObject));
1940 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
1941 }
1942 break;
1943 }
1944
1945 case Primitive::kPrimLong: {
1946 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
1947 Register value = locations->InAt(2).AsRegisterPairLow<Register>();
1948 if (index.IsConstant()) {
1949 size_t offset =
1950 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1951 __ StoreToOffset(kStoreDoubleword, value, obj, offset);
1952 } else {
1953 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8);
1954 __ Addu(TMP, obj, TMP);
1955 __ StoreToOffset(kStoreDoubleword, value, TMP, data_offset);
1956 }
1957 break;
1958 }
1959
1960 case Primitive::kPrimFloat: {
1961 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
1962 FRegister value = locations->InAt(2).AsFpuRegister<FRegister>();
1963 DCHECK(locations->InAt(2).IsFpuRegister());
1964 if (index.IsConstant()) {
1965 size_t offset =
1966 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
1967 __ StoreSToOffset(value, obj, offset);
1968 } else {
1969 __ Sll(TMP, index.AsRegister<Register>(), TIMES_4);
1970 __ Addu(TMP, obj, TMP);
1971 __ StoreSToOffset(value, TMP, data_offset);
1972 }
1973 break;
1974 }
1975
1976 case Primitive::kPrimDouble: {
1977 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
1978 FRegister value = locations->InAt(2).AsFpuRegister<FRegister>();
1979 DCHECK(locations->InAt(2).IsFpuRegister());
1980 if (index.IsConstant()) {
1981 size_t offset =
1982 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
1983 __ StoreDToOffset(value, obj, offset);
1984 } else {
1985 __ Sll(TMP, index.AsRegister<Register>(), TIMES_8);
1986 __ Addu(TMP, obj, TMP);
1987 __ StoreDToOffset(value, TMP, data_offset);
1988 }
1989 break;
1990 }
1991
1992 case Primitive::kPrimVoid:
1993 LOG(FATAL) << "Unreachable type " << instruction->GetType();
1994 UNREACHABLE();
1995 }
1996
1997 // Ints and objects are handled in the switch.
1998 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
1999 codegen_->MaybeRecordImplicitNullCheck(instruction);
2000 }
2001}
2002
2003void LocationsBuilderMIPS::VisitBoundsCheck(HBoundsCheck* instruction) {
2004 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2005 ? LocationSummary::kCallOnSlowPath
2006 : LocationSummary::kNoCall;
2007 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
2008 locations->SetInAt(0, Location::RequiresRegister());
2009 locations->SetInAt(1, Location::RequiresRegister());
2010 if (instruction->HasUses()) {
2011 locations->SetOut(Location::SameAsFirstInput());
2012 }
2013}
2014
2015void InstructionCodeGeneratorMIPS::VisitBoundsCheck(HBoundsCheck* instruction) {
2016 LocationSummary* locations = instruction->GetLocations();
2017 BoundsCheckSlowPathMIPS* slow_path =
2018 new (GetGraph()->GetArena()) BoundsCheckSlowPathMIPS(instruction);
2019 codegen_->AddSlowPath(slow_path);
2020
2021 Register index = locations->InAt(0).AsRegister<Register>();
2022 Register length = locations->InAt(1).AsRegister<Register>();
2023
2024 // length is limited by the maximum positive signed 32-bit integer.
2025 // Unsigned comparison of length and index checks for index < 0
2026 // and for length <= index simultaneously.
2027 __ Bgeu(index, length, slow_path->GetEntryLabel());
2028}
2029
2030void LocationsBuilderMIPS::VisitCheckCast(HCheckCast* instruction) {
2031 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
2032 instruction,
2033 LocationSummary::kCallOnSlowPath);
2034 locations->SetInAt(0, Location::RequiresRegister());
2035 locations->SetInAt(1, Location::RequiresRegister());
2036 // Note that TypeCheckSlowPathMIPS uses this register too.
2037 locations->AddTemp(Location::RequiresRegister());
2038}
2039
2040void InstructionCodeGeneratorMIPS::VisitCheckCast(HCheckCast* instruction) {
2041 LocationSummary* locations = instruction->GetLocations();
2042 Register obj = locations->InAt(0).AsRegister<Register>();
2043 Register cls = locations->InAt(1).AsRegister<Register>();
2044 Register obj_cls = locations->GetTemp(0).AsRegister<Register>();
2045
2046 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathMIPS(instruction);
2047 codegen_->AddSlowPath(slow_path);
2048
2049 // TODO: avoid this check if we know obj is not null.
2050 __ Beqz(obj, slow_path->GetExitLabel());
2051 // Compare the class of `obj` with `cls`.
2052 __ LoadFromOffset(kLoadWord, obj_cls, obj, mirror::Object::ClassOffset().Int32Value());
2053 __ Bne(obj_cls, cls, slow_path->GetEntryLabel());
2054 __ Bind(slow_path->GetExitLabel());
2055}
2056
2057void LocationsBuilderMIPS::VisitClinitCheck(HClinitCheck* check) {
2058 LocationSummary* locations =
2059 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
2060 locations->SetInAt(0, Location::RequiresRegister());
2061 if (check->HasUses()) {
2062 locations->SetOut(Location::SameAsFirstInput());
2063 }
2064}
2065
2066void InstructionCodeGeneratorMIPS::VisitClinitCheck(HClinitCheck* check) {
2067 // We assume the class is not null.
2068 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathMIPS(
2069 check->GetLoadClass(),
2070 check,
2071 check->GetDexPc(),
2072 true);
2073 codegen_->AddSlowPath(slow_path);
2074 GenerateClassInitializationCheck(slow_path,
2075 check->GetLocations()->InAt(0).AsRegister<Register>());
2076}
2077
2078void LocationsBuilderMIPS::VisitCompare(HCompare* compare) {
2079 Primitive::Type in_type = compare->InputAt(0)->GetType();
2080
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002081 LocationSummary* locations =
2082 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002083
2084 switch (in_type) {
2085 case Primitive::kPrimLong:
2086 locations->SetInAt(0, Location::RequiresRegister());
2087 locations->SetInAt(1, Location::RequiresRegister());
2088 // Output overlaps because it is written before doing the low comparison.
2089 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2090 break;
2091
2092 case Primitive::kPrimFloat:
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002093 case Primitive::kPrimDouble:
2094 locations->SetInAt(0, Location::RequiresFpuRegister());
2095 locations->SetInAt(1, Location::RequiresFpuRegister());
2096 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002097 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002098
2099 default:
2100 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
2101 }
2102}
2103
2104void InstructionCodeGeneratorMIPS::VisitCompare(HCompare* instruction) {
2105 LocationSummary* locations = instruction->GetLocations();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002106 Register res = locations->Out().AsRegister<Register>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002107 Primitive::Type in_type = instruction->InputAt(0)->GetType();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002108 bool gt_bias = instruction->IsGtBias();
2109 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002110
2111 // 0 if: left == right
2112 // 1 if: left > right
2113 // -1 if: left < right
2114 switch (in_type) {
2115 case Primitive::kPrimLong: {
2116 MipsLabel done;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002117 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
2118 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
2119 Register rhs_high = locations->InAt(1).AsRegisterPairHigh<Register>();
2120 Register rhs_low = locations->InAt(1).AsRegisterPairLow<Register>();
2121 // TODO: more efficient (direct) comparison with a constant.
2122 __ Slt(TMP, lhs_high, rhs_high);
2123 __ Slt(AT, rhs_high, lhs_high); // Inverted: is actually gt.
2124 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ].
2125 __ Bnez(res, &done); // If we compared ==, check if lower bits are also equal.
2126 __ Sltu(TMP, lhs_low, rhs_low);
2127 __ Sltu(AT, rhs_low, lhs_low); // Inverted: is actually gt.
2128 __ Subu(res, AT, TMP); // Result -1:1:0 for [ <, >, == ].
2129 __ Bind(&done);
2130 break;
2131 }
2132
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002133 case Primitive::kPrimFloat: {
2134 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
2135 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
2136 MipsLabel done;
2137 if (isR6) {
2138 __ CmpEqS(FTMP, lhs, rhs);
2139 __ LoadConst32(res, 0);
2140 __ Bc1nez(FTMP, &done);
2141 if (gt_bias) {
2142 __ CmpLtS(FTMP, lhs, rhs);
2143 __ LoadConst32(res, -1);
2144 __ Bc1nez(FTMP, &done);
2145 __ LoadConst32(res, 1);
2146 } else {
2147 __ CmpLtS(FTMP, rhs, lhs);
2148 __ LoadConst32(res, 1);
2149 __ Bc1nez(FTMP, &done);
2150 __ LoadConst32(res, -1);
2151 }
2152 } else {
2153 if (gt_bias) {
2154 __ ColtS(0, lhs, rhs);
2155 __ LoadConst32(res, -1);
2156 __ Bc1t(0, &done);
2157 __ CeqS(0, lhs, rhs);
2158 __ LoadConst32(res, 1);
2159 __ Movt(res, ZERO, 0);
2160 } else {
2161 __ ColtS(0, rhs, lhs);
2162 __ LoadConst32(res, 1);
2163 __ Bc1t(0, &done);
2164 __ CeqS(0, lhs, rhs);
2165 __ LoadConst32(res, -1);
2166 __ Movt(res, ZERO, 0);
2167 }
2168 }
2169 __ Bind(&done);
2170 break;
2171 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002172 case Primitive::kPrimDouble: {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002173 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
2174 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
2175 MipsLabel done;
2176 if (isR6) {
2177 __ CmpEqD(FTMP, lhs, rhs);
2178 __ LoadConst32(res, 0);
2179 __ Bc1nez(FTMP, &done);
2180 if (gt_bias) {
2181 __ CmpLtD(FTMP, lhs, rhs);
2182 __ LoadConst32(res, -1);
2183 __ Bc1nez(FTMP, &done);
2184 __ LoadConst32(res, 1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002185 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002186 __ CmpLtD(FTMP, rhs, lhs);
2187 __ LoadConst32(res, 1);
2188 __ Bc1nez(FTMP, &done);
2189 __ LoadConst32(res, -1);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002190 }
2191 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002192 if (gt_bias) {
2193 __ ColtD(0, lhs, rhs);
2194 __ LoadConst32(res, -1);
2195 __ Bc1t(0, &done);
2196 __ CeqD(0, lhs, rhs);
2197 __ LoadConst32(res, 1);
2198 __ Movt(res, ZERO, 0);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002199 } else {
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002200 __ ColtD(0, rhs, lhs);
2201 __ LoadConst32(res, 1);
2202 __ Bc1t(0, &done);
2203 __ CeqD(0, lhs, rhs);
2204 __ LoadConst32(res, -1);
2205 __ Movt(res, ZERO, 0);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002206 }
2207 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002208 __ Bind(&done);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002209 break;
2210 }
2211
2212 default:
2213 LOG(FATAL) << "Unimplemented compare type " << in_type;
2214 }
2215}
2216
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002217void LocationsBuilderMIPS::HandleCondition(HCondition* instruction) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002218 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002219 switch (instruction->InputAt(0)->GetType()) {
2220 default:
2221 case Primitive::kPrimLong:
2222 locations->SetInAt(0, Location::RequiresRegister());
2223 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
2224 break;
2225
2226 case Primitive::kPrimFloat:
2227 case Primitive::kPrimDouble:
2228 locations->SetInAt(0, Location::RequiresFpuRegister());
2229 locations->SetInAt(1, Location::RequiresFpuRegister());
2230 break;
2231 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002232 if (instruction->NeedsMaterialization()) {
2233 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2234 }
2235}
2236
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002237void InstructionCodeGeneratorMIPS::HandleCondition(HCondition* instruction) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002238 if (!instruction->NeedsMaterialization()) {
2239 return;
2240 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002241
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002242 Primitive::Type type = instruction->InputAt(0)->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002243 LocationSummary* locations = instruction->GetLocations();
2244 Register dst = locations->Out().AsRegister<Register>();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002245 MipsLabel true_label;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002246
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002247 switch (type) {
2248 default:
2249 // Integer case.
2250 GenerateIntCompare(instruction->GetCondition(), locations);
2251 return;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002252
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002253 case Primitive::kPrimLong:
2254 // TODO: don't use branches.
2255 GenerateLongCompareAndBranch(instruction->GetCondition(), locations, &true_label);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002256 break;
2257
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002258 case Primitive::kPrimFloat:
2259 case Primitive::kPrimDouble:
2260 // TODO: don't use branches.
2261 GenerateFpCompareAndBranch(instruction->GetCondition(),
2262 instruction->IsGtBias(),
2263 type,
2264 locations,
2265 &true_label);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002266 break;
2267 }
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002268
2269 // Convert the branches into the result.
2270 MipsLabel done;
2271
2272 // False case: result = 0.
2273 __ LoadConst32(dst, 0);
2274 __ B(&done);
2275
2276 // True case: result = 1.
2277 __ Bind(&true_label);
2278 __ LoadConst32(dst, 1);
2279 __ Bind(&done);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002280}
2281
Alexey Frunze7e99e052015-11-24 19:28:01 -08002282void InstructionCodeGeneratorMIPS::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2283 DCHECK(instruction->IsDiv() || instruction->IsRem());
2284 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimInt);
2285
2286 LocationSummary* locations = instruction->GetLocations();
2287 Location second = locations->InAt(1);
2288 DCHECK(second.IsConstant());
2289
2290 Register out = locations->Out().AsRegister<Register>();
2291 Register dividend = locations->InAt(0).AsRegister<Register>();
2292 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2293 DCHECK(imm == 1 || imm == -1);
2294
2295 if (instruction->IsRem()) {
2296 __ Move(out, ZERO);
2297 } else {
2298 if (imm == -1) {
2299 __ Subu(out, ZERO, dividend);
2300 } else if (out != dividend) {
2301 __ Move(out, dividend);
2302 }
2303 }
2304}
2305
2306void InstructionCodeGeneratorMIPS::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
2307 DCHECK(instruction->IsDiv() || instruction->IsRem());
2308 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimInt);
2309
2310 LocationSummary* locations = instruction->GetLocations();
2311 Location second = locations->InAt(1);
2312 DCHECK(second.IsConstant());
2313
2314 Register out = locations->Out().AsRegister<Register>();
2315 Register dividend = locations->InAt(0).AsRegister<Register>();
2316 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Nicolas Geoffray68f62892016-01-04 08:39:49 +00002317 uint32_t abs_imm = static_cast<uint32_t>(AbsOrMin(imm));
Alexey Frunze7e99e052015-11-24 19:28:01 -08002318 int ctz_imm = CTZ(abs_imm);
2319
2320 if (instruction->IsDiv()) {
2321 if (ctz_imm == 1) {
2322 // Fast path for division by +/-2, which is very common.
2323 __ Srl(TMP, dividend, 31);
2324 } else {
2325 __ Sra(TMP, dividend, 31);
2326 __ Srl(TMP, TMP, 32 - ctz_imm);
2327 }
2328 __ Addu(out, dividend, TMP);
2329 __ Sra(out, out, ctz_imm);
2330 if (imm < 0) {
2331 __ Subu(out, ZERO, out);
2332 }
2333 } else {
2334 if (ctz_imm == 1) {
2335 // Fast path for modulo +/-2, which is very common.
2336 __ Sra(TMP, dividend, 31);
2337 __ Subu(out, dividend, TMP);
2338 __ Andi(out, out, 1);
2339 __ Addu(out, out, TMP);
2340 } else {
2341 __ Sra(TMP, dividend, 31);
2342 __ Srl(TMP, TMP, 32 - ctz_imm);
2343 __ Addu(out, dividend, TMP);
2344 if (IsUint<16>(abs_imm - 1)) {
2345 __ Andi(out, out, abs_imm - 1);
2346 } else {
2347 __ Sll(out, out, 32 - ctz_imm);
2348 __ Srl(out, out, 32 - ctz_imm);
2349 }
2350 __ Subu(out, out, TMP);
2351 }
2352 }
2353}
2354
2355void InstructionCodeGeneratorMIPS::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2356 DCHECK(instruction->IsDiv() || instruction->IsRem());
2357 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimInt);
2358
2359 LocationSummary* locations = instruction->GetLocations();
2360 Location second = locations->InAt(1);
2361 DCHECK(second.IsConstant());
2362
2363 Register out = locations->Out().AsRegister<Register>();
2364 Register dividend = locations->InAt(0).AsRegister<Register>();
2365 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2366
2367 int64_t magic;
2368 int shift;
2369 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
2370
2371 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
2372
2373 __ LoadConst32(TMP, magic);
2374 if (isR6) {
2375 __ MuhR6(TMP, dividend, TMP);
2376 } else {
2377 __ MultR2(dividend, TMP);
2378 __ Mfhi(TMP);
2379 }
2380 if (imm > 0 && magic < 0) {
2381 __ Addu(TMP, TMP, dividend);
2382 } else if (imm < 0 && magic > 0) {
2383 __ Subu(TMP, TMP, dividend);
2384 }
2385
2386 if (shift != 0) {
2387 __ Sra(TMP, TMP, shift);
2388 }
2389
2390 if (instruction->IsDiv()) {
2391 __ Sra(out, TMP, 31);
2392 __ Subu(out, TMP, out);
2393 } else {
2394 __ Sra(AT, TMP, 31);
2395 __ Subu(AT, TMP, AT);
2396 __ LoadConst32(TMP, imm);
2397 if (isR6) {
2398 __ MulR6(TMP, AT, TMP);
2399 } else {
2400 __ MulR2(TMP, AT, TMP);
2401 }
2402 __ Subu(out, dividend, TMP);
2403 }
2404}
2405
2406void InstructionCodeGeneratorMIPS::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2407 DCHECK(instruction->IsDiv() || instruction->IsRem());
2408 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimInt);
2409
2410 LocationSummary* locations = instruction->GetLocations();
2411 Register out = locations->Out().AsRegister<Register>();
2412 Location second = locations->InAt(1);
2413
2414 if (second.IsConstant()) {
2415 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2416 if (imm == 0) {
2417 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
2418 } else if (imm == 1 || imm == -1) {
2419 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00002420 } else if (IsPowerOfTwo(AbsOrMin(imm))) {
Alexey Frunze7e99e052015-11-24 19:28:01 -08002421 DivRemByPowerOfTwo(instruction);
2422 } else {
2423 DCHECK(imm <= -2 || imm >= 2);
2424 GenerateDivRemWithAnyConstant(instruction);
2425 }
2426 } else {
2427 Register dividend = locations->InAt(0).AsRegister<Register>();
2428 Register divisor = second.AsRegister<Register>();
2429 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
2430 if (instruction->IsDiv()) {
2431 if (isR6) {
2432 __ DivR6(out, dividend, divisor);
2433 } else {
2434 __ DivR2(out, dividend, divisor);
2435 }
2436 } else {
2437 if (isR6) {
2438 __ ModR6(out, dividend, divisor);
2439 } else {
2440 __ ModR2(out, dividend, divisor);
2441 }
2442 }
2443 }
2444}
2445
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002446void LocationsBuilderMIPS::VisitDiv(HDiv* div) {
2447 Primitive::Type type = div->GetResultType();
2448 LocationSummary::CallKind call_kind = (type == Primitive::kPrimLong)
2449 ? LocationSummary::kCall
2450 : LocationSummary::kNoCall;
2451
2452 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2453
2454 switch (type) {
2455 case Primitive::kPrimInt:
2456 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze7e99e052015-11-24 19:28:01 -08002457 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002458 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2459 break;
2460
2461 case Primitive::kPrimLong: {
2462 InvokeRuntimeCallingConvention calling_convention;
2463 locations->SetInAt(0, Location::RegisterPairLocation(
2464 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2465 locations->SetInAt(1, Location::RegisterPairLocation(
2466 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2467 locations->SetOut(calling_convention.GetReturnLocation(type));
2468 break;
2469 }
2470
2471 case Primitive::kPrimFloat:
2472 case Primitive::kPrimDouble:
2473 locations->SetInAt(0, Location::RequiresFpuRegister());
2474 locations->SetInAt(1, Location::RequiresFpuRegister());
2475 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2476 break;
2477
2478 default:
2479 LOG(FATAL) << "Unexpected div type " << type;
2480 }
2481}
2482
2483void InstructionCodeGeneratorMIPS::VisitDiv(HDiv* instruction) {
2484 Primitive::Type type = instruction->GetType();
2485 LocationSummary* locations = instruction->GetLocations();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002486
2487 switch (type) {
Alexey Frunze7e99e052015-11-24 19:28:01 -08002488 case Primitive::kPrimInt:
2489 GenerateDivRemIntegral(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002490 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02002491 case Primitive::kPrimLong: {
2492 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv),
2493 instruction,
2494 instruction->GetDexPc(),
2495 nullptr,
2496 IsDirectEntrypoint(kQuickLdiv));
2497 CheckEntrypointTypes<kQuickLdiv, int64_t, int64_t, int64_t>();
2498 break;
2499 }
2500 case Primitive::kPrimFloat:
2501 case Primitive::kPrimDouble: {
2502 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
2503 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
2504 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
2505 if (type == Primitive::kPrimFloat) {
2506 __ DivS(dst, lhs, rhs);
2507 } else {
2508 __ DivD(dst, lhs, rhs);
2509 }
2510 break;
2511 }
2512 default:
2513 LOG(FATAL) << "Unexpected div type " << type;
2514 }
2515}
2516
2517void LocationsBuilderMIPS::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2518 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2519 ? LocationSummary::kCallOnSlowPath
2520 : LocationSummary::kNoCall;
2521 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
2522 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
2523 if (instruction->HasUses()) {
2524 locations->SetOut(Location::SameAsFirstInput());
2525 }
2526}
2527
2528void InstructionCodeGeneratorMIPS::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2529 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathMIPS(instruction);
2530 codegen_->AddSlowPath(slow_path);
2531 Location value = instruction->GetLocations()->InAt(0);
2532 Primitive::Type type = instruction->GetType();
2533
2534 switch (type) {
2535 case Primitive::kPrimByte:
2536 case Primitive::kPrimChar:
2537 case Primitive::kPrimShort:
2538 case Primitive::kPrimInt: {
2539 if (value.IsConstant()) {
2540 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2541 __ B(slow_path->GetEntryLabel());
2542 } else {
2543 // A division by a non-null constant is valid. We don't need to perform
2544 // any check, so simply fall through.
2545 }
2546 } else {
2547 DCHECK(value.IsRegister()) << value;
2548 __ Beqz(value.AsRegister<Register>(), slow_path->GetEntryLabel());
2549 }
2550 break;
2551 }
2552 case Primitive::kPrimLong: {
2553 if (value.IsConstant()) {
2554 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2555 __ B(slow_path->GetEntryLabel());
2556 } else {
2557 // A division by a non-null constant is valid. We don't need to perform
2558 // any check, so simply fall through.
2559 }
2560 } else {
2561 DCHECK(value.IsRegisterPair()) << value;
2562 __ Or(TMP, value.AsRegisterPairHigh<Register>(), value.AsRegisterPairLow<Register>());
2563 __ Beqz(TMP, slow_path->GetEntryLabel());
2564 }
2565 break;
2566 }
2567 default:
2568 LOG(FATAL) << "Unexpected type " << type << " for DivZeroCheck.";
2569 }
2570}
2571
2572void LocationsBuilderMIPS::VisitDoubleConstant(HDoubleConstant* constant) {
2573 LocationSummary* locations =
2574 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2575 locations->SetOut(Location::ConstantLocation(constant));
2576}
2577
2578void InstructionCodeGeneratorMIPS::VisitDoubleConstant(HDoubleConstant* cst ATTRIBUTE_UNUSED) {
2579 // Will be generated at use site.
2580}
2581
2582void LocationsBuilderMIPS::VisitExit(HExit* exit) {
2583 exit->SetLocations(nullptr);
2584}
2585
2586void InstructionCodeGeneratorMIPS::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
2587}
2588
2589void LocationsBuilderMIPS::VisitFloatConstant(HFloatConstant* constant) {
2590 LocationSummary* locations =
2591 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2592 locations->SetOut(Location::ConstantLocation(constant));
2593}
2594
2595void InstructionCodeGeneratorMIPS::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
2596 // Will be generated at use site.
2597}
2598
2599void LocationsBuilderMIPS::VisitGoto(HGoto* got) {
2600 got->SetLocations(nullptr);
2601}
2602
2603void InstructionCodeGeneratorMIPS::HandleGoto(HInstruction* got, HBasicBlock* successor) {
2604 DCHECK(!successor->IsExitBlock());
2605 HBasicBlock* block = got->GetBlock();
2606 HInstruction* previous = got->GetPrevious();
2607 HLoopInformation* info = block->GetLoopInformation();
2608
2609 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
2610 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
2611 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
2612 return;
2613 }
2614 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2615 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
2616 }
2617 if (!codegen_->GoesToNextBlock(block, successor)) {
2618 __ B(codegen_->GetLabelOf(successor));
2619 }
2620}
2621
2622void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) {
2623 HandleGoto(got, got->GetSuccessor());
2624}
2625
2626void LocationsBuilderMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
2627 try_boundary->SetLocations(nullptr);
2628}
2629
2630void InstructionCodeGeneratorMIPS::VisitTryBoundary(HTryBoundary* try_boundary) {
2631 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
2632 if (!successor->IsExitBlock()) {
2633 HandleGoto(try_boundary, successor);
2634 }
2635}
2636
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08002637void InstructionCodeGeneratorMIPS::GenerateIntCompare(IfCondition cond,
2638 LocationSummary* locations) {
2639 Register dst = locations->Out().AsRegister<Register>();
2640 Register lhs = locations->InAt(0).AsRegister<Register>();
2641 Location rhs_location = locations->InAt(1);
2642 Register rhs_reg = ZERO;
2643 int64_t rhs_imm = 0;
2644 bool use_imm = rhs_location.IsConstant();
2645 if (use_imm) {
2646 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
2647 } else {
2648 rhs_reg = rhs_location.AsRegister<Register>();
2649 }
2650
2651 switch (cond) {
2652 case kCondEQ:
2653 case kCondNE:
2654 if (use_imm && IsUint<16>(rhs_imm)) {
2655 __ Xori(dst, lhs, rhs_imm);
2656 } else {
2657 if (use_imm) {
2658 rhs_reg = TMP;
2659 __ LoadConst32(rhs_reg, rhs_imm);
2660 }
2661 __ Xor(dst, lhs, rhs_reg);
2662 }
2663 if (cond == kCondEQ) {
2664 __ Sltiu(dst, dst, 1);
2665 } else {
2666 __ Sltu(dst, ZERO, dst);
2667 }
2668 break;
2669
2670 case kCondLT:
2671 case kCondGE:
2672 if (use_imm && IsInt<16>(rhs_imm)) {
2673 __ Slti(dst, lhs, rhs_imm);
2674 } else {
2675 if (use_imm) {
2676 rhs_reg = TMP;
2677 __ LoadConst32(rhs_reg, rhs_imm);
2678 }
2679 __ Slt(dst, lhs, rhs_reg);
2680 }
2681 if (cond == kCondGE) {
2682 // Simulate lhs >= rhs via !(lhs < rhs) since there's
2683 // only the slt instruction but no sge.
2684 __ Xori(dst, dst, 1);
2685 }
2686 break;
2687
2688 case kCondLE:
2689 case kCondGT:
2690 if (use_imm && IsInt<16>(rhs_imm + 1)) {
2691 // Simulate lhs <= rhs via lhs < rhs + 1.
2692 __ Slti(dst, lhs, rhs_imm + 1);
2693 if (cond == kCondGT) {
2694 // Simulate lhs > rhs via !(lhs <= rhs) since there's
2695 // only the slti instruction but no sgti.
2696 __ Xori(dst, dst, 1);
2697 }
2698 } else {
2699 if (use_imm) {
2700 rhs_reg = TMP;
2701 __ LoadConst32(rhs_reg, rhs_imm);
2702 }
2703 __ Slt(dst, rhs_reg, lhs);
2704 if (cond == kCondLE) {
2705 // Simulate lhs <= rhs via !(rhs < lhs) since there's
2706 // only the slt instruction but no sle.
2707 __ Xori(dst, dst, 1);
2708 }
2709 }
2710 break;
2711
2712 case kCondB:
2713 case kCondAE:
2714 if (use_imm && IsInt<16>(rhs_imm)) {
2715 // Sltiu sign-extends its 16-bit immediate operand before
2716 // the comparison and thus lets us compare directly with
2717 // unsigned values in the ranges [0, 0x7fff] and
2718 // [0xffff8000, 0xffffffff].
2719 __ Sltiu(dst, lhs, rhs_imm);
2720 } else {
2721 if (use_imm) {
2722 rhs_reg = TMP;
2723 __ LoadConst32(rhs_reg, rhs_imm);
2724 }
2725 __ Sltu(dst, lhs, rhs_reg);
2726 }
2727 if (cond == kCondAE) {
2728 // Simulate lhs >= rhs via !(lhs < rhs) since there's
2729 // only the sltu instruction but no sgeu.
2730 __ Xori(dst, dst, 1);
2731 }
2732 break;
2733
2734 case kCondBE:
2735 case kCondA:
2736 if (use_imm && (rhs_imm != -1) && IsInt<16>(rhs_imm + 1)) {
2737 // Simulate lhs <= rhs via lhs < rhs + 1.
2738 // Note that this only works if rhs + 1 does not overflow
2739 // to 0, hence the check above.
2740 // Sltiu sign-extends its 16-bit immediate operand before
2741 // the comparison and thus lets us compare directly with
2742 // unsigned values in the ranges [0, 0x7fff] and
2743 // [0xffff8000, 0xffffffff].
2744 __ Sltiu(dst, lhs, rhs_imm + 1);
2745 if (cond == kCondA) {
2746 // Simulate lhs > rhs via !(lhs <= rhs) since there's
2747 // only the sltiu instruction but no sgtiu.
2748 __ Xori(dst, dst, 1);
2749 }
2750 } else {
2751 if (use_imm) {
2752 rhs_reg = TMP;
2753 __ LoadConst32(rhs_reg, rhs_imm);
2754 }
2755 __ Sltu(dst, rhs_reg, lhs);
2756 if (cond == kCondBE) {
2757 // Simulate lhs <= rhs via !(rhs < lhs) since there's
2758 // only the sltu instruction but no sleu.
2759 __ Xori(dst, dst, 1);
2760 }
2761 }
2762 break;
2763 }
2764}
2765
2766void InstructionCodeGeneratorMIPS::GenerateIntCompareAndBranch(IfCondition cond,
2767 LocationSummary* locations,
2768 MipsLabel* label) {
2769 Register lhs = locations->InAt(0).AsRegister<Register>();
2770 Location rhs_location = locations->InAt(1);
2771 Register rhs_reg = ZERO;
2772 int32_t rhs_imm = 0;
2773 bool use_imm = rhs_location.IsConstant();
2774 if (use_imm) {
2775 rhs_imm = CodeGenerator::GetInt32ValueOf(rhs_location.GetConstant());
2776 } else {
2777 rhs_reg = rhs_location.AsRegister<Register>();
2778 }
2779
2780 if (use_imm && rhs_imm == 0) {
2781 switch (cond) {
2782 case kCondEQ:
2783 case kCondBE: // <= 0 if zero
2784 __ Beqz(lhs, label);
2785 break;
2786 case kCondNE:
2787 case kCondA: // > 0 if non-zero
2788 __ Bnez(lhs, label);
2789 break;
2790 case kCondLT:
2791 __ Bltz(lhs, label);
2792 break;
2793 case kCondGE:
2794 __ Bgez(lhs, label);
2795 break;
2796 case kCondLE:
2797 __ Blez(lhs, label);
2798 break;
2799 case kCondGT:
2800 __ Bgtz(lhs, label);
2801 break;
2802 case kCondB: // always false
2803 break;
2804 case kCondAE: // always true
2805 __ B(label);
2806 break;
2807 }
2808 } else {
2809 if (use_imm) {
2810 // TODO: more efficient comparison with 16-bit constants without loading them into TMP.
2811 rhs_reg = TMP;
2812 __ LoadConst32(rhs_reg, rhs_imm);
2813 }
2814 switch (cond) {
2815 case kCondEQ:
2816 __ Beq(lhs, rhs_reg, label);
2817 break;
2818 case kCondNE:
2819 __ Bne(lhs, rhs_reg, label);
2820 break;
2821 case kCondLT:
2822 __ Blt(lhs, rhs_reg, label);
2823 break;
2824 case kCondGE:
2825 __ Bge(lhs, rhs_reg, label);
2826 break;
2827 case kCondLE:
2828 __ Bge(rhs_reg, lhs, label);
2829 break;
2830 case kCondGT:
2831 __ Blt(rhs_reg, lhs, label);
2832 break;
2833 case kCondB:
2834 __ Bltu(lhs, rhs_reg, label);
2835 break;
2836 case kCondAE:
2837 __ Bgeu(lhs, rhs_reg, label);
2838 break;
2839 case kCondBE:
2840 __ Bgeu(rhs_reg, lhs, label);
2841 break;
2842 case kCondA:
2843 __ Bltu(rhs_reg, lhs, label);
2844 break;
2845 }
2846 }
2847}
2848
2849void InstructionCodeGeneratorMIPS::GenerateLongCompareAndBranch(IfCondition cond,
2850 LocationSummary* locations,
2851 MipsLabel* label) {
2852 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
2853 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
2854 Location rhs_location = locations->InAt(1);
2855 Register rhs_high = ZERO;
2856 Register rhs_low = ZERO;
2857 int64_t imm = 0;
2858 uint32_t imm_high = 0;
2859 uint32_t imm_low = 0;
2860 bool use_imm = rhs_location.IsConstant();
2861 if (use_imm) {
2862 imm = rhs_location.GetConstant()->AsLongConstant()->GetValue();
2863 imm_high = High32Bits(imm);
2864 imm_low = Low32Bits(imm);
2865 } else {
2866 rhs_high = rhs_location.AsRegisterPairHigh<Register>();
2867 rhs_low = rhs_location.AsRegisterPairLow<Register>();
2868 }
2869
2870 if (use_imm && imm == 0) {
2871 switch (cond) {
2872 case kCondEQ:
2873 case kCondBE: // <= 0 if zero
2874 __ Or(TMP, lhs_high, lhs_low);
2875 __ Beqz(TMP, label);
2876 break;
2877 case kCondNE:
2878 case kCondA: // > 0 if non-zero
2879 __ Or(TMP, lhs_high, lhs_low);
2880 __ Bnez(TMP, label);
2881 break;
2882 case kCondLT:
2883 __ Bltz(lhs_high, label);
2884 break;
2885 case kCondGE:
2886 __ Bgez(lhs_high, label);
2887 break;
2888 case kCondLE:
2889 __ Or(TMP, lhs_high, lhs_low);
2890 __ Sra(AT, lhs_high, 31);
2891 __ Bgeu(AT, TMP, label);
2892 break;
2893 case kCondGT:
2894 __ Or(TMP, lhs_high, lhs_low);
2895 __ Sra(AT, lhs_high, 31);
2896 __ Bltu(AT, TMP, label);
2897 break;
2898 case kCondB: // always false
2899 break;
2900 case kCondAE: // always true
2901 __ B(label);
2902 break;
2903 }
2904 } else if (use_imm) {
2905 // TODO: more efficient comparison with constants without loading them into TMP/AT.
2906 switch (cond) {
2907 case kCondEQ:
2908 __ LoadConst32(TMP, imm_high);
2909 __ Xor(TMP, TMP, lhs_high);
2910 __ LoadConst32(AT, imm_low);
2911 __ Xor(AT, AT, lhs_low);
2912 __ Or(TMP, TMP, AT);
2913 __ Beqz(TMP, label);
2914 break;
2915 case kCondNE:
2916 __ LoadConst32(TMP, imm_high);
2917 __ Xor(TMP, TMP, lhs_high);
2918 __ LoadConst32(AT, imm_low);
2919 __ Xor(AT, AT, lhs_low);
2920 __ Or(TMP, TMP, AT);
2921 __ Bnez(TMP, label);
2922 break;
2923 case kCondLT:
2924 __ LoadConst32(TMP, imm_high);
2925 __ Blt(lhs_high, TMP, label);
2926 __ Slt(TMP, TMP, lhs_high);
2927 __ LoadConst32(AT, imm_low);
2928 __ Sltu(AT, lhs_low, AT);
2929 __ Blt(TMP, AT, label);
2930 break;
2931 case kCondGE:
2932 __ LoadConst32(TMP, imm_high);
2933 __ Blt(TMP, lhs_high, label);
2934 __ Slt(TMP, lhs_high, TMP);
2935 __ LoadConst32(AT, imm_low);
2936 __ Sltu(AT, lhs_low, AT);
2937 __ Or(TMP, TMP, AT);
2938 __ Beqz(TMP, label);
2939 break;
2940 case kCondLE:
2941 __ LoadConst32(TMP, imm_high);
2942 __ Blt(lhs_high, TMP, label);
2943 __ Slt(TMP, TMP, lhs_high);
2944 __ LoadConst32(AT, imm_low);
2945 __ Sltu(AT, AT, lhs_low);
2946 __ Or(TMP, TMP, AT);
2947 __ Beqz(TMP, label);
2948 break;
2949 case kCondGT:
2950 __ LoadConst32(TMP, imm_high);
2951 __ Blt(TMP, lhs_high, label);
2952 __ Slt(TMP, lhs_high, TMP);
2953 __ LoadConst32(AT, imm_low);
2954 __ Sltu(AT, AT, lhs_low);
2955 __ Blt(TMP, AT, label);
2956 break;
2957 case kCondB:
2958 __ LoadConst32(TMP, imm_high);
2959 __ Bltu(lhs_high, TMP, label);
2960 __ Sltu(TMP, TMP, lhs_high);
2961 __ LoadConst32(AT, imm_low);
2962 __ Sltu(AT, lhs_low, AT);
2963 __ Blt(TMP, AT, label);
2964 break;
2965 case kCondAE:
2966 __ LoadConst32(TMP, imm_high);
2967 __ Bltu(TMP, lhs_high, label);
2968 __ Sltu(TMP, lhs_high, TMP);
2969 __ LoadConst32(AT, imm_low);
2970 __ Sltu(AT, lhs_low, AT);
2971 __ Or(TMP, TMP, AT);
2972 __ Beqz(TMP, label);
2973 break;
2974 case kCondBE:
2975 __ LoadConst32(TMP, imm_high);
2976 __ Bltu(lhs_high, TMP, label);
2977 __ Sltu(TMP, TMP, lhs_high);
2978 __ LoadConst32(AT, imm_low);
2979 __ Sltu(AT, AT, lhs_low);
2980 __ Or(TMP, TMP, AT);
2981 __ Beqz(TMP, label);
2982 break;
2983 case kCondA:
2984 __ LoadConst32(TMP, imm_high);
2985 __ Bltu(TMP, lhs_high, label);
2986 __ Sltu(TMP, lhs_high, TMP);
2987 __ LoadConst32(AT, imm_low);
2988 __ Sltu(AT, AT, lhs_low);
2989 __ Blt(TMP, AT, label);
2990 break;
2991 }
2992 } else {
2993 switch (cond) {
2994 case kCondEQ:
2995 __ Xor(TMP, lhs_high, rhs_high);
2996 __ Xor(AT, lhs_low, rhs_low);
2997 __ Or(TMP, TMP, AT);
2998 __ Beqz(TMP, label);
2999 break;
3000 case kCondNE:
3001 __ Xor(TMP, lhs_high, rhs_high);
3002 __ Xor(AT, lhs_low, rhs_low);
3003 __ Or(TMP, TMP, AT);
3004 __ Bnez(TMP, label);
3005 break;
3006 case kCondLT:
3007 __ Blt(lhs_high, rhs_high, label);
3008 __ Slt(TMP, rhs_high, lhs_high);
3009 __ Sltu(AT, lhs_low, rhs_low);
3010 __ Blt(TMP, AT, label);
3011 break;
3012 case kCondGE:
3013 __ Blt(rhs_high, lhs_high, label);
3014 __ Slt(TMP, lhs_high, rhs_high);
3015 __ Sltu(AT, lhs_low, rhs_low);
3016 __ Or(TMP, TMP, AT);
3017 __ Beqz(TMP, label);
3018 break;
3019 case kCondLE:
3020 __ Blt(lhs_high, rhs_high, label);
3021 __ Slt(TMP, rhs_high, lhs_high);
3022 __ Sltu(AT, rhs_low, lhs_low);
3023 __ Or(TMP, TMP, AT);
3024 __ Beqz(TMP, label);
3025 break;
3026 case kCondGT:
3027 __ Blt(rhs_high, lhs_high, label);
3028 __ Slt(TMP, lhs_high, rhs_high);
3029 __ Sltu(AT, rhs_low, lhs_low);
3030 __ Blt(TMP, AT, label);
3031 break;
3032 case kCondB:
3033 __ Bltu(lhs_high, rhs_high, label);
3034 __ Sltu(TMP, rhs_high, lhs_high);
3035 __ Sltu(AT, lhs_low, rhs_low);
3036 __ Blt(TMP, AT, label);
3037 break;
3038 case kCondAE:
3039 __ Bltu(rhs_high, lhs_high, label);
3040 __ Sltu(TMP, lhs_high, rhs_high);
3041 __ Sltu(AT, lhs_low, rhs_low);
3042 __ Or(TMP, TMP, AT);
3043 __ Beqz(TMP, label);
3044 break;
3045 case kCondBE:
3046 __ Bltu(lhs_high, rhs_high, label);
3047 __ Sltu(TMP, rhs_high, lhs_high);
3048 __ Sltu(AT, rhs_low, lhs_low);
3049 __ Or(TMP, TMP, AT);
3050 __ Beqz(TMP, label);
3051 break;
3052 case kCondA:
3053 __ Bltu(rhs_high, lhs_high, label);
3054 __ Sltu(TMP, lhs_high, rhs_high);
3055 __ Sltu(AT, rhs_low, lhs_low);
3056 __ Blt(TMP, AT, label);
3057 break;
3058 }
3059 }
3060}
3061
3062void InstructionCodeGeneratorMIPS::GenerateFpCompareAndBranch(IfCondition cond,
3063 bool gt_bias,
3064 Primitive::Type type,
3065 LocationSummary* locations,
3066 MipsLabel* label) {
3067 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
3068 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
3069 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
3070 if (type == Primitive::kPrimFloat) {
3071 if (isR6) {
3072 switch (cond) {
3073 case kCondEQ:
3074 __ CmpEqS(FTMP, lhs, rhs);
3075 __ Bc1nez(FTMP, label);
3076 break;
3077 case kCondNE:
3078 __ CmpEqS(FTMP, lhs, rhs);
3079 __ Bc1eqz(FTMP, label);
3080 break;
3081 case kCondLT:
3082 if (gt_bias) {
3083 __ CmpLtS(FTMP, lhs, rhs);
3084 } else {
3085 __ CmpUltS(FTMP, lhs, rhs);
3086 }
3087 __ Bc1nez(FTMP, label);
3088 break;
3089 case kCondLE:
3090 if (gt_bias) {
3091 __ CmpLeS(FTMP, lhs, rhs);
3092 } else {
3093 __ CmpUleS(FTMP, lhs, rhs);
3094 }
3095 __ Bc1nez(FTMP, label);
3096 break;
3097 case kCondGT:
3098 if (gt_bias) {
3099 __ CmpUltS(FTMP, rhs, lhs);
3100 } else {
3101 __ CmpLtS(FTMP, rhs, lhs);
3102 }
3103 __ Bc1nez(FTMP, label);
3104 break;
3105 case kCondGE:
3106 if (gt_bias) {
3107 __ CmpUleS(FTMP, rhs, lhs);
3108 } else {
3109 __ CmpLeS(FTMP, rhs, lhs);
3110 }
3111 __ Bc1nez(FTMP, label);
3112 break;
3113 default:
3114 LOG(FATAL) << "Unexpected non-floating-point condition";
3115 }
3116 } else {
3117 switch (cond) {
3118 case kCondEQ:
3119 __ CeqS(0, lhs, rhs);
3120 __ Bc1t(0, label);
3121 break;
3122 case kCondNE:
3123 __ CeqS(0, lhs, rhs);
3124 __ Bc1f(0, label);
3125 break;
3126 case kCondLT:
3127 if (gt_bias) {
3128 __ ColtS(0, lhs, rhs);
3129 } else {
3130 __ CultS(0, lhs, rhs);
3131 }
3132 __ Bc1t(0, label);
3133 break;
3134 case kCondLE:
3135 if (gt_bias) {
3136 __ ColeS(0, lhs, rhs);
3137 } else {
3138 __ CuleS(0, lhs, rhs);
3139 }
3140 __ Bc1t(0, label);
3141 break;
3142 case kCondGT:
3143 if (gt_bias) {
3144 __ CultS(0, rhs, lhs);
3145 } else {
3146 __ ColtS(0, rhs, lhs);
3147 }
3148 __ Bc1t(0, label);
3149 break;
3150 case kCondGE:
3151 if (gt_bias) {
3152 __ CuleS(0, rhs, lhs);
3153 } else {
3154 __ ColeS(0, rhs, lhs);
3155 }
3156 __ Bc1t(0, label);
3157 break;
3158 default:
3159 LOG(FATAL) << "Unexpected non-floating-point condition";
3160 }
3161 }
3162 } else {
3163 DCHECK_EQ(type, Primitive::kPrimDouble);
3164 if (isR6) {
3165 switch (cond) {
3166 case kCondEQ:
3167 __ CmpEqD(FTMP, lhs, rhs);
3168 __ Bc1nez(FTMP, label);
3169 break;
3170 case kCondNE:
3171 __ CmpEqD(FTMP, lhs, rhs);
3172 __ Bc1eqz(FTMP, label);
3173 break;
3174 case kCondLT:
3175 if (gt_bias) {
3176 __ CmpLtD(FTMP, lhs, rhs);
3177 } else {
3178 __ CmpUltD(FTMP, lhs, rhs);
3179 }
3180 __ Bc1nez(FTMP, label);
3181 break;
3182 case kCondLE:
3183 if (gt_bias) {
3184 __ CmpLeD(FTMP, lhs, rhs);
3185 } else {
3186 __ CmpUleD(FTMP, lhs, rhs);
3187 }
3188 __ Bc1nez(FTMP, label);
3189 break;
3190 case kCondGT:
3191 if (gt_bias) {
3192 __ CmpUltD(FTMP, rhs, lhs);
3193 } else {
3194 __ CmpLtD(FTMP, rhs, lhs);
3195 }
3196 __ Bc1nez(FTMP, label);
3197 break;
3198 case kCondGE:
3199 if (gt_bias) {
3200 __ CmpUleD(FTMP, rhs, lhs);
3201 } else {
3202 __ CmpLeD(FTMP, rhs, lhs);
3203 }
3204 __ Bc1nez(FTMP, label);
3205 break;
3206 default:
3207 LOG(FATAL) << "Unexpected non-floating-point condition";
3208 }
3209 } else {
3210 switch (cond) {
3211 case kCondEQ:
3212 __ CeqD(0, lhs, rhs);
3213 __ Bc1t(0, label);
3214 break;
3215 case kCondNE:
3216 __ CeqD(0, lhs, rhs);
3217 __ Bc1f(0, label);
3218 break;
3219 case kCondLT:
3220 if (gt_bias) {
3221 __ ColtD(0, lhs, rhs);
3222 } else {
3223 __ CultD(0, lhs, rhs);
3224 }
3225 __ Bc1t(0, label);
3226 break;
3227 case kCondLE:
3228 if (gt_bias) {
3229 __ ColeD(0, lhs, rhs);
3230 } else {
3231 __ CuleD(0, lhs, rhs);
3232 }
3233 __ Bc1t(0, label);
3234 break;
3235 case kCondGT:
3236 if (gt_bias) {
3237 __ CultD(0, rhs, lhs);
3238 } else {
3239 __ ColtD(0, rhs, lhs);
3240 }
3241 __ Bc1t(0, label);
3242 break;
3243 case kCondGE:
3244 if (gt_bias) {
3245 __ CuleD(0, rhs, lhs);
3246 } else {
3247 __ ColeD(0, rhs, lhs);
3248 }
3249 __ Bc1t(0, label);
3250 break;
3251 default:
3252 LOG(FATAL) << "Unexpected non-floating-point condition";
3253 }
3254 }
3255 }
3256}
3257
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003258void InstructionCodeGeneratorMIPS::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00003259 size_t condition_input_index,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003260 MipsLabel* true_target,
David Brazdil0debae72015-11-12 18:37:00 +00003261 MipsLabel* false_target) {
3262 HInstruction* cond = instruction->InputAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003263
David Brazdil0debae72015-11-12 18:37:00 +00003264 if (true_target == nullptr && false_target == nullptr) {
3265 // Nothing to do. The code always falls through.
3266 return;
3267 } else if (cond->IsIntConstant()) {
3268 // Constant condition, statically compared against 1.
3269 if (cond->AsIntConstant()->IsOne()) {
3270 if (true_target != nullptr) {
3271 __ B(true_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003272 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003273 } else {
David Brazdil0debae72015-11-12 18:37:00 +00003274 DCHECK(cond->AsIntConstant()->IsZero());
3275 if (false_target != nullptr) {
3276 __ B(false_target);
3277 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003278 }
David Brazdil0debae72015-11-12 18:37:00 +00003279 return;
3280 }
3281
3282 // The following code generates these patterns:
3283 // (1) true_target == nullptr && false_target != nullptr
3284 // - opposite condition true => branch to false_target
3285 // (2) true_target != nullptr && false_target == nullptr
3286 // - condition true => branch to true_target
3287 // (3) true_target != nullptr && false_target != nullptr
3288 // - condition true => branch to true_target
3289 // - branch to false_target
3290 if (IsBooleanValueOrMaterializedCondition(cond)) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003291 // The condition instruction has been materialized, compare the output to 0.
David Brazdil0debae72015-11-12 18:37:00 +00003292 Location cond_val = instruction->GetLocations()->InAt(condition_input_index);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003293 DCHECK(cond_val.IsRegister());
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003294 if (true_target == nullptr) {
David Brazdil0debae72015-11-12 18:37:00 +00003295 __ Beqz(cond_val.AsRegister<Register>(), false_target);
3296 } else {
3297 __ Bnez(cond_val.AsRegister<Register>(), true_target);
3298 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003299 } else {
3300 // The condition instruction has not been materialized, use its inputs as
3301 // the comparison and its condition as the branch condition.
David Brazdil0debae72015-11-12 18:37:00 +00003302 HCondition* condition = cond->AsCondition();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003303 Primitive::Type type = condition->InputAt(0)->GetType();
3304 LocationSummary* locations = cond->GetLocations();
3305 IfCondition if_cond = condition->GetCondition();
3306 MipsLabel* branch_target = true_target;
David Brazdil0debae72015-11-12 18:37:00 +00003307
David Brazdil0debae72015-11-12 18:37:00 +00003308 if (true_target == nullptr) {
3309 if_cond = condition->GetOppositeCondition();
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003310 branch_target = false_target;
David Brazdil0debae72015-11-12 18:37:00 +00003311 }
3312
Alexey Frunzecd7b0ee2015-12-03 16:46:38 -08003313 switch (type) {
3314 default:
3315 GenerateIntCompareAndBranch(if_cond, locations, branch_target);
3316 break;
3317 case Primitive::kPrimLong:
3318 GenerateLongCompareAndBranch(if_cond, locations, branch_target);
3319 break;
3320 case Primitive::kPrimFloat:
3321 case Primitive::kPrimDouble:
3322 GenerateFpCompareAndBranch(if_cond, condition->IsGtBias(), type, locations, branch_target);
3323 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003324 }
3325 }
David Brazdil0debae72015-11-12 18:37:00 +00003326
3327 // If neither branch falls through (case 3), the conditional branch to `true_target`
3328 // was already emitted (case 2) and we need to emit a jump to `false_target`.
3329 if (true_target != nullptr && false_target != nullptr) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003330 __ B(false_target);
3331 }
3332}
3333
3334void LocationsBuilderMIPS::VisitIf(HIf* if_instr) {
3335 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
David Brazdil0debae72015-11-12 18:37:00 +00003336 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003337 locations->SetInAt(0, Location::RequiresRegister());
3338 }
3339}
3340
3341void InstructionCodeGeneratorMIPS::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00003342 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
3343 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
3344 MipsLabel* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
3345 nullptr : codegen_->GetLabelOf(true_successor);
3346 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
3347 nullptr : codegen_->GetLabelOf(false_successor);
3348 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003349}
3350
3351void LocationsBuilderMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
3352 LocationSummary* locations = new (GetGraph()->GetArena())
3353 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
David Brazdil0debae72015-11-12 18:37:00 +00003354 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003355 locations->SetInAt(0, Location::RequiresRegister());
3356 }
3357}
3358
3359void InstructionCodeGeneratorMIPS::VisitDeoptimize(HDeoptimize* deoptimize) {
David Brazdil0debae72015-11-12 18:37:00 +00003360 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) DeoptimizationSlowPathMIPS(deoptimize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003361 codegen_->AddSlowPath(slow_path);
David Brazdil0debae72015-11-12 18:37:00 +00003362 GenerateTestAndBranch(deoptimize,
3363 /* condition_input_index */ 0,
3364 slow_path->GetEntryLabel(),
3365 /* false_target */ nullptr);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003366}
3367
David Srbecky0cf44932015-12-09 14:09:59 +00003368void LocationsBuilderMIPS::VisitNativeDebugInfo(HNativeDebugInfo* info) {
3369 new (GetGraph()->GetArena()) LocationSummary(info);
3370}
3371
3372void InstructionCodeGeneratorMIPS::VisitNativeDebugInfo(HNativeDebugInfo* info) {
David Srbeckyb7070a22016-01-08 18:13:53 +00003373 if (codegen_->HasStackMapAtCurrentPc()) {
3374 // Ensure that we do not collide with the stack map of the previous instruction.
3375 __ Nop();
3376 }
David Srbecky0cf44932015-12-09 14:09:59 +00003377 codegen_->RecordPcInfo(info, info->GetDexPc());
3378}
3379
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003380void LocationsBuilderMIPS::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
3381 Primitive::Type field_type = field_info.GetFieldType();
3382 bool is_wide = (field_type == Primitive::kPrimLong) || (field_type == Primitive::kPrimDouble);
3383 bool generate_volatile = field_info.IsVolatile() && is_wide;
3384 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3385 instruction, generate_volatile ? LocationSummary::kCall : LocationSummary::kNoCall);
3386
3387 locations->SetInAt(0, Location::RequiresRegister());
3388 if (generate_volatile) {
3389 InvokeRuntimeCallingConvention calling_convention;
3390 // need A0 to hold base + offset
3391 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3392 if (field_type == Primitive::kPrimLong) {
3393 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimLong));
3394 } else {
3395 locations->SetOut(Location::RequiresFpuRegister());
3396 // Need some temp core regs since FP results are returned in core registers
3397 Location reg = calling_convention.GetReturnLocation(Primitive::kPrimLong);
3398 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairLow<Register>()));
3399 locations->AddTemp(Location::RegisterLocation(reg.AsRegisterPairHigh<Register>()));
3400 }
3401 } else {
3402 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3403 locations->SetOut(Location::RequiresFpuRegister());
3404 } else {
3405 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3406 }
3407 }
3408}
3409
3410void InstructionCodeGeneratorMIPS::HandleFieldGet(HInstruction* instruction,
3411 const FieldInfo& field_info,
3412 uint32_t dex_pc) {
3413 Primitive::Type type = field_info.GetFieldType();
3414 LocationSummary* locations = instruction->GetLocations();
3415 Register obj = locations->InAt(0).AsRegister<Register>();
3416 LoadOperandType load_type = kLoadUnsignedByte;
3417 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003418 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003419
3420 switch (type) {
3421 case Primitive::kPrimBoolean:
3422 load_type = kLoadUnsignedByte;
3423 break;
3424 case Primitive::kPrimByte:
3425 load_type = kLoadSignedByte;
3426 break;
3427 case Primitive::kPrimShort:
3428 load_type = kLoadSignedHalfword;
3429 break;
3430 case Primitive::kPrimChar:
3431 load_type = kLoadUnsignedHalfword;
3432 break;
3433 case Primitive::kPrimInt:
3434 case Primitive::kPrimFloat:
3435 case Primitive::kPrimNot:
3436 load_type = kLoadWord;
3437 break;
3438 case Primitive::kPrimLong:
3439 case Primitive::kPrimDouble:
3440 load_type = kLoadDoubleword;
3441 break;
3442 case Primitive::kPrimVoid:
3443 LOG(FATAL) << "Unreachable type " << type;
3444 UNREACHABLE();
3445 }
3446
3447 if (is_volatile && load_type == kLoadDoubleword) {
3448 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003449 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003450 // Do implicit Null check
3451 __ Lw(ZERO, locations->GetTemp(0).AsRegister<Register>(), 0);
3452 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3453 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pA64Load),
3454 instruction,
3455 dex_pc,
3456 nullptr,
3457 IsDirectEntrypoint(kQuickA64Load));
3458 CheckEntrypointTypes<kQuickA64Load, int64_t, volatile const int64_t*>();
3459 if (type == Primitive::kPrimDouble) {
3460 // Need to move to FP regs since FP results are returned in core registers.
3461 __ Mtc1(locations->GetTemp(1).AsRegister<Register>(),
3462 locations->Out().AsFpuRegister<FRegister>());
3463 __ Mthc1(locations->GetTemp(2).AsRegister<Register>(),
3464 locations->Out().AsFpuRegister<FRegister>());
3465 }
3466 } else {
3467 if (!Primitive::IsFloatingPointType(type)) {
3468 Register dst;
3469 if (type == Primitive::kPrimLong) {
3470 DCHECK(locations->Out().IsRegisterPair());
3471 dst = locations->Out().AsRegisterPairLow<Register>();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003472 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
3473 if (obj == dst) {
3474 __ LoadFromOffset(kLoadWord, dst_high, obj, offset + kMipsWordSize);
3475 codegen_->MaybeRecordImplicitNullCheck(instruction);
3476 __ LoadFromOffset(kLoadWord, dst, obj, offset);
3477 } else {
3478 __ LoadFromOffset(kLoadWord, dst, obj, offset);
3479 codegen_->MaybeRecordImplicitNullCheck(instruction);
3480 __ LoadFromOffset(kLoadWord, dst_high, obj, offset + kMipsWordSize);
3481 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003482 } else {
3483 DCHECK(locations->Out().IsRegister());
3484 dst = locations->Out().AsRegister<Register>();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003485 __ LoadFromOffset(load_type, dst, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003486 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003487 } else {
3488 DCHECK(locations->Out().IsFpuRegister());
3489 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
3490 if (type == Primitive::kPrimFloat) {
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003491 __ LoadSFromOffset(dst, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003492 } else {
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003493 __ LoadDFromOffset(dst, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003494 }
3495 }
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003496 // Longs are handled earlier.
3497 if (type != Primitive::kPrimLong) {
3498 codegen_->MaybeRecordImplicitNullCheck(instruction);
3499 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003500 }
3501
3502 if (is_volatile) {
3503 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3504 }
3505}
3506
3507void LocationsBuilderMIPS::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
3508 Primitive::Type field_type = field_info.GetFieldType();
3509 bool is_wide = (field_type == Primitive::kPrimLong) || (field_type == Primitive::kPrimDouble);
3510 bool generate_volatile = field_info.IsVolatile() && is_wide;
3511 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3512 instruction, generate_volatile ? LocationSummary::kCall : LocationSummary::kNoCall);
3513
3514 locations->SetInAt(0, Location::RequiresRegister());
3515 if (generate_volatile) {
3516 InvokeRuntimeCallingConvention calling_convention;
3517 // need A0 to hold base + offset
3518 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3519 if (field_type == Primitive::kPrimLong) {
3520 locations->SetInAt(1, Location::RegisterPairLocation(
3521 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3522 } else {
3523 locations->SetInAt(1, Location::RequiresFpuRegister());
3524 // Pass FP parameters in core registers.
3525 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
3526 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(3)));
3527 }
3528 } else {
3529 if (Primitive::IsFloatingPointType(field_type)) {
3530 locations->SetInAt(1, Location::RequiresFpuRegister());
3531 } else {
3532 locations->SetInAt(1, Location::RequiresRegister());
3533 }
3534 }
3535}
3536
3537void InstructionCodeGeneratorMIPS::HandleFieldSet(HInstruction* instruction,
3538 const FieldInfo& field_info,
3539 uint32_t dex_pc) {
3540 Primitive::Type type = field_info.GetFieldType();
3541 LocationSummary* locations = instruction->GetLocations();
3542 Register obj = locations->InAt(0).AsRegister<Register>();
3543 StoreOperandType store_type = kStoreByte;
3544 bool is_volatile = field_info.IsVolatile();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003545 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003546
3547 switch (type) {
3548 case Primitive::kPrimBoolean:
3549 case Primitive::kPrimByte:
3550 store_type = kStoreByte;
3551 break;
3552 case Primitive::kPrimShort:
3553 case Primitive::kPrimChar:
3554 store_type = kStoreHalfword;
3555 break;
3556 case Primitive::kPrimInt:
3557 case Primitive::kPrimFloat:
3558 case Primitive::kPrimNot:
3559 store_type = kStoreWord;
3560 break;
3561 case Primitive::kPrimLong:
3562 case Primitive::kPrimDouble:
3563 store_type = kStoreDoubleword;
3564 break;
3565 case Primitive::kPrimVoid:
3566 LOG(FATAL) << "Unreachable type " << type;
3567 UNREACHABLE();
3568 }
3569
3570 if (is_volatile) {
3571 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
3572 }
3573
3574 if (is_volatile && store_type == kStoreDoubleword) {
3575 InvokeRuntimeCallingConvention calling_convention;
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003576 __ Addiu32(locations->GetTemp(0).AsRegister<Register>(), obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003577 // Do implicit Null check.
3578 __ Lw(ZERO, locations->GetTemp(0).AsRegister<Register>(), 0);
3579 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3580 if (type == Primitive::kPrimDouble) {
3581 // Pass FP parameters in core registers.
3582 __ Mfc1(locations->GetTemp(1).AsRegister<Register>(),
3583 locations->InAt(1).AsFpuRegister<FRegister>());
3584 __ Mfhc1(locations->GetTemp(2).AsRegister<Register>(),
3585 locations->InAt(1).AsFpuRegister<FRegister>());
3586 }
3587 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pA64Store),
3588 instruction,
3589 dex_pc,
3590 nullptr,
3591 IsDirectEntrypoint(kQuickA64Store));
3592 CheckEntrypointTypes<kQuickA64Store, void, volatile int64_t *, int64_t>();
3593 } else {
3594 if (!Primitive::IsFloatingPointType(type)) {
3595 Register src;
3596 if (type == Primitive::kPrimLong) {
3597 DCHECK(locations->InAt(1).IsRegisterPair());
3598 src = locations->InAt(1).AsRegisterPairLow<Register>();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003599 Register src_high = locations->InAt(1).AsRegisterPairHigh<Register>();
3600 __ StoreToOffset(kStoreWord, src, obj, offset);
3601 codegen_->MaybeRecordImplicitNullCheck(instruction);
3602 __ StoreToOffset(kStoreWord, src_high, obj, offset + kMipsWordSize);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003603 } else {
3604 DCHECK(locations->InAt(1).IsRegister());
3605 src = locations->InAt(1).AsRegister<Register>();
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003606 __ StoreToOffset(store_type, src, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003607 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003608 } else {
3609 DCHECK(locations->InAt(1).IsFpuRegister());
3610 FRegister src = locations->InAt(1).AsFpuRegister<FRegister>();
3611 if (type == Primitive::kPrimFloat) {
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003612 __ StoreSToOffset(src, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003613 } else {
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003614 __ StoreDToOffset(src, obj, offset);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003615 }
3616 }
Goran Jakovljevic73a42652015-11-20 17:22:57 +01003617 // Longs are handled earlier.
3618 if (type != Primitive::kPrimLong) {
3619 codegen_->MaybeRecordImplicitNullCheck(instruction);
3620 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003621 }
3622
3623 // TODO: memory barriers?
3624 if (CodeGenerator::StoreNeedsWriteBarrier(type, instruction->InputAt(1))) {
3625 DCHECK(locations->InAt(1).IsRegister());
3626 Register src = locations->InAt(1).AsRegister<Register>();
3627 codegen_->MarkGCCard(obj, src);
3628 }
3629
3630 if (is_volatile) {
3631 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
3632 }
3633}
3634
3635void LocationsBuilderMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3636 HandleFieldGet(instruction, instruction->GetFieldInfo());
3637}
3638
3639void InstructionCodeGeneratorMIPS::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3640 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
3641}
3642
3643void LocationsBuilderMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3644 HandleFieldSet(instruction, instruction->GetFieldInfo());
3645}
3646
3647void InstructionCodeGeneratorMIPS::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3648 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
3649}
3650
3651void LocationsBuilderMIPS::VisitInstanceOf(HInstanceOf* instruction) {
3652 LocationSummary::CallKind call_kind =
3653 instruction->IsExactCheck() ? LocationSummary::kNoCall : LocationSummary::kCallOnSlowPath;
3654 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3655 locations->SetInAt(0, Location::RequiresRegister());
3656 locations->SetInAt(1, Location::RequiresRegister());
3657 // The output does overlap inputs.
3658 // Note that TypeCheckSlowPathMIPS uses this register too.
3659 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3660}
3661
3662void InstructionCodeGeneratorMIPS::VisitInstanceOf(HInstanceOf* instruction) {
3663 LocationSummary* locations = instruction->GetLocations();
3664 Register obj = locations->InAt(0).AsRegister<Register>();
3665 Register cls = locations->InAt(1).AsRegister<Register>();
3666 Register out = locations->Out().AsRegister<Register>();
3667
3668 MipsLabel done;
3669
3670 // Return 0 if `obj` is null.
3671 // TODO: Avoid this check if we know `obj` is not null.
3672 __ Move(out, ZERO);
3673 __ Beqz(obj, &done);
3674
3675 // Compare the class of `obj` with `cls`.
3676 __ LoadFromOffset(kLoadWord, out, obj, mirror::Object::ClassOffset().Int32Value());
3677 if (instruction->IsExactCheck()) {
3678 // Classes must be equal for the instanceof to succeed.
3679 __ Xor(out, out, cls);
3680 __ Sltiu(out, out, 1);
3681 } else {
3682 // If the classes are not equal, we go into a slow path.
3683 DCHECK(locations->OnlyCallsOnSlowPath());
3684 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathMIPS(instruction);
3685 codegen_->AddSlowPath(slow_path);
3686 __ Bne(out, cls, slow_path->GetEntryLabel());
3687 __ LoadConst32(out, 1);
3688 __ Bind(slow_path->GetExitLabel());
3689 }
3690
3691 __ Bind(&done);
3692}
3693
3694void LocationsBuilderMIPS::VisitIntConstant(HIntConstant* constant) {
3695 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3696 locations->SetOut(Location::ConstantLocation(constant));
3697}
3698
3699void InstructionCodeGeneratorMIPS::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
3700 // Will be generated at use site.
3701}
3702
3703void LocationsBuilderMIPS::VisitNullConstant(HNullConstant* constant) {
3704 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3705 locations->SetOut(Location::ConstantLocation(constant));
3706}
3707
3708void InstructionCodeGeneratorMIPS::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
3709 // Will be generated at use site.
3710}
3711
3712void LocationsBuilderMIPS::HandleInvoke(HInvoke* invoke) {
3713 InvokeDexCallingConventionVisitorMIPS calling_convention_visitor;
3714 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
3715}
3716
3717void LocationsBuilderMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
3718 HandleInvoke(invoke);
3719 // The register T0 is required to be used for the hidden argument in
3720 // art_quick_imt_conflict_trampoline, so add the hidden argument.
3721 invoke->GetLocations()->AddTemp(Location::RegisterLocation(T0));
3722}
3723
3724void InstructionCodeGeneratorMIPS::VisitInvokeInterface(HInvokeInterface* invoke) {
3725 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
3726 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
3727 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
3728 invoke->GetImtIndex() % mirror::Class::kImtSize, kMipsPointerSize).Uint32Value();
3729 Location receiver = invoke->GetLocations()->InAt(0);
3730 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3731 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsWordSize);
3732
3733 // Set the hidden argument.
3734 __ LoadConst32(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
3735 invoke->GetDexMethodIndex());
3736
3737 // temp = object->GetClass();
3738 if (receiver.IsStackSlot()) {
3739 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
3740 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
3741 } else {
3742 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
3743 }
3744 codegen_->MaybeRecordImplicitNullCheck(invoke);
3745 // temp = temp->GetImtEntryAt(method_offset);
3746 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
3747 // T9 = temp->GetEntryPoint();
3748 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
3749 // T9();
3750 __ Jalr(T9);
3751 __ Nop();
3752 DCHECK(!codegen_->IsLeafMethod());
3753 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3754}
3755
3756void LocationsBuilderMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Chris Larsen701566a2015-10-27 15:29:13 -07003757 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
3758 if (intrinsic.TryDispatch(invoke)) {
3759 return;
3760 }
3761
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003762 HandleInvoke(invoke);
3763}
3764
3765void LocationsBuilderMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
3766 // When we do not run baseline, explicit clinit checks triggered by static
3767 // invokes must have been pruned by art::PrepareForRegisterAllocation.
3768 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
3769
Chris Larsen701566a2015-10-27 15:29:13 -07003770 IntrinsicLocationsBuilderMIPS intrinsic(codegen_);
3771 if (intrinsic.TryDispatch(invoke)) {
3772 return;
3773 }
3774
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003775 HandleInvoke(invoke);
3776}
3777
Chris Larsen701566a2015-10-27 15:29:13 -07003778static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorMIPS* codegen) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003779 if (invoke->GetLocations()->Intrinsified()) {
Chris Larsen701566a2015-10-27 15:29:13 -07003780 IntrinsicCodeGeneratorMIPS intrinsic(codegen);
3781 intrinsic.Dispatch(invoke);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003782 return true;
3783 }
3784 return false;
3785}
3786
Vladimir Markodc151b22015-10-15 18:02:30 +01003787HInvokeStaticOrDirect::DispatchInfo CodeGeneratorMIPS::GetSupportedInvokeStaticOrDirectDispatch(
3788 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
3789 MethodReference target_method ATTRIBUTE_UNUSED) {
3790 switch (desired_dispatch_info.method_load_kind) {
3791 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
3792 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
3793 // TODO: Implement these types. For the moment, we fall back to kDexCacheViaMethod.
3794 return HInvokeStaticOrDirect::DispatchInfo {
3795 HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod,
3796 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
3797 0u,
3798 0u
3799 };
3800 default:
3801 break;
3802 }
3803 switch (desired_dispatch_info.code_ptr_location) {
3804 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
3805 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative:
3806 // TODO: Implement these types. For the moment, we fall back to kCallArtMethod.
3807 return HInvokeStaticOrDirect::DispatchInfo {
3808 desired_dispatch_info.method_load_kind,
3809 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
3810 desired_dispatch_info.method_load_data,
3811 0u
3812 };
3813 default:
3814 return desired_dispatch_info;
3815 }
3816}
3817
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003818void CodeGeneratorMIPS::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
3819 // All registers are assumed to be correctly set up per the calling convention.
3820
3821 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
3822 switch (invoke->GetMethodLoadKind()) {
3823 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
3824 // temp = thread->string_init_entrypoint
3825 __ LoadFromOffset(kLoadWord,
3826 temp.AsRegister<Register>(),
3827 TR,
3828 invoke->GetStringInitOffset());
3829 break;
3830 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00003831 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003832 break;
3833 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
3834 __ LoadConst32(temp.AsRegister<Register>(), invoke->GetMethodAddress());
3835 break;
3836 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003837 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
Vladimir Markodc151b22015-10-15 18:02:30 +01003838 // TODO: Implement these types.
3839 // Currently filtered out by GetSupportedInvokeStaticOrDirectDispatch().
3840 LOG(FATAL) << "Unsupported";
3841 UNREACHABLE();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003842 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
Vladimir Markoc53c0792015-11-19 15:48:33 +00003843 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003844 Register reg = temp.AsRegister<Register>();
3845 Register method_reg;
3846 if (current_method.IsRegister()) {
3847 method_reg = current_method.AsRegister<Register>();
3848 } else {
3849 // TODO: use the appropriate DCHECK() here if possible.
3850 // DCHECK(invoke->GetLocations()->Intrinsified());
3851 DCHECK(!current_method.IsValid());
3852 method_reg = reg;
3853 __ Lw(reg, SP, kCurrentMethodStackOffset);
3854 }
3855
3856 // temp = temp->dex_cache_resolved_methods_;
3857 __ LoadFromOffset(kLoadWord,
3858 reg,
3859 method_reg,
3860 ArtMethod::DexCacheResolvedMethodsOffset(kMipsPointerSize).Int32Value());
3861 // temp = temp[index_in_cache]
3862 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
3863 __ LoadFromOffset(kLoadWord,
3864 reg,
3865 reg,
3866 CodeGenerator::GetCachePointerOffset(index_in_cache));
3867 break;
3868 }
3869 }
3870
3871 switch (invoke->GetCodePtrLocation()) {
3872 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
3873 __ Jalr(&frame_entry_label_, T9);
3874 break;
3875 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
3876 // LR = invoke->GetDirectCodePtr();
3877 __ LoadConst32(T9, invoke->GetDirectCodePtr());
3878 // LR()
3879 __ Jalr(T9);
3880 __ Nop();
3881 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003882 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
Vladimir Markodc151b22015-10-15 18:02:30 +01003883 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative:
3884 // TODO: Implement these types.
3885 // Currently filtered out by GetSupportedInvokeStaticOrDirectDispatch().
3886 LOG(FATAL) << "Unsupported";
3887 UNREACHABLE();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003888 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
3889 // T9 = callee_method->entry_point_from_quick_compiled_code_;
Goran Jakovljevic1a878372015-10-26 14:28:52 +01003890 __ LoadFromOffset(kLoadWord,
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003891 T9,
3892 callee_method.AsRegister<Register>(),
3893 ArtMethod::EntryPointFromQuickCompiledCodeOffset(
3894 kMipsWordSize).Int32Value());
3895 // T9()
3896 __ Jalr(T9);
3897 __ Nop();
3898 break;
3899 }
3900 DCHECK(!IsLeafMethod());
3901}
3902
3903void InstructionCodeGeneratorMIPS::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
3904 // When we do not run baseline, explicit clinit checks triggered by static
3905 // invokes must have been pruned by art::PrepareForRegisterAllocation.
3906 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
3907
3908 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3909 return;
3910 }
3911
3912 LocationSummary* locations = invoke->GetLocations();
3913 codegen_->GenerateStaticOrDirectCall(invoke,
3914 locations->HasTemps()
3915 ? locations->GetTemp(0)
3916 : Location::NoLocation());
3917 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3918}
3919
3920void InstructionCodeGeneratorMIPS::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Chris Larsen701566a2015-10-27 15:29:13 -07003921 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3922 return;
3923 }
3924
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003925 LocationSummary* locations = invoke->GetLocations();
3926 Location receiver = locations->InAt(0);
3927 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
3928 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
3929 invoke->GetVTableIndex(), kMipsPointerSize).SizeValue();
3930 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3931 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsWordSize);
3932
3933 // temp = object->GetClass();
3934 if (receiver.IsStackSlot()) {
3935 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
3936 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
3937 } else {
3938 DCHECK(receiver.IsRegister());
3939 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
3940 }
3941 codegen_->MaybeRecordImplicitNullCheck(invoke);
3942 // temp = temp->GetMethodAt(method_offset);
3943 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
3944 // T9 = temp->GetEntryPoint();
3945 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
3946 // T9();
3947 __ Jalr(T9);
3948 __ Nop();
3949 DCHECK(!codegen_->IsLeafMethod());
3950 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3951}
3952
3953void LocationsBuilderMIPS::VisitLoadClass(HLoadClass* cls) {
Pavle Batutae87a7182015-10-28 13:10:42 +01003954 InvokeRuntimeCallingConvention calling_convention;
3955 CodeGenerator::CreateLoadClassLocationSummary(
3956 cls,
3957 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
3958 Location::RegisterLocation(V0));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003959}
3960
3961void InstructionCodeGeneratorMIPS::VisitLoadClass(HLoadClass* cls) {
3962 LocationSummary* locations = cls->GetLocations();
Pavle Batutae87a7182015-10-28 13:10:42 +01003963 if (cls->NeedsAccessCheck()) {
3964 codegen_->MoveConstant(locations->GetTemp(0), cls->GetTypeIndex());
3965 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
3966 cls,
3967 cls->GetDexPc(),
3968 nullptr,
3969 IsDirectEntrypoint(kQuickInitializeTypeAndVerifyAccess));
Roland Levillain888d0672015-11-23 18:53:50 +00003970 CheckEntrypointTypes<kQuickInitializeTypeAndVerifyAccess, void*, uint32_t>();
Pavle Batutae87a7182015-10-28 13:10:42 +01003971 return;
3972 }
3973
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003974 Register out = locations->Out().AsRegister<Register>();
3975 Register current_method = locations->InAt(0).AsRegister<Register>();
3976 if (cls->IsReferrersClass()) {
3977 DCHECK(!cls->CanCallRuntime());
3978 DCHECK(!cls->MustGenerateClinitCheck());
3979 __ LoadFromOffset(kLoadWord, out, current_method,
3980 ArtMethod::DeclaringClassOffset().Int32Value());
3981 } else {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02003982 __ LoadFromOffset(kLoadWord, out, current_method,
3983 ArtMethod::DexCacheResolvedTypesOffset(kMipsPointerSize).Int32Value());
3984 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00003985
3986 if (!cls->IsInDexCache() || cls->MustGenerateClinitCheck()) {
3987 DCHECK(cls->CanCallRuntime());
3988 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathMIPS(
3989 cls,
3990 cls,
3991 cls->GetDexPc(),
3992 cls->MustGenerateClinitCheck());
3993 codegen_->AddSlowPath(slow_path);
3994 if (!cls->IsInDexCache()) {
3995 __ Beqz(out, slow_path->GetEntryLabel());
3996 }
3997 if (cls->MustGenerateClinitCheck()) {
3998 GenerateClassInitializationCheck(slow_path, out);
3999 } else {
4000 __ Bind(slow_path->GetExitLabel());
4001 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004002 }
4003 }
4004}
4005
4006static int32_t GetExceptionTlsOffset() {
4007 return Thread::ExceptionOffset<kMipsWordSize>().Int32Value();
4008}
4009
4010void LocationsBuilderMIPS::VisitLoadException(HLoadException* load) {
4011 LocationSummary* locations =
4012 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
4013 locations->SetOut(Location::RequiresRegister());
4014}
4015
4016void InstructionCodeGeneratorMIPS::VisitLoadException(HLoadException* load) {
4017 Register out = load->GetLocations()->Out().AsRegister<Register>();
4018 __ LoadFromOffset(kLoadWord, out, TR, GetExceptionTlsOffset());
4019}
4020
4021void LocationsBuilderMIPS::VisitClearException(HClearException* clear) {
4022 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
4023}
4024
4025void InstructionCodeGeneratorMIPS::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
4026 __ StoreToOffset(kStoreWord, ZERO, TR, GetExceptionTlsOffset());
4027}
4028
4029void LocationsBuilderMIPS::VisitLoadLocal(HLoadLocal* load) {
4030 load->SetLocations(nullptr);
4031}
4032
4033void InstructionCodeGeneratorMIPS::VisitLoadLocal(HLoadLocal* load ATTRIBUTE_UNUSED) {
4034 // Nothing to do, this is driven by the code generator.
4035}
4036
4037void LocationsBuilderMIPS::VisitLoadString(HLoadString* load) {
Roland Levillain698fa972015-12-16 17:06:47 +00004038 LocationSummary::CallKind call_kind = load->IsInDexCache()
4039 ? LocationSummary::kNoCall
4040 : LocationSummary::kCallOnSlowPath;
Nicolas Geoffray917d0162015-11-24 18:25:35 +00004041 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(load, call_kind);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004042 locations->SetInAt(0, Location::RequiresRegister());
4043 locations->SetOut(Location::RequiresRegister());
4044}
4045
4046void InstructionCodeGeneratorMIPS::VisitLoadString(HLoadString* load) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004047 LocationSummary* locations = load->GetLocations();
4048 Register out = locations->Out().AsRegister<Register>();
4049 Register current_method = locations->InAt(0).AsRegister<Register>();
4050 __ LoadFromOffset(kLoadWord, out, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
4051 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
4052 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
Nicolas Geoffray917d0162015-11-24 18:25:35 +00004053
4054 if (!load->IsInDexCache()) {
4055 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathMIPS(load);
4056 codegen_->AddSlowPath(slow_path);
4057 __ Beqz(out, slow_path->GetEntryLabel());
4058 __ Bind(slow_path->GetExitLabel());
4059 }
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004060}
4061
4062void LocationsBuilderMIPS::VisitLocal(HLocal* local) {
4063 local->SetLocations(nullptr);
4064}
4065
4066void InstructionCodeGeneratorMIPS::VisitLocal(HLocal* local) {
4067 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
4068}
4069
4070void LocationsBuilderMIPS::VisitLongConstant(HLongConstant* constant) {
4071 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
4072 locations->SetOut(Location::ConstantLocation(constant));
4073}
4074
4075void InstructionCodeGeneratorMIPS::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
4076 // Will be generated at use site.
4077}
4078
4079void LocationsBuilderMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
4080 LocationSummary* locations =
4081 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4082 InvokeRuntimeCallingConvention calling_convention;
4083 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4084}
4085
4086void InstructionCodeGeneratorMIPS::VisitMonitorOperation(HMonitorOperation* instruction) {
4087 if (instruction->IsEnter()) {
4088 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLockObject),
4089 instruction,
4090 instruction->GetDexPc(),
4091 nullptr,
4092 IsDirectEntrypoint(kQuickLockObject));
4093 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
4094 } else {
4095 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pUnlockObject),
4096 instruction,
4097 instruction->GetDexPc(),
4098 nullptr,
4099 IsDirectEntrypoint(kQuickUnlockObject));
4100 }
4101 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
4102}
4103
4104void LocationsBuilderMIPS::VisitMul(HMul* mul) {
4105 LocationSummary* locations =
4106 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
4107 switch (mul->GetResultType()) {
4108 case Primitive::kPrimInt:
4109 case Primitive::kPrimLong:
4110 locations->SetInAt(0, Location::RequiresRegister());
4111 locations->SetInAt(1, Location::RequiresRegister());
4112 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4113 break;
4114
4115 case Primitive::kPrimFloat:
4116 case Primitive::kPrimDouble:
4117 locations->SetInAt(0, Location::RequiresFpuRegister());
4118 locations->SetInAt(1, Location::RequiresFpuRegister());
4119 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4120 break;
4121
4122 default:
4123 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
4124 }
4125}
4126
4127void InstructionCodeGeneratorMIPS::VisitMul(HMul* instruction) {
4128 Primitive::Type type = instruction->GetType();
4129 LocationSummary* locations = instruction->GetLocations();
4130 bool isR6 = codegen_->GetInstructionSetFeatures().IsR6();
4131
4132 switch (type) {
4133 case Primitive::kPrimInt: {
4134 Register dst = locations->Out().AsRegister<Register>();
4135 Register lhs = locations->InAt(0).AsRegister<Register>();
4136 Register rhs = locations->InAt(1).AsRegister<Register>();
4137
4138 if (isR6) {
4139 __ MulR6(dst, lhs, rhs);
4140 } else {
4141 __ MulR2(dst, lhs, rhs);
4142 }
4143 break;
4144 }
4145 case Primitive::kPrimLong: {
4146 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
4147 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
4148 Register lhs_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4149 Register lhs_low = locations->InAt(0).AsRegisterPairLow<Register>();
4150 Register rhs_high = locations->InAt(1).AsRegisterPairHigh<Register>();
4151 Register rhs_low = locations->InAt(1).AsRegisterPairLow<Register>();
4152
4153 // Extra checks to protect caused by the existance of A1_A2.
4154 // The algorithm is wrong if dst_high is either lhs_lo or rhs_lo:
4155 // (e.g. lhs=a0_a1, rhs=a2_a3 and dst=a1_a2).
4156 DCHECK_NE(dst_high, lhs_low);
4157 DCHECK_NE(dst_high, rhs_low);
4158
4159 // A_B * C_D
4160 // dst_hi: [ low(A*D) + low(B*C) + hi(B*D) ]
4161 // dst_lo: [ low(B*D) ]
4162 // Note: R2 and R6 MUL produce the low 32 bit of the multiplication result.
4163
4164 if (isR6) {
4165 __ MulR6(TMP, lhs_high, rhs_low);
4166 __ MulR6(dst_high, lhs_low, rhs_high);
4167 __ Addu(dst_high, dst_high, TMP);
4168 __ MuhuR6(TMP, lhs_low, rhs_low);
4169 __ Addu(dst_high, dst_high, TMP);
4170 __ MulR6(dst_low, lhs_low, rhs_low);
4171 } else {
4172 __ MulR2(TMP, lhs_high, rhs_low);
4173 __ MulR2(dst_high, lhs_low, rhs_high);
4174 __ Addu(dst_high, dst_high, TMP);
4175 __ MultuR2(lhs_low, rhs_low);
4176 __ Mfhi(TMP);
4177 __ Addu(dst_high, dst_high, TMP);
4178 __ Mflo(dst_low);
4179 }
4180 break;
4181 }
4182 case Primitive::kPrimFloat:
4183 case Primitive::kPrimDouble: {
4184 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
4185 FRegister lhs = locations->InAt(0).AsFpuRegister<FRegister>();
4186 FRegister rhs = locations->InAt(1).AsFpuRegister<FRegister>();
4187 if (type == Primitive::kPrimFloat) {
4188 __ MulS(dst, lhs, rhs);
4189 } else {
4190 __ MulD(dst, lhs, rhs);
4191 }
4192 break;
4193 }
4194 default:
4195 LOG(FATAL) << "Unexpected mul type " << type;
4196 }
4197}
4198
4199void LocationsBuilderMIPS::VisitNeg(HNeg* neg) {
4200 LocationSummary* locations =
4201 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
4202 switch (neg->GetResultType()) {
4203 case Primitive::kPrimInt:
4204 case Primitive::kPrimLong:
4205 locations->SetInAt(0, Location::RequiresRegister());
4206 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4207 break;
4208
4209 case Primitive::kPrimFloat:
4210 case Primitive::kPrimDouble:
4211 locations->SetInAt(0, Location::RequiresFpuRegister());
4212 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4213 break;
4214
4215 default:
4216 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
4217 }
4218}
4219
4220void InstructionCodeGeneratorMIPS::VisitNeg(HNeg* instruction) {
4221 Primitive::Type type = instruction->GetType();
4222 LocationSummary* locations = instruction->GetLocations();
4223
4224 switch (type) {
4225 case Primitive::kPrimInt: {
4226 Register dst = locations->Out().AsRegister<Register>();
4227 Register src = locations->InAt(0).AsRegister<Register>();
4228 __ Subu(dst, ZERO, src);
4229 break;
4230 }
4231 case Primitive::kPrimLong: {
4232 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
4233 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
4234 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4235 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
4236 __ Subu(dst_low, ZERO, src_low);
4237 __ Sltu(TMP, ZERO, dst_low);
4238 __ Subu(dst_high, ZERO, src_high);
4239 __ Subu(dst_high, dst_high, TMP);
4240 break;
4241 }
4242 case Primitive::kPrimFloat:
4243 case Primitive::kPrimDouble: {
4244 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
4245 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
4246 if (type == Primitive::kPrimFloat) {
4247 __ NegS(dst, src);
4248 } else {
4249 __ NegD(dst, src);
4250 }
4251 break;
4252 }
4253 default:
4254 LOG(FATAL) << "Unexpected neg type " << type;
4255 }
4256}
4257
4258void LocationsBuilderMIPS::VisitNewArray(HNewArray* instruction) {
4259 LocationSummary* locations =
4260 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4261 InvokeRuntimeCallingConvention calling_convention;
4262 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4263 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
4264 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
4265 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
4266}
4267
4268void InstructionCodeGeneratorMIPS::VisitNewArray(HNewArray* instruction) {
4269 InvokeRuntimeCallingConvention calling_convention;
4270 Register current_method_register = calling_convention.GetRegisterAt(2);
4271 __ Lw(current_method_register, SP, kCurrentMethodStackOffset);
4272 // Move an uint16_t value to a register.
4273 __ LoadConst32(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
4274 codegen_->InvokeRuntime(
4275 GetThreadOffset<kMipsWordSize>(instruction->GetEntrypoint()).Int32Value(),
4276 instruction,
4277 instruction->GetDexPc(),
4278 nullptr,
4279 IsDirectEntrypoint(kQuickAllocArrayWithAccessCheck));
4280 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
4281 void*, uint32_t, int32_t, ArtMethod*>();
4282}
4283
4284void LocationsBuilderMIPS::VisitNewInstance(HNewInstance* instruction) {
4285 LocationSummary* locations =
4286 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4287 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray729645a2015-11-19 13:29:02 +00004288 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4289 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004290 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
4291}
4292
4293void InstructionCodeGeneratorMIPS::VisitNewInstance(HNewInstance* instruction) {
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004294 codegen_->InvokeRuntime(
4295 GetThreadOffset<kMipsWordSize>(instruction->GetEntrypoint()).Int32Value(),
4296 instruction,
4297 instruction->GetDexPc(),
4298 nullptr,
4299 IsDirectEntrypoint(kQuickAllocObjectWithAccessCheck));
4300 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
4301}
4302
4303void LocationsBuilderMIPS::VisitNot(HNot* instruction) {
4304 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4305 locations->SetInAt(0, Location::RequiresRegister());
4306 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4307}
4308
4309void InstructionCodeGeneratorMIPS::VisitNot(HNot* instruction) {
4310 Primitive::Type type = instruction->GetType();
4311 LocationSummary* locations = instruction->GetLocations();
4312
4313 switch (type) {
4314 case Primitive::kPrimInt: {
4315 Register dst = locations->Out().AsRegister<Register>();
4316 Register src = locations->InAt(0).AsRegister<Register>();
4317 __ Nor(dst, src, ZERO);
4318 break;
4319 }
4320
4321 case Primitive::kPrimLong: {
4322 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
4323 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
4324 Register src_high = locations->InAt(0).AsRegisterPairHigh<Register>();
4325 Register src_low = locations->InAt(0).AsRegisterPairLow<Register>();
4326 __ Nor(dst_high, src_high, ZERO);
4327 __ Nor(dst_low, src_low, ZERO);
4328 break;
4329 }
4330
4331 default:
4332 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
4333 }
4334}
4335
4336void LocationsBuilderMIPS::VisitBooleanNot(HBooleanNot* instruction) {
4337 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4338 locations->SetInAt(0, Location::RequiresRegister());
4339 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4340}
4341
4342void InstructionCodeGeneratorMIPS::VisitBooleanNot(HBooleanNot* instruction) {
4343 LocationSummary* locations = instruction->GetLocations();
4344 __ Xori(locations->Out().AsRegister<Register>(),
4345 locations->InAt(0).AsRegister<Register>(),
4346 1);
4347}
4348
4349void LocationsBuilderMIPS::VisitNullCheck(HNullCheck* instruction) {
4350 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
4351 ? LocationSummary::kCallOnSlowPath
4352 : LocationSummary::kNoCall;
4353 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
4354 locations->SetInAt(0, Location::RequiresRegister());
4355 if (instruction->HasUses()) {
4356 locations->SetOut(Location::SameAsFirstInput());
4357 }
4358}
4359
4360void InstructionCodeGeneratorMIPS::GenerateImplicitNullCheck(HNullCheck* instruction) {
4361 if (codegen_->CanMoveNullCheckToUser(instruction)) {
4362 return;
4363 }
4364 Location obj = instruction->GetLocations()->InAt(0);
4365
4366 __ Lw(ZERO, obj.AsRegister<Register>(), 0);
4367 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4368}
4369
4370void InstructionCodeGeneratorMIPS::GenerateExplicitNullCheck(HNullCheck* instruction) {
4371 SlowPathCodeMIPS* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathMIPS(instruction);
4372 codegen_->AddSlowPath(slow_path);
4373
4374 Location obj = instruction->GetLocations()->InAt(0);
4375
4376 __ Beqz(obj.AsRegister<Register>(), slow_path->GetEntryLabel());
4377}
4378
4379void InstructionCodeGeneratorMIPS::VisitNullCheck(HNullCheck* instruction) {
4380 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
4381 GenerateImplicitNullCheck(instruction);
4382 } else {
4383 GenerateExplicitNullCheck(instruction);
4384 }
4385}
4386
4387void LocationsBuilderMIPS::VisitOr(HOr* instruction) {
4388 HandleBinaryOp(instruction);
4389}
4390
4391void InstructionCodeGeneratorMIPS::VisitOr(HOr* instruction) {
4392 HandleBinaryOp(instruction);
4393}
4394
4395void LocationsBuilderMIPS::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
4396 LOG(FATAL) << "Unreachable";
4397}
4398
4399void InstructionCodeGeneratorMIPS::VisitParallelMove(HParallelMove* instruction) {
4400 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
4401}
4402
4403void LocationsBuilderMIPS::VisitParameterValue(HParameterValue* instruction) {
4404 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4405 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
4406 if (location.IsStackSlot()) {
4407 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4408 } else if (location.IsDoubleStackSlot()) {
4409 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4410 }
4411 locations->SetOut(location);
4412}
4413
4414void InstructionCodeGeneratorMIPS::VisitParameterValue(HParameterValue* instruction
4415 ATTRIBUTE_UNUSED) {
4416 // Nothing to do, the parameter is already at its location.
4417}
4418
4419void LocationsBuilderMIPS::VisitCurrentMethod(HCurrentMethod* instruction) {
4420 LocationSummary* locations =
4421 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4422 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
4423}
4424
4425void InstructionCodeGeneratorMIPS::VisitCurrentMethod(HCurrentMethod* instruction
4426 ATTRIBUTE_UNUSED) {
4427 // Nothing to do, the method is already at its location.
4428}
4429
4430void LocationsBuilderMIPS::VisitPhi(HPhi* instruction) {
4431 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4432 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
4433 locations->SetInAt(i, Location::Any());
4434 }
4435 locations->SetOut(Location::Any());
4436}
4437
4438void InstructionCodeGeneratorMIPS::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
4439 LOG(FATAL) << "Unreachable";
4440}
4441
4442void LocationsBuilderMIPS::VisitRem(HRem* rem) {
4443 Primitive::Type type = rem->GetResultType();
4444 LocationSummary::CallKind call_kind =
4445 (type == Primitive::kPrimInt) ? LocationSummary::kNoCall : LocationSummary::kCall;
4446 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
4447
4448 switch (type) {
4449 case Primitive::kPrimInt:
4450 locations->SetInAt(0, Location::RequiresRegister());
Alexey Frunze7e99e052015-11-24 19:28:01 -08004451 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004452 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4453 break;
4454
4455 case Primitive::kPrimLong: {
4456 InvokeRuntimeCallingConvention calling_convention;
4457 locations->SetInAt(0, Location::RegisterPairLocation(
4458 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
4459 locations->SetInAt(1, Location::RegisterPairLocation(
4460 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
4461 locations->SetOut(calling_convention.GetReturnLocation(type));
4462 break;
4463 }
4464
4465 case Primitive::kPrimFloat:
4466 case Primitive::kPrimDouble: {
4467 InvokeRuntimeCallingConvention calling_convention;
4468 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
4469 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
4470 locations->SetOut(calling_convention.GetReturnLocation(type));
4471 break;
4472 }
4473
4474 default:
4475 LOG(FATAL) << "Unexpected rem type " << type;
4476 }
4477}
4478
4479void InstructionCodeGeneratorMIPS::VisitRem(HRem* instruction) {
4480 Primitive::Type type = instruction->GetType();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004481
4482 switch (type) {
Alexey Frunze7e99e052015-11-24 19:28:01 -08004483 case Primitive::kPrimInt:
4484 GenerateDivRemIntegral(instruction);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004485 break;
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004486 case Primitive::kPrimLong: {
4487 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod),
4488 instruction,
4489 instruction->GetDexPc(),
4490 nullptr,
4491 IsDirectEntrypoint(kQuickLmod));
4492 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
4493 break;
4494 }
4495 case Primitive::kPrimFloat: {
4496 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf),
4497 instruction, instruction->GetDexPc(),
4498 nullptr,
4499 IsDirectEntrypoint(kQuickFmodf));
Roland Levillain888d0672015-11-23 18:53:50 +00004500 CheckEntrypointTypes<kQuickFmodf, float, float, float>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004501 break;
4502 }
4503 case Primitive::kPrimDouble: {
4504 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod),
4505 instruction, instruction->GetDexPc(),
4506 nullptr,
4507 IsDirectEntrypoint(kQuickFmod));
Roland Levillain888d0672015-11-23 18:53:50 +00004508 CheckEntrypointTypes<kQuickFmod, double, double, double>();
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004509 break;
4510 }
4511 default:
4512 LOG(FATAL) << "Unexpected rem type " << type;
4513 }
4514}
4515
4516void LocationsBuilderMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
4517 memory_barrier->SetLocations(nullptr);
4518}
4519
4520void InstructionCodeGeneratorMIPS::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
4521 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
4522}
4523
4524void LocationsBuilderMIPS::VisitReturn(HReturn* ret) {
4525 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
4526 Primitive::Type return_type = ret->InputAt(0)->GetType();
4527 locations->SetInAt(0, MipsReturnLocation(return_type));
4528}
4529
4530void InstructionCodeGeneratorMIPS::VisitReturn(HReturn* ret ATTRIBUTE_UNUSED) {
4531 codegen_->GenerateFrameExit();
4532}
4533
4534void LocationsBuilderMIPS::VisitReturnVoid(HReturnVoid* ret) {
4535 ret->SetLocations(nullptr);
4536}
4537
4538void InstructionCodeGeneratorMIPS::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
4539 codegen_->GenerateFrameExit();
4540}
4541
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004542void LocationsBuilderMIPS::VisitRor(HRor* ror ATTRIBUTE_UNUSED) {
4543 LOG(FATAL) << "Unreachable";
4544 UNREACHABLE();
4545}
4546
4547void InstructionCodeGeneratorMIPS::VisitRor(HRor* ror ATTRIBUTE_UNUSED) {
4548 LOG(FATAL) << "Unreachable";
4549 UNREACHABLE();
4550}
4551
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004552void LocationsBuilderMIPS::VisitShl(HShl* shl) {
4553 HandleShift(shl);
4554}
4555
4556void InstructionCodeGeneratorMIPS::VisitShl(HShl* shl) {
4557 HandleShift(shl);
4558}
4559
4560void LocationsBuilderMIPS::VisitShr(HShr* shr) {
4561 HandleShift(shr);
4562}
4563
4564void InstructionCodeGeneratorMIPS::VisitShr(HShr* shr) {
4565 HandleShift(shr);
4566}
4567
4568void LocationsBuilderMIPS::VisitStoreLocal(HStoreLocal* store) {
4569 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
4570 Primitive::Type field_type = store->InputAt(1)->GetType();
4571 switch (field_type) {
4572 case Primitive::kPrimNot:
4573 case Primitive::kPrimBoolean:
4574 case Primitive::kPrimByte:
4575 case Primitive::kPrimChar:
4576 case Primitive::kPrimShort:
4577 case Primitive::kPrimInt:
4578 case Primitive::kPrimFloat:
4579 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
4580 break;
4581
4582 case Primitive::kPrimLong:
4583 case Primitive::kPrimDouble:
4584 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
4585 break;
4586
4587 default:
4588 LOG(FATAL) << "Unimplemented local type " << field_type;
4589 }
4590}
4591
4592void InstructionCodeGeneratorMIPS::VisitStoreLocal(HStoreLocal* store ATTRIBUTE_UNUSED) {
4593}
4594
4595void LocationsBuilderMIPS::VisitSub(HSub* instruction) {
4596 HandleBinaryOp(instruction);
4597}
4598
4599void InstructionCodeGeneratorMIPS::VisitSub(HSub* instruction) {
4600 HandleBinaryOp(instruction);
4601}
4602
4603void LocationsBuilderMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4604 HandleFieldGet(instruction, instruction->GetFieldInfo());
4605}
4606
4607void InstructionCodeGeneratorMIPS::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4608 HandleFieldGet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
4609}
4610
4611void LocationsBuilderMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
4612 HandleFieldSet(instruction, instruction->GetFieldInfo());
4613}
4614
4615void InstructionCodeGeneratorMIPS::VisitStaticFieldSet(HStaticFieldSet* instruction) {
4616 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetDexPc());
4617}
4618
4619void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldGet(
4620 HUnresolvedInstanceFieldGet* instruction) {
4621 FieldAccessCallingConventionMIPS calling_convention;
4622 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
4623 instruction->GetFieldType(),
4624 calling_convention);
4625}
4626
4627void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldGet(
4628 HUnresolvedInstanceFieldGet* instruction) {
4629 FieldAccessCallingConventionMIPS calling_convention;
4630 codegen_->GenerateUnresolvedFieldAccess(instruction,
4631 instruction->GetFieldType(),
4632 instruction->GetFieldIndex(),
4633 instruction->GetDexPc(),
4634 calling_convention);
4635}
4636
4637void LocationsBuilderMIPS::VisitUnresolvedInstanceFieldSet(
4638 HUnresolvedInstanceFieldSet* instruction) {
4639 FieldAccessCallingConventionMIPS calling_convention;
4640 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
4641 instruction->GetFieldType(),
4642 calling_convention);
4643}
4644
4645void InstructionCodeGeneratorMIPS::VisitUnresolvedInstanceFieldSet(
4646 HUnresolvedInstanceFieldSet* instruction) {
4647 FieldAccessCallingConventionMIPS calling_convention;
4648 codegen_->GenerateUnresolvedFieldAccess(instruction,
4649 instruction->GetFieldType(),
4650 instruction->GetFieldIndex(),
4651 instruction->GetDexPc(),
4652 calling_convention);
4653}
4654
4655void LocationsBuilderMIPS::VisitUnresolvedStaticFieldGet(
4656 HUnresolvedStaticFieldGet* instruction) {
4657 FieldAccessCallingConventionMIPS calling_convention;
4658 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
4659 instruction->GetFieldType(),
4660 calling_convention);
4661}
4662
4663void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldGet(
4664 HUnresolvedStaticFieldGet* instruction) {
4665 FieldAccessCallingConventionMIPS calling_convention;
4666 codegen_->GenerateUnresolvedFieldAccess(instruction,
4667 instruction->GetFieldType(),
4668 instruction->GetFieldIndex(),
4669 instruction->GetDexPc(),
4670 calling_convention);
4671}
4672
4673void LocationsBuilderMIPS::VisitUnresolvedStaticFieldSet(
4674 HUnresolvedStaticFieldSet* instruction) {
4675 FieldAccessCallingConventionMIPS calling_convention;
4676 codegen_->CreateUnresolvedFieldLocationSummary(instruction,
4677 instruction->GetFieldType(),
4678 calling_convention);
4679}
4680
4681void InstructionCodeGeneratorMIPS::VisitUnresolvedStaticFieldSet(
4682 HUnresolvedStaticFieldSet* instruction) {
4683 FieldAccessCallingConventionMIPS calling_convention;
4684 codegen_->GenerateUnresolvedFieldAccess(instruction,
4685 instruction->GetFieldType(),
4686 instruction->GetFieldIndex(),
4687 instruction->GetDexPc(),
4688 calling_convention);
4689}
4690
4691void LocationsBuilderMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
4692 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
4693}
4694
4695void InstructionCodeGeneratorMIPS::VisitSuspendCheck(HSuspendCheck* instruction) {
4696 HBasicBlock* block = instruction->GetBlock();
4697 if (block->GetLoopInformation() != nullptr) {
4698 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
4699 // The back edge will generate the suspend check.
4700 return;
4701 }
4702 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
4703 // The goto will generate the suspend check.
4704 return;
4705 }
4706 GenerateSuspendCheck(instruction, nullptr);
4707}
4708
4709void LocationsBuilderMIPS::VisitTemporary(HTemporary* temp) {
4710 temp->SetLocations(nullptr);
4711}
4712
4713void InstructionCodeGeneratorMIPS::VisitTemporary(HTemporary* temp ATTRIBUTE_UNUSED) {
4714 // Nothing to do, this is driven by the code generator.
4715}
4716
4717void LocationsBuilderMIPS::VisitThrow(HThrow* instruction) {
4718 LocationSummary* locations =
4719 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4720 InvokeRuntimeCallingConvention calling_convention;
4721 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4722}
4723
4724void InstructionCodeGeneratorMIPS::VisitThrow(HThrow* instruction) {
4725 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pDeliverException),
4726 instruction,
4727 instruction->GetDexPc(),
4728 nullptr,
4729 IsDirectEntrypoint(kQuickDeliverException));
4730 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
4731}
4732
4733void LocationsBuilderMIPS::VisitTypeConversion(HTypeConversion* conversion) {
4734 Primitive::Type input_type = conversion->GetInputType();
4735 Primitive::Type result_type = conversion->GetResultType();
4736 DCHECK_NE(input_type, result_type);
4737
4738 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
4739 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
4740 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
4741 }
4742
4743 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
4744 if ((Primitive::IsFloatingPointType(result_type) && input_type == Primitive::kPrimLong) ||
4745 (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type))) {
4746 call_kind = LocationSummary::kCall;
4747 }
4748
4749 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
4750
4751 if (call_kind == LocationSummary::kNoCall) {
4752 if (Primitive::IsFloatingPointType(input_type)) {
4753 locations->SetInAt(0, Location::RequiresFpuRegister());
4754 } else {
4755 locations->SetInAt(0, Location::RequiresRegister());
4756 }
4757
4758 if (Primitive::IsFloatingPointType(result_type)) {
4759 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4760 } else {
4761 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4762 }
4763 } else {
4764 InvokeRuntimeCallingConvention calling_convention;
4765
4766 if (Primitive::IsFloatingPointType(input_type)) {
4767 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
4768 } else {
4769 DCHECK_EQ(input_type, Primitive::kPrimLong);
4770 locations->SetInAt(0, Location::RegisterPairLocation(
4771 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
4772 }
4773
4774 locations->SetOut(calling_convention.GetReturnLocation(result_type));
4775 }
4776}
4777
4778void InstructionCodeGeneratorMIPS::VisitTypeConversion(HTypeConversion* conversion) {
4779 LocationSummary* locations = conversion->GetLocations();
4780 Primitive::Type result_type = conversion->GetResultType();
4781 Primitive::Type input_type = conversion->GetInputType();
4782 bool has_sign_extension = codegen_->GetInstructionSetFeatures().IsMipsIsaRevGreaterThanEqual2();
4783
4784 DCHECK_NE(input_type, result_type);
4785
4786 if (result_type == Primitive::kPrimLong && Primitive::IsIntegralType(input_type)) {
4787 Register dst_high = locations->Out().AsRegisterPairHigh<Register>();
4788 Register dst_low = locations->Out().AsRegisterPairLow<Register>();
4789 Register src = locations->InAt(0).AsRegister<Register>();
4790
4791 __ Move(dst_low, src);
4792 __ Sra(dst_high, src, 31);
4793 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
4794 Register dst = locations->Out().AsRegister<Register>();
4795 Register src = (input_type == Primitive::kPrimLong)
4796 ? locations->InAt(0).AsRegisterPairLow<Register>()
4797 : locations->InAt(0).AsRegister<Register>();
4798
4799 switch (result_type) {
4800 case Primitive::kPrimChar:
4801 __ Andi(dst, src, 0xFFFF);
4802 break;
4803 case Primitive::kPrimByte:
4804 if (has_sign_extension) {
4805 __ Seb(dst, src);
4806 } else {
4807 __ Sll(dst, src, 24);
4808 __ Sra(dst, dst, 24);
4809 }
4810 break;
4811 case Primitive::kPrimShort:
4812 if (has_sign_extension) {
4813 __ Seh(dst, src);
4814 } else {
4815 __ Sll(dst, src, 16);
4816 __ Sra(dst, dst, 16);
4817 }
4818 break;
4819 case Primitive::kPrimInt:
4820 __ Move(dst, src);
4821 break;
4822
4823 default:
4824 LOG(FATAL) << "Unexpected type conversion from " << input_type
4825 << " to " << result_type;
4826 }
4827 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
4828 if (input_type != Primitive::kPrimLong) {
4829 Register src = locations->InAt(0).AsRegister<Register>();
4830 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
4831 __ Mtc1(src, FTMP);
4832 if (result_type == Primitive::kPrimFloat) {
4833 __ Cvtsw(dst, FTMP);
4834 } else {
4835 __ Cvtdw(dst, FTMP);
4836 }
4837 } else {
4838 int32_t entry_offset = (result_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pL2f)
4839 : QUICK_ENTRY_POINT(pL2d);
4840 bool direct = (result_type == Primitive::kPrimFloat) ? IsDirectEntrypoint(kQuickL2f)
4841 : IsDirectEntrypoint(kQuickL2d);
4842 codegen_->InvokeRuntime(entry_offset,
4843 conversion,
4844 conversion->GetDexPc(),
4845 nullptr,
4846 direct);
4847 if (result_type == Primitive::kPrimFloat) {
4848 CheckEntrypointTypes<kQuickL2f, float, int64_t>();
4849 } else {
4850 CheckEntrypointTypes<kQuickL2d, double, int64_t>();
4851 }
4852 }
4853 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
4854 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
4855 int32_t entry_offset;
4856 bool direct;
4857 if (result_type != Primitive::kPrimLong) {
4858 entry_offset = (input_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pF2iz)
4859 : QUICK_ENTRY_POINT(pD2iz);
4860 direct = (result_type == Primitive::kPrimFloat) ? IsDirectEntrypoint(kQuickF2iz)
4861 : IsDirectEntrypoint(kQuickD2iz);
4862 } else {
4863 entry_offset = (input_type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pF2l)
4864 : QUICK_ENTRY_POINT(pD2l);
4865 direct = (result_type == Primitive::kPrimFloat) ? IsDirectEntrypoint(kQuickF2l)
4866 : IsDirectEntrypoint(kQuickD2l);
4867 }
4868 codegen_->InvokeRuntime(entry_offset,
4869 conversion,
4870 conversion->GetDexPc(),
4871 nullptr,
4872 direct);
4873 if (result_type != Primitive::kPrimLong) {
4874 if (input_type == Primitive::kPrimFloat) {
4875 CheckEntrypointTypes<kQuickF2iz, int32_t, float>();
4876 } else {
4877 CheckEntrypointTypes<kQuickD2iz, int32_t, double>();
4878 }
4879 } else {
4880 if (input_type == Primitive::kPrimFloat) {
4881 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
4882 } else {
4883 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
4884 }
4885 }
4886 } else if (Primitive::IsFloatingPointType(result_type) &&
4887 Primitive::IsFloatingPointType(input_type)) {
4888 FRegister dst = locations->Out().AsFpuRegister<FRegister>();
4889 FRegister src = locations->InAt(0).AsFpuRegister<FRegister>();
4890 if (result_type == Primitive::kPrimFloat) {
4891 __ Cvtsd(dst, src);
4892 } else {
4893 __ Cvtds(dst, src);
4894 }
4895 } else {
4896 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
4897 << " to " << result_type;
4898 }
4899}
4900
4901void LocationsBuilderMIPS::VisitUShr(HUShr* ushr) {
4902 HandleShift(ushr);
4903}
4904
4905void InstructionCodeGeneratorMIPS::VisitUShr(HUShr* ushr) {
4906 HandleShift(ushr);
4907}
4908
4909void LocationsBuilderMIPS::VisitXor(HXor* instruction) {
4910 HandleBinaryOp(instruction);
4911}
4912
4913void InstructionCodeGeneratorMIPS::VisitXor(HXor* instruction) {
4914 HandleBinaryOp(instruction);
4915}
4916
4917void LocationsBuilderMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
4918 // Nothing to do, this should be removed during prepare for register allocator.
4919 LOG(FATAL) << "Unreachable";
4920}
4921
4922void InstructionCodeGeneratorMIPS::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
4923 // Nothing to do, this should be removed during prepare for register allocator.
4924 LOG(FATAL) << "Unreachable";
4925}
4926
4927void LocationsBuilderMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004928 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004929}
4930
4931void InstructionCodeGeneratorMIPS::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004932 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004933}
4934
4935void LocationsBuilderMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004936 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004937}
4938
4939void InstructionCodeGeneratorMIPS::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004940 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004941}
4942
4943void LocationsBuilderMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004944 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004945}
4946
4947void InstructionCodeGeneratorMIPS::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004948 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004949}
4950
4951void LocationsBuilderMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004952 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004953}
4954
4955void InstructionCodeGeneratorMIPS::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004956 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004957}
4958
4959void LocationsBuilderMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004960 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004961}
4962
4963void InstructionCodeGeneratorMIPS::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004964 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004965}
4966
4967void LocationsBuilderMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004968 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004969}
4970
4971void InstructionCodeGeneratorMIPS::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004972 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004973}
4974
4975void LocationsBuilderMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004976 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004977}
4978
4979void InstructionCodeGeneratorMIPS::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004980 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004981}
4982
4983void LocationsBuilderMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004984 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004985}
4986
4987void InstructionCodeGeneratorMIPS::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004988 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004989}
4990
4991void LocationsBuilderMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004992 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004993}
4994
4995void InstructionCodeGeneratorMIPS::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00004996 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02004997}
4998
4999void LocationsBuilderMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00005000 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005001}
5002
5003void InstructionCodeGeneratorMIPS::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00005004 HandleCondition(comp);
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005005}
5006
5007void LocationsBuilderMIPS::VisitFakeString(HFakeString* instruction) {
5008 DCHECK(codegen_->IsBaseline());
5009 LocationSummary* locations =
5010 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
5011 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
5012}
5013
5014void InstructionCodeGeneratorMIPS::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
5015 DCHECK(codegen_->IsBaseline());
5016 // Will be generated at use site.
5017}
5018
5019void LocationsBuilderMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
5020 LocationSummary* locations =
5021 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
5022 locations->SetInAt(0, Location::RequiresRegister());
5023}
5024
5025void InstructionCodeGeneratorMIPS::VisitPackedSwitch(HPackedSwitch* switch_instr) {
5026 int32_t lower_bound = switch_instr->GetStartValue();
5027 int32_t num_entries = switch_instr->GetNumEntries();
5028 LocationSummary* locations = switch_instr->GetLocations();
5029 Register value_reg = locations->InAt(0).AsRegister<Register>();
5030 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
5031
5032 // Create a set of compare/jumps.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00005033 Register temp_reg = TMP;
5034 __ Addiu32(temp_reg, value_reg, -lower_bound);
5035 // Jump to default if index is negative
5036 // Note: We don't check the case that index is positive while value < lower_bound, because in
5037 // this case, index >= num_entries must be true. So that we can save one branch instruction.
5038 __ Bltz(temp_reg, codegen_->GetLabelOf(default_block));
5039
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005040 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00005041 // Jump to successors[0] if value == lower_bound.
5042 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[0]));
5043 int32_t last_index = 0;
5044 for (; num_entries - last_index > 2; last_index += 2) {
5045 __ Addiu(temp_reg, temp_reg, -2);
5046 // Jump to successors[last_index + 1] if value < case_value[last_index + 2].
5047 __ Bltz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
5048 // Jump to successors[last_index + 2] if value == case_value[last_index + 2].
5049 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 2]));
5050 }
5051 if (num_entries - last_index == 2) {
5052 // The last missing case_value.
5053 __ Addiu(temp_reg, temp_reg, -1);
5054 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1]));
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005055 }
5056
Vladimir Markof3e0ee22015-12-17 15:23:13 +00005057 // And the default for any other value.
Goran Jakovljevicf652cec2015-08-25 16:11:42 +02005058 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
5059 __ B(codegen_->GetLabelOf(default_block));
5060 }
5061}
5062
5063void LocationsBuilderMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
5064 // The trampoline uses the same calling convention as dex calling conventions,
5065 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
5066 // the method_idx.
5067 HandleInvoke(invoke);
5068}
5069
5070void InstructionCodeGeneratorMIPS::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
5071 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
5072}
5073
5074#undef __
5075#undef QUICK_ENTRY_POINT
5076
5077} // namespace mips
5078} // namespace art