blob: bba3d404099645678145dcab8401c715464c5ad2 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/* This file contains codegen for the Thumb2 ISA. */
18
19#include "arm_lir.h"
20#include "codegen_arm.h"
21#include "dex/quick/mir_to_lir-inl.h"
Ian Rogers166db042013-07-26 12:05:57 -070022#include "entrypoints/quick/quick_entrypoints.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070023
24namespace art {
25
Brian Carlstrom7940e442013-07-12 13:46:57 -070026/*
27 * The sparse table in the literal pool is an array of <key,displacement>
28 * pairs. For each set, we'll load them as a pair using ldmia.
29 * This means that the register number of the temp we use for the key
30 * must be lower than the reg for the displacement.
31 *
32 * The test loop will look something like:
33 *
34 * adr rBase, <table>
35 * ldr r_val, [rARM_SP, v_reg_off]
36 * mov r_idx, #table_size
37 * lp:
38 * ldmia rBase!, {r_key, r_disp}
39 * sub r_idx, #1
40 * cmp r_val, r_key
41 * ifeq
42 * add rARM_PC, r_disp ; This is the branch from which we compute displacement
43 * cbnz r_idx, lp
44 */
45void ArmMir2Lir::GenSparseSwitch(MIR* mir, uint32_t table_offset,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -070046 RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070047 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
48 if (cu_->verbose) {
49 DumpSparseSwitchTable(table);
50 }
51 // Add the table to the list - we'll process it later
52 SwitchTable *tab_rec =
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000053 static_cast<SwitchTable*>(arena_->Alloc(sizeof(SwitchTable), kArenaAllocData));
Brian Carlstrom7940e442013-07-12 13:46:57 -070054 tab_rec->table = table;
55 tab_rec->vaddr = current_dalvik_offset_;
buzbee0d829482013-10-11 15:24:55 -070056 uint32_t size = table[1];
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -070057 tab_rec->targets = static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000058 kArenaAllocLIR));
Brian Carlstrom7940e442013-07-12 13:46:57 -070059 switch_tables_.Insert(tab_rec);
60
61 // Get the switch value
62 rl_src = LoadValue(rl_src, kCoreReg);
63 int rBase = AllocTemp();
64 /* Allocate key and disp temps */
65 int r_key = AllocTemp();
66 int r_disp = AllocTemp();
67 // Make sure r_key's register number is less than r_disp's number for ldmia
68 if (r_key > r_disp) {
69 int tmp = r_disp;
70 r_disp = r_key;
71 r_key = tmp;
72 }
73 // Materialize a pointer to the switch table
buzbee0d829482013-10-11 15:24:55 -070074 NewLIR3(kThumb2Adr, rBase, 0, WrapPointer(tab_rec));
Brian Carlstrom7940e442013-07-12 13:46:57 -070075 // Set up r_idx
76 int r_idx = AllocTemp();
77 LoadConstant(r_idx, size);
78 // Establish loop branch target
79 LIR* target = NewLIR0(kPseudoTargetLabel);
80 // Load next key/disp
81 NewLIR2(kThumb2LdmiaWB, rBase, (1 << r_key) | (1 << r_disp));
Bill Buzbee00e1ec62014-02-27 23:44:13 +000082 OpRegReg(kOpCmp, r_key, rl_src.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -070083 // Go if match. NOTE: No instruction set switch here - must stay Thumb2
84 OpIT(kCondEq, "");
85 LIR* switch_branch = NewLIR1(kThumb2AddPCR, r_disp);
86 tab_rec->anchor = switch_branch;
87 // Needs to use setflags encoding here
Vladimir Markodbb8c492014-02-28 17:36:39 +000088 OpRegRegImm(kOpSub, r_idx, r_idx, 1); // For value == 1, this should set flags.
89 DCHECK(last_lir_insn_->u.m.def_mask & ENCODE_CCODE);
Brian Carlstrom7940e442013-07-12 13:46:57 -070090 OpCondBranch(kCondNe, target);
91}
92
93
94void ArmMir2Lir::GenPackedSwitch(MIR* mir, uint32_t table_offset,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -070095 RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -070096 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
97 if (cu_->verbose) {
98 DumpPackedSwitchTable(table);
99 }
100 // Add the table to the list - we'll process it later
101 SwitchTable *tab_rec =
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000102 static_cast<SwitchTable*>(arena_->Alloc(sizeof(SwitchTable), kArenaAllocData));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700103 tab_rec->table = table;
104 tab_rec->vaddr = current_dalvik_offset_;
buzbee0d829482013-10-11 15:24:55 -0700105 uint32_t size = table[1];
Brian Carlstrom7940e442013-07-12 13:46:57 -0700106 tab_rec->targets =
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000107 static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*), kArenaAllocLIR));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700108 switch_tables_.Insert(tab_rec);
109
110 // Get the switch value
111 rl_src = LoadValue(rl_src, kCoreReg);
112 int table_base = AllocTemp();
113 // Materialize a pointer to the switch table
buzbee0d829482013-10-11 15:24:55 -0700114 NewLIR3(kThumb2Adr, table_base, 0, WrapPointer(tab_rec));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 int low_key = s4FromSwitchData(&table[2]);
116 int keyReg;
117 // Remove the bias, if necessary
118 if (low_key == 0) {
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000119 keyReg = rl_src.reg.GetReg();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700120 } else {
121 keyReg = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000122 OpRegRegImm(kOpSub, keyReg, rl_src.reg.GetReg(), low_key);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700123 }
124 // Bounds check - if < 0 or >= size continue following switch
125 OpRegImm(kOpCmp, keyReg, size-1);
126 LIR* branch_over = OpCondBranch(kCondHi, NULL);
127
128 // Load the displacement from the switch table
129 int disp_reg = AllocTemp();
130 LoadBaseIndexed(table_base, keyReg, disp_reg, 2, kWord);
131
132 // ..and go! NOTE: No instruction set switch here - must stay Thumb2
133 LIR* switch_branch = NewLIR1(kThumb2AddPCR, disp_reg);
134 tab_rec->anchor = switch_branch;
135
136 /* branch_over target here */
137 LIR* target = NewLIR0(kPseudoTargetLabel);
138 branch_over->target = target;
139}
140
141/*
142 * Array data table format:
143 * ushort ident = 0x0300 magic value
144 * ushort width width of each element in the table
145 * uint size number of elements in the table
146 * ubyte data[size*width] table of data values (may contain a single-byte
147 * padding at the end)
148 *
149 * Total size is 4+(width * size + 1)/2 16-bit code units.
150 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700151void ArmMir2Lir::GenFillArrayData(uint32_t table_offset, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700152 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
153 // Add the table to the list - we'll process it later
154 FillArrayData *tab_rec =
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000155 static_cast<FillArrayData*>(arena_->Alloc(sizeof(FillArrayData), kArenaAllocData));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700156 tab_rec->table = table;
157 tab_rec->vaddr = current_dalvik_offset_;
158 uint16_t width = tab_rec->table[1];
159 uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16);
160 tab_rec->size = (size * width) + 8;
161
162 fill_array_data_.Insert(tab_rec);
163
164 // Making a call - use explicit registers
165 FlushAllRegs(); /* Everything to home location */
166 LoadValueDirectFixed(rl_src, r0);
Ian Rogers468532e2013-08-05 10:56:33 -0700167 LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pHandleFillArrayData).Int32Value(),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700168 rARM_LR);
169 // Materialize a pointer to the fill data image
buzbee0d829482013-10-11 15:24:55 -0700170 NewLIR3(kThumb2Adr, r1, 0, WrapPointer(tab_rec));
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000171 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700172 LIR* call_inst = OpReg(kOpBlx, rARM_LR);
173 MarkSafepointPC(call_inst);
174}
175
176/*
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700177 * Handle unlocked -> thin locked transition inline or else call out to quick entrypoint. For more
178 * details see monitor.cc.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700179 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700180void ArmMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 FlushAllRegs();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700182 LoadValueDirectFixed(rl_src, r0); // Get obj
183 LockCallTemps(); // Prepare for explicit register usage
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700184 constexpr bool kArchVariantHasGoodBranchPredictor = false; // TODO: true if cortex-A15.
185 if (kArchVariantHasGoodBranchPredictor) {
186 LIR* null_check_branch;
187 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
188 null_check_branch = nullptr; // No null check.
189 } else {
190 // If the null-check fails its handled by the slow-path to reduce exception related meta-data.
191 null_check_branch = OpCmpImmBranch(kCondEq, r0, 0, NULL);
192 }
193 LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2);
194 NewLIR3(kThumb2Ldrex, r1, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
195 LIR* not_unlocked_branch = OpCmpImmBranch(kCondNe, r1, 0, NULL);
196 NewLIR4(kThumb2Strex, r1, r2, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
197 LIR* lock_success_branch = OpCmpImmBranch(kCondEq, r1, 0, NULL);
198
199
200 LIR* slow_path_target = NewLIR0(kPseudoTargetLabel);
201 not_unlocked_branch->target = slow_path_target;
202 if (null_check_branch != nullptr) {
203 null_check_branch->target = slow_path_target;
204 }
205 // TODO: move to a slow path.
206 // Go expensive route - artLockObjectFromCode(obj);
207 LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pLockObject).Int32Value(), rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000208 ClobberCallerSave();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700209 LIR* call_inst = OpReg(kOpBlx, rARM_LR);
210 MarkSafepointPC(call_inst);
211
212 LIR* success_target = NewLIR0(kPseudoTargetLabel);
213 lock_success_branch->target = success_target;
214 GenMemBarrier(kLoadLoad);
215 } else {
216 // Explicit null-check as slow-path is entered using an IT.
Dave Allisonb373e092014-02-20 16:06:36 -0800217 GenNullCheck(r0, opt_flags);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700218 LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2);
Dave Allisonb373e092014-02-20 16:06:36 -0800219 MarkPossibleNullPointerException(opt_flags);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700220 NewLIR3(kThumb2Ldrex, r1, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
221 OpRegImm(kOpCmp, r1, 0);
222 OpIT(kCondEq, "");
223 NewLIR4(kThumb2Strex/*eq*/, r1, r2, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
224 OpRegImm(kOpCmp, r1, 0);
225 OpIT(kCondNe, "T");
226 // Go expensive route - artLockObjectFromCode(self, obj);
227 LoadWordDisp/*ne*/(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pLockObject).Int32Value(), rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000228 ClobberCallerSave();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700229 LIR* call_inst = OpReg(kOpBlx/*ne*/, rARM_LR);
230 MarkSafepointPC(call_inst);
231 GenMemBarrier(kLoadLoad);
232 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700233}
234
235/*
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700236 * Handle thin locked -> unlocked transition inline or else call out to quick entrypoint. For more
237 * details see monitor.cc. Note the code below doesn't use ldrex/strex as the code holds the lock
238 * and can only give away ownership if its suspended.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700239 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700240void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700241 FlushAllRegs();
242 LoadValueDirectFixed(rl_src, r0); // Get obj
243 LockCallTemps(); // Prepare for explicit register usage
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700244 LIR* null_check_branch;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700245 LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700246 constexpr bool kArchVariantHasGoodBranchPredictor = false; // TODO: true if cortex-A15.
247 if (kArchVariantHasGoodBranchPredictor) {
248 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
249 null_check_branch = nullptr; // No null check.
250 } else {
251 // If the null-check fails its handled by the slow-path to reduce exception related meta-data.
252 null_check_branch = OpCmpImmBranch(kCondEq, r0, 0, NULL);
253 }
254 LoadWordDisp(r0, mirror::Object::MonitorOffset().Int32Value(), r1);
255 LoadConstantNoClobber(r3, 0);
256 LIR* slow_unlock_branch = OpCmpBranch(kCondNe, r1, r2, NULL);
257 StoreWordDisp(r0, mirror::Object::MonitorOffset().Int32Value(), r3);
258 LIR* unlock_success_branch = OpUnconditionalBranch(NULL);
259
260 LIR* slow_path_target = NewLIR0(kPseudoTargetLabel);
261 slow_unlock_branch->target = slow_path_target;
262 if (null_check_branch != nullptr) {
263 null_check_branch->target = slow_path_target;
264 }
265 // TODO: move to a slow path.
266 // Go expensive route - artUnlockObjectFromCode(obj);
267 LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pUnlockObject).Int32Value(), rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000268 ClobberCallerSave();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700269 LIR* call_inst = OpReg(kOpBlx, rARM_LR);
270 MarkSafepointPC(call_inst);
271
272 LIR* success_target = NewLIR0(kPseudoTargetLabel);
273 unlock_success_branch->target = success_target;
274 GenMemBarrier(kStoreLoad);
275 } else {
276 // Explicit null-check as slow-path is entered using an IT.
Dave Allisonb373e092014-02-20 16:06:36 -0800277 GenNullCheck(r0, opt_flags);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700278 LoadWordDisp(r0, mirror::Object::MonitorOffset().Int32Value(), r1); // Get lock
Dave Allisonb373e092014-02-20 16:06:36 -0800279 MarkPossibleNullPointerException(opt_flags);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700280 LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2);
281 LoadConstantNoClobber(r3, 0);
282 // Is lock unheld on lock or held by us (==thread_id) on unlock?
283 OpRegReg(kOpCmp, r1, r2);
284 OpIT(kCondEq, "EE");
285 StoreWordDisp/*eq*/(r0, mirror::Object::MonitorOffset().Int32Value(), r3);
286 // Go expensive route - UnlockObjectFromCode(obj);
287 LoadWordDisp/*ne*/(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pUnlockObject).Int32Value(), rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000288 ClobberCallerSave();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700289 LIR* call_inst = OpReg(kOpBlx/*ne*/, rARM_LR);
290 MarkSafepointPC(call_inst);
291 GenMemBarrier(kStoreLoad);
292 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700293}
294
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700295void ArmMir2Lir::GenMoveException(RegLocation rl_dest) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700296 int ex_offset = Thread::ExceptionOffset().Int32Value();
297 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
298 int reset_reg = AllocTemp();
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000299 LoadWordDisp(rARM_SELF, ex_offset, rl_result.reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700300 LoadConstant(reset_reg, 0);
301 StoreWordDisp(rARM_SELF, ex_offset, reset_reg);
302 FreeTemp(reset_reg);
303 StoreValue(rl_dest, rl_result);
304}
305
306/*
307 * Mark garbage collection card. Skip if the value we're storing is null.
308 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700309void ArmMir2Lir::MarkGCCard(int val_reg, int tgt_addr_reg) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700310 int reg_card_base = AllocTemp();
311 int reg_card_no = AllocTemp();
312 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL);
313 LoadWordDisp(rARM_SELF, Thread::CardTableOffset().Int32Value(), reg_card_base);
314 OpRegRegImm(kOpLsr, reg_card_no, tgt_addr_reg, gc::accounting::CardTable::kCardShift);
315 StoreBaseIndexed(reg_card_base, reg_card_no, reg_card_base, 0,
316 kUnsignedByte);
317 LIR* target = NewLIR0(kPseudoTargetLabel);
318 branch_over->target = target;
319 FreeTemp(reg_card_base);
320 FreeTemp(reg_card_no);
321}
322
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700323void ArmMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324 int spill_count = num_core_spills_ + num_fp_spills_;
325 /*
326 * On entry, r0, r1, r2 & r3 are live. Let the register allocation
327 * mechanism know so it doesn't try to use any of them when
328 * expanding the frame or flushing. This leaves the utility
329 * code with a single temp: r12. This should be enough.
330 */
331 LockTemp(r0);
332 LockTemp(r1);
333 LockTemp(r2);
334 LockTemp(r3);
335
336 /*
337 * We can safely skip the stack overflow check if we're
338 * a leaf *and* our frame size < fudge factor.
339 */
340 bool skip_overflow_check = (mir_graph_->MethodIsLeaf() &&
341 (static_cast<size_t>(frame_size_) <
342 Thread::kStackOverflowReservedBytes));
343 NewLIR0(kPseudoMethodEntry);
344 if (!skip_overflow_check) {
Dave Allisonb373e092014-02-20 16:06:36 -0800345 if (Runtime::Current()->ExplicitStackOverflowChecks()) {
346 /* Load stack limit */
347 LoadWordDisp(rARM_SELF, Thread::StackEndOffset().Int32Value(), r12);
348 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700349 }
350 /* Spill core callee saves */
351 NewLIR1(kThumb2Push, core_spill_mask_);
352 /* Need to spill any FP regs? */
353 if (num_fp_spills_) {
354 /*
355 * NOTE: fp spills are a little different from core spills in that
356 * they are pushed as a contiguous block. When promoting from
357 * the fp set, we must allocate all singles from s16..highest-promoted
358 */
359 NewLIR1(kThumb2VPushCS, num_fp_spills_);
360 }
361 if (!skip_overflow_check) {
Dave Allisonb373e092014-02-20 16:06:36 -0800362 if (Runtime::Current()->ExplicitStackOverflowChecks()) {
363 OpRegRegImm(kOpSub, rARM_LR, rARM_SP, frame_size_ - (spill_count * 4));
364 GenRegRegCheck(kCondUlt, rARM_LR, r12, kThrowStackOverflow);
365 OpRegCopy(rARM_SP, rARM_LR); // Establish stack
366 } else {
367 // Implicit stack overflow check.
368 // Generate a load from [sp, #-framesize]. If this is in the stack
369 // redzone we will get a segmentation fault.
370 uint32_t full_frame_size = frame_size_ - (spill_count * 4);
371
372 OpRegImm(kOpSub, rARM_SP, full_frame_size);
373 LoadWordDisp(rARM_SP, 0, rARM_LR);
374 MarkPossibleStackOverflowException();
375 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700376 } else {
377 OpRegImm(kOpSub, rARM_SP, frame_size_ - (spill_count * 4));
378 }
379
380 FlushIns(ArgLocs, rl_method);
381
382 FreeTemp(r0);
383 FreeTemp(r1);
384 FreeTemp(r2);
385 FreeTemp(r3);
386}
387
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700388void ArmMir2Lir::GenExitSequence() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700389 int spill_count = num_core_spills_ + num_fp_spills_;
390 /*
391 * In the exit path, r0/r1 are live - make sure they aren't
392 * allocated by the register utilities as temps.
393 */
394 LockTemp(r0);
395 LockTemp(r1);
396
397 NewLIR0(kPseudoMethodExit);
398 OpRegImm(kOpAdd, rARM_SP, frame_size_ - (spill_count * 4));
399 /* Need to restore any FP callee saves? */
400 if (num_fp_spills_) {
401 NewLIR1(kThumb2VPopCS, num_fp_spills_);
402 }
403 if (core_spill_mask_ & (1 << rARM_LR)) {
404 /* Unspill rARM_LR to rARM_PC */
405 core_spill_mask_ &= ~(1 << rARM_LR);
406 core_spill_mask_ |= (1 << rARM_PC);
407 }
408 NewLIR1(kThumb2Pop, core_spill_mask_);
409 if (!(core_spill_mask_ & (1 << rARM_PC))) {
410 /* We didn't pop to rARM_PC, so must do a bv rARM_LR */
411 NewLIR1(kThumbBx, rARM_LR);
412 }
413}
414
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800415void ArmMir2Lir::GenSpecialExitSequence() {
416 NewLIR1(kThumbBx, rARM_LR);
417}
418
Brian Carlstrom7940e442013-07-12 13:46:57 -0700419} // namespace art