blob: cb999af0234a20ff3b88bc464aca6ea7ef5bf70c [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"
20#include "dex/quick/mir_to_lir-inl.h"
Ian Rogers166db042013-07-26 12:05:57 -070021#include "entrypoints/quick/quick_entrypoints.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070022#include "mips_lir.h"
23#include "mirror/array.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070024
25namespace art {
26
27/*
28 * Compare two 64-bit values
29 * x = y return 0
30 * x < y return -1
31 * x > y return 1
32 *
33 * slt t0, x.hi, y.hi; # (x.hi < y.hi) ? 1:0
34 * sgt t1, x.hi, y.hi; # (y.hi > x.hi) ? 1:0
35 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
36 * bnez res, finish
37 * sltu t0, x.lo, y.lo
38 * sgtu r1, x.lo, y.lo
39 * subu res, t0, t1
40 * finish:
41 *
42 */
43void MipsMir2Lir::GenCmpLong(RegLocation rl_dest, RegLocation rl_src1,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -070044 RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070045 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
46 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -080047 int t0 = AllocTemp().GetReg();
48 int t1 = AllocTemp().GetReg();
Brian Carlstrom7940e442013-07-12 13:46:57 -070049 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Bill Buzbee00e1ec62014-02-27 23:44:13 +000050 NewLIR3(kMipsSlt, t0, rl_src1.reg.GetHighReg(), rl_src2.reg.GetHighReg());
51 NewLIR3(kMipsSlt, t1, rl_src2.reg.GetHighReg(), rl_src1.reg.GetHighReg());
52 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1, t0);
buzbee2700f7e2014-03-07 09:46:20 -080053 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.reg, 0, NULL);
54 NewLIR3(kMipsSltu, t0, rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
55 NewLIR3(kMipsSltu, t1, rl_src2.reg.GetLowReg(), rl_src1.reg.GetLowReg());
Bill Buzbee00e1ec62014-02-27 23:44:13 +000056 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1, t0);
Brian Carlstrom7940e442013-07-12 13:46:57 -070057 FreeTemp(t0);
58 FreeTemp(t1);
59 LIR* target = NewLIR0(kPseudoTargetLabel);
60 branch->target = target;
61 StoreValue(rl_dest, rl_result);
62}
63
buzbee2700f7e2014-03-07 09:46:20 -080064LIR* MipsMir2Lir::OpCmpBranch(ConditionCode cond, RegStorage src1, RegStorage src2, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070065 LIR* branch;
66 MipsOpCode slt_op;
67 MipsOpCode br_op;
68 bool cmp_zero = false;
69 bool swapped = false;
70 switch (cond) {
71 case kCondEq:
72 br_op = kMipsBeq;
73 cmp_zero = true;
74 break;
75 case kCondNe:
76 br_op = kMipsBne;
77 cmp_zero = true;
78 break;
Vladimir Marko58af1f92013-12-19 13:31:15 +000079 case kCondUlt:
Brian Carlstrom7940e442013-07-12 13:46:57 -070080 slt_op = kMipsSltu;
81 br_op = kMipsBnez;
82 break;
Vladimir Marko58af1f92013-12-19 13:31:15 +000083 case kCondUge:
Brian Carlstrom7940e442013-07-12 13:46:57 -070084 slt_op = kMipsSltu;
85 br_op = kMipsBeqz;
86 break;
87 case kCondGe:
88 slt_op = kMipsSlt;
89 br_op = kMipsBeqz;
90 break;
91 case kCondGt:
92 slt_op = kMipsSlt;
93 br_op = kMipsBnez;
94 swapped = true;
95 break;
96 case kCondLe:
97 slt_op = kMipsSlt;
98 br_op = kMipsBeqz;
99 swapped = true;
100 break;
101 case kCondLt:
102 slt_op = kMipsSlt;
103 br_op = kMipsBnez;
104 break;
105 case kCondHi: // Gtu
106 slt_op = kMipsSltu;
107 br_op = kMipsBnez;
108 swapped = true;
109 break;
110 default:
111 LOG(FATAL) << "No support for ConditionCode: " << cond;
112 return NULL;
113 }
114 if (cmp_zero) {
buzbee2700f7e2014-03-07 09:46:20 -0800115 branch = NewLIR2(br_op, src1.GetReg(), src2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800117 int t_reg = AllocTemp().GetReg();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700118 if (swapped) {
buzbee2700f7e2014-03-07 09:46:20 -0800119 NewLIR3(slt_op, t_reg, src2.GetReg(), src1.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700120 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800121 NewLIR3(slt_op, t_reg, src1.GetReg(), src2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700122 }
123 branch = NewLIR1(br_op, t_reg);
124 FreeTemp(t_reg);
125 }
126 branch->target = target;
127 return branch;
128}
129
buzbee2700f7e2014-03-07 09:46:20 -0800130LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700131 LIR* branch;
132 if (check_value != 0) {
133 // TUNING: handle s16 & kCondLt/Mi case using slti
buzbee2700f7e2014-03-07 09:46:20 -0800134 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700135 LoadConstant(t_reg, check_value);
136 branch = OpCmpBranch(cond, reg, t_reg, target);
137 FreeTemp(t_reg);
138 return branch;
139 }
140 MipsOpCode opc;
141 switch (cond) {
142 case kCondEq: opc = kMipsBeqz; break;
143 case kCondGe: opc = kMipsBgez; break;
144 case kCondGt: opc = kMipsBgtz; break;
145 case kCondLe: opc = kMipsBlez; break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700146 // case KCondMi:
Brian Carlstrom7940e442013-07-12 13:46:57 -0700147 case kCondLt: opc = kMipsBltz; break;
148 case kCondNe: opc = kMipsBnez; break;
149 default:
150 // Tuning: use slti when applicable
buzbee2700f7e2014-03-07 09:46:20 -0800151 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700152 LoadConstant(t_reg, check_value);
153 branch = OpCmpBranch(cond, reg, t_reg, target);
154 FreeTemp(t_reg);
155 return branch;
156 }
buzbee2700f7e2014-03-07 09:46:20 -0800157 branch = NewLIR1(opc, reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700158 branch->target = target;
159 return branch;
160}
161
buzbee2700f7e2014-03-07 09:46:20 -0800162LIR* MipsMir2Lir::OpRegCopyNoInsert(RegStorage r_dest, RegStorage r_src) {
163 // If src or dest is a pair, we'll be using low reg.
164 if (r_dest.IsPair()) {
165 r_dest = r_dest.GetLow();
166 }
167 if (r_src.IsPair()) {
168 r_src = r_src.GetLow();
169 }
170 if (MIPS_FPREG(r_dest.GetReg()) || MIPS_FPREG(r_src.GetReg()))
Brian Carlstrom7940e442013-07-12 13:46:57 -0700171 return OpFpRegCopy(r_dest, r_src);
172 LIR* res = RawLIR(current_dalvik_offset_, kMipsMove,
buzbee2700f7e2014-03-07 09:46:20 -0800173 r_dest.GetReg(), r_src.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700174 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {
175 res->flags.is_nop = true;
176 }
177 return res;
178}
179
buzbee2700f7e2014-03-07 09:46:20 -0800180LIR* MipsMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 LIR *res = OpRegCopyNoInsert(r_dest, r_src);
182 AppendLIR(res);
183 return res;
184}
185
buzbee2700f7e2014-03-07 09:46:20 -0800186void MipsMir2Lir::OpRegCopyWide(RegStorage r_dest, RegStorage r_src) {
187 bool dest_fp = MIPS_FPREG(r_dest.GetLowReg());
188 bool src_fp = MIPS_FPREG(r_src.GetLowReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700189 if (dest_fp) {
190 if (src_fp) {
buzbee2700f7e2014-03-07 09:46:20 -0800191 // FIXME: handle this here - reserve OpRegCopy for 32-bit copies.
192 OpRegCopy(RegStorage::Solo64(S2d(r_dest.GetLowReg(), r_dest.GetHighReg())),
193 RegStorage::Solo64(S2d(r_src.GetLowReg(), r_src.GetHighReg())));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700194 } else {
195 /* note the operands are swapped for the mtc1 instr */
buzbee2700f7e2014-03-07 09:46:20 -0800196 NewLIR2(kMipsMtc1, r_src.GetLowReg(), r_dest.GetLowReg());
197 NewLIR2(kMipsMtc1, r_src.GetHighReg(), r_dest.GetHighReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 }
199 } else {
200 if (src_fp) {
buzbee2700f7e2014-03-07 09:46:20 -0800201 NewLIR2(kMipsMfc1, r_dest.GetLowReg(), r_src.GetLowReg());
202 NewLIR2(kMipsMfc1, r_dest.GetHighReg(), r_src.GetHighReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700203 } else {
204 // Handle overlap
buzbee2700f7e2014-03-07 09:46:20 -0800205 if (r_src.GetHighReg() == r_dest.GetLowReg()) {
206 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
207 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700208 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800209 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
210 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 }
212 }
213 }
214}
215
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700216void MipsMir2Lir::GenSelect(BasicBlock* bb, MIR* mir) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700217 UNIMPLEMENTED(FATAL) << "Need codegen for select";
218}
219
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700220void MipsMir2Lir::GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 UNIMPLEMENTED(FATAL) << "Need codegen for fused long cmp branch";
222}
223
buzbee2700f7e2014-03-07 09:46:20 -0800224RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegStorage reg1, RegStorage reg2,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700225 bool is_div) {
buzbee9da5c102014-03-28 12:59:18 -0700226 NewLIR2(kMipsDiv, reg1.GetReg(), reg2.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700227 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
228 if (is_div) {
buzbee9da5c102014-03-28 12:59:18 -0700229 NewLIR1(kMipsMflo, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700230 } else {
buzbee9da5c102014-03-28 12:59:18 -0700231 NewLIR1(kMipsMfhi, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700232 }
233 return rl_result;
234}
235
buzbee2700f7e2014-03-07 09:46:20 -0800236RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegStorage reg1, int lit,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700237 bool is_div) {
buzbee2700f7e2014-03-07 09:46:20 -0800238 int t_reg = AllocTemp().GetReg();
239 NewLIR3(kMipsAddiu, t_reg, rZERO, lit);
buzbee9da5c102014-03-28 12:59:18 -0700240 NewLIR2(kMipsDiv, reg1.GetReg(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700241 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
242 if (is_div) {
buzbee9da5c102014-03-28 12:59:18 -0700243 NewLIR1(kMipsMflo, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700244 } else {
buzbee9da5c102014-03-28 12:59:18 -0700245 NewLIR1(kMipsMfhi, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700246 }
247 FreeTemp(t_reg);
248 return rl_result;
249}
250
Mark Mendell2bf31e62014-01-23 12:13:40 -0800251RegLocation MipsMir2Lir::GenDivRem(RegLocation rl_dest, RegLocation rl_src1,
252 RegLocation rl_src2, bool is_div, bool check_zero) {
253 LOG(FATAL) << "Unexpected use of GenDivRem for Mips";
254 return rl_dest;
255}
256
257RegLocation MipsMir2Lir::GenDivRemLit(RegLocation rl_dest, RegLocation rl_src1, int lit, bool is_div) {
258 LOG(FATAL) << "Unexpected use of GenDivRemLit for Mips";
259 return rl_dest;
260}
261
buzbee2700f7e2014-03-07 09:46:20 -0800262void MipsMir2Lir::OpLea(RegStorage r_base, RegStorage reg1, RegStorage reg2, int scale,
263 int offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700264 LOG(FATAL) << "Unexpected use of OpLea for Arm";
265}
266
Ian Rogersdd7624d2014-03-14 17:43:00 -0700267void MipsMir2Lir::OpTlsCmp(ThreadOffset<4> offset, int val) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700268 LOG(FATAL) << "Unexpected use of OpTlsCmp for Arm";
269}
270
Vladimir Marko1c282e22013-11-21 14:49:47 +0000271bool MipsMir2Lir::GenInlinedCas(CallInfo* info, bool is_long, bool is_object) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700272 DCHECK_NE(cu_->instruction_set, kThumb2);
273 return false;
274}
275
276bool MipsMir2Lir::GenInlinedSqrt(CallInfo* info) {
277 DCHECK_NE(cu_->instruction_set, kThumb2);
278 return false;
279}
280
Vladimir Markoe508a202013-11-04 15:24:22 +0000281bool MipsMir2Lir::GenInlinedPeek(CallInfo* info, OpSize size) {
282 if (size != kSignedByte) {
283 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
284 return false;
285 }
286 RegLocation rl_src_address = info->args[0]; // long address
buzbee2700f7e2014-03-07 09:46:20 -0800287 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
Vladimir Markoe508a202013-11-04 15:24:22 +0000288 RegLocation rl_dest = InlineTarget(info);
289 RegLocation rl_address = LoadValue(rl_src_address, kCoreReg);
290 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
291 DCHECK(size == kSignedByte);
buzbee2700f7e2014-03-07 09:46:20 -0800292 LoadBaseDisp(rl_address.reg, 0, rl_result.reg, size, INVALID_SREG);
Vladimir Markoe508a202013-11-04 15:24:22 +0000293 StoreValue(rl_dest, rl_result);
294 return true;
295}
296
297bool MipsMir2Lir::GenInlinedPoke(CallInfo* info, OpSize size) {
298 if (size != kSignedByte) {
299 // MIPS supports only aligned access. Defer unaligned access to JNI implementation.
300 return false;
301 }
302 RegLocation rl_src_address = info->args[0]; // long address
buzbee2700f7e2014-03-07 09:46:20 -0800303 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
Vladimir Markoe508a202013-11-04 15:24:22 +0000304 RegLocation rl_src_value = info->args[2]; // [size] value
305 RegLocation rl_address = LoadValue(rl_src_address, kCoreReg);
306 DCHECK(size == kSignedByte);
307 RegLocation rl_value = LoadValue(rl_src_value, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -0800308 StoreBaseDisp(rl_address.reg, 0, rl_value.reg, size);
Vladimir Markoe508a202013-11-04 15:24:22 +0000309 return true;
310}
311
buzbee2700f7e2014-03-07 09:46:20 -0800312LIR* MipsMir2Lir::OpPcRelLoad(RegStorage reg, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700313 LOG(FATAL) << "Unexpected use of OpPcRelLoad for Mips";
314 return NULL;
315}
316
buzbee2700f7e2014-03-07 09:46:20 -0800317LIR* MipsMir2Lir::OpVldm(RegStorage r_base, int count) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318 LOG(FATAL) << "Unexpected use of OpVldm for Mips";
319 return NULL;
320}
321
buzbee2700f7e2014-03-07 09:46:20 -0800322LIR* MipsMir2Lir::OpVstm(RegStorage r_base, int count) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323 LOG(FATAL) << "Unexpected use of OpVstm for Mips";
324 return NULL;
325}
326
327void MipsMir2Lir::GenMultiplyByTwoBitMultiplier(RegLocation rl_src,
328 RegLocation rl_result, int lit,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700329 int first_bit, int second_bit) {
buzbee2700f7e2014-03-07 09:46:20 -0800330 RegStorage t_reg = AllocTemp();
331 OpRegRegImm(kOpLsl, t_reg, rl_src.reg, second_bit - first_bit);
332 OpRegRegReg(kOpAdd, rl_result.reg, rl_src.reg, t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700333 FreeTemp(t_reg);
334 if (first_bit != 0) {
buzbee2700f7e2014-03-07 09:46:20 -0800335 OpRegRegImm(kOpLsl, rl_result.reg, rl_result.reg, first_bit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700336 }
337}
338
Mingyao Yange643a172014-04-08 11:02:52 -0700339void MipsMir2Lir::GenDivZeroCheckWide(RegStorage reg) {
buzbee2700f7e2014-03-07 09:46:20 -0800340 DCHECK(reg.IsPair()); // TODO: support k64BitSolo.
341 RegStorage t_reg = AllocTemp();
342 OpRegRegReg(kOpOr, t_reg, reg.GetLow(), reg.GetHigh());
Mingyao Yangd15f4e22014-04-17 18:46:24 -0700343 GenDivZeroCheck(t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344 FreeTemp(t_reg);
345}
346
347// Test suspend flag, return target of taken suspend branch
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700348LIR* MipsMir2Lir::OpTestSuspend(LIR* target) {
buzbee2700f7e2014-03-07 09:46:20 -0800349 OpRegImm(kOpSub, rs_rMIPS_SUSPEND, 1);
350 return OpCmpImmBranch((target == NULL) ? kCondEq : kCondNe, rs_rMIPS_SUSPEND, 0, target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700351}
352
353// Decrement register and branch on condition
buzbee2700f7e2014-03-07 09:46:20 -0800354LIR* MipsMir2Lir::OpDecAndBranch(ConditionCode c_code, RegStorage reg, LIR* target) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700355 OpRegImm(kOpSub, reg, 1);
356 return OpCmpImmBranch(c_code, reg, 0, target);
357}
358
buzbee11b63d12013-08-27 07:34:17 -0700359bool MipsMir2Lir::SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700360 RegLocation rl_src, RegLocation rl_dest, int lit) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361 LOG(FATAL) << "Unexpected use of smallLiteralDive in Mips";
362 return false;
363}
364
Ian Rogerse2143c02014-03-28 08:47:16 -0700365bool MipsMir2Lir::EasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) {
366 LOG(FATAL) << "Unexpected use of easyMultiply in Mips";
367 return false;
368}
369
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700370LIR* MipsMir2Lir::OpIT(ConditionCode cond, const char* guide) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700371 LOG(FATAL) << "Unexpected use of OpIT in Mips";
372 return NULL;
373}
374
Dave Allison3da67a52014-04-02 17:03:45 -0700375void MipsMir2Lir::OpEndIT(LIR* it) {
376 LOG(FATAL) << "Unexpected use of OpEndIT in Mips";
377}
378
379
Mark Mendelle02d48f2014-01-15 11:19:23 -0800380void MipsMir2Lir::GenMulLong(Instruction::Code opcode, RegLocation rl_dest,
381 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700382 LOG(FATAL) << "Unexpected use of GenMulLong for Mips";
383}
384
Mark Mendelle02d48f2014-01-15 11:19:23 -0800385void MipsMir2Lir::GenAddLong(Instruction::Code opcode, RegLocation rl_dest,
386 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700387 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
388 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
389 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
390 /*
391 * [v1 v0] = [a1 a0] + [a3 a2];
392 * addu v0,a2,a0
393 * addu t1,a3,a1
394 * sltu v1,v0,a2
395 * addu v1,v1,t1
396 */
397
buzbee2700f7e2014-03-07 09:46:20 -0800398 OpRegRegReg(kOpAdd, rl_result.reg.GetLow(), rl_src2.reg.GetLow(), rl_src1.reg.GetLow());
399 RegStorage t_reg = AllocTemp();
400 OpRegRegReg(kOpAdd, t_reg, rl_src2.reg.GetHigh(), rl_src1.reg.GetHigh());
401 NewLIR3(kMipsSltu, rl_result.reg.GetHighReg(), rl_result.reg.GetLowReg(), rl_src2.reg.GetLowReg());
402 OpRegRegReg(kOpAdd, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700403 FreeTemp(t_reg);
404 StoreValueWide(rl_dest, rl_result);
405}
406
Mark Mendelle02d48f2014-01-15 11:19:23 -0800407void MipsMir2Lir::GenSubLong(Instruction::Code opcode, RegLocation rl_dest,
408 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700409 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
410 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
411 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
412 /*
413 * [v1 v0] = [a1 a0] - [a3 a2];
414 * sltu t1,a0,a2
415 * subu v0,a0,a2
416 * subu v1,a1,a3
417 * subu v1,v1,t1
418 */
419
buzbee2700f7e2014-03-07 09:46:20 -0800420 RegStorage t_reg = AllocTemp();
421 NewLIR3(kMipsSltu, t_reg.GetReg(), rl_src1.reg.GetLowReg(), rl_src2.reg.GetLowReg());
422 OpRegRegReg(kOpSub, rl_result.reg.GetLow(), rl_src1.reg.GetLow(), rl_src2.reg.GetLow());
423 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_src1.reg.GetHigh(), rl_src2.reg.GetHigh());
424 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700425 FreeTemp(t_reg);
426 StoreValueWide(rl_dest, rl_result);
427}
428
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700429void MipsMir2Lir::GenNegLong(RegLocation rl_dest, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700430 rl_src = LoadValueWide(rl_src, kCoreReg);
431 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
432 /*
433 * [v1 v0] = -[a1 a0]
434 * negu v0,a0
435 * negu v1,a1
436 * sltu t1,r_zero
437 * subu v1,v1,t1
438 */
439
buzbee2700f7e2014-03-07 09:46:20 -0800440 OpRegReg(kOpNeg, rl_result.reg.GetLow(), rl_src.reg.GetLow());
441 OpRegReg(kOpNeg, rl_result.reg.GetHigh(), rl_src.reg.GetHigh());
442 RegStorage t_reg = AllocTemp();
443 NewLIR3(kMipsSltu, t_reg.GetReg(), rZERO, rl_result.reg.GetLowReg());
444 OpRegRegReg(kOpSub, rl_result.reg.GetHigh(), rl_result.reg.GetHigh(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700445 FreeTemp(t_reg);
446 StoreValueWide(rl_dest, rl_result);
447}
448
Mark Mendelle02d48f2014-01-15 11:19:23 -0800449void MipsMir2Lir::GenAndLong(Instruction::Code opcode, RegLocation rl_dest,
450 RegLocation rl_src1,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700451 RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700452 LOG(FATAL) << "Unexpected use of GenAndLong for Mips";
453}
454
Mark Mendelle02d48f2014-01-15 11:19:23 -0800455void MipsMir2Lir::GenOrLong(Instruction::Code opcode, RegLocation rl_dest,
456 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700457 LOG(FATAL) << "Unexpected use of GenOrLong for Mips";
458}
459
Mark Mendelle02d48f2014-01-15 11:19:23 -0800460void MipsMir2Lir::GenXorLong(Instruction::Code opcode, RegLocation rl_dest,
461 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700462 LOG(FATAL) << "Unexpected use of GenXorLong for Mips";
463}
464
465/*
466 * Generate array load
467 */
468void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700469 RegLocation rl_index, RegLocation rl_dest, int scale) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700470 RegisterClass reg_class = oat_reg_class_by_size(size);
471 int len_offset = mirror::Array::LengthOffset().Int32Value();
472 int data_offset;
473 RegLocation rl_result;
474 rl_array = LoadValue(rl_array, kCoreReg);
475 rl_index = LoadValue(rl_index, kCoreReg);
476
477 if (size == kLong || size == kDouble) {
478 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
479 } else {
480 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
481 }
482
483 /* null object? */
buzbee2700f7e2014-03-07 09:46:20 -0800484 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700485
buzbee2700f7e2014-03-07 09:46:20 -0800486 RegStorage reg_ptr = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700487 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800488 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700489 if (needs_range_check) {
490 reg_len = AllocTemp();
491 /* Get len */
buzbee2700f7e2014-03-07 09:46:20 -0800492 LoadWordDisp(rl_array.reg, len_offset, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700493 }
494 /* reg_ptr -> array data */
buzbee2700f7e2014-03-07 09:46:20 -0800495 OpRegRegImm(kOpAdd, reg_ptr, rl_array.reg, data_offset);
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000496 FreeTemp(rl_array.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700497 if ((size == kLong) || (size == kDouble)) {
498 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800499 RegStorage r_new_index = AllocTemp();
500 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700501 OpRegReg(kOpAdd, reg_ptr, r_new_index);
502 FreeTemp(r_new_index);
503 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800504 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700505 }
buzbee2700f7e2014-03-07 09:46:20 -0800506 FreeTemp(rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700507 rl_result = EvalLoc(rl_dest, reg_class, true);
508
509 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700510 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700511 FreeTemp(reg_len);
512 }
buzbee2700f7e2014-03-07 09:46:20 -0800513 LoadBaseDispWide(reg_ptr, 0, rl_result.reg, INVALID_SREG);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700514
515 FreeTemp(reg_ptr);
516 StoreValueWide(rl_dest, rl_result);
517 } else {
518 rl_result = EvalLoc(rl_dest, reg_class, true);
519
520 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700521 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 FreeTemp(reg_len);
523 }
buzbee2700f7e2014-03-07 09:46:20 -0800524 LoadBaseIndexed(reg_ptr, rl_index.reg, rl_result.reg, scale, size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700525
526 FreeTemp(reg_ptr);
527 StoreValue(rl_dest, rl_result);
528 }
529}
530
531/*
532 * Generate array store
533 *
534 */
535void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
Ian Rogersa9a82542013-10-04 11:17:26 -0700536 RegLocation rl_index, RegLocation rl_src, int scale, bool card_mark) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700537 RegisterClass reg_class = oat_reg_class_by_size(size);
538 int len_offset = mirror::Array::LengthOffset().Int32Value();
539 int data_offset;
540
541 if (size == kLong || size == kDouble) {
542 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
543 } else {
544 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
545 }
546
547 rl_array = LoadValue(rl_array, kCoreReg);
548 rl_index = LoadValue(rl_index, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -0800549 RegStorage reg_ptr;
Ian Rogers773aab12013-10-14 13:50:10 -0700550 bool allocated_reg_ptr_temp = false;
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000551 if (IsTemp(rl_array.reg.GetReg()) && !card_mark) {
552 Clobber(rl_array.reg.GetReg());
buzbee2700f7e2014-03-07 09:46:20 -0800553 reg_ptr = rl_array.reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700554 } else {
555 reg_ptr = AllocTemp();
buzbee2700f7e2014-03-07 09:46:20 -0800556 OpRegCopy(reg_ptr, rl_array.reg);
Ian Rogers773aab12013-10-14 13:50:10 -0700557 allocated_reg_ptr_temp = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700558 }
559
560 /* null object? */
buzbee2700f7e2014-03-07 09:46:20 -0800561 GenNullCheck(rl_array.reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562
563 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
buzbee2700f7e2014-03-07 09:46:20 -0800564 RegStorage reg_len;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700565 if (needs_range_check) {
566 reg_len = AllocTemp();
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700567 // NOTE: max live temps(4) here.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568 /* Get len */
buzbee2700f7e2014-03-07 09:46:20 -0800569 LoadWordDisp(rl_array.reg, len_offset, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570 }
571 /* reg_ptr -> array data */
572 OpRegImm(kOpAdd, reg_ptr, data_offset);
573 /* at this point, reg_ptr points to array, 2 live temps */
574 if ((size == kLong) || (size == kDouble)) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700575 // TUNING: specific wide routine that can handle fp regs
Brian Carlstrom7940e442013-07-12 13:46:57 -0700576 if (scale) {
buzbee2700f7e2014-03-07 09:46:20 -0800577 RegStorage r_new_index = AllocTemp();
578 OpRegRegImm(kOpLsl, r_new_index, rl_index.reg, scale);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579 OpRegReg(kOpAdd, reg_ptr, r_new_index);
580 FreeTemp(r_new_index);
581 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800582 OpRegReg(kOpAdd, reg_ptr, rl_index.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700583 }
584 rl_src = LoadValueWide(rl_src, reg_class);
585
586 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700587 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700588 FreeTemp(reg_len);
589 }
590
buzbee2700f7e2014-03-07 09:46:20 -0800591 StoreBaseDispWide(reg_ptr, 0, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700592 } else {
593 rl_src = LoadValue(rl_src, reg_class);
594 if (needs_range_check) {
Mingyao Yang80365d92014-04-18 12:10:58 -0700595 GenArrayBoundsCheck(rl_index.reg, reg_len);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700596 FreeTemp(reg_len);
597 }
buzbee2700f7e2014-03-07 09:46:20 -0800598 StoreBaseIndexed(reg_ptr, rl_index.reg, rl_src.reg, scale, size);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700599 }
Ian Rogers773aab12013-10-14 13:50:10 -0700600 if (allocated_reg_ptr_temp) {
601 FreeTemp(reg_ptr);
602 }
Ian Rogersa9a82542013-10-04 11:17:26 -0700603 if (card_mark) {
buzbee2700f7e2014-03-07 09:46:20 -0800604 MarkGCCard(rl_src.reg, rl_array.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700605 }
606}
607
608void MipsMir2Lir::GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700609 RegLocation rl_src1, RegLocation rl_shift) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700610 // Default implementation is just to ignore the constant case.
611 GenShiftOpLong(opcode, rl_dest, rl_src1, rl_shift);
612}
613
614void MipsMir2Lir::GenArithImmOpLong(Instruction::Code opcode,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700615 RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700616 // Default - bail to non-const handler.
617 GenArithOpLong(opcode, rl_dest, rl_src1, rl_src2);
618}
619
620} // namespace art