blob: d6724f1382e650591ce2d727e52922edd7d98f02 [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 *
buzbee2700f7e2014-03-07 09:46:20 -080034 * adr r_base, <table>
Brian Carlstrom7940e442013-07-12 13:46:57 -070035 * ldr r_val, [rARM_SP, v_reg_off]
36 * mov r_idx, #table_size
37 * lp:
buzbee2700f7e2014-03-07 09:46:20 -080038 * ldmia r_base!, {r_key, r_disp}
Brian Carlstrom7940e442013-07-12 13:46:57 -070039 * 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);
buzbee2700f7e2014-03-07 09:46:20 -080063 RegStorage r_base = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -070064 /* Allocate key and disp temps */
buzbee2700f7e2014-03-07 09:46:20 -080065 RegStorage r_key = AllocTemp();
66 RegStorage r_disp = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -070067 // Make sure r_key's register number is less than r_disp's number for ldmia
buzbee2700f7e2014-03-07 09:46:20 -080068 if (r_key.GetReg() > r_disp.GetReg()) {
69 RegStorage tmp = r_disp;
Brian Carlstrom7940e442013-07-12 13:46:57 -070070 r_disp = r_key;
71 r_key = tmp;
72 }
73 // Materialize a pointer to the switch table
buzbee2700f7e2014-03-07 09:46:20 -080074 NewLIR3(kThumb2Adr, r_base.GetReg(), 0, WrapPointer(tab_rec));
Brian Carlstrom7940e442013-07-12 13:46:57 -070075 // Set up r_idx
buzbee2700f7e2014-03-07 09:46:20 -080076 RegStorage r_idx = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -070077 LoadConstant(r_idx, size);
78 // Establish loop branch target
79 LIR* target = NewLIR0(kPseudoTargetLabel);
80 // Load next key/disp
buzbee2700f7e2014-03-07 09:46:20 -080081 NewLIR2(kThumb2LdmiaWB, r_base.GetReg(), (1 << r_key.GetReg()) | (1 << r_disp.GetReg()));
82 OpRegReg(kOpCmp, r_key, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -070083 // Go if match. NOTE: No instruction set switch here - must stay Thumb2
84 OpIT(kCondEq, "");
buzbee2700f7e2014-03-07 09:46:20 -080085 LIR* switch_branch = NewLIR1(kThumb2AddPCR, r_disp.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -070086 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);
buzbee2700f7e2014-03-07 09:46:20 -0800112 RegStorage table_base = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113 // Materialize a pointer to the switch table
buzbee2700f7e2014-03-07 09:46:20 -0800114 NewLIR3(kThumb2Adr, table_base.GetReg(), 0, WrapPointer(tab_rec));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 int low_key = s4FromSwitchData(&table[2]);
buzbee2700f7e2014-03-07 09:46:20 -0800116 RegStorage keyReg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700117 // Remove the bias, if necessary
118 if (low_key == 0) {
buzbee2700f7e2014-03-07 09:46:20 -0800119 keyReg = rl_src.reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700120 } else {
121 keyReg = AllocTemp();
buzbee2700f7e2014-03-07 09:46:20 -0800122 OpRegRegImm(kOpSub, keyReg, rl_src.reg, 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
buzbee2700f7e2014-03-07 09:46:20 -0800129 RegStorage disp_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 LoadBaseIndexed(table_base, keyReg, disp_reg, 2, kWord);
131
132 // ..and go! NOTE: No instruction set switch here - must stay Thumb2
buzbee2700f7e2014-03-07 09:46:20 -0800133 LIR* switch_branch = NewLIR1(kThumb2AddPCR, disp_reg.GetReg());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700134 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 */
buzbee2700f7e2014-03-07 09:46:20 -0800166 LoadValueDirectFixed(rl_src, rs_r0);
167 LoadWordDisp(rs_rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pHandleFillArrayData).Int32Value(),
168 rs_rARM_LR);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700169 // 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();
buzbee2700f7e2014-03-07 09:46:20 -0800172 LIR* call_inst = OpReg(kOpBlx, rs_rARM_LR);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700173 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();
buzbee2700f7e2014-03-07 09:46:20 -0800182 LoadValueDirectFixed(rl_src, rs_r0); // Get obj
Brian Carlstrom7940e442013-07-12 13:46:57 -0700183 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) {
Dave Allisonf9439142014-03-27 15:10:22 -0700186 LIR* null_check_branch = nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700187 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.
Dave Allisonf9439142014-03-27 15:10:22 -0700191 if (Runtime::Current()->ExplicitNullChecks()) {
192 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, NULL);
193 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700194 }
buzbee2700f7e2014-03-07 09:46:20 -0800195 LoadWordDisp(rs_rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), rs_r2);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700196 NewLIR3(kThumb2Ldrex, r1, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
Dave Allisonf9439142014-03-27 15:10:22 -0700197 MarkPossibleNullPointerException(opt_flags);
buzbee2700f7e2014-03-07 09:46:20 -0800198 LIR* not_unlocked_branch = OpCmpImmBranch(kCondNe, rs_r1, 0, NULL);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700199 NewLIR4(kThumb2Strex, r1, r2, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
buzbee2700f7e2014-03-07 09:46:20 -0800200 LIR* lock_success_branch = OpCmpImmBranch(kCondEq, rs_r1, 0, NULL);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700201
202
203 LIR* slow_path_target = NewLIR0(kPseudoTargetLabel);
204 not_unlocked_branch->target = slow_path_target;
205 if (null_check_branch != nullptr) {
206 null_check_branch->target = slow_path_target;
207 }
208 // TODO: move to a slow path.
209 // Go expensive route - artLockObjectFromCode(obj);
buzbee2700f7e2014-03-07 09:46:20 -0800210 LoadWordDisp(rs_rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pLockObject).Int32Value(), rs_rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000211 ClobberCallerSave();
buzbee2700f7e2014-03-07 09:46:20 -0800212 LIR* call_inst = OpReg(kOpBlx, rs_rARM_LR);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700213 MarkSafepointPC(call_inst);
214
215 LIR* success_target = NewLIR0(kPseudoTargetLabel);
216 lock_success_branch->target = success_target;
217 GenMemBarrier(kLoadLoad);
218 } else {
219 // Explicit null-check as slow-path is entered using an IT.
buzbee2700f7e2014-03-07 09:46:20 -0800220 GenNullCheck(rs_r0, opt_flags);
221 LoadWordDisp(rs_rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), rs_r2);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700222 NewLIR3(kThumb2Ldrex, r1, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
Dave Allisonf9439142014-03-27 15:10:22 -0700223 MarkPossibleNullPointerException(opt_flags);
buzbee2700f7e2014-03-07 09:46:20 -0800224 OpRegImm(kOpCmp, rs_r1, 0);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700225 OpIT(kCondEq, "");
226 NewLIR4(kThumb2Strex/*eq*/, r1, r2, r0, mirror::Object::MonitorOffset().Int32Value() >> 2);
buzbee2700f7e2014-03-07 09:46:20 -0800227 OpRegImm(kOpCmp, rs_r1, 0);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700228 OpIT(kCondNe, "T");
229 // Go expensive route - artLockObjectFromCode(self, obj);
buzbee2700f7e2014-03-07 09:46:20 -0800230 LoadWordDisp/*ne*/(rs_rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pLockObject).Int32Value(), rs_rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000231 ClobberCallerSave();
buzbee2700f7e2014-03-07 09:46:20 -0800232 LIR* call_inst = OpReg(kOpBlx/*ne*/, rs_rARM_LR);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700233 MarkSafepointPC(call_inst);
234 GenMemBarrier(kLoadLoad);
235 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236}
237
238/*
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700239 * Handle thin locked -> unlocked transition inline or else call out to quick entrypoint. For more
240 * details see monitor.cc. Note the code below doesn't use ldrex/strex as the code holds the lock
241 * and can only give away ownership if its suspended.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700242 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700243void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700244 FlushAllRegs();
buzbee2700f7e2014-03-07 09:46:20 -0800245 LoadValueDirectFixed(rl_src, rs_r0); // Get obj
Brian Carlstrom7940e442013-07-12 13:46:57 -0700246 LockCallTemps(); // Prepare for explicit register usage
Dave Allisonf9439142014-03-27 15:10:22 -0700247 LIR* null_check_branch = nullptr;
buzbee2700f7e2014-03-07 09:46:20 -0800248 LoadWordDisp(rs_rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), rs_r2);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700249 constexpr bool kArchVariantHasGoodBranchPredictor = false; // TODO: true if cortex-A15.
250 if (kArchVariantHasGoodBranchPredictor) {
251 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
252 null_check_branch = nullptr; // No null check.
253 } else {
254 // If the null-check fails its handled by the slow-path to reduce exception related meta-data.
Dave Allisonf9439142014-03-27 15:10:22 -0700255 if (Runtime::Current()->ExplicitNullChecks()) {
256 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, NULL);
257 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700258 }
buzbee2700f7e2014-03-07 09:46:20 -0800259 LoadWordDisp(rs_r0, mirror::Object::MonitorOffset().Int32Value(), rs_r1);
Dave Allisonf9439142014-03-27 15:10:22 -0700260 MarkPossibleNullPointerException(opt_flags);
buzbee2700f7e2014-03-07 09:46:20 -0800261 LoadConstantNoClobber(rs_r3, 0);
262 LIR* slow_unlock_branch = OpCmpBranch(kCondNe, rs_r1, rs_r2, NULL);
263 StoreWordDisp(rs_r0, mirror::Object::MonitorOffset().Int32Value(), rs_r3);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700264 LIR* unlock_success_branch = OpUnconditionalBranch(NULL);
265
266 LIR* slow_path_target = NewLIR0(kPseudoTargetLabel);
267 slow_unlock_branch->target = slow_path_target;
268 if (null_check_branch != nullptr) {
269 null_check_branch->target = slow_path_target;
270 }
271 // TODO: move to a slow path.
272 // Go expensive route - artUnlockObjectFromCode(obj);
buzbee2700f7e2014-03-07 09:46:20 -0800273 LoadWordDisp(rs_rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pUnlockObject).Int32Value(), rs_rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000274 ClobberCallerSave();
buzbee2700f7e2014-03-07 09:46:20 -0800275 LIR* call_inst = OpReg(kOpBlx, rs_rARM_LR);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700276 MarkSafepointPC(call_inst);
277
278 LIR* success_target = NewLIR0(kPseudoTargetLabel);
279 unlock_success_branch->target = success_target;
280 GenMemBarrier(kStoreLoad);
281 } else {
282 // Explicit null-check as slow-path is entered using an IT.
buzbee2700f7e2014-03-07 09:46:20 -0800283 GenNullCheck(rs_r0, opt_flags);
284 LoadWordDisp(rs_r0, mirror::Object::MonitorOffset().Int32Value(), rs_r1); // Get lock
Dave Allisonb373e092014-02-20 16:06:36 -0800285 MarkPossibleNullPointerException(opt_flags);
buzbee2700f7e2014-03-07 09:46:20 -0800286 LoadWordDisp(rs_rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), rs_r2);
287 LoadConstantNoClobber(rs_r3, 0);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700288 // Is lock unheld on lock or held by us (==thread_id) on unlock?
buzbee2700f7e2014-03-07 09:46:20 -0800289 OpRegReg(kOpCmp, rs_r1, rs_r2);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700290 OpIT(kCondEq, "EE");
buzbee2700f7e2014-03-07 09:46:20 -0800291 StoreWordDisp/*eq*/(rs_r0, mirror::Object::MonitorOffset().Int32Value(), rs_r3);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700292 // Go expensive route - UnlockObjectFromCode(obj);
buzbee2700f7e2014-03-07 09:46:20 -0800293 LoadWordDisp/*ne*/(rs_rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pUnlockObject).Int32Value(),
294 rs_rARM_LR);
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000295 ClobberCallerSave();
buzbee2700f7e2014-03-07 09:46:20 -0800296 LIR* call_inst = OpReg(kOpBlx/*ne*/, rs_rARM_LR);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700297 MarkSafepointPC(call_inst);
298 GenMemBarrier(kStoreLoad);
299 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700300}
301
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700302void ArmMir2Lir::GenMoveException(RegLocation rl_dest) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700303 int ex_offset = Thread::ExceptionOffset().Int32Value();
304 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -0800305 RegStorage reset_reg = AllocTemp();
306 LoadWordDisp(rs_rARM_SELF, ex_offset, rl_result.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700307 LoadConstant(reset_reg, 0);
buzbee2700f7e2014-03-07 09:46:20 -0800308 StoreWordDisp(rs_rARM_SELF, ex_offset, reset_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700309 FreeTemp(reset_reg);
310 StoreValue(rl_dest, rl_result);
311}
312
313/*
314 * Mark garbage collection card. Skip if the value we're storing is null.
315 */
buzbee2700f7e2014-03-07 09:46:20 -0800316void ArmMir2Lir::MarkGCCard(RegStorage val_reg, RegStorage tgt_addr_reg) {
317 RegStorage reg_card_base = AllocTemp();
318 RegStorage reg_card_no = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700319 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL);
buzbee2700f7e2014-03-07 09:46:20 -0800320 LoadWordDisp(rs_rARM_SELF, Thread::CardTableOffset().Int32Value(), reg_card_base);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700321 OpRegRegImm(kOpLsr, reg_card_no, tgt_addr_reg, gc::accounting::CardTable::kCardShift);
buzbee2700f7e2014-03-07 09:46:20 -0800322 StoreBaseIndexed(reg_card_base, reg_card_no, reg_card_base, 0, kUnsignedByte);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323 LIR* target = NewLIR0(kPseudoTargetLabel);
324 branch_over->target = target;
325 FreeTemp(reg_card_base);
326 FreeTemp(reg_card_no);
327}
328
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700329void ArmMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700330 int spill_count = num_core_spills_ + num_fp_spills_;
331 /*
332 * On entry, r0, r1, r2 & r3 are live. Let the register allocation
333 * mechanism know so it doesn't try to use any of them when
334 * expanding the frame or flushing. This leaves the utility
335 * code with a single temp: r12. This should be enough.
336 */
337 LockTemp(r0);
338 LockTemp(r1);
339 LockTemp(r2);
340 LockTemp(r3);
341
342 /*
343 * We can safely skip the stack overflow check if we're
344 * a leaf *and* our frame size < fudge factor.
345 */
346 bool skip_overflow_check = (mir_graph_->MethodIsLeaf() &&
347 (static_cast<size_t>(frame_size_) <
348 Thread::kStackOverflowReservedBytes));
349 NewLIR0(kPseudoMethodEntry);
350 if (!skip_overflow_check) {
Dave Allisonb373e092014-02-20 16:06:36 -0800351 if (Runtime::Current()->ExplicitStackOverflowChecks()) {
352 /* Load stack limit */
buzbee2700f7e2014-03-07 09:46:20 -0800353 LoadWordDisp(rs_rARM_SELF, Thread::StackEndOffset().Int32Value(), rs_r12);
Dave Allisonb373e092014-02-20 16:06:36 -0800354 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700355 }
356 /* Spill core callee saves */
357 NewLIR1(kThumb2Push, core_spill_mask_);
358 /* Need to spill any FP regs? */
359 if (num_fp_spills_) {
360 /*
361 * NOTE: fp spills are a little different from core spills in that
362 * they are pushed as a contiguous block. When promoting from
363 * the fp set, we must allocate all singles from s16..highest-promoted
364 */
365 NewLIR1(kThumb2VPushCS, num_fp_spills_);
366 }
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700367
368 // TODO: 64 bit will be different code.
369 const int frame_size_without_spills = frame_size_ - spill_count * 4;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370 if (!skip_overflow_check) {
Dave Allisonb373e092014-02-20 16:06:36 -0800371 if (Runtime::Current()->ExplicitStackOverflowChecks()) {
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700372 class StackOverflowSlowPath : public LIRSlowPath {
373 public:
374 StackOverflowSlowPath(Mir2Lir* m2l, LIR* branch, bool restore_lr, size_t sp_displace)
375 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch, nullptr), restore_lr_(restore_lr),
376 sp_displace_(sp_displace) {
377 }
378 void Compile() OVERRIDE {
379 m2l_->ResetRegPool();
380 m2l_->ResetDefTracking();
381 GenerateTargetLabel();
382 if (restore_lr_) {
buzbee2700f7e2014-03-07 09:46:20 -0800383 m2l_->LoadWordDisp(rs_rARM_SP, sp_displace_ - 4, rs_rARM_LR);
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700384 }
buzbee2700f7e2014-03-07 09:46:20 -0800385 m2l_->OpRegImm(kOpAdd, rs_rARM_SP, sp_displace_);
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700386 m2l_->ClobberCallerSave();
387 ThreadOffset func_offset = QUICK_ENTRYPOINT_OFFSET(pThrowStackOverflow);
388 // Load the entrypoint directly into the pc instead of doing a load + branch. Assumes
389 // codegen and target are in thumb2 mode.
buzbee2700f7e2014-03-07 09:46:20 -0800390 m2l_->LoadWordDisp(rs_rARM_SELF, func_offset.Int32Value(), rs_rARM_PC);
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700391 }
392
393 private:
394 const bool restore_lr_;
395 const size_t sp_displace_;
396 };
397 if (static_cast<size_t>(frame_size_) > Thread::kStackOverflowReservedUsableBytes) {
buzbee2700f7e2014-03-07 09:46:20 -0800398 OpRegRegImm(kOpSub, rs_rARM_LR, rs_rARM_SP, frame_size_without_spills);
399 LIR* branch = OpCmpBranch(kCondUlt, rs_rARM_LR, rs_r12, nullptr);
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700400 // Need to restore LR since we used it as a temp.
401 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, true,
402 frame_size_without_spills));
buzbee2700f7e2014-03-07 09:46:20 -0800403 OpRegCopy(rs_rARM_SP, rs_rARM_LR); // Establish stack
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700404 } else {
405 // If the frame is small enough we are guaranteed to have enough space that remains to
406 // handle signals on the user stack.
buzbee2700f7e2014-03-07 09:46:20 -0800407 OpRegRegImm(kOpSub, rs_rARM_SP, rs_rARM_SP, frame_size_without_spills);
408 LIR* branch = OpCmpBranch(kCondUlt, rs_rARM_SP, rs_r12, nullptr);
Mathieu Chartier0d507d12014-03-19 10:17:28 -0700409 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, false, frame_size_));
410 }
Dave Allisonb373e092014-02-20 16:06:36 -0800411 } else {
412 // Implicit stack overflow check.
Dave Allisonf9439142014-03-27 15:10:22 -0700413 // Generate a load from [sp, #-overflowsize]. If this is in the stack
Dave Allisonb373e092014-02-20 16:06:36 -0800414 // redzone we will get a segmentation fault.
Dave Allisonf9439142014-03-27 15:10:22 -0700415 //
416 // Caveat coder: if someone changes the kStackOverflowReservedBytes value
417 // we need to make sure that it's loadable in an immediate field of
418 // a sub instruction. Otherwise we will get a temp allocation and the
419 // code size will increase.
420 OpRegRegImm(kOpSub, rs_r12, rs_rARM_SP, Thread::kStackOverflowReservedBytes);
421 LoadWordDisp(rs_r12, 0, rs_r12);
Dave Allisonb373e092014-02-20 16:06:36 -0800422 MarkPossibleStackOverflowException();
Dave Allisonf9439142014-03-27 15:10:22 -0700423 OpRegImm(kOpSub, rs_rARM_SP, frame_size_without_spills);
Dave Allisonb373e092014-02-20 16:06:36 -0800424 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700425 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800426 OpRegImm(kOpSub, rs_rARM_SP, frame_size_without_spills);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427 }
428
429 FlushIns(ArgLocs, rl_method);
430
431 FreeTemp(r0);
432 FreeTemp(r1);
433 FreeTemp(r2);
434 FreeTemp(r3);
435}
436
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700437void ArmMir2Lir::GenExitSequence() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700438 int spill_count = num_core_spills_ + num_fp_spills_;
439 /*
440 * In the exit path, r0/r1 are live - make sure they aren't
441 * allocated by the register utilities as temps.
442 */
443 LockTemp(r0);
444 LockTemp(r1);
445
446 NewLIR0(kPseudoMethodExit);
buzbee2700f7e2014-03-07 09:46:20 -0800447 OpRegImm(kOpAdd, rs_rARM_SP, frame_size_ - (spill_count * 4));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700448 /* Need to restore any FP callee saves? */
449 if (num_fp_spills_) {
450 NewLIR1(kThumb2VPopCS, num_fp_spills_);
451 }
452 if (core_spill_mask_ & (1 << rARM_LR)) {
453 /* Unspill rARM_LR to rARM_PC */
454 core_spill_mask_ &= ~(1 << rARM_LR);
455 core_spill_mask_ |= (1 << rARM_PC);
456 }
457 NewLIR1(kThumb2Pop, core_spill_mask_);
458 if (!(core_spill_mask_ & (1 << rARM_PC))) {
459 /* We didn't pop to rARM_PC, so must do a bv rARM_LR */
460 NewLIR1(kThumbBx, rARM_LR);
461 }
462}
463
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800464void ArmMir2Lir::GenSpecialExitSequence() {
465 NewLIR1(kThumbBx, rARM_LR);
466}
467
Brian Carlstrom7940e442013-07-12 13:46:57 -0700468} // namespace art