blob: 9319c64784e870ac54eff1ec54a227d3053480ab [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2012 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/* This file contains codegen for the Mips ISA */
18
19#include "codegen_mips.h"
Ian Rogersd582fa42014-11-05 23:46:43 -080020
Andreas Gampe0b9203e2015-01-22 20:39:27 -080021#include "base/logging.h"
22#include "dex/mir_graph.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070023#include "dex/quick/mir_to_lir-inl.h"
buzbeeb5860fb2014-06-21 15:31:01 -070024#include "dex/reg_storage_eq.h"
Ian Rogers166db042013-07-26 12:05:57 -070025#include "entrypoints/quick/quick_entrypoints.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070026#include "mips_lir.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070027#include "mirror/array-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070028
29namespace art {
30
31/*
32 * Compare two 64-bit values
33 * x = y return 0
34 * x < y return -1
35 * x > y return 1
36 *
Goran Jakovljevic10957932015-03-24 18:42:56 +010037 * Mips32 implementation
Brian Carlstrom7940e442013-07-12 13:46:57 -070038 * slt t0, x.hi, y.hi; # (x.hi < y.hi) ? 1:0
39 * sgt t1, x.hi, y.hi; # (y.hi > x.hi) ? 1:0
40 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
41 * bnez res, finish
42 * sltu t0, x.lo, y.lo
43 * sgtu r1, x.lo, y.lo
44 * subu res, t0, t1
45 * finish:
46 *
Goran Jakovljevic10957932015-03-24 18:42:56 +010047 * Mips64 implementation
48 * slt temp, x, y; # (x < y) ? 1:0
49 * slt res, y, x; # (x > y) ? 1:0
50 * subu res, res, temp; # res = -1:1:0 for [ < > = ]
51 *
Brian Carlstrom7940e442013-07-12 13:46:57 -070052 */
Goran Jakovljevic10957932015-03-24 18:42:56 +010053void MipsMir2Lir::GenCmpLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070054 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
55 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
Goran Jakovljevic10957932015-03-24 18:42:56 +010056 if (cu_->target64) {
57 RegStorage temp = AllocTempWide();
58 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
59 NewLIR3(kMipsSlt, temp.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg());
60 NewLIR3(kMipsSlt, rl_result.reg.GetReg(), rl_src2.reg.GetReg(), rl_src1.reg.GetReg());
61 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), rl_result.reg.GetReg(), temp.GetReg());
62 FreeTemp(temp);
63 StoreValue(rl_dest, rl_result);
64 } else {
65 RegStorage t0 = AllocTemp();
66 RegStorage t1 = AllocTemp();
67 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
68 NewLIR3(kMipsSlt, t0.GetReg(), rl_src1.reg.GetHighReg(), rl_src2.reg.GetHighReg());
69 NewLIR3(kMipsSlt, t1.GetReg(), rl_src2.reg.GetHighReg(), rl_src1.reg.GetHighReg());
70 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
Mathieu Chartier2cebb242015-04-21 16:50:40 -070071 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.reg, 0, nullptr);
Goran Jakovljevic10957932015-03-24 18:42:56 +010072 NewLIR3(kMipsSltu, t0.GetReg(), rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
73 NewLIR3(kMipsSltu, t1.GetReg(), rl_src2.reg.GetLowReg(), rl_src1.reg.GetLowReg());
74 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
75 FreeTemp(t0);
76 FreeTemp(t1);
77 LIR* target = NewLIR0(kPseudoTargetLabel);
78 branch->target = target;
79 StoreValue(rl_dest, rl_result);
80 }
Brian Carlstrom7940e442013-07-12 13:46:57 -070081}
82
buzbee2700f7e2014-03-07 09:46:20 -080083LIR* MipsMir2Lir::OpCmpBranch(ConditionCode cond, RegStorage src1, RegStorage src2, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070084 LIR* branch;
85 MipsOpCode slt_op;
86 MipsOpCode br_op;
87 bool cmp_zero = false;
88 bool swapped = false;
89 switch (cond) {
90 case kCondEq:
91 br_op = kMipsBeq;
92 cmp_zero = true;
93 break;
94 case kCondNe:
95 br_op = kMipsBne;
96 cmp_zero = true;
97 break;
Vladimir Marko58af1f92013-12-19 13:31:15 +000098 case kCondUlt:
Brian Carlstrom7940e442013-07-12 13:46:57 -070099 slt_op = kMipsSltu;
100 br_op = kMipsBnez;
101 break;
Vladimir Marko58af1f92013-12-19 13:31:15 +0000102 case kCondUge:
Brian Carlstrom7940e442013-07-12 13:46:57 -0700103 slt_op = kMipsSltu;
104 br_op = kMipsBeqz;
105 break;
106 case kCondGe:
107 slt_op = kMipsSlt;
108 br_op = kMipsBeqz;
109 break;
110 case kCondGt:
111 slt_op = kMipsSlt;
112 br_op = kMipsBnez;
113 swapped = true;
114 break;
115 case kCondLe:
116 slt_op = kMipsSlt;
117 br_op = kMipsBeqz;
118 swapped = true;
119 break;
120 case kCondLt:
121 slt_op = kMipsSlt;
122 br_op = kMipsBnez;
123 break;
124 case kCondHi: // Gtu
125 slt_op = kMipsSltu;
126 br_op = kMipsBnez;
127 swapped = true;
128 break;
129 default:
130 LOG(FATAL) << "No support for ConditionCode: " << cond;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700131 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700132 }
133 if (cmp_zero) {
buzbee2700f7e2014-03-07 09:46:20 -0800134 branch = NewLIR2(br_op, src1.GetReg(), src2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700135 } else {
buzbee091cc402014-03-31 10:14:40 -0700136 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700137 if (swapped) {
buzbee091cc402014-03-31 10:14:40 -0700138 NewLIR3(slt_op, t_reg.GetReg(), src2.GetReg(), src1.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700139 } else {
buzbee091cc402014-03-31 10:14:40 -0700140 NewLIR3(slt_op, t_reg.GetReg(), src1.GetReg(), src2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700141 }
buzbee091cc402014-03-31 10:14:40 -0700142 branch = NewLIR1(br_op, t_reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700143 FreeTemp(t_reg);
144 }
145 branch->target = target;
146 return branch;
147}
148
buzbee2700f7e2014-03-07 09:46:20 -0800149LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700150 LIR* branch;
151 if (check_value != 0) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100152 // TUNING: handle s16 & kCondLt/Mi case using slti.
buzbee2700f7e2014-03-07 09:46:20 -0800153 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700154 LoadConstant(t_reg, check_value);
155 branch = OpCmpBranch(cond, reg, t_reg, target);
156 FreeTemp(t_reg);
157 return branch;
158 }
159 MipsOpCode opc;
160 switch (cond) {
161 case kCondEq: opc = kMipsBeqz; break;
162 case kCondGe: opc = kMipsBgez; break;
163 case kCondGt: opc = kMipsBgtz; break;
164 case kCondLe: opc = kMipsBlez; break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700165 // case KCondMi:
Brian Carlstrom7940e442013-07-12 13:46:57 -0700166 case kCondLt: opc = kMipsBltz; break;
167 case kCondNe: opc = kMipsBnez; break;
168 default:
169 // Tuning: use slti when applicable
buzbee2700f7e2014-03-07 09:46:20 -0800170 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700171 LoadConstant(t_reg, check_value);
172 branch = OpCmpBranch(cond, reg, t_reg, target);
173 FreeTemp(t_reg);
174 return branch;
175 }
buzbee2700f7e2014-03-07 09:46:20 -0800176 branch = NewLIR1(opc, reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700177 branch->target = target;
178 return branch;
179}
180
buzbee2700f7e2014-03-07 09:46:20 -0800181LIR* MipsMir2Lir::OpRegCopyNoInsert(RegStorage r_dest, RegStorage r_src) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100182 LIR* res;
183 MipsOpCode opcode;
184
185 if (!cu_->target64) {
186 // If src or dest is a pair, we'll be using low reg.
187 if (r_dest.IsPair()) {
188 r_dest = r_dest.GetLow();
189 }
190 if (r_src.IsPair()) {
191 r_src = r_src.GetLow();
192 }
193 } else {
194 DCHECK(!r_dest.IsPair() && !r_src.IsPair());
buzbee2700f7e2014-03-07 09:46:20 -0800195 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100196
buzbee091cc402014-03-31 10:14:40 -0700197 if (r_dest.IsFloat() || r_src.IsFloat())
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 return OpFpRegCopy(r_dest, r_src);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100199 if (cu_->target64) {
200 // TODO: Check that r_src and r_dest are both 32 or both 64 bits length on Mips64.
201 if (r_dest.Is64Bit() || r_src.Is64Bit()) {
202 opcode = kMipsMove;
203 } else {
204 opcode = kMipsSll;
205 }
206 } else {
207 opcode = kMipsMove;
208 }
209 res = RawLIR(current_dalvik_offset_, opcode, r_dest.GetReg(), r_src.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {
211 res->flags.is_nop = true;
212 }
213 return res;
214}
215
buzbee7a11ab02014-04-28 20:02:38 -0700216void MipsMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) {
217 if (r_dest != r_src) {
218 LIR *res = OpRegCopyNoInsert(r_dest, r_src);
219 AppendLIR(res);
220 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221}
222
buzbee2700f7e2014-03-07 09:46:20 -0800223void MipsMir2Lir::OpRegCopyWide(RegStorage r_dest, RegStorage r_src) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100224 if (cu_->target64) {
225 OpRegCopy(r_dest, r_src);
226 return;
227 }
buzbee7a11ab02014-04-28 20:02:38 -0700228 if (r_dest != r_src) {
buzbee091cc402014-03-31 10:14:40 -0700229 bool dest_fp = r_dest.IsFloat();
230 bool src_fp = r_src.IsFloat();
buzbee7a11ab02014-04-28 20:02:38 -0700231 if (dest_fp) {
232 if (src_fp) {
Douglas Leung027f0ff2015-02-27 19:05:03 -0800233 // Here if both src and dest are fp registers. OpRegCopy will choose the right copy
234 // (solo or pair).
buzbee091cc402014-03-31 10:14:40 -0700235 OpRegCopy(r_dest, r_src);
236 } else {
Douglas Leung027f0ff2015-02-27 19:05:03 -0800237 // note the operands are swapped for the mtc1 and mthc1 instr.
238 // Here if dest is fp reg and src is core reg.
239 if (fpuIs32Bit_) {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700240 NewLIR2(kMipsMtc1, r_src.GetLowReg(), r_dest.GetLowReg());
241 NewLIR2(kMipsMtc1, r_src.GetHighReg(), r_dest.GetHighReg());
Douglas Leung027f0ff2015-02-27 19:05:03 -0800242 } else {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700243 r_dest = Fp64ToSolo32(r_dest);
244 NewLIR2(kMipsMtc1, r_src.GetLowReg(), r_dest.GetReg());
245 NewLIR2(kMipsMthc1, r_src.GetHighReg(), r_dest.GetReg());
Douglas Leung027f0ff2015-02-27 19:05:03 -0800246 }
buzbee7a11ab02014-04-28 20:02:38 -0700247 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700248 } else {
buzbee7a11ab02014-04-28 20:02:38 -0700249 if (src_fp) {
Douglas Leung027f0ff2015-02-27 19:05:03 -0800250 // Here if dest is core reg and src is fp reg.
251 if (fpuIs32Bit_) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100252 NewLIR2(kMipsMfc1, r_dest.GetLowReg(), r_src.GetLowReg());
253 NewLIR2(kMipsMfc1, r_dest.GetHighReg(), r_src.GetHighReg());
Douglas Leung027f0ff2015-02-27 19:05:03 -0800254 } else {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100255 r_src = Fp64ToSolo32(r_src);
256 NewLIR2(kMipsMfc1, r_dest.GetLowReg(), r_src.GetReg());
257 NewLIR2(kMipsMfhc1, r_dest.GetHighReg(), r_src.GetReg());
Douglas Leung027f0ff2015-02-27 19:05:03 -0800258 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700259 } else {
Douglas Leung027f0ff2015-02-27 19:05:03 -0800260 // Here if both src and dest are core registers.
Goran Jakovljevic10957932015-03-24 18:42:56 +0100261 // Handle overlap.
buzbee7a11ab02014-04-28 20:02:38 -0700262 if (r_src.GetHighReg() == r_dest.GetLowReg()) {
263 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
264 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
265 } else {
266 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
267 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
268 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700269 }
270 }
271 }
272}
273
Andreas Gampe90969af2014-07-15 23:02:11 -0700274void MipsMir2Lir::GenSelectConst32(RegStorage left_op, RegStorage right_op, ConditionCode code,
275 int32_t true_val, int32_t false_val, RegStorage rs_dest,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700276 RegisterClass dest_reg_class) {
277 UNUSED(dest_reg_class);
Andreas Gampe90969af2014-07-15 23:02:11 -0700278 // Implement as a branch-over.
279 // TODO: Conditional move?
Andreas Gampe90969af2014-07-15 23:02:11 -0700280 LoadConstant(rs_dest, true_val);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700281 LIR* ne_branchover = OpCmpBranch(code, left_op, right_op, nullptr);
Raghu Gandham08f8d4c2014-08-14 13:46:53 -0700282 LoadConstant(rs_dest, false_val);
Andreas Gampe90969af2014-07-15 23:02:11 -0700283 LIR* target_label = NewLIR0(kPseudoTargetLabel);
284 ne_branchover->target = target_label;
285}
286
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700287void MipsMir2Lir::GenSelect(BasicBlock* bb, MIR* mir) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700288 UNUSED(bb, mir);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700289 UNIMPLEMENTED(FATAL) << "Need codegen for select";
290}
291
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700292void MipsMir2Lir::GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700293 UNUSED(bb, mir);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294 UNIMPLEMENTED(FATAL) << "Need codegen for fused long cmp branch";
295}
296
buzbee2700f7e2014-03-07 09:46:20 -0800297RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegStorage reg1, RegStorage reg2,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800298 bool is_div) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700299 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Douglas Leung027f0ff2015-02-27 19:05:03 -0800300
301 if (isaIsR6_) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100302 NewLIR3(is_div ? kMipsR6Div : kMipsR6Mod, rl_result.reg.GetReg(), reg1.GetReg(), reg2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700303 } else {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100304 NewLIR2(kMipsR2Div, reg1.GetReg(), reg2.GetReg());
305 NewLIR1(is_div ? kMipsR2Mflo : kMipsR2Mfhi, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700306 }
307 return rl_result;
308}
309
Goran Jakovljevic10957932015-03-24 18:42:56 +0100310RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegStorage reg1, int lit, bool is_div) {
buzbee091cc402014-03-31 10:14:40 -0700311 RegStorage t_reg = AllocTemp();
Douglas Leung7fa6e272015-04-07 13:25:56 -0700312 // lit is guarantee to be a 16-bit constant
313 if (IsUint<16>(lit)) {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700314 NewLIR3(kMipsOri, t_reg.GetReg(), rZERO, lit);
Douglas Leung7fa6e272015-04-07 13:25:56 -0700315 } else {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700316 // Addiu will sign extend the entire width (32 or 64) of the register.
317 NewLIR3(kMipsAddiu, t_reg.GetReg(), rZERO, lit);
Douglas Leung7fa6e272015-04-07 13:25:56 -0700318 }
Douglas Leung027f0ff2015-02-27 19:05:03 -0800319 RegLocation rl_result = GenDivRem(rl_dest, reg1, t_reg, is_div);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700320 FreeTemp(t_reg);
321 return rl_result;
322}
323
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700324RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2,
325 bool is_div, int flags) {
326 UNUSED(rl_dest, rl_src1, rl_src2, is_div, flags);
Mark Mendell2bf31e62014-01-23 12:13:40 -0800327 LOG(FATAL) << "Unexpected use of GenDivRem for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700328 UNREACHABLE();
Mark Mendell2bf31e62014-01-23 12:13:40 -0800329}
330
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700331RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegLocation rl_src1, int lit,
332 bool is_div) {
333 UNUSED(rl_dest, rl_src1, lit, is_div);
Mark Mendell2bf31e62014-01-23 12:13:40 -0800334 LOG(FATAL) << "Unexpected use of GenDivRemLit for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700335 UNREACHABLE();
Mark Mendell2bf31e62014-01-23 12:13:40 -0800336}
337
Vladimir Marko1c282e22013-11-21 14:49:47 +0000338bool MipsMir2Lir::GenInlinedCas(CallInfo* info, bool is_long, bool is_object) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700339 UNUSED(info, is_long, is_object);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700340 return false;
341}
342
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100343bool MipsMir2Lir::GenInlinedAbsFloat(CallInfo* info) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700344 UNUSED(info);
345 // TODO: add Mips implementation.
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100346 return false;
347}
348
349bool MipsMir2Lir::GenInlinedAbsDouble(CallInfo* info) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700350 UNUSED(info);
351 // TODO: add Mips implementation.
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100352 return false;
353}
354
Brian Carlstrom7940e442013-07-12 13:46:57 -0700355bool MipsMir2Lir::GenInlinedSqrt(CallInfo* info) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700356 UNUSED(info);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700357 return false;
358}
359
Vladimir Markoe508a202013-11-04 15:24:22 +0000360bool MipsMir2Lir::GenInlinedPeek(CallInfo* info, OpSize size) {
361 if (size != kSignedByte) {
362 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
363 return false;
364 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100365 RegLocation rl_src_address = info->args[0]; // Long address.
366 if (!cu_->target64) {
367 rl_src_address = NarrowRegLoc(rl_src_address); // Ignore high half in info->args[1].
368 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000369 RegLocation rl_dest = InlineTarget(info);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100370 RegLocation rl_address;
371 if (cu_->target64) {
372 rl_address = LoadValueWide(rl_src_address, kCoreReg);
373 } else {
374 rl_address = LoadValue(rl_src_address, kCoreReg);
375 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000376 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
377 DCHECK(size == kSignedByte);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000378 LoadBaseDisp(rl_address.reg, 0, rl_result.reg, size, kNotVolatile);
Vladimir Markoe508a202013-11-04 15:24:22 +0000379 StoreValue(rl_dest, rl_result);
380 return true;
381}
382
383bool MipsMir2Lir::GenInlinedPoke(CallInfo* info, OpSize size) {
384 if (size != kSignedByte) {
385 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
386 return false;
387 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100388 RegLocation rl_src_address = info->args[0]; // Long address.
389 if (!cu_->target64) {
390 rl_src_address = NarrowRegLoc(rl_src_address); // Ignore high half in info->args[1].
391 }
392 RegLocation rl_src_value = info->args[2]; // [size] value.
393 RegLocation rl_address;
394 if (cu_->target64) {
395 rl_address = LoadValueWide(rl_src_address, kCoreReg);
396 } else {
397 rl_address = LoadValue(rl_src_address, kCoreReg);
398 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000399 DCHECK(size == kSignedByte);
400 RegLocation rl_value = LoadValue(rl_src_value, kCoreReg);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000401 StoreBaseDisp(rl_address.reg, 0, rl_value.reg, size, kNotVolatile);
Vladimir Markoe508a202013-11-04 15:24:22 +0000402 return true;
403}
404
Vladimir Markof6737f72015-03-23 17:05:14 +0000405void MipsMir2Lir::OpPcRelLoad(RegStorage reg, LIR* target) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700406 UNUSED(reg, target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700407 LOG(FATAL) << "Unexpected use of OpPcRelLoad for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700408 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700409}
410
buzbee2700f7e2014-03-07 09:46:20 -0800411LIR* MipsMir2Lir::OpVldm(RegStorage r_base, int count) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700412 UNUSED(r_base, count);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700413 LOG(FATAL) << "Unexpected use of OpVldm for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700414 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700415}
416
buzbee2700f7e2014-03-07 09:46:20 -0800417LIR* MipsMir2Lir::OpVstm(RegStorage r_base, int count) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700418 UNUSED(r_base, count);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700419 LOG(FATAL) << "Unexpected use of OpVstm for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700420 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700421}
422
Goran Jakovljevic10957932015-03-24 18:42:56 +0100423void MipsMir2Lir::GenMultiplyByTwoBitMultiplier(RegLocation rl_src, RegLocation rl_result, int lit,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700424 int first_bit, int second_bit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700425 UNUSED(lit);
buzbee2700f7e2014-03-07 09:46:20 -0800426 RegStorage t_reg = AllocTemp();
427 OpRegRegImm(kOpLsl, t_reg, rl_src.reg, second_bit - first_bit);
428 OpRegRegReg(kOpAdd, rl_result.reg, rl_src.reg, t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700429 FreeTemp(t_reg);
430 if (first_bit != 0) {
buzbee2700f7e2014-03-07 09:46:20 -0800431 OpRegRegImm(kOpLsl, rl_result.reg, rl_result.reg, first_bit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700432 }
433}
434
Mingyao Yange643a172014-04-08 11:02:52 -0700435void MipsMir2Lir::GenDivZeroCheckWide(RegStorage reg) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100436 if (cu_->target64) {
437 GenDivZeroCheck(reg);
438 } else {
439 DCHECK(reg.IsPair()); // TODO: support k64BitSolo.
440 RegStorage t_reg = AllocTemp();
441 OpRegRegReg(kOpOr, t_reg, reg.GetLow(), reg.GetHigh());
442 GenDivZeroCheck(t_reg);
443 FreeTemp(t_reg);
444 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700445}
446
Goran Jakovljevic10957932015-03-24 18:42:56 +0100447// Test suspend flag, return target of taken suspend branch.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700448LIR* MipsMir2Lir::OpTestSuspend(LIR* target) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100449 OpRegImm(kOpSub, TargetPtrReg(kSuspend), 1);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700450 return OpCmpImmBranch((target == nullptr) ? kCondEq : kCondNe, TargetPtrReg(kSuspend), 0, target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700451}
452
Goran Jakovljevic10957932015-03-24 18:42:56 +0100453// Decrement register and branch on condition.
buzbee2700f7e2014-03-07 09:46:20 -0800454LIR* MipsMir2Lir::OpDecAndBranch(ConditionCode c_code, RegStorage reg, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700455 OpRegImm(kOpSub, reg, 1);
456 return OpCmpImmBranch(c_code, reg, 0, target);
457}
458
buzbee11b63d12013-08-27 07:34:17 -0700459bool MipsMir2Lir::SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700460 RegLocation rl_src, RegLocation rl_dest, int lit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700461 UNUSED(dalvik_opcode, is_div, rl_src, rl_dest, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700462 LOG(FATAL) << "Unexpected use of smallLiteralDive in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700463 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700464}
465
Ian Rogerse2143c02014-03-28 08:47:16 -0700466bool MipsMir2Lir::EasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700467 UNUSED(rl_src, rl_dest, lit);
Ian Rogerse2143c02014-03-28 08:47:16 -0700468 LOG(FATAL) << "Unexpected use of easyMultiply in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700469 UNREACHABLE();
Ian Rogerse2143c02014-03-28 08:47:16 -0700470}
471
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700472LIR* MipsMir2Lir::OpIT(ConditionCode cond, const char* guide) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700473 UNUSED(cond, guide);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700474 LOG(FATAL) << "Unexpected use of OpIT in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700475 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700476}
477
Dave Allison3da67a52014-04-02 17:03:45 -0700478void MipsMir2Lir::OpEndIT(LIR* it) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700479 UNUSED(it);
Dave Allison3da67a52014-04-02 17:03:45 -0700480 LOG(FATAL) << "Unexpected use of OpEndIT in Mips";
481}
482
Goran Jakovljevic10957932015-03-24 18:42:56 +0100483void MipsMir2Lir::GenAddLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700484 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
485 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
486 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
487 /*
488 * [v1 v0] = [a1 a0] + [a3 a2];
489 * addu v0,a2,a0
490 * addu t1,a3,a1
491 * sltu v1,v0,a2
492 * addu v1,v1,t1
493 */
494
buzbee2700f7e2014-03-07 09:46:20 -0800495 OpRegRegReg(kOpAdd, rl_result.reg.GetLow(), rl_src2.reg.GetLow(), rl_src1.reg.GetLow());
496 RegStorage t_reg = AllocTemp();
497 OpRegRegReg(kOpAdd, t_reg, rl_src2.reg.GetHigh(), rl_src1.reg.GetHigh());
Goran Jakovljevic10957932015-03-24 18:42:56 +0100498 NewLIR3(kMipsSltu, rl_result.reg.GetHighReg(), rl_result.reg.GetLowReg(),
499 rl_src2.reg.GetLowReg());
buzbee2700f7e2014-03-07 09:46:20 -0800500 OpRegRegReg(kOpAdd, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700501 FreeTemp(t_reg);
502 StoreValueWide(rl_dest, rl_result);
503}
504
Goran Jakovljevic10957932015-03-24 18:42:56 +0100505void MipsMir2Lir::GenSubLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700506 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
507 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
508 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
509 /*
510 * [v1 v0] = [a1 a0] - [a3 a2];
511 * sltu t1,a0,a2
512 * subu v0,a0,a2
513 * subu v1,a1,a3
514 * subu v1,v1,t1
515 */
516
buzbee2700f7e2014-03-07 09:46:20 -0800517 RegStorage t_reg = AllocTemp();
518 NewLIR3(kMipsSltu, t_reg.GetReg(), rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
519 OpRegRegReg(kOpSub, rl_result.reg.GetLow(), rl_src1.reg.GetLow(), rl_src2.reg.GetLow());
520 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_src1.reg.GetHigh(), rl_src2.reg.GetHigh());
521 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 FreeTemp(t_reg);
523 StoreValueWide(rl_dest, rl_result);
524}
525
Andreas Gampec76c6142014-08-04 16:30:03 -0700526void MipsMir2Lir::GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700527 RegLocation rl_src2, int flags) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100528 if (cu_->target64) {
529 switch (opcode) {
530 case Instruction::NOT_LONG:
531 GenNotLong(rl_dest, rl_src2);
532 return;
533 case Instruction::ADD_LONG:
534 case Instruction::ADD_LONG_2ADDR:
535 GenLongOp(kOpAdd, rl_dest, rl_src1, rl_src2);
536 return;
537 case Instruction::SUB_LONG:
538 case Instruction::SUB_LONG_2ADDR:
539 GenLongOp(kOpSub, rl_dest, rl_src1, rl_src2);
540 return;
541 case Instruction::MUL_LONG:
542 case Instruction::MUL_LONG_2ADDR:
543 GenMulLong(rl_dest, rl_src1, rl_src2);
544 return;
545 case Instruction::DIV_LONG:
546 case Instruction::DIV_LONG_2ADDR:
547 GenDivRemLong(opcode, rl_dest, rl_src1, rl_src2, /*is_div*/ true, flags);
548 return;
549 case Instruction::REM_LONG:
550 case Instruction::REM_LONG_2ADDR:
551 GenDivRemLong(opcode, rl_dest, rl_src1, rl_src2, /*is_div*/ false, flags);
552 return;
553 case Instruction::AND_LONG:
554 case Instruction::AND_LONG_2ADDR:
555 GenLongOp(kOpAnd, rl_dest, rl_src1, rl_src2);
556 return;
557 case Instruction::OR_LONG:
558 case Instruction::OR_LONG_2ADDR:
559 GenLongOp(kOpOr, rl_dest, rl_src1, rl_src2);
560 return;
561 case Instruction::XOR_LONG:
562 case Instruction::XOR_LONG_2ADDR:
563 GenLongOp(kOpXor, rl_dest, rl_src1, rl_src2);
564 return;
565 case Instruction::NEG_LONG:
566 GenNegLong(rl_dest, rl_src2);
567 return;
Serban Constantinescued65c5e2014-05-22 15:10:18 +0100568
Goran Jakovljevic10957932015-03-24 18:42:56 +0100569 default:
570 LOG(FATAL) << "Invalid long arith op";
571 return;
572 }
573 } else {
574 switch (opcode) {
575 case Instruction::ADD_LONG:
576 case Instruction::ADD_LONG_2ADDR:
577 GenAddLong(rl_dest, rl_src1, rl_src2);
578 return;
579 case Instruction::SUB_LONG:
580 case Instruction::SUB_LONG_2ADDR:
581 GenSubLong(rl_dest, rl_src1, rl_src2);
582 return;
583 case Instruction::NEG_LONG:
584 GenNegLong(rl_dest, rl_src2);
585 return;
586 default:
587 break;
588 }
589 // Fallback for all other ops.
590 Mir2Lir::GenArithOpLong(opcode, rl_dest, rl_src1, rl_src2, flags);
Andreas Gampec76c6142014-08-04 16:30:03 -0700591 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100592}
Andreas Gampec76c6142014-08-04 16:30:03 -0700593
Goran Jakovljevic10957932015-03-24 18:42:56 +0100594void MipsMir2Lir::GenLongOp(OpKind op, RegLocation rl_dest, RegLocation rl_src1,
595 RegLocation rl_src2) {
596 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
597 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
598 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
599 OpRegRegReg(op, rl_result.reg, rl_src1.reg, rl_src2.reg);
600 StoreValueWide(rl_dest, rl_result);
601}
602
603void MipsMir2Lir::GenNotLong(RegLocation rl_dest, RegLocation rl_src) {
604 rl_src = LoadValueWide(rl_src, kCoreReg);
605 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
606 OpRegReg(kOpMvn, rl_result.reg, rl_src.reg);
607 StoreValueWide(rl_dest, rl_result);
608}
609
610void MipsMir2Lir::GenMulLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
611 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
612 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
613 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
614 NewLIR3(kMips64Dmul, rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg());
615 StoreValueWide(rl_dest, rl_result);
616}
617
618void MipsMir2Lir::GenDivRemLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
619 RegLocation rl_src2, bool is_div, int flags) {
620 UNUSED(opcode);
621 // TODO: Implement easy div/rem?
622 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
623 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
624 if ((flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
625 GenDivZeroCheckWide(rl_src2.reg);
626 }
627 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
628 NewLIR3(is_div ? kMips64Ddiv : kMips64Dmod, rl_result.reg.GetReg(), rl_src1.reg.GetReg(),
629 rl_src2.reg.GetReg());
630 StoreValueWide(rl_dest, rl_result);
Serban Constantinescued65c5e2014-05-22 15:10:18 +0100631}
632
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700633void MipsMir2Lir::GenNegLong(RegLocation rl_dest, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700634 rl_src = LoadValueWide(rl_src, kCoreReg);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100635 RegLocation rl_result;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700636
Goran Jakovljevic10957932015-03-24 18:42:56 +0100637 if (cu_->target64) {
638 rl_result = EvalLocWide(rl_dest, kCoreReg, true);
639 OpRegReg(kOpNeg, rl_result.reg, rl_src.reg);
640 StoreValueWide(rl_dest, rl_result);
641 } else {
642 rl_result = EvalLoc(rl_dest, kCoreReg, true);
643 // [v1 v0] = -[a1 a0]
644 // negu v0,a0
645 // negu v1,a1
646 // sltu t1,r_zero
647 // subu v1,v1,t1
648 OpRegReg(kOpNeg, rl_result.reg.GetLow(), rl_src.reg.GetLow());
649 OpRegReg(kOpNeg, rl_result.reg.GetHigh(), rl_src.reg.GetHigh());
650 RegStorage t_reg = AllocTemp();
651 NewLIR3(kMipsSltu, t_reg.GetReg(), rZERO, rl_result.reg.GetLowReg());
652 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
653 FreeTemp(t_reg);
654 StoreValueWide(rl_dest, rl_result);
655 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656}
657
Brian Carlstrom7940e442013-07-12 13:46:57 -0700658/*
659 * Generate array load
660 */
661void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800662 RegLocation rl_index, RegLocation rl_dest, int scale) {
buzbee091cc402014-03-31 10:14:40 -0700663 RegisterClass reg_class = RegClassBySize(size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664 int len_offset = mirror::Array::LengthOffset().Int32Value();
665 int data_offset;
666 RegLocation rl_result;
Douglas Leung2db3e262014-06-25 16:02:55 -0700667 rl_array = LoadValue(rl_array, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700668 rl_index = LoadValue(rl_index, kCoreReg);
669
Douglas Leung2db3e262014-06-25 16:02:55 -0700670 // FIXME: need to add support for rl_index.is_const.
671
buzbee695d13a2014-04-19 13:32:20 -0700672 if (size == k64 || size == kDouble) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700673 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
674 } else {
675 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
676 }
677
Goran Jakovljevic10957932015-03-24 18:42:56 +0100678 // Null object?
buzbee2700f7e2014-03-07 09:46:20 -0800679 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680
Goran Jakovljevic10957932015-03-24 18:42:56 +0100681 RegStorage reg_ptr = (cu_->target64) ? AllocTempRef() : AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700682 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800683 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700684 if (needs_range_check) {
685 reg_len = AllocTemp();
Goran Jakovljevic10957932015-03-24 18:42:56 +0100686 // Get len.
buzbee695d13a2014-04-19 13:32:20 -0700687 Load32Disp(rl_array.reg, len_offset, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700688 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100689 // reg_ptr -> array data.
buzbee2700f7e2014-03-07 09:46:20 -0800690 OpRegRegImm(kOpAdd, reg_ptr, rl_array.reg, data_offset);
buzbee091cc402014-03-31 10:14:40 -0700691 FreeTemp(rl_array.reg);
buzbee695d13a2014-04-19 13:32:20 -0700692 if ((size == k64) || (size == kDouble)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700693 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800694 RegStorage r_new_index = AllocTemp();
695 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 OpRegReg(kOpAdd, reg_ptr, r_new_index);
697 FreeTemp(r_new_index);
698 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800699 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 }
buzbee2700f7e2014-03-07 09:46:20 -0800701 FreeTemp(rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702 rl_result = EvalLoc(rl_dest, reg_class, true);
703
704 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700705 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700706 FreeTemp(reg_len);
707 }
Andreas Gampe3c12c512014-06-24 18:46:29 +0000708 LoadBaseDisp(reg_ptr, 0, rl_result.reg, size, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709
710 FreeTemp(reg_ptr);
711 StoreValueWide(rl_dest, rl_result);
712 } else {
713 rl_result = EvalLoc(rl_dest, reg_class, true);
714
715 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700716 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700717 FreeTemp(reg_len);
718 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100719
720 if (cu_->target64) {
721 if (rl_result.ref) {
722 LoadBaseIndexed(reg_ptr, As64BitReg(rl_index.reg), As32BitReg(rl_result.reg), scale,
723 kReference);
724 } else {
725 LoadBaseIndexed(reg_ptr, As64BitReg(rl_index.reg), rl_result.reg, scale, size);
726 }
727 } else {
728 LoadBaseIndexed(reg_ptr, rl_index.reg, rl_result.reg, scale, size);
729 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700730
731 FreeTemp(reg_ptr);
732 StoreValue(rl_dest, rl_result);
733 }
734}
735
736/*
737 * Generate array store
738 *
739 */
740void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800741 RegLocation rl_index, RegLocation rl_src, int scale, bool card_mark) {
buzbee091cc402014-03-31 10:14:40 -0700742 RegisterClass reg_class = RegClassBySize(size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700743 int len_offset = mirror::Array::LengthOffset().Int32Value();
744 int data_offset;
745
buzbee695d13a2014-04-19 13:32:20 -0700746 if (size == k64 || size == kDouble) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700747 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
748 } else {
749 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
750 }
751
Douglas Leung2db3e262014-06-25 16:02:55 -0700752 rl_array = LoadValue(rl_array, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700753 rl_index = LoadValue(rl_index, kCoreReg);
Douglas Leung2db3e262014-06-25 16:02:55 -0700754
755 // FIXME: need to add support for rl_index.is_const.
756
buzbee2700f7e2014-03-07 09:46:20 -0800757 RegStorage reg_ptr;
Ian Rogers773aab12013-10-14 13:50:10 -0700758 bool allocated_reg_ptr_temp = false;
buzbee091cc402014-03-31 10:14:40 -0700759 if (IsTemp(rl_array.reg) && !card_mark) {
760 Clobber(rl_array.reg);
buzbee2700f7e2014-03-07 09:46:20 -0800761 reg_ptr = rl_array.reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700762 } else {
763 reg_ptr = AllocTemp();
buzbee2700f7e2014-03-07 09:46:20 -0800764 OpRegCopy(reg_ptr, rl_array.reg);
Ian Rogers773aab12013-10-14 13:50:10 -0700765 allocated_reg_ptr_temp = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700766 }
767
Goran Jakovljevic10957932015-03-24 18:42:56 +0100768 // Null object?
buzbee2700f7e2014-03-07 09:46:20 -0800769 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700770
771 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800772 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700773 if (needs_range_check) {
774 reg_len = AllocTemp();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700775 // NOTE: max live temps(4) here.
Goran Jakovljevic10957932015-03-24 18:42:56 +0100776 // Get len.
buzbee695d13a2014-04-19 13:32:20 -0700777 Load32Disp(rl_array.reg, len_offset, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700778 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100779 // reg_ptr -> array data.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700780 OpRegImm(kOpAdd, reg_ptr, data_offset);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100781 // At this point, reg_ptr points to array, 2 live temps.
buzbee695d13a2014-04-19 13:32:20 -0700782 if ((size == k64) || (size == kDouble)) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100783 // TUNING: specific wide routine that can handle fp regs.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700784 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800785 RegStorage r_new_index = AllocTemp();
786 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700787 OpRegReg(kOpAdd, reg_ptr, r_new_index);
788 FreeTemp(r_new_index);
789 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800790 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700791 }
792 rl_src = LoadValueWide(rl_src, reg_class);
793
794 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700795 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700796 FreeTemp(reg_len);
797 }
798
Andreas Gampe3c12c512014-06-24 18:46:29 +0000799 StoreBaseDisp(reg_ptr, 0, rl_src.reg, size, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700800 } else {
801 rl_src = LoadValue(rl_src, reg_class);
802 if (needs_range_check) {
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800803 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700804 FreeTemp(reg_len);
805 }
buzbee2700f7e2014-03-07 09:46:20 -0800806 StoreBaseIndexed(reg_ptr, rl_index.reg, rl_src.reg, scale, size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700807 }
Ian Rogers773aab12013-10-14 13:50:10 -0700808 if (allocated_reg_ptr_temp) {
809 FreeTemp(reg_ptr);
810 }
Ian Rogersa9a82542013-10-04 11:17:26 -0700811 if (card_mark) {
Vladimir Marko743b98c2014-11-24 19:45:41 +0000812 MarkGCCard(opt_flags, rl_src.reg, rl_array.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700813 }
814}
815
Goran Jakovljevic10957932015-03-24 18:42:56 +0100816void MipsMir2Lir::GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
817 RegLocation rl_shift) {
818 if (!cu_->target64) {
819 Mir2Lir::GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift);
820 return;
821 }
822 OpKind op = kOpBkpt;
823 switch (opcode) {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700824 case Instruction::SHL_LONG:
825 case Instruction::SHL_LONG_2ADDR:
826 op = kOpLsl;
827 break;
828 case Instruction::SHR_LONG:
829 case Instruction::SHR_LONG_2ADDR:
830 op = kOpAsr;
831 break;
832 case Instruction::USHR_LONG:
833 case Instruction::USHR_LONG_2ADDR:
834 op = kOpLsr;
835 break;
836 default:
837 LOG(FATAL) << "Unexpected case: " << opcode;
Goran Jakovljevic10957932015-03-24 18:42:56 +0100838 }
839 rl_shift = LoadValue(rl_shift, kCoreReg);
840 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
841 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
842 OpRegRegReg(op, rl_result.reg, rl_src1.reg, As64BitReg(rl_shift.reg));
843 StoreValueWide(rl_dest, rl_result);
844}
845
Brian Carlstrom7940e442013-07-12 13:46:57 -0700846void MipsMir2Lir::GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700847 RegLocation rl_src1, RegLocation rl_shift, int flags) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700848 UNUSED(flags);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100849 if (!cu_->target64) {
850 // Default implementation is just to ignore the constant case.
851 GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift);
852 return;
853 }
854 OpKind op = kOpBkpt;
855 // Per spec, we only care about low 6 bits of shift amount.
856 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f;
857 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
858 if (shift_amount == 0) {
859 StoreValueWide(rl_dest, rl_src1);
860 return;
861 }
862
863 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
864 switch (opcode) {
865 case Instruction::SHL_LONG:
866 case Instruction::SHL_LONG_2ADDR:
867 op = kOpLsl;
868 break;
869 case Instruction::SHR_LONG:
870 case Instruction::SHR_LONG_2ADDR:
871 op = kOpAsr;
872 break;
873 case Instruction::USHR_LONG:
874 case Instruction::USHR_LONG_2ADDR:
875 op = kOpLsr;
876 break;
877 default:
878 LOG(FATAL) << "Unexpected case";
879 }
880 OpRegRegImm(op, rl_result.reg, rl_src1.reg, shift_amount);
881 StoreValueWide(rl_dest, rl_result);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700882}
883
Goran Jakovljevic10957932015-03-24 18:42:56 +0100884void MipsMir2Lir::GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
885 RegLocation rl_src1, RegLocation rl_src2, int flags) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700886 // Default - bail to non-const handler.
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700887 GenArithOpLong(opcode, rl_dest, rl_src1, rl_src2, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700888}
889
Goran Jakovljevic10957932015-03-24 18:42:56 +0100890void MipsMir2Lir::GenIntToLong(RegLocation rl_dest, RegLocation rl_src) {
891 if (!cu_->target64) {
892 Mir2Lir::GenIntToLong(rl_dest, rl_src);
893 return;
894 }
895 rl_src = LoadValue(rl_src, kCoreReg);
896 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
897 NewLIR3(kMipsSll, rl_result.reg.GetReg(), As64BitReg(rl_src.reg).GetReg(), 0);
898 StoreValueWide(rl_dest, rl_result);
899}
900
901void MipsMir2Lir::GenConversionCall(QuickEntrypointEnum trampoline, RegLocation rl_dest,
902 RegLocation rl_src, RegisterClass reg_class) {
903 FlushAllRegs(); // Send everything to home location.
904 CallRuntimeHelperRegLocation(trampoline, rl_src, false);
905 if (rl_dest.wide) {
906 RegLocation rl_result;
907 rl_result = GetReturnWide(reg_class);
908 StoreValueWide(rl_dest, rl_result);
909 } else {
910 RegLocation rl_result;
911 rl_result = GetReturn(reg_class);
912 StoreValue(rl_dest, rl_result);
913 }
914}
915
Brian Carlstrom7940e442013-07-12 13:46:57 -0700916} // namespace art