blob: d2351997b7fd7f87b18f74cfdc1a6774a8f5307d [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_DEX_QUICK_ARM_CODEGEN_ARM_H_
18#define ART_COMPILER_DEX_QUICK_ARM_CODEGEN_ARM_H_
Brian Carlstrom7940e442013-07-12 13:46:57 -070019
Ian Rogers107c31e2014-01-23 20:55:29 -080020#include "arm_lir.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include "dex/compiler_internals.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070022#include "dex/quick/mir_to_lir.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010023#include "utils/arena_containers.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070024
25namespace art {
26
Ian Rogerse2143c02014-03-28 08:47:16 -070027class ArmMir2Lir FINAL : public Mir2Lir {
Zheng Xu5667fdb2014-10-23 18:29:55 +080028 protected:
29 // TODO: Consolidate hard float target support.
30 // InToRegStorageMapper and InToRegStorageMapping can be shared with all backends.
31 // Base class used to get RegStorage for next argument.
32 class InToRegStorageMapper {
33 public:
34 virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide) = 0;
35 virtual ~InToRegStorageMapper() {
36 }
37 };
38
39 // Inherited class for ARM backend.
40 class InToRegStorageArmMapper FINAL : public InToRegStorageMapper {
41 public:
42 InToRegStorageArmMapper()
43 : cur_core_reg_(0), cur_fp_reg_(0), cur_fp_double_reg_(0) {
44 }
45
46 virtual ~InToRegStorageArmMapper() {
47 }
48
49 RegStorage GetNextReg(bool is_double_or_float, bool is_wide) OVERRIDE;
50
51 private:
52 uint32_t cur_core_reg_;
53 uint32_t cur_fp_reg_;
54 uint32_t cur_fp_double_reg_;
55 };
56
57 // Class to map argument to RegStorage. The mapping object is initialized by a mapper.
58 class InToRegStorageMapping FINAL {
59 public:
60 InToRegStorageMapping()
61 : max_mapped_in_(0), is_there_stack_mapped_(false), initialized_(false) {
62 }
63
64 int GetMaxMappedIn() const {
65 return max_mapped_in_;
66 }
67
68 bool IsThereStackMapped() const {
69 return is_there_stack_mapped_;
70 }
71
72 bool IsInitialized() const {
73 return initialized_;
74 }
75
76 void Initialize(RegLocation* arg_locs, int count, InToRegStorageMapper* mapper);
77 RegStorage Get(int in_position) const;
78
79 private:
80 std::map<int, RegStorage> mapping_;
81 int max_mapped_in_;
82 bool is_there_stack_mapped_;
83 bool initialized_;
84 };
85
Brian Carlstrom7940e442013-07-12 13:46:57 -070086 public:
87 ArmMir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena);
88
89 // Required for target - codegen helpers.
buzbee11b63d12013-08-27 07:34:17 -070090 bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div, RegLocation rl_src,
buzbee2700f7e2014-03-07 09:46:20 -080091 RegLocation rl_dest, int lit);
Ian Rogerse2143c02014-03-28 08:47:16 -070092 bool EasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) OVERRIDE;
Ningsheng Jian675e09b2014-10-23 13:48:36 +080093 void GenMultiplyByConstantFloat(RegLocation rl_dest, RegLocation rl_src1,
94 int32_t constant) OVERRIDE;
95 void GenMultiplyByConstantDouble(RegLocation rl_dest, RegLocation rl_src1,
96 int64_t constant) OVERRIDE;
Dave Allisonb373e092014-02-20 16:06:36 -080097 LIR* CheckSuspendUsingLoad() OVERRIDE;
Andreas Gampe98430592014-07-27 19:44:50 -070098 RegStorage LoadHelper(QuickEntrypointEnum trampoline) OVERRIDE;
Vladimir Marko3bf7c602014-05-07 14:55:43 +010099 LIR* LoadBaseDisp(RegStorage r_base, int displacement, RegStorage r_dest,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000100 OpSize size, VolatileKind is_volatile) OVERRIDE;
buzbee2700f7e2014-03-07 09:46:20 -0800101 LIR* LoadBaseIndexed(RegStorage r_base, RegStorage r_index, RegStorage r_dest, int scale,
Vladimir Marko3bf7c602014-05-07 14:55:43 +0100102 OpSize size) OVERRIDE;
buzbee2700f7e2014-03-07 09:46:20 -0800103 LIR* LoadConstantNoClobber(RegStorage r_dest, int value);
104 LIR* LoadConstantWide(RegStorage r_dest, int64_t value);
Vladimir Marko3bf7c602014-05-07 14:55:43 +0100105 LIR* StoreBaseDisp(RegStorage r_base, int displacement, RegStorage r_src,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000106 OpSize size, VolatileKind is_volatile) OVERRIDE;
buzbee2700f7e2014-03-07 09:46:20 -0800107 LIR* StoreBaseIndexed(RegStorage r_base, RegStorage r_index, RegStorage r_src, int scale,
Vladimir Marko3bf7c602014-05-07 14:55:43 +0100108 OpSize size) OVERRIDE;
buzbee2700f7e2014-03-07 09:46:20 -0800109 void MarkGCCard(RegStorage val_reg, RegStorage tgt_addr_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110
111 // Required for target - register utilities.
Zheng Xu5667fdb2014-10-23 18:29:55 +0800112 RegStorage TargetReg(SpecialTargetRegister reg) OVERRIDE;
113 RegStorage TargetReg(SpecialTargetRegister reg, WideKind wide_kind) OVERRIDE {
114 if (wide_kind == kWide) {
115 DCHECK((kArg0 <= reg && reg < kArg3) || (kFArg0 <= reg && reg < kFArg15) || (kRet0 == reg));
116 RegStorage ret_reg = RegStorage::MakeRegPair(TargetReg(reg),
117 TargetReg(static_cast<SpecialTargetRegister>(reg + 1)));
118 if (ret_reg.IsFloat()) {
119 // Regard double as double, be consistent with register allocation.
120 ret_reg = As64BitFloatReg(ret_reg);
121 }
122 return ret_reg;
123 } else {
124 return TargetReg(reg);
125 }
126 }
127
128 RegStorage GetArgMappingToPhysicalReg(int arg_num) OVERRIDE;
129 RegLocation GetReturnAlt() OVERRIDE;
130 RegLocation GetReturnWideAlt() OVERRIDE;
131 RegLocation LocCReturn() OVERRIDE;
132 RegLocation LocCReturnRef() OVERRIDE;
133 RegLocation LocCReturnDouble() OVERRIDE;
134 RegLocation LocCReturnFloat() OVERRIDE;
135 RegLocation LocCReturnWide() OVERRIDE;
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100136 ResourceMask GetRegMaskCommon(const RegStorage& reg) const OVERRIDE;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700137 void AdjustSpillMask();
Vladimir Marko31c2aac2013-12-09 16:31:19 +0000138 void ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700139 void FreeCallTemps();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700140 void LockCallTemps();
buzbee091cc402014-03-31 10:14:40 -0700141 void MarkPreservedSingle(int v_reg, RegStorage reg);
142 void MarkPreservedDouble(int v_reg, RegStorage reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700143 void CompilerInitializeRegAlloc();
144
145 // Required for target - miscellaneous.
buzbeeb48819d2013-09-14 16:15:25 -0700146 void AssembleLIR();
Vladimir Marko306f0172014-01-07 18:21:20 +0000147 uint32_t LinkFixupInsns(LIR* head_lir, LIR* tail_lir, CodeOffset offset);
buzbeeb48819d2013-09-14 16:15:25 -0700148 int AssignInsnOffsets();
149 void AssignOffsets();
Vladimir Marko306f0172014-01-07 18:21:20 +0000150 static uint8_t* EncodeLIRs(uint8_t* write_pos, LIR* lir);
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100151 void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE;
152 void SetupTargetResourceMasks(LIR* lir, uint64_t flags,
153 ResourceMask* use_mask, ResourceMask* def_mask) OVERRIDE;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700154 const char* GetTargetInstFmt(int opcode);
155 const char* GetTargetInstName(int opcode);
156 std::string BuildInsnString(const char* fmt, LIR* lir, unsigned char* base_addr);
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100157 ResourceMask GetPCUseDefEncoding() const OVERRIDE;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700158 uint64_t GetTargetInstFlags(int opcode);
Ian Rogers5aa6e042014-06-13 16:38:24 -0700159 size_t GetInsnSize(LIR* lir) OVERRIDE;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700160 bool IsUnconditionalBranch(LIR* lir);
161
Vladimir Marko674744e2014-04-24 15:18:26 +0100162 // Get the register class for load/store of a field.
163 RegisterClass RegClassForFieldLoadStore(OpSize size, bool is_volatile) OVERRIDE;
164
Brian Carlstrom7940e442013-07-12 13:46:57 -0700165 // Required for target - Dalvik-level generators.
Andreas Gampec76c6142014-08-04 16:30:03 -0700166 void GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700167 RegLocation rl_src2, int flags) OVERRIDE;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700168 void GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700169 RegLocation rl_src1, RegLocation rl_src2, int flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700170 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
171 RegLocation rl_index, RegLocation rl_dest, int scale);
Ian Rogersa9a82542013-10-04 11:17:26 -0700172 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
173 RegLocation rl_src, int scale, bool card_mark);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700174 void GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700175 RegLocation rl_src1, RegLocation rl_shift, int flags);
buzbee2700f7e2014-03-07 09:46:20 -0800176 void GenArithOpDouble(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
177 RegLocation rl_src2);
178 void GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
179 RegLocation rl_src2);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700180 void GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
181 RegLocation rl_src2);
182 void GenConversion(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src);
Vladimir Marko5030d3e2014-07-17 10:43:08 +0100183 bool GenInlinedAbsFloat(CallInfo* info) OVERRIDE;
184 bool GenInlinedAbsDouble(CallInfo* info) OVERRIDE;
Vladimir Marko1c282e22013-11-21 14:49:47 +0000185 bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object);
Serban Constantinescu23abec92014-07-02 16:13:38 +0100186 bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700187 bool GenInlinedSqrt(CallInfo* info);
Vladimir Markoe508a202013-11-04 15:24:22 +0000188 bool GenInlinedPeek(CallInfo* info, OpSize size);
189 bool GenInlinedPoke(CallInfo* info, OpSize size);
Zheng Xu947717a2014-08-07 14:05:23 +0800190 bool GenInlinedArrayCopyCharArray(CallInfo* info) OVERRIDE;
buzbee2700f7e2014-03-07 09:46:20 -0800191 RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div);
192 RegLocation GenDivRemLit(RegLocation rl_dest, RegStorage reg_lo, int lit, bool is_div);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700193 void GenCmpLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2);
Mingyao Yange643a172014-04-08 11:02:52 -0700194 void GenDivZeroCheckWide(RegStorage reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700195 void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method);
196 void GenExitSequence();
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800197 void GenSpecialExitSequence();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double);
199 void GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir);
200 void GenSelect(BasicBlock* bb, MIR* mir);
Andreas Gampe90969af2014-07-15 23:02:11 -0700201 void GenSelectConst32(RegStorage left_op, RegStorage right_op, ConditionCode code,
202 int32_t true_val, int32_t false_val, RegStorage rs_dest,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700203 RegisterClass dest_reg_class) OVERRIDE;
Andreas Gampeb14329f2014-05-15 11:16:06 -0700204 bool GenMemBarrier(MemBarrierKind barrier_kind);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700205 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
206 void GenMonitorExit(int opt_flags, RegLocation rl_src);
207 void GenMoveException(RegLocation rl_dest);
208 void GenMultiplyByTwoBitMultiplier(RegLocation rl_src, RegLocation rl_result, int lit,
buzbee2700f7e2014-03-07 09:46:20 -0800209 int first_bit, int second_bit);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 void GenNegDouble(RegLocation rl_dest, RegLocation rl_src);
211 void GenNegFloat(RegLocation rl_dest, RegLocation rl_src);
Andreas Gampe48971b32014-08-06 10:09:01 -0700212 void GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src);
213 void GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700214
215 // Required for target - single operation generators.
216 LIR* OpUnconditionalBranch(LIR* target);
buzbee2700f7e2014-03-07 09:46:20 -0800217 LIR* OpCmpBranch(ConditionCode cond, RegStorage src1, RegStorage src2, LIR* target);
218 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700219 LIR* OpCondBranch(ConditionCode cc, LIR* target);
buzbee2700f7e2014-03-07 09:46:20 -0800220 LIR* OpDecAndBranch(ConditionCode c_code, RegStorage reg, LIR* target);
221 LIR* OpFpRegCopy(RegStorage r_dest, RegStorage r_src);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700222 LIR* OpIT(ConditionCode cond, const char* guide);
Andreas Gampeb14329f2014-05-15 11:16:06 -0700223 void UpdateIT(LIR* it, const char* new_guide);
Dave Allison3da67a52014-04-02 17:03:45 -0700224 void OpEndIT(LIR* it);
buzbee2700f7e2014-03-07 09:46:20 -0800225 LIR* OpMem(OpKind op, RegStorage r_base, int disp);
226 LIR* OpPcRelLoad(RegStorage reg, LIR* target);
227 LIR* OpReg(OpKind op, RegStorage r_dest_src);
buzbee7a11ab02014-04-28 20:02:38 -0700228 void OpRegCopy(RegStorage r_dest, RegStorage r_src);
buzbee2700f7e2014-03-07 09:46:20 -0800229 LIR* OpRegCopyNoInsert(RegStorage r_dest, RegStorage r_src);
230 LIR* OpRegImm(OpKind op, RegStorage r_dest_src1, int value);
buzbee2700f7e2014-03-07 09:46:20 -0800231 LIR* OpRegReg(OpKind op, RegStorage r_dest_src1, RegStorage r_src2);
232 LIR* OpMovRegMem(RegStorage r_dest, RegStorage r_base, int offset, MoveType move_type);
233 LIR* OpMovMemReg(RegStorage r_base, int offset, RegStorage r_src, MoveType move_type);
234 LIR* OpCondRegReg(OpKind op, ConditionCode cc, RegStorage r_dest, RegStorage r_src);
235 LIR* OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value);
236 LIR* OpRegRegReg(OpKind op, RegStorage r_dest, RegStorage r_src1, RegStorage r_src2);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237 LIR* OpTestSuspend(LIR* target);
buzbee2700f7e2014-03-07 09:46:20 -0800238 LIR* OpVldm(RegStorage r_base, int count);
239 LIR* OpVstm(RegStorage r_base, int count);
buzbee2700f7e2014-03-07 09:46:20 -0800240 void OpRegCopyWide(RegStorage dest, RegStorage src);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700241
Vladimir Marko3bf7c602014-05-07 14:55:43 +0100242 LIR* LoadBaseDispBody(RegStorage r_base, int displacement, RegStorage r_dest, OpSize size);
buzbee2700f7e2014-03-07 09:46:20 -0800243 LIR* StoreBaseDispBody(RegStorage r_base, int displacement, RegStorage r_src, OpSize size);
Ian Rogerse2143c02014-03-28 08:47:16 -0700244 LIR* OpRegRegRegShift(OpKind op, RegStorage r_dest, RegStorage r_src1, RegStorage r_src2,
245 int shift);
246 LIR* OpRegRegShift(OpKind op, RegStorage r_dest_src1, RegStorage r_src2, int shift);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700247 static const ArmEncodingMap EncodingMap[kArmLast];
248 int EncodeShift(int code, int amount);
249 int ModifiedImmediate(uint32_t value);
250 ArmConditionCode ArmConditionEncoding(ConditionCode code);
251 bool InexpensiveConstantInt(int32_t value);
252 bool InexpensiveConstantFloat(int32_t value);
253 bool InexpensiveConstantLong(int64_t value);
254 bool InexpensiveConstantDouble(int64_t value);
buzbeeb5860fb2014-06-21 15:31:01 -0700255 RegStorage AllocPreservedDouble(int s_reg);
256 RegStorage AllocPreservedSingle(int s_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700257
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700258 bool WideGPRsAreAliases() const OVERRIDE {
Serguei Katkov59a42af2014-07-05 00:55:46 +0700259 return false; // Wide GPRs are formed by pairing.
260 }
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700261 bool WideFPRsAreAliases() const OVERRIDE {
Serguei Katkov59a42af2014-07-05 00:55:46 +0700262 return false; // Wide FPRs are formed by pairing.
263 }
264
Vladimir Markof4da6752014-08-01 19:04:18 +0100265 NextCallInsn GetNextSDCallInsn() OVERRIDE;
266
267 /*
268 * @brief Generate a relative call to the method that will be patched at link time.
269 * @param target_method The MethodReference of the method to be invoked.
270 * @param type How the method will be invoked.
271 * @returns Call instruction
272 */
273 LIR* CallWithLinkerFixup(const MethodReference& target_method, InvokeType type);
274
275 /*
276 * @brief Generate the actual call insn based on the method info.
277 * @param method_info the lowering info for the method call.
278 * @returns Call instruction
279 */
280 LIR* GenCallInsn(const MirMethodLoweringInfo& method_info) OVERRIDE;
281
282 /*
283 * @brief Handle ARM specific literals.
284 */
285 void InstallLiteralPools() OVERRIDE;
286
Andreas Gampe98430592014-07-27 19:44:50 -0700287 LIR* InvokeTrampoline(OpKind op, RegStorage r_tgt, QuickEntrypointEnum trampoline) OVERRIDE;
Serban Constantinescu63999682014-07-15 17:44:21 +0100288 size_t GetInstructionOffset(LIR* lir);
Andreas Gampe98430592014-07-27 19:44:50 -0700289
Zheng Xu5667fdb2014-10-23 18:29:55 +0800290 int GenDalvikArgsNoRange(CallInfo* info, int call_state, LIR** pcrLabel,
291 NextCallInsn next_call_insn,
292 const MethodReference& target_method,
293 uint32_t vtable_idx,
294 uintptr_t direct_code, uintptr_t direct_method, InvokeType type,
295 bool skip_this) OVERRIDE;
296 int GenDalvikArgsRange(CallInfo* info, int call_state, LIR** pcrLabel,
297 NextCallInsn next_call_insn,
298 const MethodReference& target_method,
299 uint32_t vtable_idx,
300 uintptr_t direct_code, uintptr_t direct_method, InvokeType type,
301 bool skip_this) OVERRIDE;
302
Brian Carlstrom7940e442013-07-12 13:46:57 -0700303 private:
Andreas Gampec76c6142014-08-04 16:30:03 -0700304 void GenNegLong(RegLocation rl_dest, RegLocation rl_src);
305 void GenMulLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
306 RegLocation rl_src2);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700307 void GenFusedLongCmpImmBranch(BasicBlock* bb, RegLocation rl_src1, int64_t val,
308 ConditionCode ccode);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700309 LIR* LoadFPConstantValue(int r_dest, int value);
Vladimir Marko37573972014-06-16 10:32:25 +0100310 LIR* LoadStoreUsingInsnWithOffsetImm8Shl2(ArmOpcode opcode, RegStorage r_base,
311 int displacement, RegStorage r_src_dest,
312 RegStorage r_work = RegStorage::InvalidReg());
buzbeeb48819d2013-09-14 16:15:25 -0700313 void ReplaceFixup(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);
314 void InsertFixupBefore(LIR* prev_lir, LIR* orig_lir, LIR* new_lir);
315 void AssignDataOffsets();
buzbee2700f7e2014-03-07 09:46:20 -0800316 RegLocation GenDivRem(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700317 bool is_div, int flags) OVERRIDE;
318 RegLocation GenDivRemLit(RegLocation rl_dest, RegLocation rl_src1, int lit, bool is_div) OVERRIDE;
Zheng Xu5667fdb2014-10-23 18:29:55 +0800319 struct EasyMultiplyOp {
Ian Rogerse2143c02014-03-28 08:47:16 -0700320 OpKind op;
321 uint32_t shift;
Zheng Xu5667fdb2014-10-23 18:29:55 +0800322 };
Ian Rogerse2143c02014-03-28 08:47:16 -0700323 bool GetEasyMultiplyOp(int lit, EasyMultiplyOp* op);
324 bool GetEasyMultiplyTwoOps(int lit, EasyMultiplyOp* ops);
325 void GenEasyMultiplyTwoOps(RegStorage r_dest, RegStorage r_src, EasyMultiplyOp* ops);
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100326
327 static constexpr ResourceMask GetRegMaskArm(RegStorage reg);
328 static constexpr ResourceMask EncodeArmRegList(int reg_list);
329 static constexpr ResourceMask EncodeArmRegFpcsList(int reg_list);
Vladimir Markof4da6752014-08-01 19:04:18 +0100330
331 ArenaVector<LIR*> call_method_insns_;
Zheng Xu5667fdb2014-10-23 18:29:55 +0800332
333 /**
334 * @brief Given float register pair, returns Solo64 float register.
335 * @param reg #RegStorage containing a float register pair (e.g. @c s2 and @c s3).
336 * @return A Solo64 float mapping to the register pair (e.g. @c d1).
337 */
338 static RegStorage As64BitFloatReg(RegStorage reg) {
339 DCHECK(reg.IsFloat());
340
341 RegStorage low = reg.GetLow();
342 RegStorage high = reg.GetHigh();
343 DCHECK((low.GetRegNum() % 2 == 0) && (low.GetRegNum() + 1 == high.GetRegNum()));
344
345 return RegStorage::FloatSolo64(low.GetRegNum() / 2);
346 }
347
348 /**
349 * @brief Given Solo64 float register, returns float register pair.
350 * @param reg #RegStorage containing a Solo64 float register (e.g. @c d1).
351 * @return A float register pair mapping to the Solo64 float pair (e.g. @c s2 and s3).
352 */
353 static RegStorage As64BitFloatRegPair(RegStorage reg) {
354 DCHECK(reg.IsDouble() && reg.Is64BitSolo());
355
356 int reg_num = reg.GetRegNum();
357 return RegStorage::MakeRegPair(RegStorage::FloatSolo32(reg_num * 2),
358 RegStorage::FloatSolo32(reg_num * 2 + 1));
359 }
360
361 InToRegStorageMapping in_to_reg_storage_mapping_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362};
363
364} // namespace art
365
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700366#endif // ART_COMPILER_DEX_QUICK_ARM_CODEGEN_ARM_H_