Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 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 Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 22 | #include "entrypoints/quick/quick_entrypoints.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 23 | |
| 24 | namespace art { |
| 25 | |
| 26 | |
| 27 | /* Return the position of an ssa name within the argument list */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 28 | int ArmMir2Lir::InPosition(int s_reg) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 29 | int v_reg = mir_graph_->SRegToVReg(s_reg); |
| 30 | return v_reg - cu_->num_regs; |
| 31 | } |
| 32 | |
| 33 | /* |
| 34 | * Describe an argument. If it's already in an arg register, just leave it |
| 35 | * there. NOTE: all live arg registers must be locked prior to this call |
| 36 | * to avoid having them allocated as a temp by downstream utilities. |
| 37 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 38 | RegLocation ArmMir2Lir::ArgLoc(RegLocation loc) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 39 | int arg_num = InPosition(loc.s_reg_low); |
| 40 | if (loc.wide) { |
| 41 | if (arg_num == 2) { |
| 42 | // Bad case - half in register, half in frame. Just punt |
| 43 | loc.location = kLocInvalid; |
| 44 | } else if (arg_num < 2) { |
| 45 | loc.low_reg = rARM_ARG1 + arg_num; |
| 46 | loc.high_reg = loc.low_reg + 1; |
| 47 | loc.location = kLocPhysReg; |
| 48 | } else { |
| 49 | loc.location = kLocDalvikFrame; |
| 50 | } |
| 51 | } else { |
| 52 | if (arg_num < 3) { |
| 53 | loc.low_reg = rARM_ARG1 + arg_num; |
| 54 | loc.location = kLocPhysReg; |
| 55 | } else { |
| 56 | loc.location = kLocDalvikFrame; |
| 57 | } |
| 58 | } |
| 59 | return loc; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Load an argument. If already in a register, just return. If in |
| 64 | * the frame, we can't use the normal LoadValue() because it assumed |
| 65 | * a proper frame - and we're frameless. |
| 66 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 67 | RegLocation ArmMir2Lir::LoadArg(RegLocation loc) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 68 | if (loc.location == kLocDalvikFrame) { |
| 69 | int start = (InPosition(loc.s_reg_low) + 1) * sizeof(uint32_t); |
| 70 | loc.low_reg = AllocTemp(); |
| 71 | LoadWordDisp(rARM_SP, start, loc.low_reg); |
| 72 | if (loc.wide) { |
| 73 | loc.high_reg = AllocTemp(); |
| 74 | LoadWordDisp(rARM_SP, start + sizeof(uint32_t), loc.high_reg); |
| 75 | } |
| 76 | loc.location = kLocPhysReg; |
| 77 | } |
| 78 | return loc; |
| 79 | } |
| 80 | |
| 81 | /* Lock any referenced arguments that arrive in registers */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 82 | void ArmMir2Lir::LockLiveArgs(MIR* mir) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 83 | int first_in = cu_->num_regs; |
| 84 | const int num_arg_regs = 3; // TODO: generalize & move to RegUtil.cc |
| 85 | for (int i = 0; i < mir->ssa_rep->num_uses; i++) { |
| 86 | int v_reg = mir_graph_->SRegToVReg(mir->ssa_rep->uses[i]); |
| 87 | int InPosition = v_reg - first_in; |
| 88 | if (InPosition < num_arg_regs) { |
| 89 | LockTemp(rARM_ARG1 + InPosition); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /* Find the next MIR, which may be in a following basic block */ |
| 95 | // TODO: should this be a utility in mir_graph? |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 96 | MIR* ArmMir2Lir::GetNextMir(BasicBlock** p_bb, MIR* mir) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 97 | BasicBlock* bb = *p_bb; |
| 98 | MIR* orig_mir = mir; |
| 99 | while (bb != NULL) { |
| 100 | if (mir != NULL) { |
| 101 | mir = mir->next; |
| 102 | } |
| 103 | if (mir != NULL) { |
| 104 | return mir; |
| 105 | } else { |
| 106 | bb = bb->fall_through; |
| 107 | *p_bb = bb; |
| 108 | if (bb) { |
| 109 | mir = bb->first_mir_insn; |
| 110 | if (mir != NULL) { |
| 111 | return mir; |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | return orig_mir; |
| 117 | } |
| 118 | |
| 119 | /* Used for the "verbose" listing */ |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 120 | // TODO: move to common code |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 121 | void ArmMir2Lir::GenPrintLabel(MIR* mir) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 122 | /* Mark the beginning of a Dalvik instruction for line tracking */ |
| 123 | char* inst_str = cu_->verbose ? |
| 124 | mir_graph_->GetDalvikDisassembly(mir) : NULL; |
| 125 | MarkBoundary(mir->offset, inst_str); |
| 126 | } |
| 127 | |
| 128 | MIR* ArmMir2Lir::SpecialIGet(BasicBlock** bb, MIR* mir, |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 129 | OpSize size, bool long_or_double, bool is_object) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 130 | int field_offset; |
| 131 | bool is_volatile; |
| 132 | uint32_t field_idx = mir->dalvikInsn.vC; |
| 133 | bool fast_path = FastInstance(field_idx, field_offset, is_volatile, false); |
| 134 | if (!fast_path || !(mir->optimization_flags & MIR_IGNORE_NULL_CHECK)) { |
| 135 | return NULL; |
| 136 | } |
| 137 | RegLocation rl_obj = mir_graph_->GetSrc(mir, 0); |
| 138 | LockLiveArgs(mir); |
| 139 | rl_obj = ArmMir2Lir::ArgLoc(rl_obj); |
| 140 | RegLocation rl_dest; |
| 141 | if (long_or_double) { |
| 142 | rl_dest = GetReturnWide(false); |
| 143 | } else { |
| 144 | rl_dest = GetReturn(false); |
| 145 | } |
| 146 | // Point of no return - no aborts after this |
| 147 | ArmMir2Lir::GenPrintLabel(mir); |
| 148 | rl_obj = LoadArg(rl_obj); |
| 149 | GenIGet(field_idx, mir->optimization_flags, size, rl_dest, rl_obj, long_or_double, is_object); |
| 150 | return GetNextMir(bb, mir); |
| 151 | } |
| 152 | |
| 153 | MIR* ArmMir2Lir::SpecialIPut(BasicBlock** bb, MIR* mir, |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 154 | OpSize size, bool long_or_double, bool is_object) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 155 | int field_offset; |
| 156 | bool is_volatile; |
| 157 | uint32_t field_idx = mir->dalvikInsn.vC; |
| 158 | bool fast_path = FastInstance(field_idx, field_offset, is_volatile, false); |
| 159 | if (!fast_path || !(mir->optimization_flags & MIR_IGNORE_NULL_CHECK)) { |
| 160 | return NULL; |
| 161 | } |
| 162 | RegLocation rl_src; |
| 163 | RegLocation rl_obj; |
| 164 | LockLiveArgs(mir); |
| 165 | if (long_or_double) { |
| 166 | rl_src = mir_graph_->GetSrcWide(mir, 0); |
| 167 | rl_obj = mir_graph_->GetSrc(mir, 2); |
| 168 | } else { |
| 169 | rl_src = mir_graph_->GetSrc(mir, 0); |
| 170 | rl_obj = mir_graph_->GetSrc(mir, 1); |
| 171 | } |
| 172 | rl_src = ArmMir2Lir::ArgLoc(rl_src); |
| 173 | rl_obj = ArmMir2Lir::ArgLoc(rl_obj); |
| 174 | // Reject if source is split across registers & frame |
| 175 | if (rl_obj.location == kLocInvalid) { |
| 176 | ResetRegPool(); |
| 177 | return NULL; |
| 178 | } |
| 179 | // Point of no return - no aborts after this |
| 180 | ArmMir2Lir::GenPrintLabel(mir); |
| 181 | rl_obj = LoadArg(rl_obj); |
| 182 | rl_src = LoadArg(rl_src); |
| 183 | GenIPut(field_idx, mir->optimization_flags, size, rl_src, rl_obj, long_or_double, is_object); |
| 184 | return GetNextMir(bb, mir); |
| 185 | } |
| 186 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 187 | MIR* ArmMir2Lir::SpecialIdentity(MIR* mir) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 188 | RegLocation rl_src; |
| 189 | RegLocation rl_dest; |
| 190 | bool wide = (mir->ssa_rep->num_uses == 2); |
| 191 | if (wide) { |
| 192 | rl_src = mir_graph_->GetSrcWide(mir, 0); |
| 193 | rl_dest = GetReturnWide(false); |
| 194 | } else { |
| 195 | rl_src = mir_graph_->GetSrc(mir, 0); |
| 196 | rl_dest = GetReturn(false); |
| 197 | } |
| 198 | LockLiveArgs(mir); |
| 199 | rl_src = ArmMir2Lir::ArgLoc(rl_src); |
| 200 | if (rl_src.location == kLocInvalid) { |
| 201 | ResetRegPool(); |
| 202 | return NULL; |
| 203 | } |
| 204 | // Point of no return - no aborts after this |
| 205 | ArmMir2Lir::GenPrintLabel(mir); |
| 206 | rl_src = LoadArg(rl_src); |
| 207 | if (wide) { |
| 208 | StoreValueWide(rl_dest, rl_src); |
| 209 | } else { |
| 210 | StoreValue(rl_dest, rl_src); |
| 211 | } |
| 212 | return mir; |
| 213 | } |
| 214 | |
| 215 | /* |
| 216 | * Special-case code genration for simple non-throwing leaf methods. |
| 217 | */ |
| 218 | void ArmMir2Lir::GenSpecialCase(BasicBlock* bb, MIR* mir, |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 219 | SpecialCaseHandler special_case) { |
Brian Carlstrom | 6f485c6 | 2013-07-18 15:35:35 -0700 | [diff] [blame] | 220 | current_dalvik_offset_ = mir->offset; |
| 221 | MIR* next_mir = NULL; |
| 222 | switch (special_case) { |
| 223 | case kNullMethod: |
| 224 | DCHECK(mir->dalvikInsn.opcode == Instruction::RETURN_VOID); |
| 225 | next_mir = mir; |
| 226 | break; |
| 227 | case kConstFunction: |
| 228 | ArmMir2Lir::GenPrintLabel(mir); |
| 229 | LoadConstant(rARM_RET0, mir->dalvikInsn.vB); |
| 230 | next_mir = GetNextMir(&bb, mir); |
| 231 | break; |
| 232 | case kIGet: |
| 233 | next_mir = SpecialIGet(&bb, mir, kWord, false, false); |
| 234 | break; |
| 235 | case kIGetBoolean: |
| 236 | case kIGetByte: |
| 237 | next_mir = SpecialIGet(&bb, mir, kUnsignedByte, false, false); |
| 238 | break; |
| 239 | case kIGetObject: |
| 240 | next_mir = SpecialIGet(&bb, mir, kWord, false, true); |
| 241 | break; |
| 242 | case kIGetChar: |
| 243 | next_mir = SpecialIGet(&bb, mir, kUnsignedHalf, false, false); |
| 244 | break; |
| 245 | case kIGetShort: |
| 246 | next_mir = SpecialIGet(&bb, mir, kSignedHalf, false, false); |
| 247 | break; |
| 248 | case kIGetWide: |
| 249 | next_mir = SpecialIGet(&bb, mir, kLong, true, false); |
| 250 | break; |
| 251 | case kIPut: |
| 252 | next_mir = SpecialIPut(&bb, mir, kWord, false, false); |
| 253 | break; |
| 254 | case kIPutBoolean: |
| 255 | case kIPutByte: |
| 256 | next_mir = SpecialIPut(&bb, mir, kUnsignedByte, false, false); |
| 257 | break; |
| 258 | case kIPutObject: |
| 259 | next_mir = SpecialIPut(&bb, mir, kWord, false, true); |
| 260 | break; |
| 261 | case kIPutChar: |
| 262 | next_mir = SpecialIPut(&bb, mir, kUnsignedHalf, false, false); |
| 263 | break; |
| 264 | case kIPutShort: |
| 265 | next_mir = SpecialIPut(&bb, mir, kSignedHalf, false, false); |
| 266 | break; |
| 267 | case kIPutWide: |
| 268 | next_mir = SpecialIPut(&bb, mir, kLong, true, false); |
| 269 | break; |
| 270 | case kIdentity: |
| 271 | next_mir = SpecialIdentity(mir); |
| 272 | break; |
| 273 | default: |
| 274 | return; |
| 275 | } |
| 276 | if (next_mir != NULL) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 277 | current_dalvik_offset_ = next_mir->offset; |
| 278 | if (special_case != kIdentity) { |
| 279 | ArmMir2Lir::GenPrintLabel(next_mir); |
| 280 | } |
| 281 | NewLIR1(kThumbBx, rARM_LR); |
| 282 | core_spill_mask_ = 0; |
| 283 | num_core_spills_ = 0; |
| 284 | fp_spill_mask_ = 0; |
| 285 | num_fp_spills_ = 0; |
| 286 | frame_size_ = 0; |
| 287 | core_vmap_table_.clear(); |
| 288 | fp_vmap_table_.clear(); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * The sparse table in the literal pool is an array of <key,displacement> |
| 294 | * pairs. For each set, we'll load them as a pair using ldmia. |
| 295 | * This means that the register number of the temp we use for the key |
| 296 | * must be lower than the reg for the displacement. |
| 297 | * |
| 298 | * The test loop will look something like: |
| 299 | * |
| 300 | * adr rBase, <table> |
| 301 | * ldr r_val, [rARM_SP, v_reg_off] |
| 302 | * mov r_idx, #table_size |
| 303 | * lp: |
| 304 | * ldmia rBase!, {r_key, r_disp} |
| 305 | * sub r_idx, #1 |
| 306 | * cmp r_val, r_key |
| 307 | * ifeq |
| 308 | * add rARM_PC, r_disp ; This is the branch from which we compute displacement |
| 309 | * cbnz r_idx, lp |
| 310 | */ |
| 311 | void ArmMir2Lir::GenSparseSwitch(MIR* mir, uint32_t table_offset, |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 312 | RegLocation rl_src) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 313 | const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset; |
| 314 | if (cu_->verbose) { |
| 315 | DumpSparseSwitchTable(table); |
| 316 | } |
| 317 | // Add the table to the list - we'll process it later |
| 318 | SwitchTable *tab_rec = |
Mathieu Chartier | f6c4b3b | 2013-08-24 16:11:37 -0700 | [diff] [blame^] | 319 | static_cast<SwitchTable*>(arena_->Alloc(sizeof(SwitchTable), ArenaAllocator::kAllocData)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 320 | tab_rec->table = table; |
| 321 | tab_rec->vaddr = current_dalvik_offset_; |
| 322 | int size = table[1]; |
Mathieu Chartier | f6c4b3b | 2013-08-24 16:11:37 -0700 | [diff] [blame^] | 323 | tab_rec->targets = static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*), |
| 324 | ArenaAllocator::kAllocLIR)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 325 | switch_tables_.Insert(tab_rec); |
| 326 | |
| 327 | // Get the switch value |
| 328 | rl_src = LoadValue(rl_src, kCoreReg); |
| 329 | int rBase = AllocTemp(); |
| 330 | /* Allocate key and disp temps */ |
| 331 | int r_key = AllocTemp(); |
| 332 | int r_disp = AllocTemp(); |
| 333 | // Make sure r_key's register number is less than r_disp's number for ldmia |
| 334 | if (r_key > r_disp) { |
| 335 | int tmp = r_disp; |
| 336 | r_disp = r_key; |
| 337 | r_key = tmp; |
| 338 | } |
| 339 | // Materialize a pointer to the switch table |
| 340 | NewLIR3(kThumb2Adr, rBase, 0, reinterpret_cast<uintptr_t>(tab_rec)); |
| 341 | // Set up r_idx |
| 342 | int r_idx = AllocTemp(); |
| 343 | LoadConstant(r_idx, size); |
| 344 | // Establish loop branch target |
| 345 | LIR* target = NewLIR0(kPseudoTargetLabel); |
| 346 | // Load next key/disp |
| 347 | NewLIR2(kThumb2LdmiaWB, rBase, (1 << r_key) | (1 << r_disp)); |
| 348 | OpRegReg(kOpCmp, r_key, rl_src.low_reg); |
| 349 | // Go if match. NOTE: No instruction set switch here - must stay Thumb2 |
| 350 | OpIT(kCondEq, ""); |
| 351 | LIR* switch_branch = NewLIR1(kThumb2AddPCR, r_disp); |
| 352 | tab_rec->anchor = switch_branch; |
| 353 | // Needs to use setflags encoding here |
| 354 | NewLIR3(kThumb2SubsRRI12, r_idx, r_idx, 1); |
| 355 | OpCondBranch(kCondNe, target); |
| 356 | } |
| 357 | |
| 358 | |
| 359 | void ArmMir2Lir::GenPackedSwitch(MIR* mir, uint32_t table_offset, |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 360 | RegLocation rl_src) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 361 | const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset; |
| 362 | if (cu_->verbose) { |
| 363 | DumpPackedSwitchTable(table); |
| 364 | } |
| 365 | // Add the table to the list - we'll process it later |
| 366 | SwitchTable *tab_rec = |
Mathieu Chartier | f6c4b3b | 2013-08-24 16:11:37 -0700 | [diff] [blame^] | 367 | static_cast<SwitchTable*>(arena_->Alloc(sizeof(SwitchTable), ArenaAllocator::kAllocData)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 368 | tab_rec->table = table; |
| 369 | tab_rec->vaddr = current_dalvik_offset_; |
| 370 | int size = table[1]; |
| 371 | tab_rec->targets = |
Mathieu Chartier | f6c4b3b | 2013-08-24 16:11:37 -0700 | [diff] [blame^] | 372 | static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*), ArenaAllocator::kAllocLIR)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 373 | switch_tables_.Insert(tab_rec); |
| 374 | |
| 375 | // Get the switch value |
| 376 | rl_src = LoadValue(rl_src, kCoreReg); |
| 377 | int table_base = AllocTemp(); |
| 378 | // Materialize a pointer to the switch table |
| 379 | NewLIR3(kThumb2Adr, table_base, 0, reinterpret_cast<uintptr_t>(tab_rec)); |
| 380 | int low_key = s4FromSwitchData(&table[2]); |
| 381 | int keyReg; |
| 382 | // Remove the bias, if necessary |
| 383 | if (low_key == 0) { |
| 384 | keyReg = rl_src.low_reg; |
| 385 | } else { |
| 386 | keyReg = AllocTemp(); |
| 387 | OpRegRegImm(kOpSub, keyReg, rl_src.low_reg, low_key); |
| 388 | } |
| 389 | // Bounds check - if < 0 or >= size continue following switch |
| 390 | OpRegImm(kOpCmp, keyReg, size-1); |
| 391 | LIR* branch_over = OpCondBranch(kCondHi, NULL); |
| 392 | |
| 393 | // Load the displacement from the switch table |
| 394 | int disp_reg = AllocTemp(); |
| 395 | LoadBaseIndexed(table_base, keyReg, disp_reg, 2, kWord); |
| 396 | |
| 397 | // ..and go! NOTE: No instruction set switch here - must stay Thumb2 |
| 398 | LIR* switch_branch = NewLIR1(kThumb2AddPCR, disp_reg); |
| 399 | tab_rec->anchor = switch_branch; |
| 400 | |
| 401 | /* branch_over target here */ |
| 402 | LIR* target = NewLIR0(kPseudoTargetLabel); |
| 403 | branch_over->target = target; |
| 404 | } |
| 405 | |
| 406 | /* |
| 407 | * Array data table format: |
| 408 | * ushort ident = 0x0300 magic value |
| 409 | * ushort width width of each element in the table |
| 410 | * uint size number of elements in the table |
| 411 | * ubyte data[size*width] table of data values (may contain a single-byte |
| 412 | * padding at the end) |
| 413 | * |
| 414 | * Total size is 4+(width * size + 1)/2 16-bit code units. |
| 415 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 416 | void ArmMir2Lir::GenFillArrayData(uint32_t table_offset, RegLocation rl_src) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 417 | const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset; |
| 418 | // Add the table to the list - we'll process it later |
| 419 | FillArrayData *tab_rec = |
Mathieu Chartier | f6c4b3b | 2013-08-24 16:11:37 -0700 | [diff] [blame^] | 420 | static_cast<FillArrayData*>(arena_->Alloc(sizeof(FillArrayData), ArenaAllocator::kAllocData)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 421 | tab_rec->table = table; |
| 422 | tab_rec->vaddr = current_dalvik_offset_; |
| 423 | uint16_t width = tab_rec->table[1]; |
| 424 | uint32_t size = tab_rec->table[2] | ((static_cast<uint32_t>(tab_rec->table[3])) << 16); |
| 425 | tab_rec->size = (size * width) + 8; |
| 426 | |
| 427 | fill_array_data_.Insert(tab_rec); |
| 428 | |
| 429 | // Making a call - use explicit registers |
| 430 | FlushAllRegs(); /* Everything to home location */ |
| 431 | LoadValueDirectFixed(rl_src, r0); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 432 | LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pHandleFillArrayData).Int32Value(), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 433 | rARM_LR); |
| 434 | // Materialize a pointer to the fill data image |
| 435 | NewLIR3(kThumb2Adr, r1, 0, reinterpret_cast<uintptr_t>(tab_rec)); |
| 436 | ClobberCalleeSave(); |
| 437 | LIR* call_inst = OpReg(kOpBlx, rARM_LR); |
| 438 | MarkSafepointPC(call_inst); |
| 439 | } |
| 440 | |
| 441 | /* |
| 442 | * Handle simple case (thin lock) inline. If it's complicated, bail |
| 443 | * out to the heavyweight lock/unlock routines. We'll use dedicated |
| 444 | * registers here in order to be in the right position in case we |
| 445 | * to bail to oat[Lock/Unlock]Object(self, object) |
| 446 | * |
| 447 | * r0 -> self pointer [arg0 for oat[Lock/Unlock]Object |
| 448 | * r1 -> object [arg1 for oat[Lock/Unlock]Object |
| 449 | * r2 -> intial contents of object->lock, later result of strex |
| 450 | * r3 -> self->thread_id |
| 451 | * r12 -> allow to be used by utilities as general temp |
| 452 | * |
| 453 | * The result of the strex is 0 if we acquire the lock. |
| 454 | * |
| 455 | * See comments in monitor.cc for the layout of the lock word. |
| 456 | * Of particular interest to this code is the test for the |
| 457 | * simple case - which we handle inline. For monitor enter, the |
| 458 | * simple case is thin lock, held by no-one. For monitor exit, |
| 459 | * the simple case is thin lock, held by the unlocking thread with |
| 460 | * a recurse count of 0. |
| 461 | * |
| 462 | * A minor complication is that there is a field in the lock word |
| 463 | * unrelated to locking: the hash state. This field must be ignored, but |
| 464 | * preserved. |
| 465 | * |
| 466 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 467 | void ArmMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 468 | FlushAllRegs(); |
| 469 | DCHECK_EQ(LW_SHAPE_THIN, 0); |
| 470 | LoadValueDirectFixed(rl_src, r0); // Get obj |
| 471 | LockCallTemps(); // Prepare for explicit register usage |
| 472 | GenNullCheck(rl_src.s_reg_low, r0, opt_flags); |
| 473 | LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2); |
| 474 | NewLIR3(kThumb2Ldrex, r1, r0, |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 475 | mirror::Object::MonitorOffset().Int32Value() >> 2); // Get object->lock |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 476 | // Align owner |
| 477 | OpRegImm(kOpLsl, r2, LW_LOCK_OWNER_SHIFT); |
| 478 | // Is lock unheld on lock or held by us (==thread_id) on unlock? |
| 479 | NewLIR4(kThumb2Bfi, r2, r1, 0, LW_LOCK_OWNER_SHIFT - 1); |
| 480 | NewLIR3(kThumb2Bfc, r1, LW_HASH_STATE_SHIFT, LW_LOCK_OWNER_SHIFT - 1); |
| 481 | OpRegImm(kOpCmp, r1, 0); |
| 482 | OpIT(kCondEq, ""); |
| 483 | NewLIR4(kThumb2Strex, r1, r2, r0, |
| 484 | mirror::Object::MonitorOffset().Int32Value() >> 2); |
| 485 | OpRegImm(kOpCmp, r1, 0); |
| 486 | OpIT(kCondNe, "T"); |
| 487 | // Go expensive route - artLockObjectFromCode(self, obj); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 488 | LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pLockObject).Int32Value(), rARM_LR); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 489 | ClobberCalleeSave(); |
| 490 | LIR* call_inst = OpReg(kOpBlx, rARM_LR); |
| 491 | MarkSafepointPC(call_inst); |
| 492 | GenMemBarrier(kLoadLoad); |
| 493 | } |
| 494 | |
| 495 | /* |
| 496 | * For monitor unlock, we don't have to use ldrex/strex. Once |
| 497 | * we've determined that the lock is thin and that we own it with |
| 498 | * a zero recursion count, it's safe to punch it back to the |
| 499 | * initial, unlock thin state with a store word. |
| 500 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 501 | void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 502 | DCHECK_EQ(LW_SHAPE_THIN, 0); |
| 503 | FlushAllRegs(); |
| 504 | LoadValueDirectFixed(rl_src, r0); // Get obj |
| 505 | LockCallTemps(); // Prepare for explicit register usage |
| 506 | GenNullCheck(rl_src.s_reg_low, r0, opt_flags); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 507 | LoadWordDisp(r0, mirror::Object::MonitorOffset().Int32Value(), r1); // Get lock |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 508 | LoadWordDisp(rARM_SELF, Thread::ThinLockIdOffset().Int32Value(), r2); |
| 509 | // Is lock unheld on lock or held by us (==thread_id) on unlock? |
| 510 | OpRegRegImm(kOpAnd, r3, r1, |
| 511 | (LW_HASH_STATE_MASK << LW_HASH_STATE_SHIFT)); |
| 512 | // Align owner |
| 513 | OpRegImm(kOpLsl, r2, LW_LOCK_OWNER_SHIFT); |
| 514 | NewLIR3(kThumb2Bfc, r1, LW_HASH_STATE_SHIFT, LW_LOCK_OWNER_SHIFT - 1); |
| 515 | OpRegReg(kOpSub, r1, r2); |
| 516 | OpIT(kCondEq, "EE"); |
| 517 | StoreWordDisp(r0, mirror::Object::MonitorOffset().Int32Value(), r3); |
| 518 | // Go expensive route - UnlockObjectFromCode(obj); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 519 | LoadWordDisp(rARM_SELF, QUICK_ENTRYPOINT_OFFSET(pUnlockObject).Int32Value(), rARM_LR); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 520 | ClobberCalleeSave(); |
| 521 | LIR* call_inst = OpReg(kOpBlx, rARM_LR); |
| 522 | MarkSafepointPC(call_inst); |
| 523 | GenMemBarrier(kStoreLoad); |
| 524 | } |
| 525 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 526 | void ArmMir2Lir::GenMoveException(RegLocation rl_dest) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 527 | int ex_offset = Thread::ExceptionOffset().Int32Value(); |
| 528 | RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true); |
| 529 | int reset_reg = AllocTemp(); |
| 530 | LoadWordDisp(rARM_SELF, ex_offset, rl_result.low_reg); |
| 531 | LoadConstant(reset_reg, 0); |
| 532 | StoreWordDisp(rARM_SELF, ex_offset, reset_reg); |
| 533 | FreeTemp(reset_reg); |
| 534 | StoreValue(rl_dest, rl_result); |
| 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Mark garbage collection card. Skip if the value we're storing is null. |
| 539 | */ |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 540 | void ArmMir2Lir::MarkGCCard(int val_reg, int tgt_addr_reg) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 541 | int reg_card_base = AllocTemp(); |
| 542 | int reg_card_no = AllocTemp(); |
| 543 | LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL); |
| 544 | LoadWordDisp(rARM_SELF, Thread::CardTableOffset().Int32Value(), reg_card_base); |
| 545 | OpRegRegImm(kOpLsr, reg_card_no, tgt_addr_reg, gc::accounting::CardTable::kCardShift); |
| 546 | StoreBaseIndexed(reg_card_base, reg_card_no, reg_card_base, 0, |
| 547 | kUnsignedByte); |
| 548 | LIR* target = NewLIR0(kPseudoTargetLabel); |
| 549 | branch_over->target = target; |
| 550 | FreeTemp(reg_card_base); |
| 551 | FreeTemp(reg_card_no); |
| 552 | } |
| 553 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 554 | void ArmMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 555 | int spill_count = num_core_spills_ + num_fp_spills_; |
| 556 | /* |
| 557 | * On entry, r0, r1, r2 & r3 are live. Let the register allocation |
| 558 | * mechanism know so it doesn't try to use any of them when |
| 559 | * expanding the frame or flushing. This leaves the utility |
| 560 | * code with a single temp: r12. This should be enough. |
| 561 | */ |
| 562 | LockTemp(r0); |
| 563 | LockTemp(r1); |
| 564 | LockTemp(r2); |
| 565 | LockTemp(r3); |
| 566 | |
| 567 | /* |
| 568 | * We can safely skip the stack overflow check if we're |
| 569 | * a leaf *and* our frame size < fudge factor. |
| 570 | */ |
| 571 | bool skip_overflow_check = (mir_graph_->MethodIsLeaf() && |
| 572 | (static_cast<size_t>(frame_size_) < |
| 573 | Thread::kStackOverflowReservedBytes)); |
| 574 | NewLIR0(kPseudoMethodEntry); |
| 575 | if (!skip_overflow_check) { |
| 576 | /* Load stack limit */ |
| 577 | LoadWordDisp(rARM_SELF, Thread::StackEndOffset().Int32Value(), r12); |
| 578 | } |
| 579 | /* Spill core callee saves */ |
| 580 | NewLIR1(kThumb2Push, core_spill_mask_); |
| 581 | /* Need to spill any FP regs? */ |
| 582 | if (num_fp_spills_) { |
| 583 | /* |
| 584 | * NOTE: fp spills are a little different from core spills in that |
| 585 | * they are pushed as a contiguous block. When promoting from |
| 586 | * the fp set, we must allocate all singles from s16..highest-promoted |
| 587 | */ |
| 588 | NewLIR1(kThumb2VPushCS, num_fp_spills_); |
| 589 | } |
| 590 | if (!skip_overflow_check) { |
| 591 | OpRegRegImm(kOpSub, rARM_LR, rARM_SP, frame_size_ - (spill_count * 4)); |
| 592 | GenRegRegCheck(kCondCc, rARM_LR, r12, kThrowStackOverflow); |
| 593 | OpRegCopy(rARM_SP, rARM_LR); // Establish stack |
| 594 | } else { |
| 595 | OpRegImm(kOpSub, rARM_SP, frame_size_ - (spill_count * 4)); |
| 596 | } |
| 597 | |
| 598 | FlushIns(ArgLocs, rl_method); |
| 599 | |
| 600 | FreeTemp(r0); |
| 601 | FreeTemp(r1); |
| 602 | FreeTemp(r2); |
| 603 | FreeTemp(r3); |
| 604 | } |
| 605 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 606 | void ArmMir2Lir::GenExitSequence() { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 607 | int spill_count = num_core_spills_ + num_fp_spills_; |
| 608 | /* |
| 609 | * In the exit path, r0/r1 are live - make sure they aren't |
| 610 | * allocated by the register utilities as temps. |
| 611 | */ |
| 612 | LockTemp(r0); |
| 613 | LockTemp(r1); |
| 614 | |
| 615 | NewLIR0(kPseudoMethodExit); |
| 616 | OpRegImm(kOpAdd, rARM_SP, frame_size_ - (spill_count * 4)); |
| 617 | /* Need to restore any FP callee saves? */ |
| 618 | if (num_fp_spills_) { |
| 619 | NewLIR1(kThumb2VPopCS, num_fp_spills_); |
| 620 | } |
| 621 | if (core_spill_mask_ & (1 << rARM_LR)) { |
| 622 | /* Unspill rARM_LR to rARM_PC */ |
| 623 | core_spill_mask_ &= ~(1 << rARM_LR); |
| 624 | core_spill_mask_ |= (1 << rARM_PC); |
| 625 | } |
| 626 | NewLIR1(kThumb2Pop, core_spill_mask_); |
| 627 | if (!(core_spill_mask_ & (1 << rARM_PC))) { |
| 628 | /* We didn't pop to rARM_PC, so must do a bv rARM_LR */ |
| 629 | NewLIR1(kThumbBx, rARM_LR); |
| 630 | } |
| 631 | } |
| 632 | |
| 633 | } // namespace art |