blob: 8f33dfa1649b4efbfa31cd1722bc6938e920776b [file] [log] [blame]
buzbeee3acd072012-02-25 17:03:10 -08001/*
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
Ian Rogers57b86d42012-03-27 16:05:41 -070017#include "oat/runtime/oat_support_entrypoints.h"
buzbee1bc37c62012-11-20 13:35:41 -080018#include "mips_lir.h"
19#include "../codegen_util.h"
20#include "../ralloc_util.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070021
buzbeee3acd072012-02-25 17:03:10 -080022namespace art {
23
buzbeefa57c472012-11-21 12:06:18 -080024bool GenArithOpFloat(CompilationUnit *cu, Instruction::Code opcode, RegLocation rl_dest,
25 RegLocation rl_src1, RegLocation rl_src2)
buzbeee3acd072012-02-25 17:03:10 -080026{
27#ifdef __mips_hard_float
Bill Buzbeea114add2012-05-03 15:00:40 -070028 int op = kMipsNop;
buzbeefa57c472012-11-21 12:06:18 -080029 RegLocation rl_result;
buzbeee3acd072012-02-25 17:03:10 -080030
Bill Buzbeea114add2012-05-03 15:00:40 -070031 /*
32 * Don't attempt to optimize register usage since these opcodes call out to
33 * the handlers.
34 */
buzbee408ad162012-06-06 16:45:18 -070035 switch (opcode) {
Bill Buzbeea114add2012-05-03 15:00:40 -070036 case Instruction::ADD_FLOAT_2ADDR:
37 case Instruction::ADD_FLOAT:
38 op = kMipsFadds;
39 break;
40 case Instruction::SUB_FLOAT_2ADDR:
41 case Instruction::SUB_FLOAT:
42 op = kMipsFsubs;
43 break;
44 case Instruction::DIV_FLOAT_2ADDR:
45 case Instruction::DIV_FLOAT:
46 op = kMipsFdivs;
47 break;
48 case Instruction::MUL_FLOAT_2ADDR:
49 case Instruction::MUL_FLOAT:
50 op = kMipsFmuls;
51 break;
52 case Instruction::REM_FLOAT_2ADDR:
53 case Instruction::REM_FLOAT:
54 case Instruction::NEG_FLOAT: {
buzbeefa57c472012-11-21 12:06:18 -080055 return GenArithOpFloatPortable(cu, opcode, rl_dest, rl_src1, rl_src2);
buzbeee3acd072012-02-25 17:03:10 -080056 }
Bill Buzbeea114add2012-05-03 15:00:40 -070057 default:
58 return true;
59 }
buzbeefa57c472012-11-21 12:06:18 -080060 rl_src1 = LoadValue(cu, rl_src1, kFPReg);
61 rl_src2 = LoadValue(cu, rl_src2, kFPReg);
62 rl_result = EvalLoc(cu, rl_dest, kFPReg, true);
63 NewLIR3(cu, op, rl_result.low_reg, rl_src1.low_reg, rl_src2.low_reg);
64 StoreValue(cu, rl_dest, rl_result);
buzbeee3acd072012-02-25 17:03:10 -080065
Bill Buzbeea114add2012-05-03 15:00:40 -070066 return false;
buzbeee3acd072012-02-25 17:03:10 -080067#else
buzbeefa57c472012-11-21 12:06:18 -080068 return GenArithOpFloatPortable(cu, opcode, rl_dest, rl_src1, rl_src2);
buzbeee3acd072012-02-25 17:03:10 -080069#endif
70}
71
buzbeefa57c472012-11-21 12:06:18 -080072bool GenArithOpDouble(CompilationUnit *cu, Instruction::Code opcode,
73 RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2)
buzbeee3acd072012-02-25 17:03:10 -080074{
75#ifdef __mips_hard_float
Bill Buzbeea114add2012-05-03 15:00:40 -070076 int op = kMipsNop;
buzbeefa57c472012-11-21 12:06:18 -080077 RegLocation rl_result;
buzbeee3acd072012-02-25 17:03:10 -080078
buzbee408ad162012-06-06 16:45:18 -070079 switch (opcode) {
Bill Buzbeea114add2012-05-03 15:00:40 -070080 case Instruction::ADD_DOUBLE_2ADDR:
81 case Instruction::ADD_DOUBLE:
82 op = kMipsFaddd;
83 break;
84 case Instruction::SUB_DOUBLE_2ADDR:
85 case Instruction::SUB_DOUBLE:
86 op = kMipsFsubd;
87 break;
88 case Instruction::DIV_DOUBLE_2ADDR:
89 case Instruction::DIV_DOUBLE:
90 op = kMipsFdivd;
91 break;
92 case Instruction::MUL_DOUBLE_2ADDR:
93 case Instruction::MUL_DOUBLE:
94 op = kMipsFmuld;
95 break;
96 case Instruction::REM_DOUBLE_2ADDR:
97 case Instruction::REM_DOUBLE:
98 case Instruction::NEG_DOUBLE: {
buzbeefa57c472012-11-21 12:06:18 -080099 return GenArithOpDoublePortable(cu, opcode, rl_dest, rl_src1, rl_src2);
buzbeee3acd072012-02-25 17:03:10 -0800100 }
Bill Buzbeea114add2012-05-03 15:00:40 -0700101 default:
102 return true;
103 }
buzbeefa57c472012-11-21 12:06:18 -0800104 rl_src1 = LoadValueWide(cu, rl_src1, kFPReg);
105 DCHECK(rl_src1.wide);
106 rl_src2 = LoadValueWide(cu, rl_src2, kFPReg);
107 DCHECK(rl_src2.wide);
108 rl_result = EvalLoc(cu, rl_dest, kFPReg, true);
109 DCHECK(rl_dest.wide);
110 DCHECK(rl_result.wide);
111 NewLIR3(cu, op, S2d(rl_result.low_reg, rl_result.high_reg), S2d(rl_src1.low_reg, rl_src1.high_reg),
112 S2d(rl_src2.low_reg, rl_src2.high_reg));
113 StoreValueWide(cu, rl_dest, rl_result);
Bill Buzbeea114add2012-05-03 15:00:40 -0700114 return false;
buzbeee3acd072012-02-25 17:03:10 -0800115#else
buzbeefa57c472012-11-21 12:06:18 -0800116 return GenArithOpDoublePortable(cu, opcode, rl_dest, rl_src1, rl_src2);
buzbeee3acd072012-02-25 17:03:10 -0800117#endif
118}
119
buzbeefa57c472012-11-21 12:06:18 -0800120bool GenConversion(CompilationUnit *cu, Instruction::Code opcode, RegLocation rl_dest,
121 RegLocation rl_src)
buzbeee3acd072012-02-25 17:03:10 -0800122{
buzbee5de34942012-03-01 14:51:57 -0800123#ifdef __mips_hard_float
Bill Buzbeea114add2012-05-03 15:00:40 -0700124 int op = kMipsNop;
buzbeefa57c472012-11-21 12:06:18 -0800125 int src_reg;
126 RegLocation rl_result;
Bill Buzbeea114add2012-05-03 15:00:40 -0700127 switch (opcode) {
128 case Instruction::INT_TO_FLOAT:
Bill Buzbeea114add2012-05-03 15:00:40 -0700129 op = kMipsFcvtsw;
130 break;
131 case Instruction::DOUBLE_TO_FLOAT:
Bill Buzbeea114add2012-05-03 15:00:40 -0700132 op = kMipsFcvtsd;
133 break;
134 case Instruction::FLOAT_TO_DOUBLE:
Bill Buzbeea114add2012-05-03 15:00:40 -0700135 op = kMipsFcvtds;
136 break;
137 case Instruction::INT_TO_DOUBLE:
Bill Buzbeea114add2012-05-03 15:00:40 -0700138 op = kMipsFcvtdw;
139 break;
140 case Instruction::FLOAT_TO_INT:
141 case Instruction::DOUBLE_TO_INT:
142 case Instruction::LONG_TO_DOUBLE:
143 case Instruction::FLOAT_TO_LONG:
144 case Instruction::LONG_TO_FLOAT:
145 case Instruction::DOUBLE_TO_LONG:
buzbeefa57c472012-11-21 12:06:18 -0800146 return GenConversionPortable(cu, opcode, rl_dest, rl_src);
Bill Buzbeea114add2012-05-03 15:00:40 -0700147 default:
148 return true;
149 }
buzbeefa57c472012-11-21 12:06:18 -0800150 if (rl_src.wide) {
151 rl_src = LoadValueWide(cu, rl_src, kFPReg);
152 src_reg = S2d(rl_src.low_reg, rl_src.high_reg);
Bill Buzbeea114add2012-05-03 15:00:40 -0700153 } else {
buzbeefa57c472012-11-21 12:06:18 -0800154 rl_src = LoadValue(cu, rl_src, kFPReg);
155 src_reg = rl_src.low_reg;
Bill Buzbeea114add2012-05-03 15:00:40 -0700156 }
buzbeefa57c472012-11-21 12:06:18 -0800157 if (rl_dest.wide) {
158 rl_result = EvalLoc(cu, rl_dest, kFPReg, true);
159 NewLIR2(cu, op, S2d(rl_result.low_reg, rl_result.high_reg), src_reg);
160 StoreValueWide(cu, rl_dest, rl_result);
Bill Buzbeea114add2012-05-03 15:00:40 -0700161 } else {
buzbeefa57c472012-11-21 12:06:18 -0800162 rl_result = EvalLoc(cu, rl_dest, kFPReg, true);
163 NewLIR2(cu, op, rl_result.low_reg, src_reg);
164 StoreValue(cu, rl_dest, rl_result);
Bill Buzbeea114add2012-05-03 15:00:40 -0700165 }
166 return false;
buzbeee3acd072012-02-25 17:03:10 -0800167#else
buzbeefa57c472012-11-21 12:06:18 -0800168 return GenConversionPortable(cu, opcode, rl_dest, rl_src);
buzbeee3acd072012-02-25 17:03:10 -0800169#endif
170}
171
buzbeefa57c472012-11-21 12:06:18 -0800172bool GenCmpFP(CompilationUnit *cu, Instruction::Code opcode, RegLocation rl_dest,
173 RegLocation rl_src1, RegLocation rl_src2)
buzbeee3acd072012-02-25 17:03:10 -0800174{
Bill Buzbeea114add2012-05-03 15:00:40 -0700175 bool wide = true;
176 int offset;
buzbeee3acd072012-02-25 17:03:10 -0800177
buzbee408ad162012-06-06 16:45:18 -0700178 switch (opcode) {
Bill Buzbeea114add2012-05-03 15:00:40 -0700179 case Instruction::CMPL_FLOAT:
180 offset = ENTRYPOINT_OFFSET(pCmplFloat);
181 wide = false;
182 break;
183 case Instruction::CMPG_FLOAT:
184 offset = ENTRYPOINT_OFFSET(pCmpgFloat);
185 wide = false;
186 break;
187 case Instruction::CMPL_DOUBLE:
188 offset = ENTRYPOINT_OFFSET(pCmplDouble);
189 break;
190 case Instruction::CMPG_DOUBLE:
191 offset = ENTRYPOINT_OFFSET(pCmpgDouble);
192 break;
193 default:
194 return true;
195 }
buzbeefa57c472012-11-21 12:06:18 -0800196 FlushAllRegs(cu);
197 LockCallTemps(cu);
Bill Buzbeea114add2012-05-03 15:00:40 -0700198 if (wide) {
buzbeefa57c472012-11-21 12:06:18 -0800199 LoadValueDirectWideFixed(cu, rl_src1, rMIPS_FARG0, rMIPS_FARG1);
200 LoadValueDirectWideFixed(cu, rl_src2, rMIPS_FARG2, rMIPS_FARG3);
Bill Buzbeea114add2012-05-03 15:00:40 -0700201 } else {
buzbeefa57c472012-11-21 12:06:18 -0800202 LoadValueDirectFixed(cu, rl_src1, rMIPS_FARG0);
203 LoadValueDirectFixed(cu, rl_src2, rMIPS_FARG2);
Bill Buzbeea114add2012-05-03 15:00:40 -0700204 }
buzbeefa57c472012-11-21 12:06:18 -0800205 int r_tgt = LoadHelper(cu, offset);
buzbee8320f382012-09-11 16:29:42 -0700206 // NOTE: not a safepoint
buzbeefa57c472012-11-21 12:06:18 -0800207 OpReg(cu, kOpBlx, r_tgt);
208 RegLocation rl_result = GetReturn(cu, false);
209 StoreValue(cu, rl_dest, rl_result);
Bill Buzbeea114add2012-05-03 15:00:40 -0700210 return false;
buzbeee3acd072012-02-25 17:03:10 -0800211}
212
buzbeefa57c472012-11-21 12:06:18 -0800213void GenFusedFPCmpBranch(CompilationUnit* cu, BasicBlock* bb, MIR* mir,
214 bool gt_bias, bool is_double)
jeffhao4b771a02012-07-25 15:07:21 -0700215{
216 UNIMPLEMENTED(FATAL) << "Need codegen for fused fp cmp branch";
217}
218
buzbeefa57c472012-11-21 12:06:18 -0800219void GenNegFloat(CompilationUnit *cu, RegLocation rl_dest, RegLocation rl_src)
buzbeeefc63692012-11-14 16:31:52 -0800220{
buzbeefa57c472012-11-21 12:06:18 -0800221 RegLocation rl_result;
222 rl_src = LoadValue(cu, rl_src, kCoreReg);
223 rl_result = EvalLoc(cu, rl_dest, kCoreReg, true);
224 OpRegRegImm(cu, kOpAdd, rl_result.low_reg, rl_src.low_reg, 0x80000000);
225 StoreValue(cu, rl_dest, rl_result);
buzbeeefc63692012-11-14 16:31:52 -0800226}
227
buzbeefa57c472012-11-21 12:06:18 -0800228void GenNegDouble(CompilationUnit *cu, RegLocation rl_dest, RegLocation rl_src)
buzbeeefc63692012-11-14 16:31:52 -0800229{
buzbeefa57c472012-11-21 12:06:18 -0800230 RegLocation rl_result;
231 rl_src = LoadValueWide(cu, rl_src, kCoreReg);
232 rl_result = EvalLoc(cu, rl_dest, kCoreReg, true);
233 OpRegRegImm(cu, kOpAdd, rl_result.high_reg, rl_src.high_reg, 0x80000000);
234 OpRegCopy(cu, rl_result.low_reg, rl_src.low_reg);
235 StoreValueWide(cu, rl_dest, rl_result);
buzbeeefc63692012-11-14 16:31:52 -0800236}
237
buzbeefa57c472012-11-21 12:06:18 -0800238bool GenInlinedMinMaxInt(CompilationUnit *cu, CallInfo* info, bool is_min)
buzbeeefc63692012-11-14 16:31:52 -0800239{
240 // TODO: need Mips implementation
241 return false;
242}
243
buzbeee3acd072012-02-25 17:03:10 -0800244} // namespace art