blob: a6d56bdf3bf5e9770f607b577709b9c6ee83883f [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"
Dmitry Petrochenko37498b62014-05-05 20:33:38 +070025#include "mirror/object_array-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070026#include "mirror/string.h"
27#include "mir_to_lir-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070028#include "x86/codegen_x86.h"
29
30namespace art {
31
Dmitry Petrochenko37498b62014-05-05 20:33:38 +070032// Shortcuts to repeatedly used long types.
33typedef mirror::ObjectArray<mirror::Object> ObjArray;
34
Brian Carlstrom7940e442013-07-12 13:46:57 -070035/*
36 * This source files contains "gen" codegen routines that should
37 * be applicable to most targets. Only mid-level support utilities
38 * and "op" calls may be used here.
39 */
40
Mingyao Yang3a74d152014-04-21 15:39:44 -070041void Mir2Lir::AddIntrinsicSlowPath(CallInfo* info, LIR* branch, LIR* resume) {
42 class IntrinsicSlowPathPath : public Mir2Lir::LIRSlowPath {
Vladimir Marko3bc86152014-03-13 14:11:28 +000043 public:
Mingyao Yang3a74d152014-04-21 15:39:44 -070044 IntrinsicSlowPathPath(Mir2Lir* m2l, CallInfo* info, LIR* branch, LIR* resume = nullptr)
Vladimir Marko3bc86152014-03-13 14:11:28 +000045 : LIRSlowPath(m2l, info->offset, branch, resume), info_(info) {
46 }
47
48 void Compile() {
49 m2l_->ResetRegPool();
50 m2l_->ResetDefTracking();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -070051 GenerateTargetLabel(kPseudoIntrinsicRetry);
Vladimir Marko3bc86152014-03-13 14:11:28 +000052 // NOTE: GenInvokeNoInline() handles MarkSafepointPC.
53 m2l_->GenInvokeNoInline(info_);
54 if (cont_ != nullptr) {
55 m2l_->OpUnconditionalBranch(cont_);
56 }
57 }
58
59 private:
60 CallInfo* const info_;
61 };
62
Mingyao Yang3a74d152014-04-21 15:39:44 -070063 AddSlowPath(new (arena_) IntrinsicSlowPathPath(this, info, branch, resume));
Vladimir Marko3bc86152014-03-13 14:11:28 +000064}
65
Andreas Gampe2f244e92014-05-08 03:35:25 -070066// Macro to help instantiate.
67// TODO: This might be used to only instantiate <4> on pure 32b systems.
68#define INSTANTIATE(sig_part1, ...) \
69 template sig_part1(ThreadOffset<4>, __VA_ARGS__); \
70 template sig_part1(ThreadOffset<8>, __VA_ARGS__); \
71
72
Brian Carlstrom7940e442013-07-12 13:46:57 -070073/*
74 * To save scheduling time, helper calls are broken into two parts: generation of
Dave Allisond6ed6422014-04-09 23:36:15 +000075 * the helper target address, and the actual call to the helper. Because x86
76 * has a memory call operation, part 1 is a NOP for x86. For other targets,
77 * load arguments between the two parts.
Brian Carlstrom7940e442013-07-12 13:46:57 -070078 */
Andreas Gampe2f244e92014-05-08 03:35:25 -070079// template <size_t pointer_size>
Ian Rogersdd7624d2014-03-14 17:43:00 -070080RegStorage Mir2Lir::CallHelperSetup(ThreadOffset<4> helper_offset) {
Andreas Gampe2f244e92014-05-08 03:35:25 -070081 // All CallRuntimeHelperXXX call this first. So make a central check here.
82 DCHECK_EQ(4U, GetInstructionSetPointerSize(cu_->instruction_set));
83
84 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
85 return RegStorage::InvalidReg();
86 } else {
87 return LoadHelper(helper_offset);
88 }
89}
90
91RegStorage Mir2Lir::CallHelperSetup(ThreadOffset<8> helper_offset) {
92 // All CallRuntimeHelperXXX call this first. So make a central check here.
93 DCHECK_EQ(8U, GetInstructionSetPointerSize(cu_->instruction_set));
94
95 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
96 return RegStorage::InvalidReg();
97 } else {
98 return LoadHelper(helper_offset);
99 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700100}
101
102/* NOTE: if r_tgt is a temp, it will be freed following use */
Andreas Gampe2f244e92014-05-08 03:35:25 -0700103template <size_t pointer_size>
104LIR* Mir2Lir::CallHelper(RegStorage r_tgt, ThreadOffset<pointer_size> helper_offset,
105 bool safepoint_pc, bool use_link) {
Dave Allisond6ed6422014-04-09 23:36:15 +0000106 LIR* call_inst;
Brian Carlstrom60d7a652014-03-13 18:10:08 -0700107 OpKind op = use_link ? kOpBlx : kOpBx;
Dave Allisond6ed6422014-04-09 23:36:15 +0000108 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
109 call_inst = OpThreadMem(op, helper_offset);
110 } else {
111 call_inst = OpReg(op, r_tgt);
112 FreeTemp(r_tgt);
113 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700114 if (safepoint_pc) {
115 MarkSafepointPC(call_inst);
116 }
117 return call_inst;
118}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700119template LIR* Mir2Lir::CallHelper(RegStorage r_tgt, ThreadOffset<4> helper_offset,
120 bool safepoint_pc, bool use_link);
121template LIR* Mir2Lir::CallHelper(RegStorage r_tgt, ThreadOffset<8> helper_offset,
122 bool safepoint_pc, bool use_link);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700123
Andreas Gampe2f244e92014-05-08 03:35:25 -0700124template <size_t pointer_size>
125void Mir2Lir::CallRuntimeHelper(ThreadOffset<pointer_size> helper_offset, bool safepoint_pc) {
Mingyao Yang42894562014-04-07 12:42:16 -0700126 RegStorage r_tgt = CallHelperSetup(helper_offset);
127 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700128 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Mingyao Yang42894562014-04-07 12:42:16 -0700129}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700130INSTANTIATE(void Mir2Lir::CallRuntimeHelper, bool safepoint_pc)
Mingyao Yang42894562014-04-07 12:42:16 -0700131
Andreas Gampe2f244e92014-05-08 03:35:25 -0700132template <size_t pointer_size>
133void Mir2Lir::CallRuntimeHelperImm(ThreadOffset<pointer_size> helper_offset, int arg0, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800134 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700135 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000136 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700137 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700138}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700139INSTANTIATE(void Mir2Lir::CallRuntimeHelperImm, int arg0, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700140
Andreas Gampe2f244e92014-05-08 03:35:25 -0700141template <size_t pointer_size>
142void Mir2Lir::CallRuntimeHelperReg(ThreadOffset<pointer_size> helper_offset, RegStorage arg0,
Ian Rogersdd7624d2014-03-14 17:43:00 -0700143 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800144 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700145 OpRegCopy(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000146 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700147 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700148}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700149INSTANTIATE(void Mir2Lir::CallRuntimeHelperReg, RegStorage arg0, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700150
Andreas Gampe2f244e92014-05-08 03:35:25 -0700151template <size_t pointer_size>
152void Mir2Lir::CallRuntimeHelperRegLocation(ThreadOffset<pointer_size> helper_offset,
153 RegLocation arg0, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800154 RegStorage r_tgt = CallHelperSetup(helper_offset);
155 if (arg0.wide == 0) {
156 LoadValueDirectFixed(arg0, TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700157 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800158 RegStorage r_tmp = RegStorage::MakeRegPair(TargetReg(kArg0), TargetReg(kArg1));
159 LoadValueDirectWideFixed(arg0, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700160 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000161 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700162 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700163}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700164INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegLocation, RegLocation arg0, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700165
Andreas Gampe2f244e92014-05-08 03:35:25 -0700166template <size_t pointer_size>
167void Mir2Lir::CallRuntimeHelperImmImm(ThreadOffset<pointer_size> helper_offset, int arg0, int arg1,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700168 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800169 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700170 LoadConstant(TargetReg(kArg0), arg0);
171 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000172 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700173 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700174}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700175INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmImm, int arg0, int arg1, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700176
Andreas Gampe2f244e92014-05-08 03:35:25 -0700177template <size_t pointer_size>
178void Mir2Lir::CallRuntimeHelperImmRegLocation(ThreadOffset<pointer_size> helper_offset, int arg0,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700179 RegLocation arg1, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800180 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 if (arg1.wide == 0) {
182 LoadValueDirectFixed(arg1, TargetReg(kArg1));
183 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800184 RegStorage r_tmp = RegStorage::MakeRegPair(TargetReg(kArg1), TargetReg(kArg2));
185 LoadValueDirectWideFixed(arg1, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700186 }
187 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000188 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700189 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700190}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700191INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmRegLocation, int arg0, RegLocation arg1,
192 bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700193
Andreas Gampe2f244e92014-05-08 03:35:25 -0700194template <size_t pointer_size>
195void Mir2Lir::CallRuntimeHelperRegLocationImm(ThreadOffset<pointer_size> helper_offset,
196 RegLocation arg0, int arg1, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800197 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 LoadValueDirectFixed(arg0, TargetReg(kArg0));
199 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000200 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700201 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700202}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700203INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegLocationImm, RegLocation arg0, int arg1,
204 bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700205
Andreas Gampe2f244e92014-05-08 03:35:25 -0700206template <size_t pointer_size>
207void Mir2Lir::CallRuntimeHelperImmReg(ThreadOffset<pointer_size> helper_offset, int arg0,
208 RegStorage arg1, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800209 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 OpRegCopy(TargetReg(kArg1), arg1);
211 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000212 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700213 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700214}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700215INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmReg, int arg0, RegStorage arg1, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700216
Andreas Gampe2f244e92014-05-08 03:35:25 -0700217template <size_t pointer_size>
218void Mir2Lir::CallRuntimeHelperRegImm(ThreadOffset<pointer_size> helper_offset, RegStorage arg0,
219 int arg1, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800220 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 OpRegCopy(TargetReg(kArg0), arg0);
222 LoadConstant(TargetReg(kArg1), arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000223 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700224 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700225}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700226INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegImm, RegStorage arg0, int arg1, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700227
Andreas Gampe2f244e92014-05-08 03:35:25 -0700228template <size_t pointer_size>
229void Mir2Lir::CallRuntimeHelperImmMethod(ThreadOffset<pointer_size> helper_offset, int arg0,
Ian Rogersdd7624d2014-03-14 17:43:00 -0700230 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800231 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700232 LoadCurrMethodDirect(TargetReg(kArg1));
233 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000234 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700235 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700237INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmMethod, int arg0, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700238
Andreas Gampe2f244e92014-05-08 03:35:25 -0700239template <size_t pointer_size>
240void Mir2Lir::CallRuntimeHelperRegMethod(ThreadOffset<pointer_size> helper_offset, RegStorage arg0,
buzbee2700f7e2014-03-07 09:46:20 -0800241 bool safepoint_pc) {
242 RegStorage r_tgt = CallHelperSetup(helper_offset);
243 DCHECK_NE(TargetReg(kArg1).GetReg(), arg0.GetReg());
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800244 if (TargetReg(kArg0) != arg0) {
245 OpRegCopy(TargetReg(kArg0), arg0);
246 }
247 LoadCurrMethodDirect(TargetReg(kArg1));
248 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700249 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800250}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700251INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegMethod, RegStorage arg0, bool safepoint_pc)
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800252
Andreas Gampe2f244e92014-05-08 03:35:25 -0700253template <size_t pointer_size>
254void Mir2Lir::CallRuntimeHelperRegMethodRegLocation(ThreadOffset<pointer_size> helper_offset,
255 RegStorage arg0, RegLocation arg2,
256 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800257 RegStorage r_tgt = CallHelperSetup(helper_offset);
258 DCHECK_NE(TargetReg(kArg1).GetReg(), arg0.GetReg());
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800259 if (TargetReg(kArg0) != arg0) {
260 OpRegCopy(TargetReg(kArg0), arg0);
261 }
262 LoadCurrMethodDirect(TargetReg(kArg1));
263 LoadValueDirectFixed(arg2, TargetReg(kArg2));
264 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700265 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800266}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700267INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegMethodRegLocation, RegStorage arg0, RegLocation arg2,
268 bool safepoint_pc)
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800269
Andreas Gampe2f244e92014-05-08 03:35:25 -0700270template <size_t pointer_size>
271void Mir2Lir::CallRuntimeHelperRegLocationRegLocation(ThreadOffset<pointer_size> helper_offset,
Ian Rogersdd7624d2014-03-14 17:43:00 -0700272 RegLocation arg0, RegLocation arg1,
273 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800274 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700275 if (arg0.wide == 0) {
276 LoadValueDirectFixed(arg0, arg0.fp ? TargetReg(kFArg0) : TargetReg(kArg0));
277 if (arg1.wide == 0) {
278 if (cu_->instruction_set == kMips) {
279 LoadValueDirectFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg1));
280 } else {
281 LoadValueDirectFixed(arg1, TargetReg(kArg1));
282 }
283 } else {
284 if (cu_->instruction_set == kMips) {
buzbee2700f7e2014-03-07 09:46:20 -0800285 RegStorage r_tmp;
286 if (arg1.fp) {
287 r_tmp = RegStorage::MakeRegPair(TargetReg(kFArg2), TargetReg(kFArg3));
288 } else {
289 r_tmp = RegStorage::MakeRegPair(TargetReg(kArg1), TargetReg(kArg2));
290 }
291 LoadValueDirectWideFixed(arg1, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700292 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800293 RegStorage r_tmp = RegStorage::MakeRegPair(TargetReg(kArg1), TargetReg(kArg2));
294 LoadValueDirectWideFixed(arg1, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700295 }
296 }
297 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800298 RegStorage r_tmp;
299 if (arg0.fp) {
300 r_tmp = RegStorage::MakeRegPair(TargetReg(kFArg0), TargetReg(kFArg1));
301 } else {
302 r_tmp = RegStorage::MakeRegPair(TargetReg(kArg0), TargetReg(kArg1));
303 }
304 LoadValueDirectWideFixed(arg0, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700305 if (arg1.wide == 0) {
306 LoadValueDirectFixed(arg1, arg1.fp ? TargetReg(kFArg2) : TargetReg(kArg2));
307 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800308 RegStorage r_tmp;
309 if (arg1.fp) {
310 r_tmp = RegStorage::MakeRegPair(TargetReg(kFArg2), TargetReg(kFArg3));
311 } else {
312 r_tmp = RegStorage::MakeRegPair(TargetReg(kArg2), TargetReg(kArg3));
313 }
314 LoadValueDirectWideFixed(arg1, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700315 }
316 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000317 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700318 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700319}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700320INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegLocationRegLocation, RegLocation arg0,
321 RegLocation arg1, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700322
Mingyao Yang80365d92014-04-18 12:10:58 -0700323void Mir2Lir::CopyToArgumentRegs(RegStorage arg0, RegStorage arg1) {
324 if (arg1.GetReg() == TargetReg(kArg0).GetReg()) {
325 if (arg0.GetReg() == TargetReg(kArg1).GetReg()) {
326 // Swap kArg0 and kArg1 with kArg2 as temp.
327 OpRegCopy(TargetReg(kArg2), arg1);
328 OpRegCopy(TargetReg(kArg0), arg0);
329 OpRegCopy(TargetReg(kArg1), TargetReg(kArg2));
330 } else {
331 OpRegCopy(TargetReg(kArg1), arg1);
332 OpRegCopy(TargetReg(kArg0), arg0);
333 }
334 } else {
335 OpRegCopy(TargetReg(kArg0), arg0);
336 OpRegCopy(TargetReg(kArg1), arg1);
337 }
338}
339
Andreas Gampe2f244e92014-05-08 03:35:25 -0700340template <size_t pointer_size>
341void Mir2Lir::CallRuntimeHelperRegReg(ThreadOffset<pointer_size> helper_offset, RegStorage arg0,
buzbee2700f7e2014-03-07 09:46:20 -0800342 RegStorage arg1, bool safepoint_pc) {
343 RegStorage r_tgt = CallHelperSetup(helper_offset);
Mingyao Yang80365d92014-04-18 12:10:58 -0700344 CopyToArgumentRegs(arg0, arg1);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000345 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700346 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700347}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700348INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegReg, RegStorage arg0, RegStorage arg1,
349 bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700350
Andreas Gampe2f244e92014-05-08 03:35:25 -0700351template <size_t pointer_size>
352void Mir2Lir::CallRuntimeHelperRegRegImm(ThreadOffset<pointer_size> helper_offset, RegStorage arg0,
buzbee2700f7e2014-03-07 09:46:20 -0800353 RegStorage arg1, int arg2, bool safepoint_pc) {
354 RegStorage r_tgt = CallHelperSetup(helper_offset);
Mingyao Yang80365d92014-04-18 12:10:58 -0700355 CopyToArgumentRegs(arg0, arg1);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700356 LoadConstant(TargetReg(kArg2), arg2);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000357 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700358 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700359}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700360INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegRegImm, RegStorage arg0, RegStorage arg1, int arg2,
361 bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362
Andreas Gampe2f244e92014-05-08 03:35:25 -0700363template <size_t pointer_size>
364void Mir2Lir::CallRuntimeHelperImmMethodRegLocation(ThreadOffset<pointer_size> helper_offset,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 int arg0, RegLocation arg2, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800366 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700367 LoadValueDirectFixed(arg2, TargetReg(kArg2));
368 LoadCurrMethodDirect(TargetReg(kArg1));
369 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000370 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700371 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700372}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700373INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmMethodRegLocation, int arg0, RegLocation arg2,
374 bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700375
Andreas Gampe2f244e92014-05-08 03:35:25 -0700376template <size_t pointer_size>
377void Mir2Lir::CallRuntimeHelperImmMethodImm(ThreadOffset<pointer_size> helper_offset, int arg0,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378 int arg2, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800379 RegStorage r_tgt = CallHelperSetup(helper_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700380 LoadCurrMethodDirect(TargetReg(kArg1));
381 LoadConstant(TargetReg(kArg2), arg2);
382 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000383 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700384 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700385}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700386INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmMethodImm, int arg0, int arg2, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700387
Andreas Gampe2f244e92014-05-08 03:35:25 -0700388template <size_t pointer_size>
389void Mir2Lir::CallRuntimeHelperImmRegLocationRegLocation(ThreadOffset<pointer_size> helper_offset,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700390 int arg0, RegLocation arg1,
391 RegLocation arg2, bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800392 RegStorage r_tgt = CallHelperSetup(helper_offset);
Andreas Gampe2f244e92014-05-08 03:35:25 -0700393 DCHECK_EQ(static_cast<unsigned int>(arg1.wide), 0U); // The static_cast works around an
394 // instantiation bug in GCC.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700395 LoadValueDirectFixed(arg1, TargetReg(kArg1));
396 if (arg2.wide == 0) {
397 LoadValueDirectFixed(arg2, TargetReg(kArg2));
398 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800399 RegStorage r_tmp = RegStorage::MakeRegPair(TargetReg(kArg2), TargetReg(kArg3));
400 LoadValueDirectWideFixed(arg2, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700401 }
402 LoadConstant(TargetReg(kArg0), arg0);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000403 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700404 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700405}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700406INSTANTIATE(void Mir2Lir::CallRuntimeHelperImmRegLocationRegLocation, int arg0, RegLocation arg1,
407 RegLocation arg2, bool safepoint_pc)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700408
Andreas Gampe2f244e92014-05-08 03:35:25 -0700409template <size_t pointer_size>
410void Mir2Lir::CallRuntimeHelperRegLocationRegLocationRegLocation(ThreadOffset<pointer_size> helper_offset,
Ian Rogersa9a82542013-10-04 11:17:26 -0700411 RegLocation arg0, RegLocation arg1,
412 RegLocation arg2,
413 bool safepoint_pc) {
buzbee2700f7e2014-03-07 09:46:20 -0800414 RegStorage r_tgt = CallHelperSetup(helper_offset);
Andreas Gampe2f244e92014-05-08 03:35:25 -0700415 DCHECK_EQ(static_cast<unsigned int>(arg0.wide), 0U);
Ian Rogersa9a82542013-10-04 11:17:26 -0700416 LoadValueDirectFixed(arg0, TargetReg(kArg0));
Andreas Gampe2f244e92014-05-08 03:35:25 -0700417 DCHECK_EQ(static_cast<unsigned int>(arg1.wide), 0U);
Ian Rogersa9a82542013-10-04 11:17:26 -0700418 LoadValueDirectFixed(arg1, TargetReg(kArg1));
Andreas Gampe2f244e92014-05-08 03:35:25 -0700419 DCHECK_EQ(static_cast<unsigned int>(arg1.wide), 0U);
Ian Rogersa9a82542013-10-04 11:17:26 -0700420 LoadValueDirectFixed(arg2, TargetReg(kArg2));
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000421 ClobberCallerSave();
Andreas Gampe2f244e92014-05-08 03:35:25 -0700422 CallHelper<pointer_size>(r_tgt, helper_offset, safepoint_pc);
Ian Rogersa9a82542013-10-04 11:17:26 -0700423}
Andreas Gampe2f244e92014-05-08 03:35:25 -0700424INSTANTIATE(void Mir2Lir::CallRuntimeHelperRegLocationRegLocationRegLocation, RegLocation arg0,
425 RegLocation arg1, RegLocation arg2, bool safepoint_pc)
Ian Rogersa9a82542013-10-04 11:17:26 -0700426
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427/*
428 * If there are any ins passed in registers that have not been promoted
Matteo Franchine45fb9e2014-05-06 10:10:30 +0100429 * to a callee-save register, flush them to the frame. Perform initial
Brian Carlstrom7940e442013-07-12 13:46:57 -0700430 * assignment of promoted arguments.
431 *
432 * ArgLocs is an array of location records describing the incoming arguments
433 * with one location record per word of argument.
434 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700435void Mir2Lir::FlushIns(RegLocation* ArgLocs, RegLocation rl_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700436 /*
437 * Dummy up a RegLocation for the incoming Method*
438 * It will attempt to keep kArg0 live (or copy it to home location
439 * if promoted).
440 */
441 RegLocation rl_src = rl_method;
442 rl_src.location = kLocPhysReg;
buzbee2700f7e2014-03-07 09:46:20 -0800443 rl_src.reg = TargetReg(kArg0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700444 rl_src.home = false;
buzbee091cc402014-03-31 10:14:40 -0700445 MarkLive(rl_src);
buzbee695d13a2014-04-19 13:32:20 -0700446 if (rl_method.wide) {
447 StoreValueWide(rl_method, rl_src);
448 } else {
449 StoreValue(rl_method, rl_src);
450 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700451 // If Method* has been promoted, explicitly flush
452 if (rl_method.location == kLocPhysReg) {
453 StoreWordDisp(TargetReg(kSp), 0, TargetReg(kArg0));
454 }
455
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800456 if (cu_->num_ins == 0) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700457 return;
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800458 }
459
Brian Carlstrom7940e442013-07-12 13:46:57 -0700460 int start_vreg = cu_->num_dalvik_registers - cu_->num_ins;
461 /*
462 * Copy incoming arguments to their proper home locations.
463 * NOTE: an older version of dx had an issue in which
464 * it would reuse static method argument registers.
465 * This could result in the same Dalvik virtual register
466 * being promoted to both core and fp regs. To account for this,
467 * we only copy to the corresponding promoted physical register
468 * if it matches the type of the SSA name for the incoming
469 * argument. It is also possible that long and double arguments
470 * end up half-promoted. In those cases, we must flush the promoted
471 * half to memory as well.
472 */
473 for (int i = 0; i < cu_->num_ins; i++) {
474 PromotionMap* v_map = &promotion_map_[start_vreg + i];
buzbee2700f7e2014-03-07 09:46:20 -0800475 RegStorage reg = GetArgMappingToPhysicalReg(i);
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800476
buzbee2700f7e2014-03-07 09:46:20 -0800477 if (reg.Valid()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700478 // If arriving in register
479 bool need_flush = true;
480 RegLocation* t_loc = &ArgLocs[i];
481 if ((v_map->core_location == kLocPhysReg) && !t_loc->fp) {
buzbee2700f7e2014-03-07 09:46:20 -0800482 OpRegCopy(RegStorage::Solo32(v_map->core_reg), reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700483 need_flush = false;
484 } else if ((v_map->fp_location == kLocPhysReg) && t_loc->fp) {
buzbee2700f7e2014-03-07 09:46:20 -0800485 OpRegCopy(RegStorage::Solo32(v_map->FpReg), reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700486 need_flush = false;
487 } else {
488 need_flush = true;
489 }
490
buzbeed0a03b82013-09-14 08:21:05 -0700491 // For wide args, force flush if not fully promoted
Brian Carlstrom7940e442013-07-12 13:46:57 -0700492 if (t_loc->wide) {
493 PromotionMap* p_map = v_map + (t_loc->high_word ? -1 : +1);
buzbeed0a03b82013-09-14 08:21:05 -0700494 // Is only half promoted?
Brian Carlstrom7940e442013-07-12 13:46:57 -0700495 need_flush |= (p_map->core_location != v_map->core_location) ||
496 (p_map->fp_location != v_map->fp_location);
buzbeed0a03b82013-09-14 08:21:05 -0700497 if ((cu_->instruction_set == kThumb2) && t_loc->fp && !need_flush) {
498 /*
499 * In Arm, a double is represented as a pair of consecutive single float
500 * registers starting at an even number. It's possible that both Dalvik vRegs
501 * representing the incoming double were independently promoted as singles - but
502 * not in a form usable as a double. If so, we need to flush - even though the
503 * incoming arg appears fully in register. At this point in the code, both
504 * halves of the double are promoted. Make sure they are in a usable form.
505 */
506 int lowreg_index = start_vreg + i + (t_loc->high_word ? -1 : 0);
507 int low_reg = promotion_map_[lowreg_index].FpReg;
508 int high_reg = promotion_map_[lowreg_index + 1].FpReg;
509 if (((low_reg & 0x1) != 0) || (high_reg != (low_reg + 1))) {
510 need_flush = true;
511 }
512 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700513 }
514 if (need_flush) {
buzbee695d13a2014-04-19 13:32:20 -0700515 Store32Disp(TargetReg(kSp), SRegOffset(start_vreg + i), reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700516 }
517 } else {
518 // If arriving in frame & promoted
519 if (v_map->core_location == kLocPhysReg) {
buzbee695d13a2014-04-19 13:32:20 -0700520 Load32Disp(TargetReg(kSp), SRegOffset(start_vreg + i), RegStorage::Solo32(v_map->core_reg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700521 }
522 if (v_map->fp_location == kLocPhysReg) {
buzbee695d13a2014-04-19 13:32:20 -0700523 Load32Disp(TargetReg(kSp), SRegOffset(start_vreg + i), RegStorage::Solo32(v_map->FpReg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700524 }
525 }
526 }
527}
528
529/*
530 * Bit of a hack here - in the absence of a real scheduling pass,
531 * emit the next instruction in static & direct invoke sequences.
532 */
533static int NextSDCallInsn(CompilationUnit* cu, CallInfo* info,
534 int state, const MethodReference& target_method,
535 uint32_t unused,
536 uintptr_t direct_code, uintptr_t direct_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700537 InvokeType type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700538 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700539 if (direct_code != 0 && direct_method != 0) {
540 switch (state) {
541 case 0: // Get the current Method* [sets kArg0]
Ian Rogersff093b32014-04-30 19:04:27 -0700542 if (direct_code != static_cast<uintptr_t>(-1)) {
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700543 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Ian Rogers83883d72013-10-21 21:07:24 -0700544 cg->LoadConstant(cg->TargetReg(kInvokeTgt), direct_code);
545 }
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700546 } else if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Jeff Hao49161ce2014-03-12 11:05:25 -0700547 cg->LoadCodeAddress(target_method, type, kInvokeTgt);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700548 }
Ian Rogersff093b32014-04-30 19:04:27 -0700549 if (direct_method != static_cast<uintptr_t>(-1)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700550 cg->LoadConstant(cg->TargetReg(kArg0), direct_method);
551 } else {
Jeff Hao49161ce2014-03-12 11:05:25 -0700552 cg->LoadMethodAddress(target_method, type, kArg0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700553 }
554 break;
555 default:
556 return -1;
557 }
558 } else {
559 switch (state) {
560 case 0: // Get the current Method* [sets kArg0]
561 // TUNING: we can save a reg copy if Method* has been promoted.
562 cg->LoadCurrMethodDirect(cg->TargetReg(kArg0));
563 break;
564 case 1: // Get method->dex_cache_resolved_methods_
buzbee695d13a2014-04-19 13:32:20 -0700565 cg->LoadRefDisp(cg->TargetReg(kArg0),
566 mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value(),
567 cg->TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568 // Set up direct code if known.
569 if (direct_code != 0) {
Ian Rogersff093b32014-04-30 19:04:27 -0700570 if (direct_code != static_cast<uintptr_t>(-1)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 cg->LoadConstant(cg->TargetReg(kInvokeTgt), direct_code);
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700572 } else if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Ian Rogers83883d72013-10-21 21:07:24 -0700573 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
Jeff Hao49161ce2014-03-12 11:05:25 -0700574 cg->LoadCodeAddress(target_method, type, kInvokeTgt);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700575 }
576 }
577 break;
578 case 2: // Grab target method*
579 CHECK_EQ(cu->dex_file, target_method.dex_file);
buzbee695d13a2014-04-19 13:32:20 -0700580 cg->LoadRefDisp(cg->TargetReg(kArg0),
Dmitry Petrochenko37498b62014-05-05 20:33:38 +0700581 ObjArray::OffsetOfElement(target_method.dex_method_index).Int32Value(),
582 cg->TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700583 break;
584 case 3: // Grab the code from the method*
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700585 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700586 if (direct_code == 0) {
587 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800588 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700589 cg->TargetReg(kInvokeTgt));
590 }
591 break;
592 }
593 // Intentional fallthrough for x86
594 default:
595 return -1;
596 }
597 }
598 return state + 1;
599}
600
601/*
602 * Bit of a hack here - in the absence of a real scheduling pass,
603 * emit the next instruction in a virtual invoke sequence.
604 * We can use kLr as a temp prior to target address loading
605 * Note also that we'll load the first argument ("this") into
606 * kArg1 here rather than the standard LoadArgRegs.
607 */
608static int NextVCallInsn(CompilationUnit* cu, CallInfo* info,
609 int state, const MethodReference& target_method,
610 uint32_t method_idx, uintptr_t unused, uintptr_t unused2,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700611 InvokeType unused3) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
613 /*
614 * This is the fast path in which the target virtual method is
615 * fully resolved at compile time.
616 */
617 switch (state) {
618 case 0: { // Get "this" [set kArg1]
619 RegLocation rl_arg = info->args[0];
620 cg->LoadValueDirectFixed(rl_arg, cg->TargetReg(kArg1));
621 break;
622 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700623 case 1: // Is "this" null? [use kArg1]
Dave Allisonb373e092014-02-20 16:06:36 -0800624 cg->GenNullCheck(cg->TargetReg(kArg1), info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700625 // get this->klass_ [use kArg1, set kInvokeTgt]
buzbee695d13a2014-04-19 13:32:20 -0700626 cg->LoadRefDisp(cg->TargetReg(kArg1), mirror::Object::ClassOffset().Int32Value(),
627 cg->TargetReg(kInvokeTgt));
Dave Allisonb373e092014-02-20 16:06:36 -0800628 cg->MarkPossibleNullPointerException(info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700629 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700630 case 2: // Get this->klass_->vtable [usr kInvokeTgt, set kInvokeTgt]
buzbee695d13a2014-04-19 13:32:20 -0700631 cg->LoadRefDisp(cg->TargetReg(kInvokeTgt), mirror::Class::VTableOffset().Int32Value(),
632 cg->TargetReg(kInvokeTgt));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700633 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700634 case 3: // Get target method [use kInvokeTgt, set kArg0]
Dmitry Petrochenko37498b62014-05-05 20:33:38 +0700635 cg->LoadRefDisp(cg->TargetReg(kInvokeTgt),
636 ObjArray::OffsetOfElement(method_idx).Int32Value(),
buzbee695d13a2014-04-19 13:32:20 -0700637 cg->TargetReg(kArg0));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700638 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700639 case 4: // Get the compiled code address [uses kArg0, sets kInvokeTgt]
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700640 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700641 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800642 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700643 cg->TargetReg(kInvokeTgt));
644 break;
645 }
646 // Intentional fallthrough for X86
647 default:
648 return -1;
649 }
650 return state + 1;
651}
652
653/*
Jeff Hao88474b42013-10-23 16:24:40 -0700654 * Emit the next instruction in an invoke interface sequence. This will do a lookup in the
655 * class's IMT, calling either the actual method or art_quick_imt_conflict_trampoline if
656 * more than one interface method map to the same index. Note also that we'll load the first
657 * argument ("this") into kArg1 here rather than the standard LoadArgRegs.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700658 */
659static int NextInterfaceCallInsn(CompilationUnit* cu, CallInfo* info, int state,
660 const MethodReference& target_method,
Jeff Hao88474b42013-10-23 16:24:40 -0700661 uint32_t method_idx, uintptr_t unused,
662 uintptr_t direct_method, InvokeType unused2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700663 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664
Jeff Hao88474b42013-10-23 16:24:40 -0700665 switch (state) {
666 case 0: // Set target method index in case of conflict [set kHiddenArg, kHiddenFpArg (x86)]
Jeff Hao88474b42013-10-23 16:24:40 -0700667 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
668 cg->LoadConstant(cg->TargetReg(kHiddenArg), target_method.dex_method_index);
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700669 if (cu->instruction_set == kX86 || cu->instruction_set == kX86_64) {
Jeff Hao88474b42013-10-23 16:24:40 -0700670 cg->OpRegCopy(cg->TargetReg(kHiddenFpArg), cg->TargetReg(kHiddenArg));
671 }
672 break;
673 case 1: { // Get "this" [set kArg1]
674 RegLocation rl_arg = info->args[0];
675 cg->LoadValueDirectFixed(rl_arg, cg->TargetReg(kArg1));
676 break;
677 }
678 case 2: // Is "this" null? [use kArg1]
Dave Allisonb373e092014-02-20 16:06:36 -0800679 cg->GenNullCheck(cg->TargetReg(kArg1), info->opt_flags);
Jeff Hao88474b42013-10-23 16:24:40 -0700680 // Get this->klass_ [use kArg1, set kInvokeTgt]
buzbee695d13a2014-04-19 13:32:20 -0700681 cg->LoadRefDisp(cg->TargetReg(kArg1), mirror::Object::ClassOffset().Int32Value(),
682 cg->TargetReg(kInvokeTgt));
Dave Allisonb373e092014-02-20 16:06:36 -0800683 cg->MarkPossibleNullPointerException(info->opt_flags);
Jeff Hao88474b42013-10-23 16:24:40 -0700684 break;
685 case 3: // Get this->klass_->imtable [use kInvokeTgt, set kInvokeTgt]
buzbee695d13a2014-04-19 13:32:20 -0700686 // NOTE: native pointer.
687 cg->LoadRefDisp(cg->TargetReg(kInvokeTgt), mirror::Class::ImTableOffset().Int32Value(),
688 cg->TargetReg(kInvokeTgt));
Jeff Hao88474b42013-10-23 16:24:40 -0700689 break;
690 case 4: // Get target method [use kInvokeTgt, set kArg0]
buzbee695d13a2014-04-19 13:32:20 -0700691 // NOTE: native pointer.
Dmitry Petrochenko37498b62014-05-05 20:33:38 +0700692 cg->LoadRefDisp(cg->TargetReg(kInvokeTgt),
693 ObjArray::OffsetOfElement(method_idx % ClassLinker::kImtSize).Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700694 cg->TargetReg(kArg0));
695 break;
Jeff Hao88474b42013-10-23 16:24:40 -0700696 case 5: // Get the compiled code address [use kArg0, set kInvokeTgt]
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700697 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Jeff Hao88474b42013-10-23 16:24:40 -0700698 cg->LoadWordDisp(cg->TargetReg(kArg0),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800699 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value(),
Jeff Hao88474b42013-10-23 16:24:40 -0700700 cg->TargetReg(kInvokeTgt));
701 break;
702 }
703 // Intentional fallthrough for X86
Brian Carlstrom7940e442013-07-12 13:46:57 -0700704 default:
705 return -1;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700706 }
707 return state + 1;
708}
709
Andreas Gampe2f244e92014-05-08 03:35:25 -0700710template <size_t pointer_size>
711static int NextInvokeInsnSP(CompilationUnit* cu, CallInfo* info, ThreadOffset<pointer_size> trampoline,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700712 int state, const MethodReference& target_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700713 uint32_t method_idx) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700714 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get());
715 /*
716 * This handles the case in which the base method is not fully
717 * resolved at compile time, we bail to a runtime helper.
718 */
719 if (state == 0) {
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700720 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700721 // Load trampoline target
Ian Rogers848871b2013-08-05 10:56:33 -0700722 cg->LoadWordDisp(cg->TargetReg(kSelf), trampoline.Int32Value(), cg->TargetReg(kInvokeTgt));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700723 }
724 // Load kArg0 with method index
725 CHECK_EQ(cu->dex_file, target_method.dex_file);
726 cg->LoadConstant(cg->TargetReg(kArg0), target_method.dex_method_index);
727 return 1;
728 }
729 return -1;
730}
731
732static int NextStaticCallInsnSP(CompilationUnit* cu, CallInfo* info,
733 int state,
734 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000735 uint32_t unused, uintptr_t unused2,
736 uintptr_t unused3, InvokeType unused4) {
Andreas Gampe2f244e92014-05-08 03:35:25 -0700737 if (Is64BitInstructionSet(cu->instruction_set)) {
738 ThreadOffset<8> trampoline = QUICK_ENTRYPOINT_OFFSET(8, pInvokeStaticTrampolineWithAccessCheck);
739 return NextInvokeInsnSP<8>(cu, info, trampoline, state, target_method, 0);
740 } else {
741 ThreadOffset<4> trampoline = QUICK_ENTRYPOINT_OFFSET(4, pInvokeStaticTrampolineWithAccessCheck);
742 return NextInvokeInsnSP<4>(cu, info, trampoline, state, target_method, 0);
743 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700744}
745
746static int NextDirectCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
747 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000748 uint32_t unused, uintptr_t unused2,
749 uintptr_t unused3, InvokeType unused4) {
Andreas Gampe2f244e92014-05-08 03:35:25 -0700750 if (Is64BitInstructionSet(cu->instruction_set)) {
751 ThreadOffset<8> trampoline = QUICK_ENTRYPOINT_OFFSET(8, pInvokeDirectTrampolineWithAccessCheck);
752 return NextInvokeInsnSP<8>(cu, info, trampoline, state, target_method, 0);
753 } else {
754 ThreadOffset<4> trampoline = QUICK_ENTRYPOINT_OFFSET(4, pInvokeDirectTrampolineWithAccessCheck);
755 return NextInvokeInsnSP<4>(cu, info, trampoline, state, target_method, 0);
756 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700757}
758
759static int NextSuperCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
760 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000761 uint32_t unused, uintptr_t unused2,
762 uintptr_t unused3, InvokeType unused4) {
Andreas Gampe2f244e92014-05-08 03:35:25 -0700763 if (Is64BitInstructionSet(cu->instruction_set)) {
764 ThreadOffset<8> trampoline = QUICK_ENTRYPOINT_OFFSET(8, pInvokeSuperTrampolineWithAccessCheck);
765 return NextInvokeInsnSP<8>(cu, info, trampoline, state, target_method, 0);
766 } else {
767 ThreadOffset<4> trampoline = QUICK_ENTRYPOINT_OFFSET(4, pInvokeSuperTrampolineWithAccessCheck);
768 return NextInvokeInsnSP<4>(cu, info, trampoline, state, target_method, 0);
769 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700770}
771
772static int NextVCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
773 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000774 uint32_t unused, uintptr_t unused2,
775 uintptr_t unused3, InvokeType unused4) {
Andreas Gampe2f244e92014-05-08 03:35:25 -0700776 if (Is64BitInstructionSet(cu->instruction_set)) {
777 ThreadOffset<8> trampoline = QUICK_ENTRYPOINT_OFFSET(8, pInvokeVirtualTrampolineWithAccessCheck);
778 return NextInvokeInsnSP<8>(cu, info, trampoline, state, target_method, 0);
779 } else {
780 ThreadOffset<4> trampoline = QUICK_ENTRYPOINT_OFFSET(4, pInvokeVirtualTrampolineWithAccessCheck);
781 return NextInvokeInsnSP<4>(cu, info, trampoline, state, target_method, 0);
782 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700783}
784
785static int NextInterfaceCallInsnWithAccessCheck(CompilationUnit* cu,
786 CallInfo* info, int state,
787 const MethodReference& target_method,
Vladimir Markof096aad2014-01-23 15:51:58 +0000788 uint32_t unused, uintptr_t unused2,
789 uintptr_t unused3, InvokeType unused4) {
Andreas Gampe2f244e92014-05-08 03:35:25 -0700790 if (Is64BitInstructionSet(cu->instruction_set)) {
791 ThreadOffset<8> trampoline = QUICK_ENTRYPOINT_OFFSET(8, pInvokeInterfaceTrampolineWithAccessCheck);
792 return NextInvokeInsnSP<8>(cu, info, trampoline, state, target_method, 0);
793 } else {
794 ThreadOffset<4> trampoline = QUICK_ENTRYPOINT_OFFSET(4, pInvokeInterfaceTrampolineWithAccessCheck);
795 return NextInvokeInsnSP<4>(cu, info, trampoline, state, target_method, 0);
796 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700797}
798
799int Mir2Lir::LoadArgRegs(CallInfo* info, int call_state,
800 NextCallInsn next_call_insn,
801 const MethodReference& target_method,
802 uint32_t vtable_idx, uintptr_t direct_code,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700803 uintptr_t direct_method, InvokeType type, bool skip_this) {
Dmitry Petrochenko26ee07a2014-05-13 12:58:19 +0700804 int last_arg_reg = 3 - 1;
805 int arg_regs[3] = {TargetReg(kArg1).GetReg(), TargetReg(kArg2).GetReg(), TargetReg(kArg3).GetReg()};
806
807 int next_reg = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700808 int next_arg = 0;
809 if (skip_this) {
810 next_reg++;
811 next_arg++;
812 }
813 for (; (next_reg <= last_arg_reg) && (next_arg < info->num_arg_words); next_reg++) {
814 RegLocation rl_arg = info->args[next_arg++];
815 rl_arg = UpdateRawLoc(rl_arg);
Dmitry Petrochenko26ee07a2014-05-13 12:58:19 +0700816 if (rl_arg.wide && (next_reg <= last_arg_reg - 1)) {
817 RegStorage r_tmp(RegStorage::k64BitPair, arg_regs[next_reg], arg_regs[next_reg + 1]);
buzbee2700f7e2014-03-07 09:46:20 -0800818 LoadValueDirectWideFixed(rl_arg, r_tmp);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700819 next_reg++;
820 next_arg++;
821 } else {
822 if (rl_arg.wide) {
buzbee2700f7e2014-03-07 09:46:20 -0800823 rl_arg = NarrowRegLoc(rl_arg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700824 rl_arg.is_const = false;
825 }
Dmitry Petrochenko26ee07a2014-05-13 12:58:19 +0700826 LoadValueDirectFixed(rl_arg, RegStorage::Solo32(arg_regs[next_reg]));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700827 }
828 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
829 direct_code, direct_method, type);
830 }
831 return call_state;
832}
833
834/*
835 * Load up to 5 arguments, the first three of which will be in
836 * kArg1 .. kArg3. On entry kArg0 contains the current method pointer,
837 * and as part of the load sequence, it must be replaced with
838 * the target method pointer. Note, this may also be called
839 * for "range" variants if the number of arguments is 5 or fewer.
840 */
841int Mir2Lir::GenDalvikArgsNoRange(CallInfo* info,
842 int call_state, LIR** pcrLabel, NextCallInsn next_call_insn,
843 const MethodReference& target_method,
844 uint32_t vtable_idx, uintptr_t direct_code,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700845 uintptr_t direct_method, InvokeType type, bool skip_this) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700846 RegLocation rl_arg;
847
848 /* If no arguments, just return */
849 if (info->num_arg_words == 0)
850 return call_state;
851
852 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
853 direct_code, direct_method, type);
854
855 DCHECK_LE(info->num_arg_words, 5);
856 if (info->num_arg_words > 3) {
857 int32_t next_use = 3;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700858 // Detect special case of wide arg spanning arg3/arg4
Brian Carlstrom7940e442013-07-12 13:46:57 -0700859 RegLocation rl_use0 = info->args[0];
860 RegLocation rl_use1 = info->args[1];
861 RegLocation rl_use2 = info->args[2];
buzbee2700f7e2014-03-07 09:46:20 -0800862 if (((!rl_use0.wide && !rl_use1.wide) || rl_use0.wide) && rl_use2.wide) {
863 RegStorage reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700864 // Wide spans, we need the 2nd half of uses[2].
865 rl_arg = UpdateLocWide(rl_use2);
866 if (rl_arg.location == kLocPhysReg) {
buzbee85089dd2014-05-25 15:10:52 -0700867 if (rl_arg.reg.IsPair()) {
868 reg = rl_arg.reg.GetHigh();
869 } else {
870 RegisterInfo* info = GetRegInfo(rl_arg.reg);
871 info = info->FindMatchingView(RegisterInfo::kHighSingleStorageMask);
872 if (info == nullptr) {
873 // NOTE: For hard float convention we won't split arguments across reg/mem.
874 UNIMPLEMENTED(FATAL) << "Needs hard float api.";
875 }
876 reg = info->GetReg();
877 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700878 } else {
879 // kArg2 & rArg3 can safely be used here
880 reg = TargetReg(kArg3);
buzbee695d13a2014-04-19 13:32:20 -0700881 Load32Disp(TargetReg(kSp), SRegOffset(rl_arg.s_reg_low) + 4, reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700882 call_state = next_call_insn(cu_, info, call_state, target_method,
883 vtable_idx, direct_code, direct_method, type);
884 }
buzbee695d13a2014-04-19 13:32:20 -0700885 Store32Disp(TargetReg(kSp), (next_use + 1) * 4, reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700886 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
887 direct_code, direct_method, type);
888 next_use++;
889 }
890 // Loop through the rest
891 while (next_use < info->num_arg_words) {
buzbee091cc402014-03-31 10:14:40 -0700892 RegStorage arg_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700893 rl_arg = info->args[next_use];
894 rl_arg = UpdateRawLoc(rl_arg);
895 if (rl_arg.location == kLocPhysReg) {
buzbee091cc402014-03-31 10:14:40 -0700896 arg_reg = rl_arg.reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700897 } else {
buzbee091cc402014-03-31 10:14:40 -0700898 arg_reg = rl_arg.wide ? RegStorage::MakeRegPair(TargetReg(kArg2), TargetReg(kArg3)) :
899 TargetReg(kArg2);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700900 if (rl_arg.wide) {
buzbee091cc402014-03-31 10:14:40 -0700901 LoadValueDirectWideFixed(rl_arg, arg_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700902 } else {
buzbee091cc402014-03-31 10:14:40 -0700903 LoadValueDirectFixed(rl_arg, arg_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700904 }
905 call_state = next_call_insn(cu_, info, call_state, target_method,
906 vtable_idx, direct_code, direct_method, type);
907 }
908 int outs_offset = (next_use + 1) * 4;
909 if (rl_arg.wide) {
Vladimir Marko455759b2014-05-06 20:49:36 +0100910 StoreBaseDisp(TargetReg(kSp), outs_offset, arg_reg, k64);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700911 next_use += 2;
912 } else {
buzbee091cc402014-03-31 10:14:40 -0700913 Store32Disp(TargetReg(kSp), outs_offset, arg_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700914 next_use++;
915 }
916 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
917 direct_code, direct_method, type);
918 }
919 }
920
921 call_state = LoadArgRegs(info, call_state, next_call_insn,
922 target_method, vtable_idx, direct_code, direct_method,
923 type, skip_this);
924
925 if (pcrLabel) {
Dave Allisonf9439142014-03-27 15:10:22 -0700926 if (Runtime::Current()->ExplicitNullChecks()) {
927 *pcrLabel = GenExplicitNullCheck(TargetReg(kArg1), info->opt_flags);
928 } else {
929 *pcrLabel = nullptr;
930 // In lieu of generating a check for kArg1 being null, we need to
931 // perform a load when doing implicit checks.
932 RegStorage tmp = AllocTemp();
buzbee695d13a2014-04-19 13:32:20 -0700933 Load32Disp(TargetReg(kArg1), 0, tmp);
Dave Allisonf9439142014-03-27 15:10:22 -0700934 MarkPossibleNullPointerException(info->opt_flags);
935 FreeTemp(tmp);
936 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700937 }
938 return call_state;
939}
940
941/*
942 * May have 0+ arguments (also used for jumbo). Note that
943 * source virtual registers may be in physical registers, so may
944 * need to be flushed to home location before copying. This
945 * applies to arg3 and above (see below).
946 *
947 * Two general strategies:
948 * If < 20 arguments
949 * Pass args 3-18 using vldm/vstm block copy
950 * Pass arg0, arg1 & arg2 in kArg1-kArg3
951 * If 20+ arguments
952 * Pass args arg19+ using memcpy block copy
953 * Pass arg0, arg1 & arg2 in kArg1-kArg3
954 *
955 */
956int Mir2Lir::GenDalvikArgsRange(CallInfo* info, int call_state,
957 LIR** pcrLabel, NextCallInsn next_call_insn,
958 const MethodReference& target_method,
959 uint32_t vtable_idx, uintptr_t direct_code, uintptr_t direct_method,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700960 InvokeType type, bool skip_this) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700961 // If we can treat it as non-range (Jumbo ops will use range form)
962 if (info->num_arg_words <= 5)
963 return GenDalvikArgsNoRange(info, call_state, pcrLabel,
964 next_call_insn, target_method, vtable_idx,
965 direct_code, direct_method, type, skip_this);
966 /*
967 * First load the non-register arguments. Both forms expect all
968 * of the source arguments to be in their home frame location, so
969 * scan the s_reg names and flush any that have been promoted to
970 * frame backing storage.
971 */
972 // Scan the rest of the args - if in phys_reg flush to memory
973 for (int next_arg = 0; next_arg < info->num_arg_words;) {
974 RegLocation loc = info->args[next_arg];
975 if (loc.wide) {
976 loc = UpdateLocWide(loc);
977 if ((next_arg >= 2) && (loc.location == kLocPhysReg)) {
Vladimir Marko455759b2014-05-06 20:49:36 +0100978 StoreBaseDisp(TargetReg(kSp), SRegOffset(loc.s_reg_low), loc.reg, k64);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700979 }
980 next_arg += 2;
981 } else {
982 loc = UpdateLoc(loc);
983 if ((next_arg >= 3) && (loc.location == kLocPhysReg)) {
buzbee695d13a2014-04-19 13:32:20 -0700984 Store32Disp(TargetReg(kSp), SRegOffset(loc.s_reg_low), loc.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700985 }
986 next_arg++;
987 }
988 }
989
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800990 // Logic below assumes that Method pointer is at offset zero from SP.
991 DCHECK_EQ(VRegOffset(static_cast<int>(kVRegMethodPtrBaseReg)), 0);
992
993 // The first 3 arguments are passed via registers.
994 // TODO: For 64-bit, instead of hardcoding 4 for Method* size, we should either
995 // get size of uintptr_t or size of object reference according to model being used.
996 int outs_offset = 4 /* Method* */ + (3 * sizeof(uint32_t));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700997 int start_offset = SRegOffset(info->args[3].s_reg_low);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800998 int regs_left_to_pass_via_stack = info->num_arg_words - 3;
999 DCHECK_GT(regs_left_to_pass_via_stack, 0);
1000
1001 if (cu_->instruction_set == kThumb2 && regs_left_to_pass_via_stack <= 16) {
1002 // Use vldm/vstm pair using kArg3 as a temp
1003 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
1004 direct_code, direct_method, type);
1005 OpRegRegImm(kOpAdd, TargetReg(kArg3), TargetReg(kSp), start_offset);
1006 LIR* ld = OpVldm(TargetReg(kArg3), regs_left_to_pass_via_stack);
1007 // TUNING: loosen barrier
1008 ld->u.m.def_mask = ENCODE_ALL;
1009 SetMemRefType(ld, true /* is_load */, kDalvikReg);
1010 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
1011 direct_code, direct_method, type);
1012 OpRegRegImm(kOpAdd, TargetReg(kArg3), TargetReg(kSp), 4 /* Method* */ + (3 * 4));
1013 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
1014 direct_code, direct_method, type);
1015 LIR* st = OpVstm(TargetReg(kArg3), regs_left_to_pass_via_stack);
1016 SetMemRefType(st, false /* is_load */, kDalvikReg);
1017 st->u.m.def_mask = ENCODE_ALL;
1018 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
1019 direct_code, direct_method, type);
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001020 } else if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001021 int current_src_offset = start_offset;
1022 int current_dest_offset = outs_offset;
1023
1024 while (regs_left_to_pass_via_stack > 0) {
1025 // This is based on the knowledge that the stack itself is 16-byte aligned.
1026 bool src_is_16b_aligned = (current_src_offset & 0xF) == 0;
1027 bool dest_is_16b_aligned = (current_dest_offset & 0xF) == 0;
1028 size_t bytes_to_move;
1029
1030 /*
1031 * The amount to move defaults to 32-bit. If there are 4 registers left to move, then do a
1032 * a 128-bit move because we won't get the chance to try to aligned. If there are more than
1033 * 4 registers left to move, consider doing a 128-bit only if either src or dest are aligned.
1034 * We do this because we could potentially do a smaller move to align.
1035 */
1036 if (regs_left_to_pass_via_stack == 4 ||
1037 (regs_left_to_pass_via_stack > 4 && (src_is_16b_aligned || dest_is_16b_aligned))) {
1038 // Moving 128-bits via xmm register.
1039 bytes_to_move = sizeof(uint32_t) * 4;
1040
1041 // Allocate a free xmm temp. Since we are working through the calling sequence,
Mark Mendelle87f9b52014-04-30 14:13:18 -04001042 // we expect to have an xmm temporary available. AllocTempDouble will abort if
1043 // there are no free registers.
buzbee2700f7e2014-03-07 09:46:20 -08001044 RegStorage temp = AllocTempDouble();
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001045
1046 LIR* ld1 = nullptr;
1047 LIR* ld2 = nullptr;
1048 LIR* st1 = nullptr;
1049 LIR* st2 = nullptr;
1050
1051 /*
1052 * The logic is similar for both loads and stores. If we have 16-byte alignment,
1053 * do an aligned move. If we have 8-byte alignment, then do the move in two
1054 * parts. This approach prevents possible cache line splits. Finally, fall back
1055 * to doing an unaligned move. In most cases we likely won't split the cache
1056 * line but we cannot prove it and thus take a conservative approach.
1057 */
1058 bool src_is_8b_aligned = (current_src_offset & 0x7) == 0;
1059 bool dest_is_8b_aligned = (current_dest_offset & 0x7) == 0;
1060
1061 if (src_is_16b_aligned) {
1062 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovA128FP);
1063 } else if (src_is_8b_aligned) {
1064 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovLo128FP);
buzbee2700f7e2014-03-07 09:46:20 -08001065 ld2 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset + (bytes_to_move >> 1),
1066 kMovHi128FP);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001067 } else {
1068 ld1 = OpMovRegMem(temp, TargetReg(kSp), current_src_offset, kMovU128FP);
1069 }
1070
1071 if (dest_is_16b_aligned) {
1072 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovA128FP);
1073 } else if (dest_is_8b_aligned) {
1074 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovLo128FP);
buzbee2700f7e2014-03-07 09:46:20 -08001075 st2 = OpMovMemReg(TargetReg(kSp), current_dest_offset + (bytes_to_move >> 1),
1076 temp, kMovHi128FP);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001077 } else {
1078 st1 = OpMovMemReg(TargetReg(kSp), current_dest_offset, temp, kMovU128FP);
1079 }
1080
1081 // TODO If we could keep track of aliasing information for memory accesses that are wider
1082 // than 64-bit, we wouldn't need to set up a barrier.
1083 if (ld1 != nullptr) {
1084 if (ld2 != nullptr) {
1085 // For 64-bit load we can actually set up the aliasing information.
1086 AnnotateDalvikRegAccess(ld1, current_src_offset >> 2, true, true);
1087 AnnotateDalvikRegAccess(ld2, (current_src_offset + (bytes_to_move >> 1)) >> 2, true, true);
1088 } else {
1089 // Set barrier for 128-bit load.
1090 SetMemRefType(ld1, true /* is_load */, kDalvikReg);
1091 ld1->u.m.def_mask = ENCODE_ALL;
1092 }
1093 }
1094 if (st1 != nullptr) {
1095 if (st2 != nullptr) {
1096 // For 64-bit store we can actually set up the aliasing information.
1097 AnnotateDalvikRegAccess(st1, current_dest_offset >> 2, false, true);
1098 AnnotateDalvikRegAccess(st2, (current_dest_offset + (bytes_to_move >> 1)) >> 2, false, true);
1099 } else {
1100 // Set barrier for 128-bit store.
1101 SetMemRefType(st1, false /* is_load */, kDalvikReg);
1102 st1->u.m.def_mask = ENCODE_ALL;
1103 }
1104 }
1105
1106 // Free the temporary used for the data movement.
buzbee091cc402014-03-31 10:14:40 -07001107 FreeTemp(temp);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001108 } else {
1109 // Moving 32-bits via general purpose register.
1110 bytes_to_move = sizeof(uint32_t);
1111
1112 // Instead of allocating a new temp, simply reuse one of the registers being used
1113 // for argument passing.
buzbee2700f7e2014-03-07 09:46:20 -08001114 RegStorage temp = TargetReg(kArg3);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001115
1116 // Now load the argument VR and store to the outs.
buzbee695d13a2014-04-19 13:32:20 -07001117 Load32Disp(TargetReg(kSp), current_src_offset, temp);
1118 Store32Disp(TargetReg(kSp), current_dest_offset, temp);
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -08001119 }
1120
1121 current_src_offset += bytes_to_move;
1122 current_dest_offset += bytes_to_move;
1123 regs_left_to_pass_via_stack -= (bytes_to_move >> 2);
1124 }
1125 } else {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001126 // Generate memcpy
1127 OpRegRegImm(kOpAdd, TargetReg(kArg0), TargetReg(kSp), outs_offset);
1128 OpRegRegImm(kOpAdd, TargetReg(kArg1), TargetReg(kSp), start_offset);
Andreas Gampe2f244e92014-05-08 03:35:25 -07001129 if (Is64BitInstructionSet(cu_->instruction_set)) {
1130 CallRuntimeHelperRegRegImm(QUICK_ENTRYPOINT_OFFSET(8, pMemcpy), TargetReg(kArg0),
1131 TargetReg(kArg1), (info->num_arg_words - 3) * 4, false);
1132 } else {
1133 CallRuntimeHelperRegRegImm(QUICK_ENTRYPOINT_OFFSET(4, pMemcpy), TargetReg(kArg0),
1134 TargetReg(kArg1), (info->num_arg_words - 3) * 4, false);
1135 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001136 }
1137
1138 call_state = LoadArgRegs(info, call_state, next_call_insn,
1139 target_method, vtable_idx, direct_code, direct_method,
1140 type, skip_this);
1141
1142 call_state = next_call_insn(cu_, info, call_state, target_method, vtable_idx,
1143 direct_code, direct_method, type);
1144 if (pcrLabel) {
Dave Allisonf9439142014-03-27 15:10:22 -07001145 if (Runtime::Current()->ExplicitNullChecks()) {
1146 *pcrLabel = GenExplicitNullCheck(TargetReg(kArg1), info->opt_flags);
1147 } else {
1148 *pcrLabel = nullptr;
1149 // In lieu of generating a check for kArg1 being null, we need to
1150 // perform a load when doing implicit checks.
1151 RegStorage tmp = AllocTemp();
buzbee695d13a2014-04-19 13:32:20 -07001152 Load32Disp(TargetReg(kArg1), 0, tmp);
Dave Allisonf9439142014-03-27 15:10:22 -07001153 MarkPossibleNullPointerException(info->opt_flags);
1154 FreeTemp(tmp);
1155 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001156 }
1157 return call_state;
1158}
1159
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001160RegLocation Mir2Lir::InlineTarget(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001161 RegLocation res;
1162 if (info->result.location == kLocInvalid) {
1163 res = GetReturn(false);
1164 } else {
1165 res = info->result;
1166 }
1167 return res;
1168}
1169
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001170RegLocation Mir2Lir::InlineTargetWide(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001171 RegLocation res;
1172 if (info->result.location == kLocInvalid) {
1173 res = GetReturnWide(false);
1174 } else {
1175 res = info->result;
1176 }
1177 return res;
1178}
1179
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001180bool Mir2Lir::GenInlinedCharAt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001181 if (cu_->instruction_set == kMips) {
1182 // TODO - add Mips implementation
1183 return false;
1184 }
1185 // Location of reference to data array
1186 int value_offset = mirror::String::ValueOffset().Int32Value();
1187 // Location of count
1188 int count_offset = mirror::String::CountOffset().Int32Value();
1189 // Starting offset within data array
1190 int offset_offset = mirror::String::OffsetOffset().Int32Value();
1191 // Start of char data with array_
1192 int data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Int32Value();
1193
1194 RegLocation rl_obj = info->args[0];
1195 RegLocation rl_idx = info->args[1];
1196 rl_obj = LoadValue(rl_obj, kCoreReg);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001197 // X86 wants to avoid putting a constant index into a register.
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001198 if (!((cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64)&& rl_idx.is_const)) {
Mark Mendell2b724cb2014-02-06 05:24:20 -08001199 rl_idx = LoadValue(rl_idx, kCoreReg);
1200 }
buzbee2700f7e2014-03-07 09:46:20 -08001201 RegStorage reg_max;
1202 GenNullCheck(rl_obj.reg, info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001203 bool range_check = (!(info->opt_flags & MIR_IGNORE_RANGE_CHECK));
Vladimir Marko3bc86152014-03-13 14:11:28 +00001204 LIR* range_check_branch = nullptr;
buzbee2700f7e2014-03-07 09:46:20 -08001205 RegStorage reg_off;
1206 RegStorage reg_ptr;
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001207 if (cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001208 reg_off = AllocTemp();
1209 reg_ptr = AllocTemp();
1210 if (range_check) {
1211 reg_max = AllocTemp();
buzbee695d13a2014-04-19 13:32:20 -07001212 Load32Disp(rl_obj.reg, count_offset, reg_max);
Dave Allisonb373e092014-02-20 16:06:36 -08001213 MarkPossibleNullPointerException(info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001214 }
buzbee695d13a2014-04-19 13:32:20 -07001215 Load32Disp(rl_obj.reg, offset_offset, reg_off);
Dave Allisonb373e092014-02-20 16:06:36 -08001216 MarkPossibleNullPointerException(info->opt_flags);
buzbee695d13a2014-04-19 13:32:20 -07001217 Load32Disp(rl_obj.reg, value_offset, reg_ptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001218 if (range_check) {
Mingyao Yang3a74d152014-04-21 15:39:44 -07001219 // Set up a slow path to allow retry in case of bounds violation */
buzbee2700f7e2014-03-07 09:46:20 -08001220 OpRegReg(kOpCmp, rl_idx.reg, reg_max);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001221 FreeTemp(reg_max);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001222 range_check_branch = OpCondBranch(kCondUge, nullptr);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001223 }
Mark Mendell2b724cb2014-02-06 05:24:20 -08001224 OpRegImm(kOpAdd, reg_ptr, data_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001225 } else {
1226 if (range_check) {
Mark Mendell2b724cb2014-02-06 05:24:20 -08001227 // On x86, we can compare to memory directly
Brian Carlstrom7940e442013-07-12 13:46:57 -07001228 // Set up a launch pad to allow retry in case of bounds violation */
Mark Mendell2b724cb2014-02-06 05:24:20 -08001229 if (rl_idx.is_const) {
Vladimir Marko3bc86152014-03-13 14:11:28 +00001230 range_check_branch = OpCmpMemImmBranch(
buzbee2700f7e2014-03-07 09:46:20 -08001231 kCondUlt, RegStorage::InvalidReg(), rl_obj.reg, count_offset,
Vladimir Marko3bc86152014-03-13 14:11:28 +00001232 mir_graph_->ConstantValue(rl_idx.orig_sreg), nullptr);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001233 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001234 OpRegMem(kOpCmp, rl_idx.reg, rl_obj.reg, count_offset);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001235 range_check_branch = OpCondBranch(kCondUge, nullptr);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001236 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001237 }
1238 reg_off = AllocTemp();
1239 reg_ptr = AllocTemp();
buzbee695d13a2014-04-19 13:32:20 -07001240 Load32Disp(rl_obj.reg, offset_offset, reg_off);
1241 Load32Disp(rl_obj.reg, value_offset, reg_ptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001242 }
Mark Mendell2b724cb2014-02-06 05:24:20 -08001243 if (rl_idx.is_const) {
1244 OpRegImm(kOpAdd, reg_off, mir_graph_->ConstantValue(rl_idx.orig_sreg));
1245 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001246 OpRegReg(kOpAdd, reg_off, rl_idx.reg);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001247 }
buzbee2700f7e2014-03-07 09:46:20 -08001248 FreeTemp(rl_obj.reg);
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001249 if (rl_idx.location == kLocPhysReg) {
buzbee2700f7e2014-03-07 09:46:20 -08001250 FreeTemp(rl_idx.reg);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001251 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001252 RegLocation rl_dest = InlineTarget(info);
1253 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001254 if (cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64) {
buzbee2700f7e2014-03-07 09:46:20 -08001255 LoadBaseIndexed(reg_ptr, reg_off, rl_result.reg, 1, kUnsignedHalf);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001256 } else {
Vladimir Marko3bf7c602014-05-07 14:55:43 +01001257 LoadBaseIndexedDisp(reg_ptr, reg_off, 1, data_offset, rl_result.reg, kUnsignedHalf);
Mark Mendell2b724cb2014-02-06 05:24:20 -08001258 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001259 FreeTemp(reg_off);
1260 FreeTemp(reg_ptr);
1261 StoreValue(rl_dest, rl_result);
1262 if (range_check) {
Vladimir Marko3bc86152014-03-13 14:11:28 +00001263 DCHECK(range_check_branch != nullptr);
1264 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've already null checked.
Mingyao Yang3a74d152014-04-21 15:39:44 -07001265 AddIntrinsicSlowPath(info, range_check_branch);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001266 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001267 return true;
1268}
1269
1270// Generates an inlined String.is_empty or String.length.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001271bool Mir2Lir::GenInlinedStringIsEmptyOrLength(CallInfo* info, bool is_empty) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001272 if (cu_->instruction_set == kMips) {
1273 // TODO - add Mips implementation
1274 return false;
1275 }
1276 // dst = src.length();
1277 RegLocation rl_obj = info->args[0];
1278 rl_obj = LoadValue(rl_obj, kCoreReg);
1279 RegLocation rl_dest = InlineTarget(info);
1280 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001281 GenNullCheck(rl_obj.reg, info->opt_flags);
buzbee695d13a2014-04-19 13:32:20 -07001282 Load32Disp(rl_obj.reg, mirror::String::CountOffset().Int32Value(), rl_result.reg);
Dave Allisonb373e092014-02-20 16:06:36 -08001283 MarkPossibleNullPointerException(info->opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001284 if (is_empty) {
1285 // dst = (dst == 0);
1286 if (cu_->instruction_set == kThumb2) {
buzbee2700f7e2014-03-07 09:46:20 -08001287 RegStorage t_reg = AllocTemp();
1288 OpRegReg(kOpNeg, t_reg, rl_result.reg);
1289 OpRegRegReg(kOpAdc, rl_result.reg, rl_result.reg, t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001290 } else {
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001291 DCHECK(cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64);
buzbee2700f7e2014-03-07 09:46:20 -08001292 OpRegImm(kOpSub, rl_result.reg, 1);
1293 OpRegImm(kOpLsr, rl_result.reg, 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001294 }
1295 }
1296 StoreValue(rl_dest, rl_result);
1297 return true;
1298}
1299
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001300bool Mir2Lir::GenInlinedReverseBytes(CallInfo* info, OpSize size) {
1301 if (cu_->instruction_set == kMips) {
1302 // TODO - add Mips implementation
1303 return false;
1304 }
1305 RegLocation rl_src_i = info->args[0];
buzbee695d13a2014-04-19 13:32:20 -07001306 RegLocation rl_dest = (size == k64) ? InlineTargetWide(info) : InlineTarget(info); // result reg
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001307 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee695d13a2014-04-19 13:32:20 -07001308 if (size == k64) {
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001309 RegLocation rl_i = LoadValueWide(rl_src_i, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -08001310 RegStorage r_i_low = rl_i.reg.GetLow();
1311 if (rl_i.reg.GetLowReg() == rl_result.reg.GetLowReg()) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +00001312 // 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 +00001313 r_i_low = AllocTemp();
buzbee2700f7e2014-03-07 09:46:20 -08001314 OpRegCopy(r_i_low, rl_i.reg);
Vladimir Markof246af22013-11-27 12:30:15 +00001315 }
buzbee2700f7e2014-03-07 09:46:20 -08001316 OpRegReg(kOpRev, rl_result.reg.GetLow(), rl_i.reg.GetHigh());
1317 OpRegReg(kOpRev, rl_result.reg.GetHigh(), r_i_low);
1318 if (rl_i.reg.GetLowReg() == rl_result.reg.GetLowReg()) {
Vladimir Markof246af22013-11-27 12:30:15 +00001319 FreeTemp(r_i_low);
1320 }
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001321 StoreValueWide(rl_dest, rl_result);
1322 } else {
buzbee695d13a2014-04-19 13:32:20 -07001323 DCHECK(size == k32 || size == kSignedHalf);
1324 OpKind op = (size == k32) ? kOpRev : kOpRevsh;
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001325 RegLocation rl_i = LoadValue(rl_src_i, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -08001326 OpRegReg(op, rl_result.reg, rl_i.reg);
Vladimir Marko6bdf1ff2013-10-29 17:40:46 +00001327 StoreValue(rl_dest, rl_result);
1328 }
1329 return true;
1330}
1331
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001332bool Mir2Lir::GenInlinedAbsInt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001333 if (cu_->instruction_set == kMips) {
1334 // TODO - add Mips implementation
1335 return false;
1336 }
1337 RegLocation rl_src = info->args[0];
1338 rl_src = LoadValue(rl_src, kCoreReg);
1339 RegLocation rl_dest = InlineTarget(info);
1340 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001341 RegStorage sign_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001342 // abs(x) = y<=x>>31, (x+y)^y.
buzbee2700f7e2014-03-07 09:46:20 -08001343 OpRegRegImm(kOpAsr, sign_reg, rl_src.reg, 31);
1344 OpRegRegReg(kOpAdd, rl_result.reg, rl_src.reg, sign_reg);
1345 OpRegReg(kOpXor, rl_result.reg, sign_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001346 StoreValue(rl_dest, rl_result);
1347 return true;
1348}
1349
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001350bool Mir2Lir::GenInlinedAbsLong(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001351 if (cu_->instruction_set == kMips) {
1352 // TODO - add Mips implementation
1353 return false;
1354 }
Vladimir Markob9823312014-03-20 17:38:43 +00001355 RegLocation rl_src = info->args[0];
1356 rl_src = LoadValueWide(rl_src, kCoreReg);
1357 RegLocation rl_dest = InlineTargetWide(info);
1358 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1359
1360 // If on x86 or if we would clobber a register needed later, just copy the source first.
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001361 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64 || rl_result.reg.GetLowReg() == rl_src.reg.GetHighReg()) {
buzbee2700f7e2014-03-07 09:46:20 -08001362 OpRegCopyWide(rl_result.reg, rl_src.reg);
1363 if (rl_result.reg.GetLowReg() != rl_src.reg.GetLowReg() &&
1364 rl_result.reg.GetLowReg() != rl_src.reg.GetHighReg() &&
1365 rl_result.reg.GetHighReg() != rl_src.reg.GetLowReg() &&
Vladimir Markob9823312014-03-20 17:38:43 +00001366 rl_result.reg.GetHighReg() != rl_src.reg.GetHighReg()) {
1367 // Reuse source registers to avoid running out of temps.
buzbee2700f7e2014-03-07 09:46:20 -08001368 FreeTemp(rl_src.reg);
Vladimir Markob9823312014-03-20 17:38:43 +00001369 }
1370 rl_src = rl_result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001371 }
Vladimir Markob9823312014-03-20 17:38:43 +00001372
1373 // abs(x) = y<=x>>31, (x+y)^y.
buzbee2700f7e2014-03-07 09:46:20 -08001374 RegStorage sign_reg = AllocTemp();
1375 OpRegRegImm(kOpAsr, sign_reg, rl_src.reg.GetHigh(), 31);
1376 OpRegRegReg(kOpAdd, rl_result.reg.GetLow(), rl_src.reg.GetLow(), sign_reg);
1377 OpRegRegReg(kOpAdc, rl_result.reg.GetHigh(), rl_src.reg.GetHigh(), sign_reg);
1378 OpRegReg(kOpXor, rl_result.reg.GetLow(), sign_reg);
1379 OpRegReg(kOpXor, rl_result.reg.GetHigh(), sign_reg);
buzbee082833c2014-05-17 23:16:26 -07001380 FreeTemp(sign_reg);
Vladimir Markob9823312014-03-20 17:38:43 +00001381 StoreValueWide(rl_dest, rl_result);
1382 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001383}
1384
Yixin Shoudbb17e32014-02-07 05:09:30 -08001385bool Mir2Lir::GenInlinedAbsFloat(CallInfo* info) {
1386 if (cu_->instruction_set == kMips) {
1387 // TODO - add Mips implementation
1388 return false;
1389 }
1390 RegLocation rl_src = info->args[0];
1391 rl_src = LoadValue(rl_src, kCoreReg);
1392 RegLocation rl_dest = InlineTarget(info);
1393 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001394 OpRegRegImm(kOpAnd, rl_result.reg, rl_src.reg, 0x7fffffff);
Yixin Shoudbb17e32014-02-07 05:09:30 -08001395 StoreValue(rl_dest, rl_result);
1396 return true;
1397}
1398
1399bool Mir2Lir::GenInlinedAbsDouble(CallInfo* info) {
1400 if (cu_->instruction_set == kMips) {
1401 // TODO - add Mips implementation
1402 return false;
1403 }
1404 RegLocation rl_src = info->args[0];
1405 rl_src = LoadValueWide(rl_src, kCoreReg);
1406 RegLocation rl_dest = InlineTargetWide(info);
1407 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001408 OpRegCopyWide(rl_result.reg, rl_src.reg);
1409 OpRegImm(kOpAnd, rl_result.reg.GetHigh(), 0x7fffffff);
Yixin Shoudbb17e32014-02-07 05:09:30 -08001410 StoreValueWide(rl_dest, rl_result);
1411 return true;
1412}
1413
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001414bool Mir2Lir::GenInlinedFloatCvt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001415 if (cu_->instruction_set == kMips) {
1416 // TODO - add Mips implementation
1417 return false;
1418 }
1419 RegLocation rl_src = info->args[0];
1420 RegLocation rl_dest = InlineTarget(info);
1421 StoreValue(rl_dest, rl_src);
1422 return true;
1423}
1424
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001425bool Mir2Lir::GenInlinedDoubleCvt(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001426 if (cu_->instruction_set == kMips) {
1427 // TODO - add Mips implementation
1428 return false;
1429 }
1430 RegLocation rl_src = info->args[0];
1431 RegLocation rl_dest = InlineTargetWide(info);
1432 StoreValueWide(rl_dest, rl_src);
1433 return true;
1434}
1435
1436/*
Vladimir Marko3bc86152014-03-13 14:11:28 +00001437 * Fast String.indexOf(I) & (II). Tests for simple case of char <= 0xFFFF,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001438 * otherwise bails to standard library code.
1439 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001440bool Mir2Lir::GenInlinedIndexOf(CallInfo* info, bool zero_based) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 if (cu_->instruction_set == kMips) {
1442 // TODO - add Mips implementation
1443 return false;
1444 }
Vladimir Marko3bc86152014-03-13 14:11:28 +00001445 RegLocation rl_obj = info->args[0];
1446 RegLocation rl_char = info->args[1];
1447 if (rl_char.is_const && (mir_graph_->ConstantValue(rl_char) & ~0xFFFF) != 0) {
1448 // Code point beyond 0xFFFF. Punt to the real String.indexOf().
1449 return false;
1450 }
1451
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001452 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001453 LockCallTemps(); // Using fixed registers
buzbee2700f7e2014-03-07 09:46:20 -08001454 RegStorage reg_ptr = TargetReg(kArg0);
1455 RegStorage reg_char = TargetReg(kArg1);
1456 RegStorage reg_start = TargetReg(kArg2);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001457
Brian Carlstrom7940e442013-07-12 13:46:57 -07001458 LoadValueDirectFixed(rl_obj, reg_ptr);
1459 LoadValueDirectFixed(rl_char, reg_char);
1460 if (zero_based) {
1461 LoadConstant(reg_start, 0);
1462 } else {
buzbeea44d4f52014-03-05 11:26:39 -08001463 RegLocation rl_start = info->args[2]; // 3rd arg only present in III flavor of IndexOf.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001464 LoadValueDirectFixed(rl_start, reg_start);
1465 }
Andreas Gampe2f244e92014-05-08 03:35:25 -07001466 RegStorage r_tgt = Is64BitInstructionSet(cu_->instruction_set) ?
1467 LoadHelper(QUICK_ENTRYPOINT_OFFSET(8, pIndexOf)) :
1468 LoadHelper(QUICK_ENTRYPOINT_OFFSET(4, pIndexOf));
Dave Allisonf9439142014-03-27 15:10:22 -07001469 GenExplicitNullCheck(reg_ptr, info->opt_flags);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001470 LIR* high_code_point_branch =
1471 rl_char.is_const ? nullptr : OpCmpImmBranch(kCondGt, reg_char, 0xFFFF, nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001472 // NOTE: not a safepoint
Mark Mendell4028a6c2014-02-19 20:06:20 -08001473 OpReg(kOpBlx, r_tgt);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001474 if (!rl_char.is_const) {
1475 // Add the slow path for code points beyond 0xFFFF.
1476 DCHECK(high_code_point_branch != nullptr);
1477 LIR* resume_tgt = NewLIR0(kPseudoTargetLabel);
1478 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've null checked.
Mingyao Yang3a74d152014-04-21 15:39:44 -07001479 AddIntrinsicSlowPath(info, high_code_point_branch, resume_tgt);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001480 } else {
1481 DCHECK_EQ(mir_graph_->ConstantValue(rl_char) & ~0xFFFF, 0);
1482 DCHECK(high_code_point_branch == nullptr);
1483 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001484 RegLocation rl_return = GetReturn(false);
1485 RegLocation rl_dest = InlineTarget(info);
1486 StoreValue(rl_dest, rl_return);
1487 return true;
1488}
1489
1490/* Fast string.compareTo(Ljava/lang/string;)I. */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001491bool Mir2Lir::GenInlinedStringCompareTo(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001492 if (cu_->instruction_set == kMips) {
1493 // TODO - add Mips implementation
1494 return false;
1495 }
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001496 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001497 LockCallTemps(); // Using fixed registers
buzbee2700f7e2014-03-07 09:46:20 -08001498 RegStorage reg_this = TargetReg(kArg0);
1499 RegStorage reg_cmp = TargetReg(kArg1);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500
1501 RegLocation rl_this = info->args[0];
1502 RegLocation rl_cmp = info->args[1];
1503 LoadValueDirectFixed(rl_this, reg_this);
1504 LoadValueDirectFixed(rl_cmp, reg_cmp);
Andreas Gampe2f244e92014-05-08 03:35:25 -07001505 RegStorage r_tgt;
1506 if (cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64) {
1507 if (Is64BitInstructionSet(cu_->instruction_set)) {
1508 r_tgt = LoadHelper(QUICK_ENTRYPOINT_OFFSET(8, pStringCompareTo));
1509 } else {
1510 r_tgt = LoadHelper(QUICK_ENTRYPOINT_OFFSET(4, pStringCompareTo));
1511 }
1512 } else {
1513 r_tgt = RegStorage::InvalidReg();
1514 }
Dave Allisonf9439142014-03-27 15:10:22 -07001515 GenExplicitNullCheck(reg_this, info->opt_flags);
Vladimir Marko3bc86152014-03-13 14:11:28 +00001516 info->opt_flags |= MIR_IGNORE_NULL_CHECK; // Record that we've null checked.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001517 // TUNING: check if rl_cmp.s_reg_low is already null checked
Vladimir Marko3bc86152014-03-13 14:11:28 +00001518 LIR* cmp_null_check_branch = OpCmpImmBranch(kCondEq, reg_cmp, 0, nullptr);
Mingyao Yang3a74d152014-04-21 15:39:44 -07001519 AddIntrinsicSlowPath(info, cmp_null_check_branch);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001520 // NOTE: not a safepoint
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001521 if (cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 OpReg(kOpBlx, r_tgt);
1523 } else {
Andreas Gampe2f244e92014-05-08 03:35:25 -07001524 if (Is64BitInstructionSet(cu_->instruction_set)) {
1525 OpThreadMem(kOpBlx, QUICK_ENTRYPOINT_OFFSET(8, pStringCompareTo));
1526 } else {
1527 OpThreadMem(kOpBlx, QUICK_ENTRYPOINT_OFFSET(4, pStringCompareTo));
1528 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001529 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001530 RegLocation rl_return = GetReturn(false);
1531 RegLocation rl_dest = InlineTarget(info);
1532 StoreValue(rl_dest, rl_return);
1533 return true;
1534}
1535
1536bool Mir2Lir::GenInlinedCurrentThread(CallInfo* info) {
1537 RegLocation rl_dest = InlineTarget(info);
1538 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
Andreas Gampe2f244e92014-05-08 03:35:25 -07001539
1540 switch (cu_->instruction_set) {
1541 case kArm:
1542 // Fall-through.
1543 case kThumb2:
1544 // Fall-through.
1545 case kMips:
1546 Load32Disp(TargetReg(kSelf), Thread::PeerOffset<4>().Int32Value(), rl_result.reg);
1547 break;
1548
1549 case kArm64:
1550 Load32Disp(TargetReg(kSelf), Thread::PeerOffset<8>().Int32Value(), rl_result.reg);
1551 break;
1552
1553 case kX86:
1554 reinterpret_cast<X86Mir2Lir*>(this)->OpRegThreadMem(kOpMov, rl_result.reg,
1555 Thread::PeerOffset<4>());
1556 break;
1557
1558 case kX86_64:
1559 reinterpret_cast<X86Mir2Lir*>(this)->OpRegThreadMem(kOpMov, rl_result.reg,
1560 Thread::PeerOffset<8>());
1561 break;
1562
1563 default:
1564 LOG(FATAL) << "Unexpected isa " << cu_->instruction_set;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 }
1566 StoreValue(rl_dest, rl_result);
1567 return true;
1568}
1569
1570bool Mir2Lir::GenInlinedUnsafeGet(CallInfo* info,
1571 bool is_long, bool is_volatile) {
1572 if (cu_->instruction_set == kMips) {
1573 // TODO - add Mips implementation
1574 return false;
1575 }
1576 // Unused - RegLocation rl_src_unsafe = info->args[0];
1577 RegLocation rl_src_obj = info->args[1]; // Object
1578 RegLocation rl_src_offset = info->args[2]; // long low
buzbee2700f7e2014-03-07 09:46:20 -08001579 rl_src_offset = NarrowRegLoc(rl_src_offset); // ignore high half in info->args[3]
Mark Mendell55d0eac2014-02-06 11:02:52 -08001580 RegLocation rl_dest = is_long ? InlineTargetWide(info) : InlineTarget(info); // result reg
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -08001581
Brian Carlstrom7940e442013-07-12 13:46:57 -07001582 RegLocation rl_object = LoadValue(rl_src_obj, kCoreReg);
1583 RegLocation rl_offset = LoadValue(rl_src_offset, kCoreReg);
1584 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1585 if (is_long) {
Dmitry Petrochenko9bf549d2014-05-12 11:14:46 +07001586 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
Vladimir Marko3bf7c602014-05-07 14:55:43 +01001587 LoadBaseIndexedDisp(rl_object.reg, rl_offset.reg, 0, 0, rl_result.reg, k64);
Mathieu Chartier7c95cef2014-04-02 17:09:17 -07001588 } else {
1589 RegStorage rl_temp_offset = AllocTemp();
1590 OpRegRegReg(kOpAdd, rl_temp_offset, rl_object.reg, rl_offset.reg);
Vladimir Marko3bf7c602014-05-07 14:55:43 +01001591 LoadBaseDisp(rl_temp_offset, 0, rl_result.reg, k64);
buzbee091cc402014-03-31 10:14:40 -07001592 FreeTemp(rl_temp_offset);
Mathieu Chartier7c95cef2014-04-02 17:09:17 -07001593 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594 } else {
buzbee695d13a2014-04-19 13:32:20 -07001595 LoadBaseIndexed(rl_object.reg, rl_offset.reg, rl_result.reg, 0, k32);
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -08001596 }
1597
1598 if (is_volatile) {
1599 // Without context sensitive analysis, we must issue the most conservative barriers.
1600 // In this case, either a load or store may follow so we issue both barriers.
1601 GenMemBarrier(kLoadLoad);
1602 GenMemBarrier(kLoadStore);
1603 }
1604
1605 if (is_long) {
1606 StoreValueWide(rl_dest, rl_result);
1607 } else {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001608 StoreValue(rl_dest, rl_result);
1609 }
1610 return true;
1611}
1612
1613bool Mir2Lir::GenInlinedUnsafePut(CallInfo* info, bool is_long,
1614 bool is_object, bool is_volatile, bool is_ordered) {
1615 if (cu_->instruction_set == kMips) {
1616 // TODO - add Mips implementation
1617 return false;
1618 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001619 // Unused - RegLocation rl_src_unsafe = info->args[0];
1620 RegLocation rl_src_obj = info->args[1]; // Object
1621 RegLocation rl_src_offset = info->args[2]; // long low
buzbee2700f7e2014-03-07 09:46:20 -08001622 rl_src_offset = NarrowRegLoc(rl_src_offset); // ignore high half in info->args[3]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001623 RegLocation rl_src_value = info->args[4]; // value to store
1624 if (is_volatile || is_ordered) {
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -08001625 // There might have been a store before this volatile one so insert StoreStore barrier.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001626 GenMemBarrier(kStoreStore);
1627 }
1628 RegLocation rl_object = LoadValue(rl_src_obj, kCoreReg);
1629 RegLocation rl_offset = LoadValue(rl_src_offset, kCoreReg);
1630 RegLocation rl_value;
1631 if (is_long) {
1632 rl_value = LoadValueWide(rl_src_value, kCoreReg);
Dmitry Petrochenko9bf549d2014-05-12 11:14:46 +07001633 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
Vladimir Marko3bf7c602014-05-07 14:55:43 +01001634 StoreBaseIndexedDisp(rl_object.reg, rl_offset.reg, 0, 0, rl_value.reg, k64);
Mathieu Chartier7c95cef2014-04-02 17:09:17 -07001635 } else {
1636 RegStorage rl_temp_offset = AllocTemp();
1637 OpRegRegReg(kOpAdd, rl_temp_offset, rl_object.reg, rl_offset.reg);
Vladimir Marko455759b2014-05-06 20:49:36 +01001638 StoreBaseDisp(rl_temp_offset, 0, rl_value.reg, k64);
buzbee091cc402014-03-31 10:14:40 -07001639 FreeTemp(rl_temp_offset);
Mathieu Chartier7c95cef2014-04-02 17:09:17 -07001640 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001641 } else {
1642 rl_value = LoadValue(rl_src_value, kCoreReg);
buzbee695d13a2014-04-19 13:32:20 -07001643 StoreBaseIndexed(rl_object.reg, rl_offset.reg, rl_value.reg, 0, k32);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001644 }
Mark Mendelldf8ee2e2014-01-27 16:37:47 -08001645
1646 // Free up the temp early, to ensure x86 doesn't run out of temporaries in MarkGCCard.
buzbee091cc402014-03-31 10:14:40 -07001647 FreeTemp(rl_offset.reg);
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -08001648
Brian Carlstrom7940e442013-07-12 13:46:57 -07001649 if (is_volatile) {
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -08001650 // A load might follow the volatile store so insert a StoreLoad barrier.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001651 GenMemBarrier(kStoreLoad);
1652 }
1653 if (is_object) {
buzbee2700f7e2014-03-07 09:46:20 -08001654 MarkGCCard(rl_value.reg, rl_object.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001655 }
1656 return true;
1657}
1658
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001659void Mir2Lir::GenInvoke(CallInfo* info) {
Vladimir Marko9820b7c2014-01-02 16:40:37 +00001660 if ((info->opt_flags & MIR_INLINED) != 0) {
1661 // Already inlined but we may still need the null check.
1662 if (info->type != kStatic &&
1663 ((cu_->disable_opt & (1 << kNullCheckElimination)) != 0 ||
1664 (info->opt_flags & MIR_IGNORE_NULL_CHECK) == 0)) {
1665 RegLocation rl_obj = LoadValue(info->args[0], kCoreReg);
Mingyao Yange643a172014-04-08 11:02:52 -07001666 GenNullCheck(rl_obj.reg);
Vladimir Marko9820b7c2014-01-02 16:40:37 +00001667 }
1668 return;
1669 }
Vladimir Marko3bc86152014-03-13 14:11:28 +00001670 DCHECK(cu_->compiler_driver->GetMethodInlinerMap() != nullptr);
Dmitry Petrochenko4c800432014-05-08 12:20:24 +07001671 // TODO: Enable instrinsics for x86_64
1672 // Temporary disable intrinsics for x86_64. We will enable them later step by step.
1673 if (cu_->instruction_set != kX86_64) {
1674 if (cu_->compiler_driver->GetMethodInlinerMap()->GetMethodInliner(cu_->dex_file)
1675 ->GenIntrinsic(this, info)) {
1676 return;
1677 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001678 }
Vladimir Marko3bc86152014-03-13 14:11:28 +00001679 GenInvokeNoInline(info);
1680}
1681
Andreas Gampe2f244e92014-05-08 03:35:25 -07001682template <size_t pointer_size>
1683static LIR* GenInvokeNoInlineCall(Mir2Lir* mir_to_lir, InvokeType type) {
1684 ThreadOffset<pointer_size> trampoline(-1);
1685 switch (type) {
1686 case kInterface:
1687 trampoline = QUICK_ENTRYPOINT_OFFSET(pointer_size, pInvokeInterfaceTrampolineWithAccessCheck);
1688 break;
1689 case kDirect:
1690 trampoline = QUICK_ENTRYPOINT_OFFSET(pointer_size, pInvokeDirectTrampolineWithAccessCheck);
1691 break;
1692 case kStatic:
1693 trampoline = QUICK_ENTRYPOINT_OFFSET(pointer_size, pInvokeStaticTrampolineWithAccessCheck);
1694 break;
1695 case kSuper:
1696 trampoline = QUICK_ENTRYPOINT_OFFSET(pointer_size, pInvokeSuperTrampolineWithAccessCheck);
1697 break;
1698 case kVirtual:
1699 trampoline = QUICK_ENTRYPOINT_OFFSET(pointer_size, pInvokeVirtualTrampolineWithAccessCheck);
1700 break;
1701 default:
1702 LOG(FATAL) << "Unexpected invoke type";
1703 }
1704 return mir_to_lir->OpThreadMem(kOpBlx, trampoline);
1705}
1706
Vladimir Marko3bc86152014-03-13 14:11:28 +00001707void Mir2Lir::GenInvokeNoInline(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001708 int call_state = 0;
1709 LIR* null_ck;
1710 LIR** p_null_ck = NULL;
1711 NextCallInsn next_call_insn;
1712 FlushAllRegs(); /* Everything to home location */
1713 // Explicit register usage
1714 LockCallTemps();
1715
Vladimir Markof096aad2014-01-23 15:51:58 +00001716 const MirMethodLoweringInfo& method_info = mir_graph_->GetMethodLoweringInfo(info->mir);
1717 cu_->compiler_driver->ProcessedInvoke(method_info.GetInvokeType(), method_info.StatsFlags());
Mark Mendelle87f9b52014-04-30 14:13:18 -04001718 BeginInvoke(info);
Vladimir Markof096aad2014-01-23 15:51:58 +00001719 InvokeType original_type = static_cast<InvokeType>(method_info.GetInvokeType());
1720 info->type = static_cast<InvokeType>(method_info.GetSharpType());
1721 bool fast_path = method_info.FastPath();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001722 bool skip_this;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001723 if (info->type == kInterface) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001724 next_call_insn = fast_path ? NextInterfaceCallInsn : NextInterfaceCallInsnWithAccessCheck;
Jeff Hao88474b42013-10-23 16:24:40 -07001725 skip_this = fast_path;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001726 } else if (info->type == kDirect) {
1727 if (fast_path) {
1728 p_null_ck = &null_ck;
1729 }
1730 next_call_insn = fast_path ? NextSDCallInsn : NextDirectCallInsnSP;
1731 skip_this = false;
1732 } else if (info->type == kStatic) {
1733 next_call_insn = fast_path ? NextSDCallInsn : NextStaticCallInsnSP;
1734 skip_this = false;
1735 } else if (info->type == kSuper) {
1736 DCHECK(!fast_path); // Fast path is a direct call.
1737 next_call_insn = NextSuperCallInsnSP;
1738 skip_this = false;
1739 } else {
1740 DCHECK_EQ(info->type, kVirtual);
1741 next_call_insn = fast_path ? NextVCallInsn : NextVCallInsnSP;
1742 skip_this = fast_path;
1743 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001744 MethodReference target_method = method_info.GetTargetMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001745 if (!info->is_range) {
1746 call_state = GenDalvikArgsNoRange(info, call_state, p_null_ck,
Vladimir Markof096aad2014-01-23 15:51:58 +00001747 next_call_insn, target_method, method_info.VTableIndex(),
1748 method_info.DirectCode(), method_info.DirectMethod(),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001749 original_type, skip_this);
1750 } else {
1751 call_state = GenDalvikArgsRange(info, call_state, p_null_ck,
Vladimir Markof096aad2014-01-23 15:51:58 +00001752 next_call_insn, target_method, method_info.VTableIndex(),
1753 method_info.DirectCode(), method_info.DirectMethod(),
1754 original_type, skip_this);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001755 }
1756 // Finish up any of the call sequence not interleaved in arg loading
1757 while (call_state >= 0) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001758 call_state = next_call_insn(cu_, info, call_state, target_method, method_info.VTableIndex(),
1759 method_info.DirectCode(), method_info.DirectMethod(), original_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001760 }
1761 LIR* call_inst;
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001762 if (cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001763 call_inst = OpReg(kOpBlx, TargetReg(kInvokeTgt));
1764 } else {
Jeff Hao88474b42013-10-23 16:24:40 -07001765 if (fast_path) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001766 if (method_info.DirectCode() == static_cast<uintptr_t>(-1)) {
Mark Mendell55d0eac2014-02-06 11:02:52 -08001767 // We can have the linker fixup a call relative.
1768 call_inst =
Jeff Hao49161ce2014-03-12 11:05:25 -07001769 reinterpret_cast<X86Mir2Lir*>(this)->CallWithLinkerFixup(target_method, info->type);
Mark Mendell55d0eac2014-02-06 11:02:52 -08001770 } else {
1771 call_inst = OpMem(kOpBlx, TargetReg(kArg0),
1772 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset().Int32Value());
1773 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001774 } else {
Andreas Gampe2f244e92014-05-08 03:35:25 -07001775 // TODO: Extract?
1776 if (Is64BitInstructionSet(cu_->instruction_set)) {
1777 call_inst = GenInvokeNoInlineCall<8>(this, info->type);
1778 } else {
Andreas Gampe3ec5da22014-05-12 18:43:28 -07001779 call_inst = GenInvokeNoInlineCall<4>(this, info->type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001780 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001781 }
1782 }
Mark Mendelle87f9b52014-04-30 14:13:18 -04001783 EndInvoke(info);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001784 MarkSafepointPC(call_inst);
1785
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001786 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001787 if (info->result.location != kLocInvalid) {
1788 // We have a following MOVE_RESULT - do it now.
1789 if (info->result.wide) {
1790 RegLocation ret_loc = GetReturnWide(info->result.fp);
1791 StoreValueWide(info->result, ret_loc);
1792 } else {
1793 RegLocation ret_loc = GetReturn(info->result.fp);
1794 StoreValue(info->result, ret_loc);
1795 }
1796 }
1797}
1798
1799} // namespace art