blob: 419d0a95dcc4237f9b3a46cc8bdd248924a14da7 [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#include "dex/compiler_ir.h"
Vladimir Marko5c96e6b2013-11-14 15:34:17 +000018#include "dex/frontend.h"
19#include "dex/quick/dex_file_method_inliner.h"
20#include "dex/quick/dex_file_to_method_inliner_map.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include "dex_file-inl.h"
Ian Rogers166db042013-07-26 12:05:57 -070022#include "entrypoints/quick/quick_entrypoints.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070023#include "invoke_type.h"
24#include "mirror/array.h"
25#include "mirror/string.h"
26#include "mir_to_lir-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070027#include "x86/codegen_x86.h"
28
29namespace art {
30
31/*
32 * This source files contains "gen" codegen routines that should
33 * be applicable to most targets. Only mid-level support utilities
34 * and "op" calls may be used here.
35 */
36
Vladimir Marko3bc86152014-03-13 14:11:28 +000037void Mir2Lir::AddIntrinsicLaunchpad(CallInfo* info, LIR* branch, LIR* resume) {
38 class IntrinsicLaunchpadPath : public Mir2Lir::LIRSlowPath {
39 public:
40 IntrinsicLaunchpadPath(Mir2Lir* m2l, CallInfo* info, LIR* branch, LIR* resume = nullptr)
41 : LIRSlowPath(m2l, info->offset, branch, resume), info_(info) {
42 }
43
44 void Compile() {
45 m2l_->ResetRegPool();
46 m2l_->ResetDefTracking();
47 LIR* label = GenerateTargetLabel();
48 label->opcode = kPseudoIntrinsicRetry;
49 // NOTE: GenInvokeNoInline() handles MarkSafepointPC.
50 m2l_->GenInvokeNoInline(info_);
51 if (cont_ != nullptr) {
52 m2l_->OpUnconditionalBranch(cont_);
53 }
54 }
55
56 private:
57 CallInfo* const info_;
58 };
59
60 AddSlowPath(new (arena_) IntrinsicLaunchpadPath(this, info, branch, resume));
61}
62
Brian Carlstrom7940e442013-07-12 13:46:57 -070063/*
64 * To save scheduling time, helper calls are broken into two parts: generation of
65 * the helper target address, and the actuall call to the helper. Because x86
66 * has a memory call operation, part 1 is a NOP for x86. For other targets,
67 * load arguments between the two parts.
68 */
Ian Rogers848871b2013-08-05 10:56:33 -070069int Mir2Lir::CallHelperSetup(ThreadOffset helper_offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070070 return (cu_->instruction_set == kX86) ? 0 : LoadHelper(helper_offset);
71}
72
73/* NOTE: if r_tgt is a temp, it will be freed following use */
Ian Rogers848871b2013-08-05 10:56:33 -070074LIR* Mir2Lir::CallHelper(int r_tgt, ThreadOffset helper_offset, bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070075 LIR* call_inst;
76 if (cu_->instruction_set == kX86) {
77 call_inst = OpThreadMem(kOpBlx, helper_offset);
78 } else {
79 call_inst = OpReg(kOpBlx, r_tgt);
80 FreeTemp(r_tgt);
81 }
82 if (safepoint_pc) {
83 MarkSafepointPC(call_inst);
84 }
85 return call_inst;
86}
87
Ian Rogers848871b2013-08-05 10:56:33 -070088void Mir2Lir::CallRuntimeHelperImm(ThreadOffset helper_offset, int arg0, bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070089 int r_tgt = CallHelperSetup(helper_offset);
90 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +000091 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -070092 CallHelper(r_tgt, helper_offset, safepoint_pc);
93}
94
Ian Rogers848871b2013-08-05 10:56:33 -070095void Mir2Lir::CallRuntimeHelperReg(ThreadOffset helper_offset, int arg0, bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070096 int r_tgt = CallHelperSetup(helper_offset);
97 OpRegCopy(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +000098 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -070099 CallHelper(r_tgt, helper_offset, safepoint_pc);
100}
101
Ian Rogers848871b2013-08-05 10:56:33 -0700102void Mir2Lir::CallRuntimeHelperRegLocation(ThreadOffset helper_offset, RegLocation arg0,
103 bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700104 int r_tgt = CallHelperSetup(helper_offset);
105 if (arg0.wide == 0) {
106 LoadValueDirectFixed(arg0, TargetReg(kArg0));
107 } else {
108 LoadValueDirectWideFixed(arg0, TargetReg(kArg0), TargetReg(kArg1));
109 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000110 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700111 CallHelper(r_tgt, helper_offset, safepoint_pc);
112}
113
Ian Rogers848871b2013-08-05 10:56:33 -0700114void Mir2Lir::CallRuntimeHelperImmImm(ThreadOffset helper_offset, int arg0, int arg1,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 bool safepoint_pc) {
116 int r_tgt = CallHelperSetup(helper_offset);
117 LoadConstant(TargetReg(kArg0), arg0);
118 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000119 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700120 CallHelper(r_tgt, helper_offset, safepoint_pc);
121}
122
Ian Rogers848871b2013-08-05 10:56:33 -0700123void Mir2Lir::CallRuntimeHelperImmRegLocation(ThreadOffset helper_offset, int arg0,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700124 RegLocation arg1, bool safepoint_pc) {
125 int r_tgt = CallHelperSetup(helper_offset);
126 if (arg1.wide == 0) {
127 LoadValueDirectFixed(arg1, TargetReg(kArg1));
128 } else {
129 LoadValueDirectWideFixed(arg1, TargetReg(kArg1), TargetReg(kArg2));
130 }
131 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000132 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700133 CallHelper(r_tgt, helper_offset, safepoint_pc);
134}
135
Ian Rogers848871b2013-08-05 10:56:33 -0700136void Mir2Lir::CallRuntimeHelperRegLocationImm(ThreadOffset helper_offset, RegLocation arg0, int arg1,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700137 bool safepoint_pc) {
138 int r_tgt = CallHelperSetup(helper_offset);
139 LoadValueDirectFixed(arg0, TargetReg(kArg0));
140 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000141 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700142 CallHelper(r_tgt, helper_offset, safepoint_pc);
143}
144
Ian Rogers848871b2013-08-05 10:56:33 -0700145void Mir2Lir::CallRuntimeHelperImmReg(ThreadOffset helper_offset, int arg0, int arg1,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700146 bool safepoint_pc) {
147 int r_tgt = CallHelperSetup(helper_offset);
148 OpRegCopy(TargetReg(kArg1), arg1);
149 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000150 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700151 CallHelper(r_tgt, helper_offset, safepoint_pc);
152}
153
Ian Rogers848871b2013-08-05 10:56:33 -0700154void Mir2Lir::CallRuntimeHelperRegImm(ThreadOffset helper_offset, int arg0, int arg1,
155 bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700156 int r_tgt = CallHelperSetup(helper_offset);
157 OpRegCopy(TargetReg(kArg0), arg0);
158 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000159 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700160 CallHelper(r_tgt, helper_offset, safepoint_pc);
161}
162
Ian Rogers848871b2013-08-05 10:56:33 -0700163void Mir2Lir::CallRuntimeHelperImmMethod(ThreadOffset helper_offset, int arg0, bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700164 int r_tgt = CallHelperSetup(helper_offset);
165 LoadCurrMethodDirect(TargetReg(kArg1));
166 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000167 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700168 CallHelper(r_tgt, helper_offset, safepoint_pc);
169}
170
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800171void Mir2Lir::CallRuntimeHelperRegMethod(ThreadOffset helper_offset, int arg0, bool safepoint_pc) {
172 int r_tgt = CallHelperSetup(helper_offset);
173 DCHECK_NE(TargetReg(kArg1), arg0);
174 if (TargetReg(kArg0) != arg0) {
175 OpRegCopy(TargetReg(kArg0), arg0);
176 }
177 LoadCurrMethodDirect(TargetReg(kArg1));
178 ClobberCallerSave();
179 CallHelper(r_tgt, helper_offset, safepoint_pc);
180}
181
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800182void Mir2Lir::CallRuntimeHelperRegMethodRegLocation(ThreadOffset helper_offset, int arg0,
183 RegLocation arg2, bool safepoint_pc) {
184 int r_tgt = CallHelperSetup(helper_offset);
185 DCHECK_NE(TargetReg(kArg1), arg0);
186 if (TargetReg(kArg0) != arg0) {
187 OpRegCopy(TargetReg(kArg0), arg0);
188 }
189 LoadCurrMethodDirect(TargetReg(kArg1));
190 LoadValueDirectFixed(arg2, TargetReg(kArg2));
191 ClobberCallerSave();
192 CallHelper(r_tgt, helper_offset, safepoint_pc);
193}
194
Ian Rogers848871b2013-08-05 10:56:33 -0700195void Mir2Lir::CallRuntimeHelperRegLocationRegLocation(ThreadOffset helper_offset, RegLocation arg0,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700196 RegLocation arg1, bool safepoint_pc) {
197 int r_tgt = CallHelperSetup(helper_offset);
198 if (arg0.wide == 0) {
199 LoadValueDirectFixed(arg0, arg0.fp ? TargetReg(kFArg0) : TargetReg(kArg0));
200 if (arg1.wide == 0) {
201 if (cu_->instruction_set == kMips) {
202 LoadValueDirectFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg1));
203 } else {
204 LoadValueDirectFixed(arg1, TargetReg(kArg1));
205 }
206 } else {
207 if (cu_->instruction_set == kMips) {
208 LoadValueDirectWideFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg1), arg1.fp ? TargetReg(kFArg3) : TargetReg(kArg2));
209 } else {
210 LoadValueDirectWideFixed(arg1, TargetReg(kArg1), TargetReg(kArg2));
211 }
212 }
213 } else {
214 LoadValueDirectWideFixed(arg0, arg0.fp ? TargetReg(kFArg0) : TargetReg(kArg0), arg0.fp ? TargetReg(kFArg1) : TargetReg(kArg1));
215 if (arg1.wide == 0) {
216 LoadValueDirectFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg2));
217 } else {
218 LoadValueDirectWideFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg2), arg1.fp ? TargetReg(kFArg3) : TargetReg(kArg3));
219 }
220 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000221 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700222 CallHelper(r_tgt, helper_offset, safepoint_pc);
223}
224
Ian Rogers848871b2013-08-05 10:56:33 -0700225void Mir2Lir::CallRuntimeHelperRegReg(ThreadOffset helper_offset, int arg0, int arg1,
226 bool safepoint_pc) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700227 int r_tgt = CallHelperSetup(helper_offset);
228 DCHECK_NE(TargetReg(kArg0), arg1); // check copy into arg0 won't clobber arg1
229 OpRegCopy(TargetReg(kArg0), arg0);
230 OpRegCopy(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000231 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700232 CallHelper(r_tgt, helper_offset, safepoint_pc);
233}
234
Ian Rogers848871b2013-08-05 10:56:33 -0700235void Mir2Lir::CallRuntimeHelperRegRegImm(ThreadOffset helper_offset, int arg0, int arg1,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236 int arg2, bool safepoint_pc) {
237 int r_tgt = CallHelperSetup(helper_offset);
238 DCHECK_NE(TargetReg(kArg0), arg1); // check copy into arg0 won't clobber arg1
239 OpRegCopy(TargetReg(kArg0), arg0);
240 OpRegCopy(TargetReg(kArg1), arg1);
241 LoadConstant(TargetReg(kArg2), arg2);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000242 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700243 CallHelper(r_tgt, helper_offset, safepoint_pc);
244}
245
Ian Rogers848871b2013-08-05 10:56:33 -0700246void Mir2Lir::CallRuntimeHelperImmMethodRegLocation(ThreadOffset helper_offset,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700247 int arg0, RegLocation arg2, bool safepoint_pc) {
248 int r_tgt = CallHelperSetup(helper_offset);
249 LoadValueDirectFixed(arg2, TargetReg(kArg2));
250 LoadCurrMethodDirect(TargetReg(kArg1));
251 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000252 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700253 CallHelper(r_tgt, helper_offset, safepoint_pc);
254}
255
Ian Rogers848871b2013-08-05 10:56:33 -0700256void Mir2Lir::CallRuntimeHelperImmMethodImm(ThreadOffset helper_offset, int arg0,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700257 int arg2, bool safepoint_pc) {
258 int r_tgt = CallHelperSetup(helper_offset);
259 LoadCurrMethodDirect(TargetReg(kArg1));
260 LoadConstant(TargetReg(kArg2), arg2);
261 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000262 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700263 CallHelper(r_tgt, helper_offset, safepoint_pc);
264}
265
Ian Rogers848871b2013-08-05 10:56:33 -0700266void Mir2Lir::CallRuntimeHelperImmRegLocationRegLocation(ThreadOffset helper_offset,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700267 int arg0, RegLocation arg1,
268 RegLocation arg2, bool safepoint_pc) {
269 int r_tgt = CallHelperSetup(helper_offset);
Ian Rogersa9a82542013-10-04 11:17:26 -0700270 DCHECK_EQ(arg1.wide, 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700271 LoadValueDirectFixed(arg1, TargetReg(kArg1));
272 if (arg2.wide == 0) {
273 LoadValueDirectFixed(arg2, TargetReg(kArg2));
274 } else {
275 LoadValueDirectWideFixed(arg2, TargetReg(kArg2), TargetReg(kArg3));
276 }
277 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000278 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700279 CallHelper(r_tgt, helper_offset, safepoint_pc);
280}
281
Ian Rogersa9a82542013-10-04 11:17:26 -0700282void Mir2Lir::CallRuntimeHelperRegLocationRegLocationRegLocation(ThreadOffset helper_offset,
283 RegLocation arg0, RegLocation arg1,
284 RegLocation arg2,
285 bool safepoint_pc) {
286 int r_tgt = CallHelperSetup(helper_offset);
287 DCHECK_EQ(arg0.wide, 0U);
288 LoadValueDirectFixed(arg0, TargetReg(kArg0));
289 DCHECK_EQ(arg1.wide, 0U);
290 LoadValueDirectFixed(arg1, TargetReg(kArg1));
291 DCHECK_EQ(arg1.wide, 0U);
292 LoadValueDirectFixed(arg2, TargetReg(kArg2));
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000293 ClobberCallerSave();
Ian Rogersa9a82542013-10-04 11:17:26 -0700294 CallHelper(r_tgt, helper_offset, safepoint_pc);
295}
296
Brian Carlstrom7940e442013-07-12 13:46:57 -0700297/*
298 * If there are any ins passed in registers that have not been promoted
299 * to a callee-save register, flush them to the frame. Perform intial
300 * assignment of promoted arguments.
301 *
302 * ArgLocs is an array of location records describing the incoming arguments
303 * with one location record per word of argument.
304 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700305void Mir2Lir::FlushIns(RegLocation* ArgLocs, RegLocation rl_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700306 /*
307 * Dummy up a RegLocation for the incoming Method*
308 * It will attempt to keep kArg0 live (or copy it to home location
309 * if promoted).
310 */
311 RegLocation rl_src = rl_method;
312 rl_src.location = kLocPhysReg;
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000313 rl_src.reg = RegStorage(RegStorage::k32BitSolo, TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314 rl_src.home = false;
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000315 MarkLive(rl_src.reg.GetReg(), rl_src.s_reg_low);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700316 StoreValue(rl_method, rl_src);
317 // If Method* has been promoted, explicitly flush
318 if (rl_method.location == kLocPhysReg) {
319 StoreWordDisp(TargetReg(kSp), 0, TargetReg(kArg0));
320 }
321
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800322 if (cu_->num_ins == 0) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323 return;
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800324 }
325
Brian Carlstrom7940e442013-07-12 13:46:57 -0700326 int start_vreg = cu_->num_dalvik_registers - cu_->num_ins;
327 /*
328 * Copy incoming arguments to their proper home locations.
329 * NOTE: an older version of dx had an issue in which
330 * it would reuse static method argument registers.
331 * This could result in the same Dalvik virtual register
332 * being promoted to both core and fp regs. To account for this,
333 * we only copy to the corresponding promoted physical register
334 * if it matches the type of the SSA name for the incoming
335 * argument. It is also possible that long and double arguments
336 * end up half-promoted. In those cases, we must flush the promoted
337 * half to memory as well.
338 */
339 for (int i = 0; i < cu_->num_ins; i++) {
340 PromotionMap* v_map = &promotion_map_[start_vreg + i];
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800341 int reg = GetArgMappingToPhysicalReg(i);
342
343 if (reg != INVALID_REG) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344 // If arriving in register
345 bool need_flush = true;
346 RegLocation* t_loc = &ArgLocs[i];
347 if ((v_map->core_location == kLocPhysReg) && !t_loc->fp) {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800348 OpRegCopy(v_map->core_reg, reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700349 need_flush = false;
350 } else if ((v_map->fp_location == kLocPhysReg) && t_loc->fp) {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800351 OpRegCopy(v_map->FpReg, reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700352 need_flush = false;
353 } else {
354 need_flush = true;
355 }
356
buzbeed0a03b82013-09-14 08:21:05 -0700357 // For wide args, force flush if not fully promoted
Brian Carlstrom7940e442013-07-12 13:46:57 -0700358 if (t_loc->wide) {
359 PromotionMap* p_map = v_map + (t_loc->high_word ? -1 : +1);
buzbeed0a03b82013-09-14 08:21:05 -0700360 // Is only half promoted?
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361 need_flush |= (p_map->core_location != v_map->core_location) ||
362 (p_map->fp_location != v_map->fp_location);
buzbeed0a03b82013-09-14 08:21:05 -0700363 if ((cu_->instruction_set == kThumb2) && t_loc->fp && !need_flush) {
364 /*
365 * In Arm, a double is represented as a pair of consecutive single float
366 * registers starting at an even number. It's possible that both Dalvik vRegs
367 * representing the incoming double were independently promoted as singles - but
368 * not in a form usable as a double. If so, we need to flush - even though the
369 * incoming arg appears fully in register. At this point in the code, both
370 * halves of the double are promoted. Make sure they are in a usable form.
371 */
372 int lowreg_index = start_vreg + i + (t_loc->high_word ? -1 : 0);
373 int low_reg = promotion_map_[lowreg_index].FpReg;
374 int high_reg = promotion_map_[lowreg_index + 1].FpReg;
375 if (((low_reg & 0x1) != 0) || (high_reg != (low_reg + 1))) {
376 need_flush = true;
377 }
378 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700379 }
380 if (need_flush) {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800381 StoreBaseDisp(TargetReg(kSp), SRegOffset(start_vreg + i), reg, kWord);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700382 }
383 } else {
384 // If arriving in frame & promoted
385 if (v_map->core_location == kLocPhysReg) {
386 LoadWordDisp(TargetReg(kSp), SRegOffset(start_vreg + i),
387 v_map->core_reg);
388 }
389 if (v_map->fp_location == kLocPhysReg) {
390 LoadWordDisp(TargetReg(kSp), SRegOffset(start_vreg + i),
391 v_map->FpReg);
392 }
393 }
394 }
395}
396
397/*
398 * Bit of a hack here - in the absence of a real scheduling pass,
399 * emit the next instruction in static & direct invoke sequences.
400 */
401static int NextSDCallInsn(CompilationUnit* cu, CallInfo* info,
402 int state, const MethodReference& target_method,
403 uint32_t unused,
404 uintptr_t direct_code, uintptr_t direct_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700405 InvokeType type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700406 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700407 if (direct_code != 0 && direct_method != 0) {
408 switch (state) {
409 case 0: // Get the current Method* [sets kArg0]
410 if (direct_code != static_cast<unsigned int>(-1)) {
Ian Rogers83883d72013-10-21 21:07:24 -0700411 if (cu->instruction_set != kX86) {
412 cg->LoadConstant(cg->TargetReg(kInvokeTgt), direct_code);
413 }
Mark Mendell55d0eac2014-02-06 11:02:52 -0800414 } else if (cu->instruction_set != kX86) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700415 CHECK_EQ(cu->dex_file, target_method.dex_file);
Mark Mendell55d0eac2014-02-06 11:02:52 -0800416 cg->LoadCodeAddress(target_method.dex_method_index, type, kInvokeTgt);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700417 }
418 if (direct_method != static_cast<unsigned int>(-1)) {
419 cg->LoadConstant(cg->TargetReg(kArg0), direct_method);
420 } else {
421 CHECK_EQ(cu->dex_file, target_method.dex_file);
Mark Mendell55d0eac2014-02-06 11:02:52 -0800422 cg->LoadMethodAddress(target_method.dex_method_index, type, kArg0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700423 }
424 break;
425 default:
426 return -1;
427 }
428 } else {
429 switch (state) {
430 case 0: // Get the current Method* [sets kArg0]
431 // TUNING: we can save a reg copy if Method* has been promoted.
432 cg->LoadCurrMethodDirect(cg->TargetReg(kArg0));
433 break;
434 case 1: // Get method->dex_cache_resolved_methods_
435 cg->LoadWordDisp(cg->TargetReg(kArg0),
Brian Carlstromea46f952013-07-30 01:26:50 -0700436 mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value(), cg->TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700437 // Set up direct code if known.
438 if (direct_code != 0) {
439 if (direct_code != static_cast<unsigned int>(-1)) {
440 cg->LoadConstant(cg->TargetReg(kInvokeTgt), direct_code);
Mark Mendell55d0eac2014-02-06 11:02:52 -0800441 } else if (cu->instruction_set != kX86) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700442 CHECK_EQ(cu->dex_file, target_method.dex_file);
Ian Rogers83883d72013-10-21 21:07:24 -0700443 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
Mark Mendell55d0eac2014-02-06 11:02:52 -0800444 cg->LoadCodeAddress(target_method.dex_method_index, type, kInvokeTgt);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700445 }
446 }
447 break;
448 case 2: // Grab target method*
449 CHECK_EQ(cu->dex_file, target_method.dex_file);
450 cg->LoadWordDisp(cg->TargetReg(kArg0),
451 mirror::Array::DataOffset(sizeof(mirror::Object*)).Int32Value() +
452 (target_method.dex_method_index * 4),
453 cg-> TargetReg(kArg0));
454 break;
455 case 3: // Grab the code from the method*
456 if (cu->instruction_set != kX86) {
457 if (direct_code == 0) {
458 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800459 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700460 cg->TargetReg(kInvokeTgt));
461 }
462 break;
463 }
464 // Intentional fallthrough for x86
465 default:
466 return -1;
467 }
468 }
469 return state + 1;
470}
471
472/*
473 * Bit of a hack here - in the absence of a real scheduling pass,
474 * emit the next instruction in a virtual invoke sequence.
475 * We can use kLr as a temp prior to target address loading
476 * Note also that we'll load the first argument ("this") into
477 * kArg1 here rather than the standard LoadArgRegs.
478 */
479static int NextVCallInsn(CompilationUnit* cu, CallInfo* info,
480 int state, const MethodReference& target_method,
481 uint32_t method_idx, uintptr_t unused, uintptr_t unused2,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700482 InvokeType unused3) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700483 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
484 /*
485 * This is the fast path in which the target virtual method is
486 * fully resolved at compile time.
487 */
488 switch (state) {
489 case 0: { // Get "this" [set kArg1]
490 RegLocation rl_arg = info->args[0];
491 cg->LoadValueDirectFixed(rl_arg, cg->TargetReg(kArg1));
492 break;
493 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700494 case 1: // Is "this" null? [use kArg1]
Brian Carlstrom7940e442013-07-12 13:46:57 -0700495 cg->GenNullCheck(info->args[0].s_reg_low, cg->TargetReg(kArg1), info->opt_flags);
496 // get this->klass_ [use kArg1, set kInvokeTgt]
497 cg->LoadWordDisp(cg->TargetReg(kArg1), mirror::Object::ClassOffset().Int32Value(),
498 cg->TargetReg(kInvokeTgt));
499 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700500 case 2: // Get this->klass_->vtable [usr kInvokeTgt, set kInvokeTgt]
Brian Carlstrom7940e442013-07-12 13:46:57 -0700501 cg->LoadWordDisp(cg->TargetReg(kInvokeTgt), mirror::Class::VTableOffset().Int32Value(),
502 cg->TargetReg(kInvokeTgt));
503 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700504 case 3: // Get target method [use kInvokeTgt, set kArg0]
Brian Carlstrom7940e442013-07-12 13:46:57 -0700505 cg->LoadWordDisp(cg->TargetReg(kInvokeTgt), (method_idx * 4) +
506 mirror::Array::DataOffset(sizeof(mirror::Object*)).Int32Value(),
507 cg->TargetReg(kArg0));
508 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700509 case 4: // Get the compiled code address [uses kArg0, sets kInvokeTgt]
Brian Carlstrom7940e442013-07-12 13:46:57 -0700510 if (cu->instruction_set != kX86) {
511 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800512 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700513 cg->TargetReg(kInvokeTgt));
514 break;
515 }
516 // Intentional fallthrough for X86
517 default:
518 return -1;
519 }
520 return state + 1;
521}
522
523/*
Jeff Hao88474b42013-10-23 16:24:40 -0700524 * Emit the next instruction in an invoke interface sequence. This will do a lookup in the
525 * class's IMT, calling either the actual method or art_quick_imt_conflict_trampoline if
526 * more than one interface method map to the same index. Note also that we'll load the first
527 * argument ("this") into kArg1 here rather than the standard LoadArgRegs.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700528 */
529static int NextInterfaceCallInsn(CompilationUnit* cu, CallInfo* info, int state,
530 const MethodReference& target_method,
Jeff Hao88474b42013-10-23 16:24:40 -0700531 uint32_t method_idx, uintptr_t unused,
532 uintptr_t direct_method, InvokeType unused2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700533 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700534
Jeff Hao88474b42013-10-23 16:24:40 -0700535 switch (state) {
536 case 0: // Set target method index in case of conflict [set kHiddenArg, kHiddenFpArg (x86)]
Brian Carlstrom7940e442013-07-12 13:46:57 -0700537 CHECK_EQ(cu->dex_file, target_method.dex_file);
Jeff Hao88474b42013-10-23 16:24:40 -0700538 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
539 cg->LoadConstant(cg->TargetReg(kHiddenArg), target_method.dex_method_index);
540 if (cu->instruction_set == kX86) {
541 cg->OpRegCopy(cg->TargetReg(kHiddenFpArg), cg->TargetReg(kHiddenArg));
542 }
543 break;
544 case 1: { // Get "this" [set kArg1]
545 RegLocation rl_arg = info->args[0];
546 cg->LoadValueDirectFixed(rl_arg, cg->TargetReg(kArg1));
547 break;
548 }
549 case 2: // Is "this" null? [use kArg1]
550 cg->GenNullCheck(info->args[0].s_reg_low, cg->TargetReg(kArg1), info->opt_flags);
551 // Get this->klass_ [use kArg1, set kInvokeTgt]
552 cg->LoadWordDisp(cg->TargetReg(kArg1), mirror::Object::ClassOffset().Int32Value(),
553 cg->TargetReg(kInvokeTgt));
554 break;
555 case 3: // Get this->klass_->imtable [use kInvokeTgt, set kInvokeTgt]
556 cg->LoadWordDisp(cg->TargetReg(kInvokeTgt), mirror::Class::ImTableOffset().Int32Value(),
557 cg->TargetReg(kInvokeTgt));
558 break;
559 case 4: // Get target method [use kInvokeTgt, set kArg0]
560 cg->LoadWordDisp(cg->TargetReg(kInvokeTgt), ((method_idx % ClassLinker::kImtSize) * 4) +
561 mirror::Array::DataOffset(sizeof(mirror::Object*)).Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562 cg->TargetReg(kArg0));
563 break;
Jeff Hao88474b42013-10-23 16:24:40 -0700564 case 5: // Get the compiled code address [use kArg0, set kInvokeTgt]
565 if (cu->instruction_set != kX86) {
566 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800567 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Jeff Hao88474b42013-10-23 16:24:40 -0700568 cg->TargetReg(kInvokeTgt));
569 break;
570 }
571 // Intentional fallthrough for X86
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 default:
573 return -1;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700574 }
575 return state + 1;
576}
577
Ian Rogers848871b2013-08-05 10:56:33 -0700578static int NextInvokeInsnSP(CompilationUnit* cu, CallInfo* info, ThreadOffset trampoline,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579 int state, const MethodReference& target_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700580 uint32_t method_idx) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700581 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
582 /*
583 * This handles the case in which the base method is not fully
584 * resolved at compile time, we bail to a runtime helper.
585 */
586 if (state == 0) {
587 if (cu->instruction_set != kX86) {
588 // Load trampoline target
Ian Rogers848871b2013-08-05 10:56:33 -0700589 cg->LoadWordDisp(cg->TargetReg(kSelf), trampoline.Int32Value(), cg->TargetReg(kInvokeTgt));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700590 }
591 // Load kArg0 with method index
592 CHECK_EQ(cu->dex_file, target_method.dex_file);
593 cg->LoadConstant(cg->TargetReg(kArg0), target_method.dex_method_index);
594 return 1;
595 }
596 return -1;
597}
598
599static int NextStaticCallInsnSP(CompilationUnit* cu, CallInfo* info,
600 int state,
601 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000602 uint32_t unused, uintptr_t unused2,
603 uintptr_t unused3, InvokeType unused4) {
Ian Rogers848871b2013-08-05 10:56:33 -0700604 ThreadOffset trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeStaticTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700605 return NextInvokeInsnSP(cu, info, trampoline, state, target_method, 0);
606}
607
608static int NextDirectCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
609 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000610 uint32_t unused, uintptr_t unused2,
611 uintptr_t unused3, InvokeType unused4) {
Ian Rogers848871b2013-08-05 10:56:33 -0700612 ThreadOffset trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeDirectTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700613 return NextInvokeInsnSP(cu, info, trampoline, state, target_method, 0);
614}
615
616static int NextSuperCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
617 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000618 uint32_t unused, uintptr_t unused2,
619 uintptr_t unused3, InvokeType unused4) {
Ian Rogers848871b2013-08-05 10:56:33 -0700620 ThreadOffset trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeSuperTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700621 return NextInvokeInsnSP(cu, info, trampoline, state, target_method, 0);
622}
623
624static int NextVCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
625 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000626 uint32_t unused, uintptr_t unused2,
627 uintptr_t unused3, InvokeType unused4) {
Ian Rogers848871b2013-08-05 10:56:33 -0700628 ThreadOffset trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeVirtualTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700629 return NextInvokeInsnSP(cu, info, trampoline, state, target_method, 0);
630}
631
632static int NextInterfaceCallInsnWithAccessCheck(CompilationUnit* cu,
633 CallInfo* info, int state,
634 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000635 uint32_t unused, uintptr_t unused2,
636 uintptr_t unused3, InvokeType unused4) {
Ian Rogers848871b2013-08-05 10:56:33 -0700637 ThreadOffset trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeInterfaceTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700638 return NextInvokeInsnSP(cu, info, trampoline, state, target_method, 0);
639}
640
641int Mir2Lir::LoadArgRegs(CallInfo* info, int call_state,
642 NextCallInsn next_call_insn,
643 const MethodReference& target_method,
644 uint32_t vtable_idx, uintptr_t direct_code,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700645 uintptr_t direct_method, InvokeType type, bool skip_this) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700646 int last_arg_reg = TargetReg(kArg3);
647 int next_reg = TargetReg(kArg1);
648 int next_arg = 0;
649 if (skip_this) {
650 next_reg++;
651 next_arg++;
652 }
653 for (; (next_reg <= last_arg_reg) && (next_arg < info->num_arg_words); next_reg++) {
654 RegLocation rl_arg = info->args[next_arg++];
655 rl_arg = UpdateRawLoc(rl_arg);
656 if (rl_arg.wide && (next_reg <= TargetReg(kArg2))) {
657 LoadValueDirectWideFixed(rl_arg, next_reg, next_reg + 1);
658 next_reg++;
659 next_arg++;
660 } else {
661 if (rl_arg.wide) {
662 rl_arg.wide = false;
663 rl_arg.is_const = false;
664 }
665 LoadValueDirectFixed(rl_arg, next_reg);
666 }
667 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
668 direct_code, direct_method, type);
669 }
670 return call_state;
671}
672
673/*
674 * Load up to 5 arguments, the first three of which will be in
675 * kArg1 .. kArg3. On entry kArg0 contains the current method pointer,
676 * and as part of the load sequence, it must be replaced with
677 * the target method pointer. Note, this may also be called
678 * for "range" variants if the number of arguments is 5 or fewer.
679 */
680int Mir2Lir::GenDalvikArgsNoRange(CallInfo* info,
681 int call_state, LIR** pcrLabel, NextCallInsn next_call_insn,
682 const MethodReference& target_method,
683 uint32_t vtable_idx, uintptr_t direct_code,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700684 uintptr_t direct_method, InvokeType type, bool skip_this) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700685 RegLocation rl_arg;
686
687 /* If no arguments, just return */
688 if (info->num_arg_words == 0)
689 return call_state;
690
691 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
692 direct_code, direct_method, type);
693
694 DCHECK_LE(info->num_arg_words, 5);
695 if (info->num_arg_words > 3) {
696 int32_t next_use = 3;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700697 // Detect special case of wide arg spanning arg3/arg4
Brian Carlstrom7940e442013-07-12 13:46:57 -0700698 RegLocation rl_use0 = info->args[0];
699 RegLocation rl_use1 = info->args[1];
700 RegLocation rl_use2 = info->args[2];
701 if (((!rl_use0.wide && !rl_use1.wide) || rl_use0.wide) &&
702 rl_use2.wide) {
703 int reg = -1;
704 // Wide spans, we need the 2nd half of uses[2].
705 rl_arg = UpdateLocWide(rl_use2);
706 if (rl_arg.location == kLocPhysReg) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000707 reg = rl_arg.reg.GetHighReg();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700708 } else {
709 // kArg2 & rArg3 can safely be used here
710 reg = TargetReg(kArg3);
711 LoadWordDisp(TargetReg(kSp), SRegOffset(rl_arg.s_reg_low) + 4, reg);
712 call_state = next_call_insn(cu_, info, call_state, target_method,
713 vtable_idx, direct_code, direct_method, type);
714 }
715 StoreBaseDisp(TargetReg(kSp), (next_use + 1) * 4, reg, kWord);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700716 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
717 direct_code, direct_method, type);
718 next_use++;
719 }
720 // Loop through the rest
721 while (next_use < info->num_arg_words) {
722 int low_reg;
723 int high_reg = -1;
724 rl_arg = info->args[next_use];
725 rl_arg = UpdateRawLoc(rl_arg);
726 if (rl_arg.location == kLocPhysReg) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000727 low_reg = rl_arg.reg.GetReg();
728 if (rl_arg.wide) {
729 high_reg = rl_arg.reg.GetHighReg();
730 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700731 } else {
732 low_reg = TargetReg(kArg2);
733 if (rl_arg.wide) {
734 high_reg = TargetReg(kArg3);
735 LoadValueDirectWideFixed(rl_arg, low_reg, high_reg);
736 } else {
737 LoadValueDirectFixed(rl_arg, low_reg);
738 }
739 call_state = next_call_insn(cu_, info, call_state, target_method,
740 vtable_idx, direct_code, direct_method, type);
741 }
742 int outs_offset = (next_use + 1) * 4;
743 if (rl_arg.wide) {
744 StoreBaseDispWide(TargetReg(kSp), outs_offset, low_reg, high_reg);
745 next_use += 2;
746 } else {
747 StoreWordDisp(TargetReg(kSp), outs_offset, low_reg);
748 next_use++;
749 }
750 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
751 direct_code, direct_method, type);
752 }
753 }
754
755 call_state = LoadArgRegs(info, call_state, next_call_insn,
756 target_method, vtable_idx, direct_code, direct_method,
757 type, skip_this);
758
759 if (pcrLabel) {
760 *pcrLabel = GenNullCheck(info->args[0].s_reg_low, TargetReg(kArg1), info->opt_flags);
761 }
762 return call_state;
763}
764
765/*
766 * May have 0+ arguments (also used for jumbo). Note that
767 * source virtual registers may be in physical registers, so may
768 * need to be flushed to home location before copying. This
769 * applies to arg3 and above (see below).
770 *
771 * Two general strategies:
772 * If < 20 arguments
773 * Pass args 3-18 using vldm/vstm block copy
774 * Pass arg0, arg1 & arg2 in kArg1-kArg3
775 * If 20+ arguments
776 * Pass args arg19+ using memcpy block copy
777 * Pass arg0, arg1 & arg2 in kArg1-kArg3
778 *
779 */
780int Mir2Lir::GenDalvikArgsRange(CallInfo* info, int call_state,
781 LIR** pcrLabel, NextCallInsn next_call_insn,
782 const MethodReference& target_method,
783 uint32_t vtable_idx, uintptr_t direct_code, uintptr_t direct_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700784 InvokeType type, bool skip_this) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700785 // If we can treat it as non-range (Jumbo ops will use range form)
786 if (info->num_arg_words <= 5)
787 return GenDalvikArgsNoRange(info, call_state, pcrLabel,
788 next_call_insn, target_method, vtable_idx,
789 direct_code, direct_method, type, skip_this);
790 /*
791 * First load the non-register arguments. Both forms expect all
792 * of the source arguments to be in their home frame location, so
793 * scan the s_reg names and flush any that have been promoted to
794 * frame backing storage.
795 */
796 // Scan the rest of the args - if in phys_reg flush to memory
797 for (int next_arg = 0; next_arg < info->num_arg_words;) {
798 RegLocation loc = info->args[next_arg];
799 if (loc.wide) {
800 loc = UpdateLocWide(loc);
801 if ((next_arg >= 2) && (loc.location == kLocPhysReg)) {
802 StoreBaseDispWide(TargetReg(kSp), SRegOffset(loc.s_reg_low),
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000803 loc.reg.GetReg(), loc.reg.GetHighReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700804 }
805 next_arg += 2;
806 } else {
807 loc = UpdateLoc(loc);
808 if ((next_arg >= 3) && (loc.location == kLocPhysReg)) {
809 StoreBaseDisp(TargetReg(kSp), SRegOffset(loc.s_reg_low),
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000810 loc.reg.GetReg(), kWord);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700811 }
812 next_arg++;
813 }
814 }
815
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800816 // Logic below assumes that Method pointer is at offset zero from SP.
817 DCHECK_EQ(VRegOffset(static_cast<int>(kVRegMethodPtrBaseReg)), 0);
818
819 // The first 3 arguments are passed via registers.
820 // TODO: For 64-bit, instead of hardcoding 4 for Method* size, we should either
821 // get size of uintptr_t or size of object reference according to model being used.
822 int outs_offset = 4 /* Method* */ + (3 * sizeof(uint32_t));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700823 int start_offset = SRegOffset(info->args[3].s_reg_low);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800824 int regs_left_to_pass_via_stack = info->num_arg_words - 3;
825 DCHECK_GT(regs_left_to_pass_via_stack, 0);
826
827 if (cu_->instruction_set == kThumb2 && regs_left_to_pass_via_stack <= 16) {
828 // Use vldm/vstm pair using kArg3 as a temp
829 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
830 direct_code, direct_method, type);
831 OpRegRegImm(kOpAdd, TargetReg(kArg3), TargetReg(kSp), start_offset);
832 LIR* ld = OpVldm(TargetReg(kArg3), regs_left_to_pass_via_stack);
833 // TUNING: loosen barrier
834 ld->u.m.def_mask = ENCODE_ALL;
835 SetMemRefType(ld, true /* is_load */, kDalvikReg);
836 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
837 direct_code, direct_method, type);
838 OpRegRegImm(kOpAdd, TargetReg(kArg3), TargetReg(kSp), 4 /* Method* */ + (3 * 4));
839 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
840 direct_code, direct_method, type);
841 LIR* st = OpVstm(TargetReg(kArg3), regs_left_to_pass_via_stack);
842 SetMemRefType(st, false /* is_load */, kDalvikReg);
843 st->u.m.def_mask = ENCODE_ALL;
844 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
845 direct_code, direct_method, type);
846 } else if (cu_->instruction_set == kX86) {
847 int current_src_offset = start_offset;
848 int current_dest_offset = outs_offset;
849
850 while (regs_left_to_pass_via_stack > 0) {
851 // This is based on the knowledge that the stack itself is 16-byte aligned.
852 bool src_is_16b_aligned = (current_src_offset & 0xF) == 0;
853 bool dest_is_16b_aligned = (current_dest_offset & 0xF) == 0;
854 size_t bytes_to_move;
855
856 /*
857 * The amount to move defaults to 32-bit. If there are 4 registers left to move, then do a
858 * a 128-bit move because we won't get the chance to try to aligned. If there are more than
859 * 4 registers left to move, consider doing a 128-bit only if either src or dest are aligned.
860 * We do this because we could potentially do a smaller move to align.
861 */
862 if (regs_left_to_pass_via_stack == 4 ||
863 (regs_left_to_pass_via_stack > 4 && (src_is_16b_aligned || dest_is_16b_aligned))) {
864 // Moving 128-bits via xmm register.
865 bytes_to_move = sizeof(uint32_t) * 4;
866
867 // Allocate a free xmm temp. Since we are working through the calling sequence,
868 // we expect to have an xmm temporary available.
869 int temp = AllocTempDouble();
870 CHECK_GT(temp, 0);
871
872 LIR* ld1 = nullptr;
873 LIR* ld2 = nullptr;
874 LIR* st1 = nullptr;
875 LIR* st2 = nullptr;
876
877 /*
878 * The logic is similar for both loads and stores. If we have 16-byte alignment,
879 * do an aligned move. If we have 8-byte alignment, then do the move in two
880 * parts. This approach prevents possible cache line splits. Finally, fall back
881 * to doing an unaligned move. In most cases we likely won't split the cache
882 * line but we cannot prove it and thus take a conservative approach.
883 */
884 bool src_is_8b_aligned = (current_src_offset & 0x7) == 0;
885 bool dest_is_8b_aligned = (current_dest_offset & 0x7) == 0;
886
887 if (src_is_16b_aligned) {
888 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovA128FP);
889 } else if (src_is_8b_aligned) {
890 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovLo128FP);
891 ld2 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset + (bytes_to_move >> 1), kMovHi128FP);
892 } else {
893 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovU128FP);
894 }
895
896 if (dest_is_16b_aligned) {
897 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovA128FP);
898 } else if (dest_is_8b_aligned) {
899 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovLo128FP);
900 st2 = OpMovMemReg(TargetReg(kSp), current_dest_offset + (bytes_to_move >> 1), temp, kMovHi128FP);
901 } else {
902 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovU128FP);
903 }
904
905 // TODO If we could keep track of aliasing information for memory accesses that are wider
906 // than 64-bit, we wouldn't need to set up a barrier.
907 if (ld1 != nullptr) {
908 if (ld2 != nullptr) {
909 // For 64-bit load we can actually set up the aliasing information.
910 AnnotateDalvikRegAccess(ld1, current_src_offset >> 2, true, true);
911 AnnotateDalvikRegAccess(ld2, (current_src_offset + (bytes_to_move >> 1)) >> 2, true, true);
912 } else {
913 // Set barrier for 128-bit load.
914 SetMemRefType(ld1, true /* is_load */, kDalvikReg);
915 ld1->u.m.def_mask = ENCODE_ALL;
916 }
917 }
918 if (st1 != nullptr) {
919 if (st2 != nullptr) {
920 // For 64-bit store we can actually set up the aliasing information.
921 AnnotateDalvikRegAccess(st1, current_dest_offset >> 2, false, true);
922 AnnotateDalvikRegAccess(st2, (current_dest_offset + (bytes_to_move >> 1)) >> 2, false, true);
923 } else {
924 // Set barrier for 128-bit store.
925 SetMemRefType(st1, false /* is_load */, kDalvikReg);
926 st1->u.m.def_mask = ENCODE_ALL;
927 }
928 }
929
930 // Free the temporary used for the data movement.
931 FreeTemp(temp);
932 } else {
933 // Moving 32-bits via general purpose register.
934 bytes_to_move = sizeof(uint32_t);
935
936 // Instead of allocating a new temp, simply reuse one of the registers being used
937 // for argument passing.
938 int temp = TargetReg(kArg3);
939
940 // Now load the argument VR and store to the outs.
941 LoadWordDisp(TargetReg(kSp), current_src_offset, temp);
942 StoreWordDisp(TargetReg(kSp), current_dest_offset, temp);
943 }
944
945 current_src_offset += bytes_to_move;
946 current_dest_offset += bytes_to_move;
947 regs_left_to_pass_via_stack -= (bytes_to_move >> 2);
948 }
949 } else {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700950 // Generate memcpy
951 OpRegRegImm(kOpAdd, TargetReg(kArg0), TargetReg(kSp), outs_offset);
952 OpRegRegImm(kOpAdd, TargetReg(kArg1), TargetReg(kSp), start_offset);
Ian Rogers7655f292013-07-29 11:07:13 -0700953 CallRuntimeHelperRegRegImm(QUICK_ENTRYPOINT_OFFSET(pMemcpy), TargetReg(kArg0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700954 TargetReg(kArg1), (info->num_arg_words - 3) * 4, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700955 }
956
957 call_state = LoadArgRegs(info, call_state, next_call_insn,
958 target_method, vtable_idx, direct_code, direct_method,
959 type, skip_this);
960
961 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
962 direct_code, direct_method, type);
963 if (pcrLabel) {
964 *pcrLabel = GenNullCheck(info->args[0].s_reg_low, TargetReg(kArg1), info->opt_flags);
965 }
966 return call_state;
967}
968
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700969RegLocation Mir2Lir::InlineTarget(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700970 RegLocation res;
971 if (info->result.location == kLocInvalid) {
972 res = GetReturn(false);
973 } else {
974 res = info->result;
975 }
976 return res;
977}
978
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700979RegLocation Mir2Lir::InlineTargetWide(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700980 RegLocation res;
981 if (info->result.location == kLocInvalid) {
982 res = GetReturnWide(false);
983 } else {
984 res = info->result;
985 }
986 return res;
987}
988
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700989bool Mir2Lir::GenInlinedCharAt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700990 if (cu_->instruction_set == kMips) {
991 // TODO - add Mips implementation
992 return false;
993 }
994 // Location of reference to data array
995 int value_offset = mirror::String::ValueOffset().Int32Value();
996 // Location of count
997 int count_offset = mirror::String::CountOffset().Int32Value();
998 // Starting offset within data array
999 int offset_offset = mirror::String::OffsetOffset().Int32Value();
1000 // Start of char data with array_
1001 int data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Int32Value();
1002
1003 RegLocation rl_obj = info->args[0];
1004 RegLocation rl_idx = info->args[1];
1005 rl_obj = LoadValue(rl_obj, kCoreReg);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001006 // X86 wants to avoid putting a constant index into a register.
1007 if (!(cu_->instruction_set == kX86 && rl_idx.is_const)) {
1008 rl_idx = LoadValue(rl_idx, kCoreReg);
1009 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001010 int reg_max;
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001011 GenNullCheck(rl_obj.s_reg_low, rl_obj.reg.GetReg(), info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001012 bool range_check = (!(info->opt_flags & MIR_IGNORE_RANGE_CHECK));
Vladimir Marko3bc86152014-03-13 14:11:28 +00001013 LIR* range_check_branch = nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001014 int reg_off = INVALID_REG;
1015 int reg_ptr = INVALID_REG;
1016 if (cu_->instruction_set != kX86) {
1017 reg_off = AllocTemp();
1018 reg_ptr = AllocTemp();
1019 if (range_check) {
1020 reg_max = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001021 LoadWordDisp(rl_obj.reg.GetReg(), count_offset, reg_max);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001022 }
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001023 LoadWordDisp(rl_obj.reg.GetReg(), offset_offset, reg_off);
1024 LoadWordDisp(rl_obj.reg.GetReg(), value_offset, reg_ptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001025 if (range_check) {
1026 // Set up a launch pad to allow retry in case of bounds violation */
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001027 OpRegReg(kOpCmp, rl_idx.reg.GetReg(), reg_max);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001028 FreeTemp(reg_max);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001029 range_check_branch = OpCondBranch(kCondUge, nullptr);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001030 }
Mark Mendell2b724cb2014-02-06 05:24:20 -08001031 OpRegImm(kOpAdd, reg_ptr, data_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001032 } else {
1033 if (range_check) {
Mark Mendell2b724cb2014-02-06 05:24:20 -08001034 // On x86, we can compare to memory directly
Brian Carlstrom7940e442013-07-12 13:46:57 -07001035 // Set up a launch pad to allow retry in case of bounds violation */
Mark Mendell2b724cb2014-02-06 05:24:20 -08001036 if (rl_idx.is_const) {
Vladimir Marko3bc86152014-03-13 14:11:28 +00001037 range_check_branch = OpCmpMemImmBranch(
1038 kCondUlt, INVALID_REG, rl_obj.reg.GetReg(), count_offset,
1039 mir_graph_->ConstantValue(rl_idx.orig_sreg), nullptr);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001040 } else {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001041 OpRegMem(kOpCmp, rl_idx.reg.GetReg(), rl_obj.reg.GetReg(), count_offset);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001042 range_check_branch = OpCondBranch(kCondUge, nullptr);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001043 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001044 }
1045 reg_off = AllocTemp();
1046 reg_ptr = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001047 LoadWordDisp(rl_obj.reg.GetReg(), offset_offset, reg_off);
1048 LoadWordDisp(rl_obj.reg.GetReg(), value_offset, reg_ptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049 }
Mark Mendell2b724cb2014-02-06 05:24:20 -08001050 if (rl_idx.is_const) {
1051 OpRegImm(kOpAdd, reg_off, mir_graph_->ConstantValue(rl_idx.orig_sreg));
1052 } else {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001053 OpRegReg(kOpAdd, reg_off, rl_idx.reg.GetReg());
Mark Mendell2b724cb2014-02-06 05:24:20 -08001054 }
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001055 FreeTemp(rl_obj.reg.GetReg());
1056 if (rl_idx.location == kLocPhysReg) {
1057 FreeTemp(rl_idx.reg.GetReg());
Mark Mendell2b724cb2014-02-06 05:24:20 -08001058 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 RegLocation rl_dest = InlineTarget(info);
1060 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001061 if (cu_->instruction_set != kX86) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001062 LoadBaseIndexed(reg_ptr, reg_off, rl_result.reg.GetReg(), 1, kUnsignedHalf);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001063 } else {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001064 LoadBaseIndexedDisp(reg_ptr, reg_off, 1, data_offset, rl_result.reg.GetReg(),
Mark Mendell2b724cb2014-02-06 05:24:20 -08001065 INVALID_REG, kUnsignedHalf, INVALID_SREG);
1066 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001067 FreeTemp(reg_off);
1068 FreeTemp(reg_ptr);
1069 StoreValue(rl_dest, rl_result);
1070 if (range_check) {
Vladimir Marko3bc86152014-03-13 14:11:28 +00001071 DCHECK(range_check_branch != nullptr);
1072 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've already null checked.
1073 AddIntrinsicLaunchpad(info, range_check_branch);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001075 return true;
1076}
1077
1078// Generates an inlined String.is_empty or String.length.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001079bool Mir2Lir::GenInlinedStringIsEmptyOrLength(CallInfo* info, bool is_empty) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001080 if (cu_->instruction_set == kMips) {
1081 // TODO - add Mips implementation
1082 return false;
1083 }
1084 // dst = src.length();
1085 RegLocation rl_obj = info->args[0];
1086 rl_obj = LoadValue(rl_obj, kCoreReg);
1087 RegLocation rl_dest = InlineTarget(info);
1088 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001089 GenNullCheck(rl_obj.s_reg_low, rl_obj.reg.GetReg(), info->opt_flags);
1090 LoadWordDisp(rl_obj.reg.GetReg(), mirror::String::CountOffset().Int32Value(), rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001091 if (is_empty) {
1092 // dst = (dst == 0);
1093 if (cu_->instruction_set == kThumb2) {
1094 int t_reg = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001095 OpRegReg(kOpNeg, t_reg, rl_result.reg.GetReg());
1096 OpRegRegReg(kOpAdc, rl_result.reg.GetReg(), rl_result.reg.GetReg(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001097 } else {
1098 DCHECK_EQ(cu_->instruction_set, kX86);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001099 OpRegImm(kOpSub, rl_result.reg.GetReg(), 1);
1100 OpRegImm(kOpLsr, rl_result.reg.GetReg(), 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001101 }
1102 }
1103 StoreValue(rl_dest, rl_result);
1104 return true;
1105}
1106
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001107bool Mir2Lir::GenInlinedReverseBytes(CallInfo* info, OpSize size) {
1108 if (cu_->instruction_set == kMips) {
1109 // TODO - add Mips implementation
1110 return false;
1111 }
1112 RegLocation rl_src_i = info->args[0];
Mark Mendell55d0eac2014-02-06 11:02:52 -08001113 RegLocation rl_dest = (size == kLong) ? InlineTargetWide(info) : InlineTarget(info); // result reg
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001114 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1115 if (size == kLong) {
1116 RegLocation rl_i = LoadValueWide(rl_src_i, kCoreReg);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001117 int r_i_low = rl_i.reg.GetReg();
1118 if (rl_i.reg.GetReg() == rl_result.reg.GetReg()) {
1119 // First REV shall clobber rl_result.reg.GetReg(), save the value in a temp for the second REV.
Vladimir Markof246af22013-11-27 12:30:15 +00001120 r_i_low = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001121 OpRegCopy(r_i_low, rl_i.reg.GetReg());
Vladimir Markof246af22013-11-27 12:30:15 +00001122 }
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001123 OpRegReg(kOpRev, rl_result.reg.GetReg(), rl_i.reg.GetHighReg());
1124 OpRegReg(kOpRev, rl_result.reg.GetHighReg(), r_i_low);
1125 if (rl_i.reg.GetReg() == rl_result.reg.GetReg()) {
Vladimir Markof246af22013-11-27 12:30:15 +00001126 FreeTemp(r_i_low);
1127 }
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001128 StoreValueWide(rl_dest, rl_result);
1129 } else {
1130 DCHECK(size == kWord || size == kSignedHalf);
1131 OpKind op = (size == kWord) ? kOpRev : kOpRevsh;
1132 RegLocation rl_i = LoadValue(rl_src_i, kCoreReg);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001133 OpRegReg(op, rl_result.reg.GetReg(), rl_i.reg.GetReg());
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001134 StoreValue(rl_dest, rl_result);
1135 }
1136 return true;
1137}
1138
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001139bool Mir2Lir::GenInlinedAbsInt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001140 if (cu_->instruction_set == kMips) {
1141 // TODO - add Mips implementation
1142 return false;
1143 }
1144 RegLocation rl_src = info->args[0];
1145 rl_src = LoadValue(rl_src, kCoreReg);
1146 RegLocation rl_dest = InlineTarget(info);
1147 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1148 int sign_reg = AllocTemp();
1149 // abs(x) = y<=x>>31, (x+y)^y.
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001150 OpRegRegImm(kOpAsr, sign_reg, rl_src.reg.GetReg(), 31);
1151 OpRegRegReg(kOpAdd, rl_result.reg.GetReg(), rl_src.reg.GetReg(), sign_reg);
1152 OpRegReg(kOpXor, rl_result.reg.GetReg(), sign_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001153 StoreValue(rl_dest, rl_result);
1154 return true;
1155}
1156
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001157bool Mir2Lir::GenInlinedAbsLong(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001158 if (cu_->instruction_set == kMips) {
1159 // TODO - add Mips implementation
1160 return false;
1161 }
1162 if (cu_->instruction_set == kThumb2) {
1163 RegLocation rl_src = info->args[0];
1164 rl_src = LoadValueWide(rl_src, kCoreReg);
1165 RegLocation rl_dest = InlineTargetWide(info);
1166 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1167 int sign_reg = AllocTemp();
1168 // abs(x) = y<=x>>31, (x+y)^y.
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001169 OpRegRegImm(kOpAsr, sign_reg, rl_src.reg.GetHighReg(), 31);
1170 OpRegRegReg(kOpAdd, rl_result.reg.GetReg(), rl_src.reg.GetReg(), sign_reg);
1171 OpRegRegReg(kOpAdc, rl_result.reg.GetHighReg(), rl_src.reg.GetHighReg(), sign_reg);
1172 OpRegReg(kOpXor, rl_result.reg.GetReg(), sign_reg);
1173 OpRegReg(kOpXor, rl_result.reg.GetHighReg(), sign_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174 StoreValueWide(rl_dest, rl_result);
1175 return true;
1176 } else {
1177 DCHECK_EQ(cu_->instruction_set, kX86);
1178 // Reuse source registers to avoid running out of temps
1179 RegLocation rl_src = info->args[0];
1180 rl_src = LoadValueWide(rl_src, kCoreReg);
1181 RegLocation rl_dest = InlineTargetWide(info);
1182 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001183 OpRegCopyWide(rl_result.reg.GetReg(), rl_result.reg.GetHighReg(), rl_src.reg.GetReg(), rl_src.reg.GetHighReg());
1184 FreeTemp(rl_src.reg.GetReg());
1185 FreeTemp(rl_src.reg.GetHighReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001186 int sign_reg = AllocTemp();
1187 // abs(x) = y<=x>>31, (x+y)^y.
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001188 OpRegRegImm(kOpAsr, sign_reg, rl_result.reg.GetHighReg(), 31);
1189 OpRegReg(kOpAdd, rl_result.reg.GetReg(), sign_reg);
1190 OpRegReg(kOpAdc, rl_result.reg.GetHighReg(), sign_reg);
1191 OpRegReg(kOpXor, rl_result.reg.GetReg(), sign_reg);
1192 OpRegReg(kOpXor, rl_result.reg.GetHighReg(), sign_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001193 StoreValueWide(rl_dest, rl_result);
1194 return true;
1195 }
1196}
1197
Yixin Shoudbb17e32014-02-07 05:09:30 -08001198bool Mir2Lir::GenInlinedAbsFloat(CallInfo* info) {
1199 if (cu_->instruction_set == kMips) {
1200 // TODO - add Mips implementation
1201 return false;
1202 }
1203 RegLocation rl_src = info->args[0];
1204 rl_src = LoadValue(rl_src, kCoreReg);
1205 RegLocation rl_dest = InlineTarget(info);
1206 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1207 int signMask = AllocTemp();
1208 LoadConstant(signMask, 0x7fffffff);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001209 OpRegRegReg(kOpAnd, rl_result.reg.GetReg(), rl_src.reg.GetReg(), signMask);
Yixin Shoudbb17e32014-02-07 05:09:30 -08001210 FreeTemp(signMask);
1211 StoreValue(rl_dest, rl_result);
1212 return true;
1213}
1214
1215bool Mir2Lir::GenInlinedAbsDouble(CallInfo* info) {
1216 if (cu_->instruction_set == kMips) {
1217 // TODO - add Mips implementation
1218 return false;
1219 }
1220 RegLocation rl_src = info->args[0];
1221 rl_src = LoadValueWide(rl_src, kCoreReg);
1222 RegLocation rl_dest = InlineTargetWide(info);
1223 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001224 OpRegCopyWide(rl_result.reg.GetReg(), rl_result.reg.GetHighReg(), rl_src.reg.GetReg(), rl_src.reg.GetHighReg());
1225 FreeTemp(rl_src.reg.GetReg());
1226 FreeTemp(rl_src.reg.GetHighReg());
Yixin Shoudbb17e32014-02-07 05:09:30 -08001227 int signMask = AllocTemp();
1228 LoadConstant(signMask, 0x7fffffff);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001229 OpRegReg(kOpAnd, rl_result.reg.GetHighReg(), signMask);
Yixin Shoudbb17e32014-02-07 05:09:30 -08001230 FreeTemp(signMask);
1231 StoreValueWide(rl_dest, rl_result);
1232 return true;
1233}
1234
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001235bool Mir2Lir::GenInlinedFloatCvt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001236 if (cu_->instruction_set == kMips) {
1237 // TODO - add Mips implementation
1238 return false;
1239 }
1240 RegLocation rl_src = info->args[0];
1241 RegLocation rl_dest = InlineTarget(info);
1242 StoreValue(rl_dest, rl_src);
1243 return true;
1244}
1245
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001246bool Mir2Lir::GenInlinedDoubleCvt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001247 if (cu_->instruction_set == kMips) {
1248 // TODO - add Mips implementation
1249 return false;
1250 }
1251 RegLocation rl_src = info->args[0];
1252 RegLocation rl_dest = InlineTargetWide(info);
1253 StoreValueWide(rl_dest, rl_src);
1254 return true;
1255}
1256
1257/*
Vladimir Marko3bc86152014-03-13 14:11:28 +00001258 * Fast String.indexOf(I) & (II). Tests for simple case of char <= 0xFFFF,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001259 * otherwise bails to standard library code.
1260 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001261bool Mir2Lir::GenInlinedIndexOf(CallInfo* info, bool zero_based) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001262 if (cu_->instruction_set == kMips) {
1263 // TODO - add Mips implementation
1264 return false;
1265 }
Vladimir Marko3bc86152014-03-13 14:11:28 +00001266 RegLocation rl_obj = info->args[0];
1267 RegLocation rl_char = info->args[1];
1268 if (rl_char.is_const && (mir_graph_->ConstantValue(rl_char) & ~0xFFFF) != 0) {
1269 // Code point beyond 0xFFFF. Punt to the real String.indexOf().
1270 return false;
1271 }
1272
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001273 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001274 LockCallTemps(); // Using fixed registers
1275 int reg_ptr = TargetReg(kArg0);
1276 int reg_char = TargetReg(kArg1);
1277 int reg_start = TargetReg(kArg2);
1278
Brian Carlstrom7940e442013-07-12 13:46:57 -07001279 LoadValueDirectFixed(rl_obj, reg_ptr);
1280 LoadValueDirectFixed(rl_char, reg_char);
1281 if (zero_based) {
1282 LoadConstant(reg_start, 0);
1283 } else {
buzbeea44d4f52014-03-05 11:26:39 -08001284 RegLocation rl_start = info->args[2]; // 3rd arg only present in III flavor of IndexOf.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001285 LoadValueDirectFixed(rl_start, reg_start);
1286 }
Mark Mendell4028a6c2014-02-19 20:06:20 -08001287 int r_tgt = LoadHelper(QUICK_ENTRYPOINT_OFFSET(pIndexOf));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001288 GenNullCheck(rl_obj.s_reg_low, reg_ptr, info->opt_flags);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001289 LIR* high_code_point_branch =
1290 rl_char.is_const ? nullptr : OpCmpImmBranch(kCondGt, reg_char, 0xFFFF, nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001291 // NOTE: not a safepoint
Mark Mendell4028a6c2014-02-19 20:06:20 -08001292 OpReg(kOpBlx, r_tgt);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001293 if (!rl_char.is_const) {
1294 // Add the slow path for code points beyond 0xFFFF.
1295 DCHECK(high_code_point_branch != nullptr);
1296 LIR* resume_tgt = NewLIR0(kPseudoTargetLabel);
1297 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've null checked.
1298 AddIntrinsicLaunchpad(info, high_code_point_branch, resume_tgt);
1299 } else {
1300 DCHECK_EQ(mir_graph_->ConstantValue(rl_char) & ~0xFFFF, 0);
1301 DCHECK(high_code_point_branch == nullptr);
1302 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001303 RegLocation rl_return = GetReturn(false);
1304 RegLocation rl_dest = InlineTarget(info);
1305 StoreValue(rl_dest, rl_return);
1306 return true;
1307}
1308
1309/* Fast string.compareTo(Ljava/lang/string;)I. */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001310bool Mir2Lir::GenInlinedStringCompareTo(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001311 if (cu_->instruction_set == kMips) {
1312 // TODO - add Mips implementation
1313 return false;
1314 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001315 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001316 LockCallTemps(); // Using fixed registers
1317 int reg_this = TargetReg(kArg0);
1318 int reg_cmp = TargetReg(kArg1);
1319
1320 RegLocation rl_this = info->args[0];
1321 RegLocation rl_cmp = info->args[1];
1322 LoadValueDirectFixed(rl_this, reg_this);
1323 LoadValueDirectFixed(rl_cmp, reg_cmp);
1324 int r_tgt = (cu_->instruction_set != kX86) ?
Ian Rogers7655f292013-07-29 11:07:13 -07001325 LoadHelper(QUICK_ENTRYPOINT_OFFSET(pStringCompareTo)) : 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001326 GenNullCheck(rl_this.s_reg_low, reg_this, info->opt_flags);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001327 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've null checked.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001328 // TUNING: check if rl_cmp.s_reg_low is already null checked
Vladimir Marko3bc86152014-03-13 14:11:28 +00001329 LIR* cmp_null_check_branch = OpCmpImmBranch(kCondEq, reg_cmp, 0, nullptr);
1330 AddIntrinsicLaunchpad(info, cmp_null_check_branch);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001331 // NOTE: not a safepoint
1332 if (cu_->instruction_set != kX86) {
1333 OpReg(kOpBlx, r_tgt);
1334 } else {
Ian Rogers7655f292013-07-29 11:07:13 -07001335 OpThreadMem(kOpBlx, QUICK_ENTRYPOINT_OFFSET(pStringCompareTo));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001336 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001337 RegLocation rl_return = GetReturn(false);
1338 RegLocation rl_dest = InlineTarget(info);
1339 StoreValue(rl_dest, rl_return);
1340 return true;
1341}
1342
1343bool Mir2Lir::GenInlinedCurrentThread(CallInfo* info) {
1344 RegLocation rl_dest = InlineTarget(info);
1345 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Ian Rogers848871b2013-08-05 10:56:33 -07001346 ThreadOffset offset = Thread::PeerOffset();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001347 if (cu_->instruction_set == kThumb2 || cu_->instruction_set == kMips) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001348 LoadWordDisp(TargetReg(kSelf), offset.Int32Value(), rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001349 } else {
1350 CHECK(cu_->instruction_set == kX86);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001351 reinterpret_cast<X86Mir2Lir*>(this)->OpRegThreadMem(kOpMov, rl_result.reg.GetReg(), offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001352 }
1353 StoreValue(rl_dest, rl_result);
1354 return true;
1355}
1356
1357bool Mir2Lir::GenInlinedUnsafeGet(CallInfo* info,
1358 bool is_long, bool is_volatile) {
1359 if (cu_->instruction_set == kMips) {
1360 // TODO - add Mips implementation
1361 return false;
1362 }
1363 // Unused - RegLocation rl_src_unsafe = info->args[0];
1364 RegLocation rl_src_obj = info->args[1]; // Object
1365 RegLocation rl_src_offset = info->args[2]; // long low
1366 rl_src_offset.wide = 0; // ignore high half in info->args[3]
Mark Mendell55d0eac2014-02-06 11:02:52 -08001367 RegLocation rl_dest = is_long ? InlineTargetWide(info) : InlineTarget(info); // result reg
Brian Carlstrom7940e442013-07-12 13:46:57 -07001368 if (is_volatile) {
1369 GenMemBarrier(kLoadLoad);
1370 }
1371 RegLocation rl_object = LoadValue(rl_src_obj, kCoreReg);
1372 RegLocation rl_offset = LoadValue(rl_src_offset, kCoreReg);
1373 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1374 if (is_long) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001375 OpRegReg(kOpAdd, rl_object.reg.GetReg(), rl_offset.reg.GetReg());
1376 LoadBaseDispWide(rl_object.reg.GetReg(), 0, rl_result.reg.GetReg(), rl_result.reg.GetHighReg(), INVALID_SREG);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001377 StoreValueWide(rl_dest, rl_result);
1378 } else {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001379 LoadBaseIndexed(rl_object.reg.GetReg(), rl_offset.reg.GetReg(), rl_result.reg.GetReg(), 0, kWord);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001380 StoreValue(rl_dest, rl_result);
1381 }
1382 return true;
1383}
1384
1385bool Mir2Lir::GenInlinedUnsafePut(CallInfo* info, bool is_long,
1386 bool is_object, bool is_volatile, bool is_ordered) {
1387 if (cu_->instruction_set == kMips) {
1388 // TODO - add Mips implementation
1389 return false;
1390 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001391 // Unused - RegLocation rl_src_unsafe = info->args[0];
1392 RegLocation rl_src_obj = info->args[1]; // Object
1393 RegLocation rl_src_offset = info->args[2]; // long low
1394 rl_src_offset.wide = 0; // ignore high half in info->args[3]
1395 RegLocation rl_src_value = info->args[4]; // value to store
1396 if (is_volatile || is_ordered) {
1397 GenMemBarrier(kStoreStore);
1398 }
1399 RegLocation rl_object = LoadValue(rl_src_obj, kCoreReg);
1400 RegLocation rl_offset = LoadValue(rl_src_offset, kCoreReg);
1401 RegLocation rl_value;
1402 if (is_long) {
1403 rl_value = LoadValueWide(rl_src_value, kCoreReg);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001404 OpRegReg(kOpAdd, rl_object.reg.GetReg(), rl_offset.reg.GetReg());
1405 StoreBaseDispWide(rl_object.reg.GetReg(), 0, rl_value.reg.GetReg(), rl_value.reg.GetHighReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001406 } else {
1407 rl_value = LoadValue(rl_src_value, kCoreReg);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001408 StoreBaseIndexed(rl_object.reg.GetReg(), rl_offset.reg.GetReg(), rl_value.reg.GetReg(), 0, kWord);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 }
Mark Mendelldf8ee2e2014-01-27 16:37:47 -08001410
1411 // Free up the temp early, to ensure x86 doesn't run out of temporaries in MarkGCCard.
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001412 FreeTemp(rl_offset.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001413 if (is_volatile) {
1414 GenMemBarrier(kStoreLoad);
1415 }
1416 if (is_object) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001417 MarkGCCard(rl_value.reg.GetReg(), rl_object.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001418 }
1419 return true;
1420}
1421
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001422void Mir2Lir::GenInvoke(CallInfo* info) {
Vladimir Marko3bc86152014-03-13 14:11:28 +00001423 DCHECK(cu_->compiler_driver->GetMethodInlinerMap() != nullptr);
1424 if (cu_->compiler_driver->GetMethodInlinerMap()->GetMethodInliner(cu_->dex_file)
1425 ->GenIntrinsic(this, info)) {
1426 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001427 }
Vladimir Marko3bc86152014-03-13 14:11:28 +00001428 GenInvokeNoInline(info);
1429}
1430
1431void Mir2Lir::GenInvokeNoInline(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001432 int call_state = 0;
1433 LIR* null_ck;
1434 LIR** p_null_ck = NULL;
1435 NextCallInsn next_call_insn;
1436 FlushAllRegs(); /* Everything to home location */
1437 // Explicit register usage
1438 LockCallTemps();
1439
Vladimir Markof096aad2014-01-23 15:51:58 +00001440 const MirMethodLoweringInfo& method_info = mir_graph_->GetMethodLoweringInfo(info->mir);
1441 cu_->compiler_driver->ProcessedInvoke(method_info.GetInvokeType(), method_info.StatsFlags());
1442 InvokeType original_type = static_cast<InvokeType>(method_info.GetInvokeType());
1443 info->type = static_cast<InvokeType>(method_info.GetSharpType());
1444 bool fast_path = method_info.FastPath();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 bool skip_this;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001446 if (info->type == kInterface) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001447 next_call_insn = fast_path ? NextInterfaceCallInsn : NextInterfaceCallInsnWithAccessCheck;
Jeff Hao88474b42013-10-23 16:24:40 -07001448 skip_this = fast_path;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001449 } else if (info->type == kDirect) {
1450 if (fast_path) {
1451 p_null_ck = &null_ck;
1452 }
1453 next_call_insn = fast_path ? NextSDCallInsn : NextDirectCallInsnSP;
1454 skip_this = false;
1455 } else if (info->type == kStatic) {
1456 next_call_insn = fast_path ? NextSDCallInsn : NextStaticCallInsnSP;
1457 skip_this = false;
1458 } else if (info->type == kSuper) {
1459 DCHECK(!fast_path); // Fast path is a direct call.
1460 next_call_insn = NextSuperCallInsnSP;
1461 skip_this = false;
1462 } else {
1463 DCHECK_EQ(info->type, kVirtual);
1464 next_call_insn = fast_path ? NextVCallInsn : NextVCallInsnSP;
1465 skip_this = fast_path;
1466 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001467 MethodReference target_method = method_info.GetTargetMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001468 if (!info->is_range) {
1469 call_state = GenDalvikArgsNoRange(info, call_state, p_null_ck,
Vladimir Markof096aad2014-01-23 15:51:58 +00001470 next_call_insn, target_method, method_info.VTableIndex(),
1471 method_info.DirectCode(), method_info.DirectMethod(),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001472 original_type, skip_this);
1473 } else {
1474 call_state = GenDalvikArgsRange(info, call_state, p_null_ck,
Vladimir Markof096aad2014-01-23 15:51:58 +00001475 next_call_insn, target_method, method_info.VTableIndex(),
1476 method_info.DirectCode(), method_info.DirectMethod(),
1477 original_type, skip_this);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001478 }
1479 // Finish up any of the call sequence not interleaved in arg loading
1480 while (call_state >= 0) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001481 call_state = next_call_insn(cu_, info, call_state, target_method, method_info.VTableIndex(),
1482 method_info.DirectCode(), method_info.DirectMethod(), original_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001483 }
1484 LIR* call_inst;
1485 if (cu_->instruction_set != kX86) {
1486 call_inst = OpReg(kOpBlx, TargetReg(kInvokeTgt));
1487 } else {
Jeff Hao88474b42013-10-23 16:24:40 -07001488 if (fast_path) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001489 if (method_info.DirectCode() == static_cast<uintptr_t>(-1)) {
Mark Mendell55d0eac2014-02-06 11:02:52 -08001490 // We can have the linker fixup a call relative.
1491 call_inst =
1492 reinterpret_cast<X86Mir2Lir*>(this)->CallWithLinkerFixup(
1493 target_method.dex_method_index, info->type);
1494 } else {
1495 call_inst = OpMem(kOpBlx, TargetReg(kArg0),
1496 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value());
1497 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001499 ThreadOffset trampoline(-1);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500 switch (info->type) {
1501 case kInterface:
Jeff Hao88474b42013-10-23 16:24:40 -07001502 trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeInterfaceTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001503 break;
1504 case kDirect:
Ian Rogers7655f292013-07-29 11:07:13 -07001505 trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeDirectTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506 break;
1507 case kStatic:
Ian Rogers7655f292013-07-29 11:07:13 -07001508 trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeStaticTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509 break;
1510 case kSuper:
Ian Rogers7655f292013-07-29 11:07:13 -07001511 trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeSuperTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001512 break;
1513 case kVirtual:
Ian Rogers7655f292013-07-29 11:07:13 -07001514 trampoline = QUICK_ENTRYPOINT_OFFSET(pInvokeVirtualTrampolineWithAccessCheck);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001515 break;
1516 default:
1517 LOG(FATAL) << "Unexpected invoke type";
1518 }
1519 call_inst = OpThreadMem(kOpBlx, trampoline);
1520 }
1521 }
1522 MarkSafepointPC(call_inst);
1523
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001524 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001525 if (info->result.location != kLocInvalid) {
1526 // We have a following MOVE_RESULT - do it now.
1527 if (info->result.wide) {
1528 RegLocation ret_loc = GetReturnWide(info->result.fp);
1529 StoreValueWide(info->result, ret_loc);
1530 } else {
1531 RegLocation ret_loc = GetReturn(info->result.fp);
1532 StoreValue(info->result, ret_loc);
1533 }
1534 }
1535}
1536
1537} // namespace art