blob: 1099303f7d853a1bc829e3e5b93f56cbe81b2afc [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.
Vladimir Marko8958f7f2015-06-19 14:56:38 +0100261 // Handle overlap
262 if (r_src.GetHighReg() != r_dest.GetLowReg()) {
263 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
264 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
265 } else if (r_src.GetLowReg() != r_dest.GetHighReg()) {
buzbee7a11ab02014-04-28 20:02:38 -0700266 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
267 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
268 } else {
Vladimir Marko8958f7f2015-06-19 14:56:38 +0100269 RegStorage r_tmp = AllocTemp();
270 OpRegCopy(r_tmp, r_src.GetHigh());
buzbee7a11ab02014-04-28 20:02:38 -0700271 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
Vladimir Marko8958f7f2015-06-19 14:56:38 +0100272 OpRegCopy(r_dest.GetHigh(), r_tmp);
273 FreeTemp(r_tmp);
buzbee7a11ab02014-04-28 20:02:38 -0700274 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700275 }
276 }
277 }
278}
279
Andreas Gampe90969af2014-07-15 23:02:11 -0700280void MipsMir2Lir::GenSelectConst32(RegStorage left_op, RegStorage right_op, ConditionCode code,
281 int32_t true_val, int32_t false_val, RegStorage rs_dest,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700282 RegisterClass dest_reg_class) {
283 UNUSED(dest_reg_class);
Andreas Gampe90969af2014-07-15 23:02:11 -0700284 // Implement as a branch-over.
285 // TODO: Conditional move?
Andreas Gampe90969af2014-07-15 23:02:11 -0700286 LoadConstant(rs_dest, true_val);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700287 LIR* ne_branchover = OpCmpBranch(code, left_op, right_op, nullptr);
Raghu Gandham08f8d4c2014-08-14 13:46:53 -0700288 LoadConstant(rs_dest, false_val);
Andreas Gampe90969af2014-07-15 23:02:11 -0700289 LIR* target_label = NewLIR0(kPseudoTargetLabel);
290 ne_branchover->target = target_label;
291}
292
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700293void MipsMir2Lir::GenSelect(BasicBlock* bb, MIR* mir) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700294 UNUSED(bb, mir);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700295 UNIMPLEMENTED(FATAL) << "Need codegen for select";
296}
297
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700298void MipsMir2Lir::GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700299 UNUSED(bb, mir);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700300 UNIMPLEMENTED(FATAL) << "Need codegen for fused long cmp branch";
301}
302
buzbee2700f7e2014-03-07 09:46:20 -0800303RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegStorage reg1, RegStorage reg2,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800304 bool is_div) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700305 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Douglas Leung027f0ff2015-02-27 19:05:03 -0800306
307 if (isaIsR6_) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100308 NewLIR3(is_div ? kMipsR6Div : kMipsR6Mod, rl_result.reg.GetReg(), reg1.GetReg(), reg2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700309 } else {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100310 NewLIR2(kMipsR2Div, reg1.GetReg(), reg2.GetReg());
311 NewLIR1(is_div ? kMipsR2Mflo : kMipsR2Mfhi, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700312 }
313 return rl_result;
314}
315
Goran Jakovljevic10957932015-03-24 18:42:56 +0100316RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegStorage reg1, int lit, bool is_div) {
buzbee091cc402014-03-31 10:14:40 -0700317 RegStorage t_reg = AllocTemp();
Douglas Leung7fa6e272015-04-07 13:25:56 -0700318 // lit is guarantee to be a 16-bit constant
319 if (IsUint<16>(lit)) {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700320 NewLIR3(kMipsOri, t_reg.GetReg(), rZERO, lit);
Douglas Leung7fa6e272015-04-07 13:25:56 -0700321 } else {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700322 // Addiu will sign extend the entire width (32 or 64) of the register.
323 NewLIR3(kMipsAddiu, t_reg.GetReg(), rZERO, lit);
Douglas Leung7fa6e272015-04-07 13:25:56 -0700324 }
Douglas Leung027f0ff2015-02-27 19:05:03 -0800325 RegLocation rl_result = GenDivRem(rl_dest, reg1, t_reg, is_div);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700326 FreeTemp(t_reg);
327 return rl_result;
328}
329
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700330RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2,
331 bool is_div, int flags) {
332 UNUSED(rl_dest, rl_src1, rl_src2, is_div, flags);
Mark Mendell2bf31e62014-01-23 12:13:40 -0800333 LOG(FATAL) << "Unexpected use of GenDivRem for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700334 UNREACHABLE();
Mark Mendell2bf31e62014-01-23 12:13:40 -0800335}
336
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700337RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegLocation rl_src1, int lit,
338 bool is_div) {
339 UNUSED(rl_dest, rl_src1, lit, is_div);
Mark Mendell2bf31e62014-01-23 12:13:40 -0800340 LOG(FATAL) << "Unexpected use of GenDivRemLit for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700341 UNREACHABLE();
Mark Mendell2bf31e62014-01-23 12:13:40 -0800342}
343
Vladimir Marko1c282e22013-11-21 14:49:47 +0000344bool MipsMir2Lir::GenInlinedCas(CallInfo* info, bool is_long, bool is_object) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700345 UNUSED(info, is_long, is_object);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346 return false;
347}
348
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100349bool MipsMir2Lir::GenInlinedAbsFloat(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
355bool MipsMir2Lir::GenInlinedAbsDouble(CallInfo* info) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700356 UNUSED(info);
357 // TODO: add Mips implementation.
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100358 return false;
359}
360
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361bool MipsMir2Lir::GenInlinedSqrt(CallInfo* info) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700362 UNUSED(info);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700363 return false;
364}
365
Vladimir Markoe508a202013-11-04 15:24:22 +0000366bool MipsMir2Lir::GenInlinedPeek(CallInfo* info, OpSize size) {
367 if (size != kSignedByte) {
368 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
369 return false;
370 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100371 RegLocation rl_src_address = info->args[0]; // Long address.
372 if (!cu_->target64) {
373 rl_src_address = NarrowRegLoc(rl_src_address); // Ignore high half in info->args[1].
374 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000375 RegLocation rl_dest = InlineTarget(info);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100376 RegLocation rl_address;
377 if (cu_->target64) {
378 rl_address = LoadValueWide(rl_src_address, kCoreReg);
379 } else {
380 rl_address = LoadValue(rl_src_address, kCoreReg);
381 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000382 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
383 DCHECK(size == kSignedByte);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000384 LoadBaseDisp(rl_address.reg, 0, rl_result.reg, size, kNotVolatile);
Vladimir Markoe508a202013-11-04 15:24:22 +0000385 StoreValue(rl_dest, rl_result);
386 return true;
387}
388
389bool MipsMir2Lir::GenInlinedPoke(CallInfo* info, OpSize size) {
390 if (size != kSignedByte) {
391 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
392 return false;
393 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100394 RegLocation rl_src_address = info->args[0]; // Long address.
395 if (!cu_->target64) {
396 rl_src_address = NarrowRegLoc(rl_src_address); // Ignore high half in info->args[1].
397 }
398 RegLocation rl_src_value = info->args[2]; // [size] value.
399 RegLocation rl_address;
400 if (cu_->target64) {
401 rl_address = LoadValueWide(rl_src_address, kCoreReg);
402 } else {
403 rl_address = LoadValue(rl_src_address, kCoreReg);
404 }
Vladimir Markoe508a202013-11-04 15:24:22 +0000405 DCHECK(size == kSignedByte);
406 RegLocation rl_value = LoadValue(rl_src_value, kCoreReg);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000407 StoreBaseDisp(rl_address.reg, 0, rl_value.reg, size, kNotVolatile);
Vladimir Markoe508a202013-11-04 15:24:22 +0000408 return true;
409}
410
Vladimir Markof6737f72015-03-23 17:05:14 +0000411void MipsMir2Lir::OpPcRelLoad(RegStorage reg, LIR* target) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700412 UNUSED(reg, target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700413 LOG(FATAL) << "Unexpected use of OpPcRelLoad 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::OpVldm(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 OpVldm for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700420 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700421}
422
buzbee2700f7e2014-03-07 09:46:20 -0800423LIR* MipsMir2Lir::OpVstm(RegStorage r_base, int count) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700424 UNUSED(r_base, count);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700425 LOG(FATAL) << "Unexpected use of OpVstm for Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700426 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427}
428
Goran Jakovljevic10957932015-03-24 18:42:56 +0100429void MipsMir2Lir::GenMultiplyByTwoBitMultiplier(RegLocation rl_src, RegLocation rl_result, int lit,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700430 int first_bit, int second_bit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700431 UNUSED(lit);
buzbee2700f7e2014-03-07 09:46:20 -0800432 RegStorage t_reg = AllocTemp();
433 OpRegRegImm(kOpLsl, t_reg, rl_src.reg, second_bit - first_bit);
434 OpRegRegReg(kOpAdd, rl_result.reg, rl_src.reg, t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700435 FreeTemp(t_reg);
436 if (first_bit != 0) {
buzbee2700f7e2014-03-07 09:46:20 -0800437 OpRegRegImm(kOpLsl, rl_result.reg, rl_result.reg, first_bit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700438 }
439}
440
Mingyao Yange643a172014-04-08 11:02:52 -0700441void MipsMir2Lir::GenDivZeroCheckWide(RegStorage reg) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100442 if (cu_->target64) {
443 GenDivZeroCheck(reg);
444 } else {
445 DCHECK(reg.IsPair()); // TODO: support k64BitSolo.
446 RegStorage t_reg = AllocTemp();
447 OpRegRegReg(kOpOr, t_reg, reg.GetLow(), reg.GetHigh());
448 GenDivZeroCheck(t_reg);
449 FreeTemp(t_reg);
450 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700451}
452
Goran Jakovljevic10957932015-03-24 18:42:56 +0100453// Test suspend flag, return target of taken suspend branch.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700454LIR* MipsMir2Lir::OpTestSuspend(LIR* target) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100455 OpRegImm(kOpSub, TargetPtrReg(kSuspend), 1);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700456 return OpCmpImmBranch((target == nullptr) ? kCondEq : kCondNe, TargetPtrReg(kSuspend), 0, target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700457}
458
Goran Jakovljevic10957932015-03-24 18:42:56 +0100459// Decrement register and branch on condition.
buzbee2700f7e2014-03-07 09:46:20 -0800460LIR* MipsMir2Lir::OpDecAndBranch(ConditionCode c_code, RegStorage reg, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700461 OpRegImm(kOpSub, reg, 1);
462 return OpCmpImmBranch(c_code, reg, 0, target);
463}
464
buzbee11b63d12013-08-27 07:34:17 -0700465bool MipsMir2Lir::SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700466 RegLocation rl_src, RegLocation rl_dest, int lit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700467 UNUSED(dalvik_opcode, is_div, rl_src, rl_dest, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700468 LOG(FATAL) << "Unexpected use of smallLiteralDive in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700469 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700470}
471
Ian Rogerse2143c02014-03-28 08:47:16 -0700472bool MipsMir2Lir::EasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700473 UNUSED(rl_src, rl_dest, lit);
Ian Rogerse2143c02014-03-28 08:47:16 -0700474 LOG(FATAL) << "Unexpected use of easyMultiply in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700475 UNREACHABLE();
Ian Rogerse2143c02014-03-28 08:47:16 -0700476}
477
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700478LIR* MipsMir2Lir::OpIT(ConditionCode cond, const char* guide) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700479 UNUSED(cond, guide);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700480 LOG(FATAL) << "Unexpected use of OpIT in Mips";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700481 UNREACHABLE();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700482}
483
Dave Allison3da67a52014-04-02 17:03:45 -0700484void MipsMir2Lir::OpEndIT(LIR* it) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700485 UNUSED(it);
Dave Allison3da67a52014-04-02 17:03:45 -0700486 LOG(FATAL) << "Unexpected use of OpEndIT in Mips";
487}
488
Goran Jakovljevic10957932015-03-24 18:42:56 +0100489void MipsMir2Lir::GenAddLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700490 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
491 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
492 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
493 /*
494 * [v1 v0] = [a1 a0] + [a3 a2];
495 * addu v0,a2,a0
496 * addu t1,a3,a1
497 * sltu v1,v0,a2
498 * addu v1,v1,t1
499 */
500
buzbee2700f7e2014-03-07 09:46:20 -0800501 OpRegRegReg(kOpAdd, rl_result.reg.GetLow(), rl_src2.reg.GetLow(), rl_src1.reg.GetLow());
502 RegStorage t_reg = AllocTemp();
503 OpRegRegReg(kOpAdd, t_reg, rl_src2.reg.GetHigh(), rl_src1.reg.GetHigh());
Goran Jakovljevic10957932015-03-24 18:42:56 +0100504 NewLIR3(kMipsSltu, rl_result.reg.GetHighReg(), rl_result.reg.GetLowReg(),
505 rl_src2.reg.GetLowReg());
buzbee2700f7e2014-03-07 09:46:20 -0800506 OpRegRegReg(kOpAdd, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700507 FreeTemp(t_reg);
508 StoreValueWide(rl_dest, rl_result);
509}
510
Goran Jakovljevic10957932015-03-24 18:42:56 +0100511void MipsMir2Lir::GenSubLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700512 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
513 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
514 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
515 /*
516 * [v1 v0] = [a1 a0] - [a3 a2];
517 * sltu t1,a0,a2
518 * subu v0,a0,a2
519 * subu v1,a1,a3
520 * subu v1,v1,t1
521 */
522
buzbee2700f7e2014-03-07 09:46:20 -0800523 RegStorage t_reg = AllocTemp();
524 NewLIR3(kMipsSltu, t_reg.GetReg(), rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
525 OpRegRegReg(kOpSub, rl_result.reg.GetLow(), rl_src1.reg.GetLow(), rl_src2.reg.GetLow());
526 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_src1.reg.GetHigh(), rl_src2.reg.GetHigh());
527 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700528 FreeTemp(t_reg);
529 StoreValueWide(rl_dest, rl_result);
530}
531
Andreas Gampec76c6142014-08-04 16:30:03 -0700532void MipsMir2Lir::GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700533 RegLocation rl_src2, int flags) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100534 if (cu_->target64) {
535 switch (opcode) {
536 case Instruction::NOT_LONG:
537 GenNotLong(rl_dest, rl_src2);
538 return;
539 case Instruction::ADD_LONG:
540 case Instruction::ADD_LONG_2ADDR:
541 GenLongOp(kOpAdd, rl_dest, rl_src1, rl_src2);
542 return;
543 case Instruction::SUB_LONG:
544 case Instruction::SUB_LONG_2ADDR:
545 GenLongOp(kOpSub, rl_dest, rl_src1, rl_src2);
546 return;
547 case Instruction::MUL_LONG:
548 case Instruction::MUL_LONG_2ADDR:
549 GenMulLong(rl_dest, rl_src1, rl_src2);
550 return;
551 case Instruction::DIV_LONG:
552 case Instruction::DIV_LONG_2ADDR:
553 GenDivRemLong(opcode, rl_dest, rl_src1, rl_src2, /*is_div*/ true, flags);
554 return;
555 case Instruction::REM_LONG:
556 case Instruction::REM_LONG_2ADDR:
557 GenDivRemLong(opcode, rl_dest, rl_src1, rl_src2, /*is_div*/ false, flags);
558 return;
559 case Instruction::AND_LONG:
560 case Instruction::AND_LONG_2ADDR:
561 GenLongOp(kOpAnd, rl_dest, rl_src1, rl_src2);
562 return;
563 case Instruction::OR_LONG:
564 case Instruction::OR_LONG_2ADDR:
565 GenLongOp(kOpOr, rl_dest, rl_src1, rl_src2);
566 return;
567 case Instruction::XOR_LONG:
568 case Instruction::XOR_LONG_2ADDR:
569 GenLongOp(kOpXor, rl_dest, rl_src1, rl_src2);
570 return;
571 case Instruction::NEG_LONG:
572 GenNegLong(rl_dest, rl_src2);
573 return;
Serban Constantinescued65c5e2014-05-22 15:10:18 +0100574
Goran Jakovljevic10957932015-03-24 18:42:56 +0100575 default:
576 LOG(FATAL) << "Invalid long arith op";
577 return;
578 }
579 } else {
580 switch (opcode) {
581 case Instruction::ADD_LONG:
582 case Instruction::ADD_LONG_2ADDR:
583 GenAddLong(rl_dest, rl_src1, rl_src2);
584 return;
585 case Instruction::SUB_LONG:
586 case Instruction::SUB_LONG_2ADDR:
587 GenSubLong(rl_dest, rl_src1, rl_src2);
588 return;
589 case Instruction::NEG_LONG:
590 GenNegLong(rl_dest, rl_src2);
591 return;
592 default:
593 break;
594 }
595 // Fallback for all other ops.
596 Mir2Lir::GenArithOpLong(opcode, rl_dest, rl_src1, rl_src2, flags);
Andreas Gampec76c6142014-08-04 16:30:03 -0700597 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100598}
Andreas Gampec76c6142014-08-04 16:30:03 -0700599
Goran Jakovljevic10957932015-03-24 18:42:56 +0100600void MipsMir2Lir::GenLongOp(OpKind op, RegLocation rl_dest, RegLocation rl_src1,
601 RegLocation rl_src2) {
602 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
603 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
604 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
605 OpRegRegReg(op, rl_result.reg, rl_src1.reg, rl_src2.reg);
606 StoreValueWide(rl_dest, rl_result);
607}
608
609void MipsMir2Lir::GenNotLong(RegLocation rl_dest, RegLocation rl_src) {
610 rl_src = LoadValueWide(rl_src, kCoreReg);
611 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
612 OpRegReg(kOpMvn, rl_result.reg, rl_src.reg);
613 StoreValueWide(rl_dest, rl_result);
614}
615
616void MipsMir2Lir::GenMulLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
617 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
618 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
619 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
620 NewLIR3(kMips64Dmul, rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg());
621 StoreValueWide(rl_dest, rl_result);
622}
623
624void MipsMir2Lir::GenDivRemLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
625 RegLocation rl_src2, bool is_div, int flags) {
626 UNUSED(opcode);
627 // TODO: Implement easy div/rem?
628 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
629 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
630 if ((flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
631 GenDivZeroCheckWide(rl_src2.reg);
632 }
633 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
634 NewLIR3(is_div ? kMips64Ddiv : kMips64Dmod, rl_result.reg.GetReg(), rl_src1.reg.GetReg(),
635 rl_src2.reg.GetReg());
636 StoreValueWide(rl_dest, rl_result);
Serban Constantinescued65c5e2014-05-22 15:10:18 +0100637}
638
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700639void MipsMir2Lir::GenNegLong(RegLocation rl_dest, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700640 rl_src = LoadValueWide(rl_src, kCoreReg);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100641 RegLocation rl_result;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700642
Goran Jakovljevic10957932015-03-24 18:42:56 +0100643 if (cu_->target64) {
644 rl_result = EvalLocWide(rl_dest, kCoreReg, true);
645 OpRegReg(kOpNeg, rl_result.reg, rl_src.reg);
646 StoreValueWide(rl_dest, rl_result);
647 } else {
648 rl_result = EvalLoc(rl_dest, kCoreReg, true);
649 // [v1 v0] = -[a1 a0]
650 // negu v0,a0
651 // negu v1,a1
652 // sltu t1,r_zero
653 // subu v1,v1,t1
654 OpRegReg(kOpNeg, rl_result.reg.GetLow(), rl_src.reg.GetLow());
655 OpRegReg(kOpNeg, rl_result.reg.GetHigh(), rl_src.reg.GetHigh());
656 RegStorage t_reg = AllocTemp();
657 NewLIR3(kMipsSltu, t_reg.GetReg(), rZERO, rl_result.reg.GetLowReg());
658 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
659 FreeTemp(t_reg);
660 StoreValueWide(rl_dest, rl_result);
661 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662}
663
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664/*
665 * Generate array load
666 */
667void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800668 RegLocation rl_index, RegLocation rl_dest, int scale) {
buzbee091cc402014-03-31 10:14:40 -0700669 RegisterClass reg_class = RegClassBySize(size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700670 int len_offset = mirror::Array::LengthOffset().Int32Value();
671 int data_offset;
672 RegLocation rl_result;
Douglas Leung2db3e262014-06-25 16:02:55 -0700673 rl_array = LoadValue(rl_array, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700674 rl_index = LoadValue(rl_index, kCoreReg);
675
Douglas Leung2db3e262014-06-25 16:02:55 -0700676 // FIXME: need to add support for rl_index.is_const.
677
buzbee695d13a2014-04-19 13:32:20 -0700678 if (size == k64 || size == kDouble) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700679 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
680 } else {
681 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
682 }
683
Goran Jakovljevic10957932015-03-24 18:42:56 +0100684 // Null object?
buzbee2700f7e2014-03-07 09:46:20 -0800685 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700686
Goran Jakovljevic10957932015-03-24 18:42:56 +0100687 RegStorage reg_ptr = (cu_->target64) ? AllocTempRef() : AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700688 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800689 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700690 if (needs_range_check) {
691 reg_len = AllocTemp();
Goran Jakovljevic10957932015-03-24 18:42:56 +0100692 // Get len.
buzbee695d13a2014-04-19 13:32:20 -0700693 Load32Disp(rl_array.reg, len_offset, reg_len);
Douglas Leung22bb5a22015-07-02 16:42:08 -0700694 MarkPossibleNullPointerException(opt_flags);
695 } else {
696 ForceImplicitNullCheck(rl_array.reg, opt_flags, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700697 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100698 // reg_ptr -> array data.
buzbee2700f7e2014-03-07 09:46:20 -0800699 OpRegRegImm(kOpAdd, reg_ptr, rl_array.reg, data_offset);
buzbee091cc402014-03-31 10:14:40 -0700700 FreeTemp(rl_array.reg);
buzbee695d13a2014-04-19 13:32:20 -0700701 if ((size == k64) || (size == kDouble)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800703 RegStorage r_new_index = AllocTemp();
704 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700705 OpRegReg(kOpAdd, reg_ptr, r_new_index);
706 FreeTemp(r_new_index);
707 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800708 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709 }
buzbee2700f7e2014-03-07 09:46:20 -0800710 FreeTemp(rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700711 rl_result = EvalLoc(rl_dest, reg_class, true);
712
713 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700714 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700715 FreeTemp(reg_len);
716 }
Andreas Gampe3c12c512014-06-24 18:46:29 +0000717 LoadBaseDisp(reg_ptr, 0, rl_result.reg, size, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718
719 FreeTemp(reg_ptr);
720 StoreValueWide(rl_dest, rl_result);
721 } else {
722 rl_result = EvalLoc(rl_dest, reg_class, true);
723
724 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700725 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700726 FreeTemp(reg_len);
727 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100728
729 if (cu_->target64) {
730 if (rl_result.ref) {
731 LoadBaseIndexed(reg_ptr, As64BitReg(rl_index.reg), As32BitReg(rl_result.reg), scale,
732 kReference);
733 } else {
734 LoadBaseIndexed(reg_ptr, As64BitReg(rl_index.reg), rl_result.reg, scale, size);
735 }
736 } else {
737 LoadBaseIndexed(reg_ptr, rl_index.reg, rl_result.reg, scale, size);
738 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739
740 FreeTemp(reg_ptr);
741 StoreValue(rl_dest, rl_result);
742 }
743}
744
745/*
746 * Generate array store
747 *
748 */
749void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800750 RegLocation rl_index, RegLocation rl_src, int scale, bool card_mark) {
buzbee091cc402014-03-31 10:14:40 -0700751 RegisterClass reg_class = RegClassBySize(size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700752 int len_offset = mirror::Array::LengthOffset().Int32Value();
753 int data_offset;
754
buzbee695d13a2014-04-19 13:32:20 -0700755 if (size == k64 || size == kDouble) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700756 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
757 } else {
758 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
759 }
760
Douglas Leung2db3e262014-06-25 16:02:55 -0700761 rl_array = LoadValue(rl_array, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700762 rl_index = LoadValue(rl_index, kCoreReg);
Douglas Leung2db3e262014-06-25 16:02:55 -0700763
764 // FIXME: need to add support for rl_index.is_const.
765
buzbee2700f7e2014-03-07 09:46:20 -0800766 RegStorage reg_ptr;
Ian Rogers773aab12013-10-14 13:50:10 -0700767 bool allocated_reg_ptr_temp = false;
buzbee091cc402014-03-31 10:14:40 -0700768 if (IsTemp(rl_array.reg) && !card_mark) {
769 Clobber(rl_array.reg);
buzbee2700f7e2014-03-07 09:46:20 -0800770 reg_ptr = rl_array.reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700771 } else {
772 reg_ptr = AllocTemp();
buzbee2700f7e2014-03-07 09:46:20 -0800773 OpRegCopy(reg_ptr, rl_array.reg);
Ian Rogers773aab12013-10-14 13:50:10 -0700774 allocated_reg_ptr_temp = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700775 }
776
Goran Jakovljevic10957932015-03-24 18:42:56 +0100777 // Null object?
buzbee2700f7e2014-03-07 09:46:20 -0800778 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700779
780 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800781 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700782 if (needs_range_check) {
783 reg_len = AllocTemp();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700784 // NOTE: max live temps(4) here.
Goran Jakovljevic10957932015-03-24 18:42:56 +0100785 // Get len.
buzbee695d13a2014-04-19 13:32:20 -0700786 Load32Disp(rl_array.reg, len_offset, reg_len);
Douglas Leung22bb5a22015-07-02 16:42:08 -0700787 MarkPossibleNullPointerException(opt_flags);
788 } else {
789 ForceImplicitNullCheck(rl_array.reg, opt_flags, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700790 }
Goran Jakovljevic10957932015-03-24 18:42:56 +0100791 // reg_ptr -> array data.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700792 OpRegImm(kOpAdd, reg_ptr, data_offset);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100793 // At this point, reg_ptr points to array, 2 live temps.
buzbee695d13a2014-04-19 13:32:20 -0700794 if ((size == k64) || (size == kDouble)) {
Goran Jakovljevic10957932015-03-24 18:42:56 +0100795 // TUNING: specific wide routine that can handle fp regs.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700796 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800797 RegStorage r_new_index = AllocTemp();
798 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700799 OpRegReg(kOpAdd, reg_ptr, r_new_index);
800 FreeTemp(r_new_index);
801 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800802 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700803 }
804 rl_src = LoadValueWide(rl_src, reg_class);
805
806 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700807 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700808 FreeTemp(reg_len);
809 }
810
Andreas Gampe3c12c512014-06-24 18:46:29 +0000811 StoreBaseDisp(reg_ptr, 0, rl_src.reg, size, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700812 } else {
813 rl_src = LoadValue(rl_src, reg_class);
814 if (needs_range_check) {
Andreas Gampe8ebdc2b2015-01-14 12:09:25 -0800815 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700816 FreeTemp(reg_len);
817 }
buzbee2700f7e2014-03-07 09:46:20 -0800818 StoreBaseIndexed(reg_ptr, rl_index.reg, rl_src.reg, scale, size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700819 }
Ian Rogers773aab12013-10-14 13:50:10 -0700820 if (allocated_reg_ptr_temp) {
821 FreeTemp(reg_ptr);
822 }
Ian Rogersa9a82542013-10-04 11:17:26 -0700823 if (card_mark) {
Vladimir Marko743b98c2014-11-24 19:45:41 +0000824 MarkGCCard(opt_flags, rl_src.reg, rl_array.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700825 }
826}
827
Goran Jakovljevic10957932015-03-24 18:42:56 +0100828void MipsMir2Lir::GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
829 RegLocation rl_shift) {
830 if (!cu_->target64) {
831 Mir2Lir::GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift);
832 return;
833 }
834 OpKind op = kOpBkpt;
835 switch (opcode) {
Andreas Gampe8f486f32015-04-09 15:30:51 -0700836 case Instruction::SHL_LONG:
837 case Instruction::SHL_LONG_2ADDR:
838 op = kOpLsl;
839 break;
840 case Instruction::SHR_LONG:
841 case Instruction::SHR_LONG_2ADDR:
842 op = kOpAsr;
843 break;
844 case Instruction::USHR_LONG:
845 case Instruction::USHR_LONG_2ADDR:
846 op = kOpLsr;
847 break;
848 default:
849 LOG(FATAL) << "Unexpected case: " << opcode;
Goran Jakovljevic10957932015-03-24 18:42:56 +0100850 }
851 rl_shift = LoadValue(rl_shift, kCoreReg);
852 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
853 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
854 OpRegRegReg(op, rl_result.reg, rl_src1.reg, As64BitReg(rl_shift.reg));
855 StoreValueWide(rl_dest, rl_result);
856}
857
Brian Carlstrom7940e442013-07-12 13:46:57 -0700858void MipsMir2Lir::GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700859 RegLocation rl_src1, RegLocation rl_shift, int flags) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700860 UNUSED(flags);
Goran Jakovljevic10957932015-03-24 18:42:56 +0100861 if (!cu_->target64) {
862 // Default implementation is just to ignore the constant case.
863 GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift);
864 return;
865 }
866 OpKind op = kOpBkpt;
867 // Per spec, we only care about low 6 bits of shift amount.
868 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f;
869 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
870 if (shift_amount == 0) {
871 StoreValueWide(rl_dest, rl_src1);
872 return;
873 }
874
875 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
876 switch (opcode) {
877 case Instruction::SHL_LONG:
878 case Instruction::SHL_LONG_2ADDR:
879 op = kOpLsl;
880 break;
881 case Instruction::SHR_LONG:
882 case Instruction::SHR_LONG_2ADDR:
883 op = kOpAsr;
884 break;
885 case Instruction::USHR_LONG:
886 case Instruction::USHR_LONG_2ADDR:
887 op = kOpLsr;
888 break;
889 default:
890 LOG(FATAL) << "Unexpected case";
891 }
892 OpRegRegImm(op, rl_result.reg, rl_src1.reg, shift_amount);
893 StoreValueWide(rl_dest, rl_result);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700894}
895
Goran Jakovljevic10957932015-03-24 18:42:56 +0100896void MipsMir2Lir::GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
897 RegLocation rl_src1, RegLocation rl_src2, int flags) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700898 // Default - bail to non-const handler.
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700899 GenArithOpLong(opcode, rl_dest, rl_src1, rl_src2, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700900}
901
Goran Jakovljevic10957932015-03-24 18:42:56 +0100902void MipsMir2Lir::GenIntToLong(RegLocation rl_dest, RegLocation rl_src) {
903 if (!cu_->target64) {
904 Mir2Lir::GenIntToLong(rl_dest, rl_src);
905 return;
906 }
907 rl_src = LoadValue(rl_src, kCoreReg);
908 RegLocation rl_result = EvalLocWide(rl_dest, kCoreReg, true);
909 NewLIR3(kMipsSll, rl_result.reg.GetReg(), As64BitReg(rl_src.reg).GetReg(), 0);
910 StoreValueWide(rl_dest, rl_result);
911}
912
913void MipsMir2Lir::GenConversionCall(QuickEntrypointEnum trampoline, RegLocation rl_dest,
914 RegLocation rl_src, RegisterClass reg_class) {
915 FlushAllRegs(); // Send everything to home location.
916 CallRuntimeHelperRegLocation(trampoline, rl_src, false);
917 if (rl_dest.wide) {
918 RegLocation rl_result;
919 rl_result = GetReturnWide(reg_class);
920 StoreValueWide(rl_dest, rl_result);
921 } else {
922 RegLocation rl_result;
923 rl_result = GetReturn(reg_class);
924 StoreValue(rl_dest, rl_result);
925 }
926}
927
Brian Carlstrom7940e442013-07-12 13:46:57 -0700928} // namespace art