Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_COMPILER_DEX_QUICK_MIR_TO_LIR_H_ |
| 18 | #define ART_COMPILER_DEX_QUICK_MIR_TO_LIR_H_ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 19 | |
| 20 | #include "invoke_type.h" |
| 21 | #include "compiled_method.h" |
| 22 | #include "dex/compiler_enums.h" |
| 23 | #include "dex/compiler_ir.h" |
| 24 | #include "dex/backend.h" |
| 25 | #include "dex/growable_array.h" |
| 26 | #include "dex/arena_allocator.h" |
| 27 | #include "driver/compiler_driver.h" |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 28 | #include "leb128_encoder.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 29 | #include "safe_map.h" |
| 30 | |
| 31 | namespace art { |
| 32 | |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 33 | /* |
| 34 | * TODO: refactoring pass to move these (and other) typdefs towards usage style of runtime to |
| 35 | * add type safety (see runtime/offsets.h). |
| 36 | */ |
| 37 | typedef uint32_t DexOffset; // Dex offset in code units. |
| 38 | typedef uint16_t NarrowDexOffset; // For use in structs, Dex offsets range from 0 .. 0xffff. |
| 39 | typedef uint32_t CodeOffset; // Native code offset in bytes. |
| 40 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 41 | // Set to 1 to measure cost of suspend check. |
| 42 | #define NO_SUSPEND 0 |
| 43 | |
| 44 | #define IS_BINARY_OP (1ULL << kIsBinaryOp) |
| 45 | #define IS_BRANCH (1ULL << kIsBranch) |
| 46 | #define IS_IT (1ULL << kIsIT) |
| 47 | #define IS_LOAD (1ULL << kMemLoad) |
| 48 | #define IS_QUAD_OP (1ULL << kIsQuadOp) |
| 49 | #define IS_QUIN_OP (1ULL << kIsQuinOp) |
| 50 | #define IS_SEXTUPLE_OP (1ULL << kIsSextupleOp) |
| 51 | #define IS_STORE (1ULL << kMemStore) |
| 52 | #define IS_TERTIARY_OP (1ULL << kIsTertiaryOp) |
| 53 | #define IS_UNARY_OP (1ULL << kIsUnaryOp) |
| 54 | #define NEEDS_FIXUP (1ULL << kPCRelFixup) |
| 55 | #define NO_OPERAND (1ULL << kNoOperand) |
| 56 | #define REG_DEF0 (1ULL << kRegDef0) |
| 57 | #define REG_DEF1 (1ULL << kRegDef1) |
| 58 | #define REG_DEFA (1ULL << kRegDefA) |
| 59 | #define REG_DEFD (1ULL << kRegDefD) |
| 60 | #define REG_DEF_FPCS_LIST0 (1ULL << kRegDefFPCSList0) |
| 61 | #define REG_DEF_FPCS_LIST2 (1ULL << kRegDefFPCSList2) |
| 62 | #define REG_DEF_LIST0 (1ULL << kRegDefList0) |
| 63 | #define REG_DEF_LIST1 (1ULL << kRegDefList1) |
| 64 | #define REG_DEF_LR (1ULL << kRegDefLR) |
| 65 | #define REG_DEF_SP (1ULL << kRegDefSP) |
| 66 | #define REG_USE0 (1ULL << kRegUse0) |
| 67 | #define REG_USE1 (1ULL << kRegUse1) |
| 68 | #define REG_USE2 (1ULL << kRegUse2) |
| 69 | #define REG_USE3 (1ULL << kRegUse3) |
| 70 | #define REG_USE4 (1ULL << kRegUse4) |
| 71 | #define REG_USEA (1ULL << kRegUseA) |
| 72 | #define REG_USEC (1ULL << kRegUseC) |
| 73 | #define REG_USED (1ULL << kRegUseD) |
Vladimir Marko | 70b797d | 2013-12-03 15:25:24 +0000 | [diff] [blame] | 74 | #define REG_USEB (1ULL << kRegUseB) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 75 | #define REG_USE_FPCS_LIST0 (1ULL << kRegUseFPCSList0) |
| 76 | #define REG_USE_FPCS_LIST2 (1ULL << kRegUseFPCSList2) |
| 77 | #define REG_USE_LIST0 (1ULL << kRegUseList0) |
| 78 | #define REG_USE_LIST1 (1ULL << kRegUseList1) |
| 79 | #define REG_USE_LR (1ULL << kRegUseLR) |
| 80 | #define REG_USE_PC (1ULL << kRegUsePC) |
| 81 | #define REG_USE_SP (1ULL << kRegUseSP) |
| 82 | #define SETS_CCODES (1ULL << kSetsCCodes) |
| 83 | #define USES_CCODES (1ULL << kUsesCCodes) |
| 84 | |
| 85 | // Common combo register usage patterns. |
| 86 | #define REG_DEF01 (REG_DEF0 | REG_DEF1) |
| 87 | #define REG_DEF01_USE2 (REG_DEF0 | REG_DEF1 | REG_USE2) |
| 88 | #define REG_DEF0_USE01 (REG_DEF0 | REG_USE01) |
| 89 | #define REG_DEF0_USE0 (REG_DEF0 | REG_USE0) |
| 90 | #define REG_DEF0_USE12 (REG_DEF0 | REG_USE12) |
Vladimir Marko | 3e5af82 | 2013-11-21 15:01:20 +0000 | [diff] [blame] | 91 | #define REG_DEF0_USE123 (REG_DEF0 | REG_USE123) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 92 | #define REG_DEF0_USE1 (REG_DEF0 | REG_USE1) |
| 93 | #define REG_DEF0_USE2 (REG_DEF0 | REG_USE2) |
| 94 | #define REG_DEFAD_USEAD (REG_DEFAD_USEA | REG_USED) |
| 95 | #define REG_DEFAD_USEA (REG_DEFA_USEA | REG_DEFD) |
| 96 | #define REG_DEFA_USEA (REG_DEFA | REG_USEA) |
| 97 | #define REG_USE012 (REG_USE01 | REG_USE2) |
| 98 | #define REG_USE014 (REG_USE01 | REG_USE4) |
| 99 | #define REG_USE01 (REG_USE0 | REG_USE1) |
| 100 | #define REG_USE02 (REG_USE0 | REG_USE2) |
| 101 | #define REG_USE12 (REG_USE1 | REG_USE2) |
| 102 | #define REG_USE23 (REG_USE2 | REG_USE3) |
Vladimir Marko | 3e5af82 | 2013-11-21 15:01:20 +0000 | [diff] [blame] | 103 | #define REG_USE123 (REG_USE1 | REG_USE2 | REG_USE3) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 104 | |
| 105 | struct BasicBlock; |
| 106 | struct CallInfo; |
| 107 | struct CompilationUnit; |
Vladimir Marko | 5816ed4 | 2013-11-27 17:04:20 +0000 | [diff] [blame] | 108 | struct InlineMethod; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 109 | struct MIR; |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 110 | struct LIR; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 111 | struct RegLocation; |
| 112 | struct RegisterInfo; |
Vladimir Marko | 5c96e6b | 2013-11-14 15:34:17 +0000 | [diff] [blame] | 113 | class DexFileMethodInliner; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 114 | class MIRGraph; |
| 115 | class Mir2Lir; |
| 116 | |
| 117 | typedef int (*NextCallInsn)(CompilationUnit*, CallInfo*, int, |
| 118 | const MethodReference& target_method, |
| 119 | uint32_t method_idx, uintptr_t direct_code, |
| 120 | uintptr_t direct_method, InvokeType type); |
| 121 | |
| 122 | typedef std::vector<uint8_t> CodeBuffer; |
| 123 | |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 124 | struct UseDefMasks { |
| 125 | uint64_t use_mask; // Resource mask for use. |
| 126 | uint64_t def_mask; // Resource mask for def. |
| 127 | }; |
| 128 | |
| 129 | struct AssemblyInfo { |
| 130 | LIR* pcrel_next; // Chain of LIR nodes needing pc relative fixups. |
| 131 | uint8_t bytes[16]; // Encoded instruction bytes. |
| 132 | }; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 133 | |
| 134 | struct LIR { |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 135 | CodeOffset offset; // Offset of this instruction. |
| 136 | NarrowDexOffset dalvik_offset; // Offset of Dalvik opcode in code units (16-bit words). |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 137 | int16_t opcode; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 138 | LIR* next; |
| 139 | LIR* prev; |
| 140 | LIR* target; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 141 | struct { |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 142 | unsigned int alias_info:17; // For Dalvik register disambiguation. |
| 143 | bool is_nop:1; // LIR is optimized away. |
| 144 | unsigned int size:4; // Note: size of encoded instruction is in bytes. |
| 145 | bool use_def_invalid:1; // If true, masks should not be used. |
| 146 | unsigned int generation:1; // Used to track visitation state during fixup pass. |
| 147 | unsigned int fixup:8; // Fixup kind. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 148 | } flags; |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 149 | union { |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 150 | UseDefMasks m; // Use & Def masks used during optimization. |
| 151 | AssemblyInfo a; // Instruction encoding used during assembly phase. |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 152 | } u; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 153 | int32_t operands[5]; // [0..4] = [dest, src1, src2, extra, extra2]. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | // Target-specific initialization. |
| 157 | Mir2Lir* ArmCodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph, |
| 158 | ArenaAllocator* const arena); |
| 159 | Mir2Lir* MipsCodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph, |
| 160 | ArenaAllocator* const arena); |
| 161 | Mir2Lir* X86CodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph, |
| 162 | ArenaAllocator* const arena); |
| 163 | |
| 164 | // Utility macros to traverse the LIR list. |
| 165 | #define NEXT_LIR(lir) (lir->next) |
| 166 | #define PREV_LIR(lir) (lir->prev) |
| 167 | |
| 168 | // Defines for alias_info (tracks Dalvik register references). |
| 169 | #define DECODE_ALIAS_INFO_REG(X) (X & 0xffff) |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 170 | #define DECODE_ALIAS_INFO_WIDE_FLAG (0x10000) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 171 | #define DECODE_ALIAS_INFO_WIDE(X) ((X & DECODE_ALIAS_INFO_WIDE_FLAG) ? 1 : 0) |
| 172 | #define ENCODE_ALIAS_INFO(REG, ISWIDE) (REG | (ISWIDE ? DECODE_ALIAS_INFO_WIDE_FLAG : 0)) |
| 173 | |
| 174 | // Common resource macros. |
| 175 | #define ENCODE_CCODE (1ULL << kCCode) |
| 176 | #define ENCODE_FP_STATUS (1ULL << kFPStatus) |
| 177 | |
| 178 | // Abstract memory locations. |
| 179 | #define ENCODE_DALVIK_REG (1ULL << kDalvikReg) |
| 180 | #define ENCODE_LITERAL (1ULL << kLiteral) |
| 181 | #define ENCODE_HEAP_REF (1ULL << kHeapRef) |
| 182 | #define ENCODE_MUST_NOT_ALIAS (1ULL << kMustNotAlias) |
| 183 | |
| 184 | #define ENCODE_ALL (~0ULL) |
| 185 | #define ENCODE_MEM (ENCODE_DALVIK_REG | ENCODE_LITERAL | \ |
| 186 | ENCODE_HEAP_REF | ENCODE_MUST_NOT_ALIAS) |
buzbee | c729a6b | 2013-09-14 16:04:31 -0700 | [diff] [blame] | 187 | |
| 188 | // Mask to denote sreg as the start of a double. Must not interfere with low 16 bits. |
| 189 | #define STARTING_DOUBLE_SREG 0x10000 |
| 190 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 191 | // TODO: replace these macros |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 192 | #define SLOW_FIELD_PATH (cu_->enable_debug & (1 << kDebugSlowFieldPath)) |
| 193 | #define SLOW_INVOKE_PATH (cu_->enable_debug & (1 << kDebugSlowInvokePath)) |
| 194 | #define SLOW_STRING_PATH (cu_->enable_debug & (1 << kDebugSlowStringPath)) |
| 195 | #define SLOW_TYPE_PATH (cu_->enable_debug & (1 << kDebugSlowTypePath)) |
| 196 | #define EXERCISE_SLOWEST_STRING_PATH (cu_->enable_debug & (1 << kDebugSlowestStringPath)) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 197 | |
| 198 | class Mir2Lir : public Backend { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 199 | public: |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 200 | /* |
| 201 | * Auxiliary information describing the location of data embedded in the Dalvik |
| 202 | * byte code stream. |
| 203 | */ |
| 204 | struct EmbeddedData { |
| 205 | CodeOffset offset; // Code offset of data block. |
| 206 | const uint16_t* table; // Original dex data. |
| 207 | DexOffset vaddr; // Dalvik offset of parent opcode. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 208 | }; |
| 209 | |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 210 | struct FillArrayData : EmbeddedData { |
| 211 | int32_t size; |
| 212 | }; |
| 213 | |
| 214 | struct SwitchTable : EmbeddedData { |
| 215 | LIR* anchor; // Reference instruction for relative offsets. |
| 216 | LIR** targets; // Array of case targets. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | /* Static register use counts */ |
| 220 | struct RefCounts { |
| 221 | int count; |
| 222 | int s_reg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | /* |
| 226 | * Data structure tracking the mapping between a Dalvik register (pair) and a |
| 227 | * native register (pair). The idea is to reuse the previously loaded value |
| 228 | * if possible, otherwise to keep the value in a native register as long as |
| 229 | * possible. |
| 230 | */ |
| 231 | struct RegisterInfo { |
| 232 | int reg; // Reg number |
| 233 | bool in_use; // Has it been allocated? |
| 234 | bool is_temp; // Can allocate as temp? |
| 235 | bool pair; // Part of a register pair? |
| 236 | int partner; // If pair, other reg of pair. |
| 237 | bool live; // Is there an associated SSA name? |
| 238 | bool dirty; // If live, is it dirty? |
| 239 | int s_reg; // Name of live value. |
| 240 | LIR *def_start; // Starting inst in last def sequence. |
| 241 | LIR *def_end; // Ending inst in last def sequence. |
| 242 | }; |
| 243 | |
Brian Carlstrom | 6f485c6 | 2013-07-18 15:35:35 -0700 | [diff] [blame] | 244 | struct RegisterPool { |
| 245 | int num_core_regs; |
| 246 | RegisterInfo *core_regs; |
| 247 | int next_core_reg; |
| 248 | int num_fp_regs; |
| 249 | RegisterInfo *FPRegs; |
| 250 | int next_fp_reg; |
| 251 | }; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 252 | |
| 253 | struct PromotionMap { |
| 254 | RegLocationType core_location:3; |
| 255 | uint8_t core_reg; |
| 256 | RegLocationType fp_location:3; |
| 257 | uint8_t FpReg; |
| 258 | bool first_in_pair; |
| 259 | }; |
| 260 | |
Brian Carlstrom | 9b7085a | 2013-07-18 15:15:21 -0700 | [diff] [blame] | 261 | virtual ~Mir2Lir() {} |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 262 | |
| 263 | int32_t s4FromSwitchData(const void* switch_data) { |
| 264 | return *reinterpret_cast<const int32_t*>(switch_data); |
| 265 | } |
| 266 | |
| 267 | RegisterClass oat_reg_class_by_size(OpSize size) { |
| 268 | return (size == kUnsignedHalf || size == kSignedHalf || size == kUnsignedByte || |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 269 | size == kSignedByte) ? kCoreReg : kAnyReg; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | size_t CodeBufferSizeInBytes() { |
| 273 | return code_buffer_.size() / sizeof(code_buffer_[0]); |
| 274 | } |
| 275 | |
buzbee | 409fe94 | 2013-10-11 10:49:56 -0700 | [diff] [blame] | 276 | bool IsPseudoLirOp(int opcode) { |
| 277 | return (opcode < 0); |
| 278 | } |
| 279 | |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 280 | /* |
| 281 | * LIR operands are 32-bit integers. Sometimes, (especially for managing |
| 282 | * instructions which require PC-relative fixups), we need the operands to carry |
| 283 | * pointers. To do this, we assign these pointers an index in pointer_storage_, and |
| 284 | * hold that index in the operand array. |
| 285 | * TUNING: If use of these utilities becomes more common on 32-bit builds, it |
| 286 | * may be worth conditionally-compiling a set of identity functions here. |
| 287 | */ |
| 288 | uint32_t WrapPointer(void* pointer) { |
| 289 | uint32_t res = pointer_storage_.Size(); |
| 290 | pointer_storage_.Insert(pointer); |
| 291 | return res; |
| 292 | } |
| 293 | |
| 294 | void* UnwrapPointer(size_t index) { |
| 295 | return pointer_storage_.Get(index); |
| 296 | } |
| 297 | |
| 298 | // strdup(), but allocates from the arena. |
| 299 | char* ArenaStrdup(const char* str) { |
| 300 | size_t len = strlen(str) + 1; |
| 301 | char* res = reinterpret_cast<char*>(arena_->Alloc(len, ArenaAllocator::kAllocMisc)); |
| 302 | if (res != NULL) { |
| 303 | strncpy(res, str, len); |
| 304 | } |
| 305 | return res; |
| 306 | } |
| 307 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 308 | // Shared by all targets - implemented in codegen_util.cc |
| 309 | void AppendLIR(LIR* lir); |
| 310 | void InsertLIRBefore(LIR* current_lir, LIR* new_lir); |
| 311 | void InsertLIRAfter(LIR* current_lir, LIR* new_lir); |
| 312 | |
Razvan A Lupusoru | da7a69b | 2014-01-08 15:09:50 -0800 | [diff] [blame] | 313 | /** |
| 314 | * @brief Provides the maximum number of compiler temporaries that the backend can/wants |
| 315 | * to place in a frame. |
| 316 | * @return Returns the maximum number of compiler temporaries. |
| 317 | */ |
| 318 | size_t GetMaxPossibleCompilerTemps() const; |
| 319 | |
| 320 | /** |
| 321 | * @brief Provides the number of bytes needed in frame for spilling of compiler temporaries. |
| 322 | * @return Returns the size in bytes for space needed for compiler temporary spill region. |
| 323 | */ |
| 324 | size_t GetNumBytesForCompilerTempSpillRegion(); |
| 325 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 326 | int ComputeFrameSize(); |
| 327 | virtual void Materialize(); |
| 328 | virtual CompiledMethod* GetCompiledMethod(); |
| 329 | void MarkSafepointPC(LIR* inst); |
Ian Rogers | 9b297bf | 2013-09-06 11:11:25 -0700 | [diff] [blame] | 330 | bool FastInstance(uint32_t field_idx, bool is_put, int* field_offset, bool* is_volatile); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 331 | void SetupResourceMasks(LIR* lir); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 332 | void SetMemRefType(LIR* lir, bool is_load, int mem_type); |
| 333 | void AnnotateDalvikRegAccess(LIR* lir, int reg_id, bool is_load, bool is64bit); |
| 334 | void SetupRegMask(uint64_t* mask, int reg); |
| 335 | void DumpLIRInsn(LIR* arg, unsigned char* base_addr); |
| 336 | void DumpPromotionMap(); |
| 337 | void CodegenDump(); |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 338 | LIR* RawLIR(DexOffset dalvik_offset, int opcode, int op0 = 0, int op1 = 0, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 339 | int op2 = 0, int op3 = 0, int op4 = 0, LIR* target = NULL); |
| 340 | LIR* NewLIR0(int opcode); |
| 341 | LIR* NewLIR1(int opcode, int dest); |
| 342 | LIR* NewLIR2(int opcode, int dest, int src1); |
| 343 | LIR* NewLIR3(int opcode, int dest, int src1, int src2); |
| 344 | LIR* NewLIR4(int opcode, int dest, int src1, int src2, int info); |
| 345 | LIR* NewLIR5(int opcode, int dest, int src1, int src2, int info1, int info2); |
| 346 | LIR* ScanLiteralPool(LIR* data_target, int value, unsigned int delta); |
| 347 | LIR* ScanLiteralPoolWide(LIR* data_target, int val_lo, int val_hi); |
| 348 | LIR* AddWordData(LIR* *constant_list_p, int value); |
| 349 | LIR* AddWideData(LIR* *constant_list_p, int val_lo, int val_hi); |
| 350 | void ProcessSwitchTables(); |
| 351 | void DumpSparseSwitchTable(const uint16_t* table); |
| 352 | void DumpPackedSwitchTable(const uint16_t* table); |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 353 | void MarkBoundary(DexOffset offset, const char* inst_str); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 354 | void NopLIR(LIR* lir); |
buzbee | 252254b | 2013-09-08 16:20:53 -0700 | [diff] [blame] | 355 | void UnlinkLIR(LIR* lir); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 356 | bool EvaluateBranch(Instruction::Code opcode, int src1, int src2); |
| 357 | bool IsInexpensiveConstant(RegLocation rl_src); |
| 358 | ConditionCode FlipComparisonOrder(ConditionCode before); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 359 | void InstallLiteralPools(); |
| 360 | void InstallSwitchTables(); |
| 361 | void InstallFillArrayData(); |
| 362 | bool VerifyCatchEntries(); |
| 363 | void CreateMappingTables(); |
| 364 | void CreateNativeGcMap(); |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 365 | int AssignLiteralOffset(CodeOffset offset); |
| 366 | int AssignSwitchTablesOffset(CodeOffset offset); |
| 367 | int AssignFillArrayDataOffset(CodeOffset offset); |
| 368 | LIR* InsertCaseLabel(DexOffset vaddr, int keyVal); |
| 369 | void MarkPackedCaseLabels(Mir2Lir::SwitchTable* tab_rec); |
| 370 | void MarkSparseCaseLabels(Mir2Lir::SwitchTable* tab_rec); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 371 | |
| 372 | // Shared by all targets - implemented in local_optimizations.cc |
| 373 | void ConvertMemOpIntoMove(LIR* orig_lir, int dest, int src); |
| 374 | void ApplyLoadStoreElimination(LIR* head_lir, LIR* tail_lir); |
| 375 | void ApplyLoadHoisting(LIR* head_lir, LIR* tail_lir); |
| 376 | void ApplyLocalOptimizations(LIR* head_lir, LIR* tail_lir); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 377 | |
| 378 | // Shared by all targets - implemented in ralloc_util.cc |
| 379 | int GetSRegHi(int lowSreg); |
| 380 | bool oat_live_out(int s_reg); |
| 381 | int oatSSASrc(MIR* mir, int num); |
| 382 | void SimpleRegAlloc(); |
| 383 | void ResetRegPool(); |
| 384 | void CompilerInitPool(RegisterInfo* regs, int* reg_nums, int num); |
| 385 | void DumpRegPool(RegisterInfo* p, int num_regs); |
| 386 | void DumpCoreRegPool(); |
| 387 | void DumpFpRegPool(); |
| 388 | /* Mark a temp register as dead. Does not affect allocation state. */ |
| 389 | void Clobber(int reg) { |
| 390 | ClobberBody(GetRegInfo(reg)); |
| 391 | } |
| 392 | void ClobberSRegBody(RegisterInfo* p, int num_regs, int s_reg); |
| 393 | void ClobberSReg(int s_reg); |
| 394 | int SRegToPMap(int s_reg); |
| 395 | void RecordCorePromotion(int reg, int s_reg); |
| 396 | int AllocPreservedCoreReg(int s_reg); |
| 397 | void RecordFpPromotion(int reg, int s_reg); |
buzbee | c729a6b | 2013-09-14 16:04:31 -0700 | [diff] [blame] | 398 | int AllocPreservedSingle(int s_reg); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 399 | int AllocPreservedDouble(int s_reg); |
buzbee | c729a6b | 2013-09-14 16:04:31 -0700 | [diff] [blame] | 400 | int AllocTempBody(RegisterInfo* p, int num_regs, int* next_temp, bool required); |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 401 | virtual int AllocTempDouble(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 402 | int AllocFreeTemp(); |
| 403 | int AllocTemp(); |
| 404 | int AllocTempFloat(); |
| 405 | RegisterInfo* AllocLiveBody(RegisterInfo* p, int num_regs, int s_reg); |
| 406 | RegisterInfo* AllocLive(int s_reg, int reg_class); |
| 407 | void FreeTemp(int reg); |
| 408 | RegisterInfo* IsLive(int reg); |
| 409 | RegisterInfo* IsTemp(int reg); |
| 410 | RegisterInfo* IsPromoted(int reg); |
| 411 | bool IsDirty(int reg); |
| 412 | void LockTemp(int reg); |
| 413 | void ResetDef(int reg); |
| 414 | void NullifyRange(LIR *start, LIR *finish, int s_reg1, int s_reg2); |
| 415 | void MarkDef(RegLocation rl, LIR *start, LIR *finish); |
| 416 | void MarkDefWide(RegLocation rl, LIR *start, LIR *finish); |
| 417 | RegLocation WideToNarrow(RegLocation rl); |
| 418 | void ResetDefLoc(RegLocation rl); |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 419 | virtual void ResetDefLocWide(RegLocation rl); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 420 | void ResetDefTracking(); |
| 421 | void ClobberAllRegs(); |
| 422 | void FlushAllRegsBody(RegisterInfo* info, int num_regs); |
| 423 | void FlushAllRegs(); |
| 424 | bool RegClassMatches(int reg_class, int reg); |
| 425 | void MarkLive(int reg, int s_reg); |
| 426 | void MarkTemp(int reg); |
| 427 | void UnmarkTemp(int reg); |
| 428 | void MarkPair(int low_reg, int high_reg); |
| 429 | void MarkClean(RegLocation loc); |
| 430 | void MarkDirty(RegLocation loc); |
| 431 | void MarkInUse(int reg); |
| 432 | void CopyRegInfo(int new_reg, int old_reg); |
| 433 | bool CheckCorePoolSanity(); |
| 434 | RegLocation UpdateLoc(RegLocation loc); |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 435 | virtual RegLocation UpdateLocWide(RegLocation loc); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 436 | RegLocation UpdateRawLoc(RegLocation loc); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 437 | |
| 438 | /** |
| 439 | * @brief Used to load register location into a typed temporary or pair of temporaries. |
| 440 | * @see EvalLoc |
| 441 | * @param loc The register location to load from. |
| 442 | * @param reg_class Type of register needed. |
| 443 | * @param update Whether the liveness information should be updated. |
| 444 | * @return Returns the properly typed temporary in physical register pairs. |
| 445 | */ |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 446 | virtual RegLocation EvalLocWide(RegLocation loc, int reg_class, bool update); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 447 | |
| 448 | /** |
| 449 | * @brief Used to load register location into a typed temporary. |
| 450 | * @param loc The register location to load from. |
| 451 | * @param reg_class Type of register needed. |
| 452 | * @param update Whether the liveness information should be updated. |
| 453 | * @return Returns the properly typed temporary in physical register. |
| 454 | */ |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 455 | virtual RegLocation EvalLoc(RegLocation loc, int reg_class, bool update); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 456 | |
buzbee | c729a6b | 2013-09-14 16:04:31 -0700 | [diff] [blame] | 457 | void CountRefs(RefCounts* core_counts, RefCounts* fp_counts, size_t num_regs); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 458 | void DumpCounts(const RefCounts* arr, int size, const char* msg); |
| 459 | void DoPromotion(); |
| 460 | int VRegOffset(int v_reg); |
| 461 | int SRegOffset(int s_reg); |
| 462 | RegLocation GetReturnWide(bool is_double); |
| 463 | RegLocation GetReturn(bool is_float); |
buzbee | bd663de | 2013-09-10 15:41:31 -0700 | [diff] [blame] | 464 | RegisterInfo* GetRegInfo(int reg); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 465 | |
| 466 | // Shared by all targets - implemented in gen_common.cc. |
buzbee | 11b63d1 | 2013-08-27 07:34:17 -0700 | [diff] [blame] | 467 | bool HandleEasyDivRem(Instruction::Code dalvik_opcode, bool is_div, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 468 | RegLocation rl_src, RegLocation rl_dest, int lit); |
| 469 | bool HandleEasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit); |
| 470 | void HandleSuspendLaunchPads(); |
| 471 | void HandleIntrinsicLaunchPads(); |
| 472 | void HandleThrowLaunchPads(); |
| 473 | void GenBarrier(); |
| 474 | LIR* GenCheck(ConditionCode c_code, ThrowKind kind); |
| 475 | LIR* GenImmedCheck(ConditionCode c_code, int reg, int imm_val, |
| 476 | ThrowKind kind); |
| 477 | LIR* GenNullCheck(int s_reg, int m_reg, int opt_flags); |
| 478 | LIR* GenRegRegCheck(ConditionCode c_code, int reg1, int reg2, |
| 479 | ThrowKind kind); |
| 480 | void GenCompareAndBranch(Instruction::Code opcode, RegLocation rl_src1, |
| 481 | RegLocation rl_src2, LIR* taken, LIR* fall_through); |
| 482 | void GenCompareZeroAndBranch(Instruction::Code opcode, RegLocation rl_src, |
| 483 | LIR* taken, LIR* fall_through); |
| 484 | void GenIntToLong(RegLocation rl_dest, RegLocation rl_src); |
| 485 | void GenIntNarrowing(Instruction::Code opcode, RegLocation rl_dest, |
| 486 | RegLocation rl_src); |
| 487 | void GenNewArray(uint32_t type_idx, RegLocation rl_dest, |
| 488 | RegLocation rl_src); |
| 489 | void GenFilledNewArray(CallInfo* info); |
| 490 | void GenSput(uint32_t field_idx, RegLocation rl_src, |
| 491 | bool is_long_or_double, bool is_object); |
| 492 | void GenSget(uint32_t field_idx, RegLocation rl_dest, |
| 493 | bool is_long_or_double, bool is_object); |
| 494 | void GenIGet(uint32_t field_idx, int opt_flags, OpSize size, |
| 495 | RegLocation rl_dest, RegLocation rl_obj, bool is_long_or_double, bool is_object); |
| 496 | void GenIPut(uint32_t field_idx, int opt_flags, OpSize size, |
| 497 | RegLocation rl_src, RegLocation rl_obj, bool is_long_or_double, bool is_object); |
Ian Rogers | a9a8254 | 2013-10-04 11:17:26 -0700 | [diff] [blame] | 498 | void GenArrayObjPut(int opt_flags, RegLocation rl_array, RegLocation rl_index, |
| 499 | RegLocation rl_src); |
| 500 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 501 | void GenConstClass(uint32_t type_idx, RegLocation rl_dest); |
| 502 | void GenConstString(uint32_t string_idx, RegLocation rl_dest); |
| 503 | void GenNewInstance(uint32_t type_idx, RegLocation rl_dest); |
| 504 | void GenThrow(RegLocation rl_src); |
| 505 | void GenInstanceof(uint32_t type_idx, RegLocation rl_dest, |
| 506 | RegLocation rl_src); |
| 507 | void GenCheckCast(uint32_t insn_idx, uint32_t type_idx, |
| 508 | RegLocation rl_src); |
| 509 | void GenLong3Addr(OpKind first_op, OpKind second_op, RegLocation rl_dest, |
| 510 | RegLocation rl_src1, RegLocation rl_src2); |
| 511 | void GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest, |
| 512 | RegLocation rl_src1, RegLocation rl_shift); |
| 513 | void GenArithOpInt(Instruction::Code opcode, RegLocation rl_dest, |
| 514 | RegLocation rl_src1, RegLocation rl_src2); |
| 515 | void GenArithOpIntLit(Instruction::Code opcode, RegLocation rl_dest, |
| 516 | RegLocation rl_src, int lit); |
| 517 | void GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, |
| 518 | RegLocation rl_src1, RegLocation rl_src2); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 519 | void GenConversionCall(ThreadOffset func_offset, RegLocation rl_dest, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 520 | RegLocation rl_src); |
| 521 | void GenSuspendTest(int opt_flags); |
| 522 | void GenSuspendTestAndBranch(int opt_flags, LIR* target); |
Bill Buzbee | d61ba4b | 2014-01-13 21:44:01 +0000 | [diff] [blame] | 523 | // This will be overridden by x86 implementation. |
| 524 | virtual void GenConstWide(RegLocation rl_dest, int64_t value); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 525 | |
| 526 | // Shared by all targets - implemented in gen_invoke.cc. |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 527 | int CallHelperSetup(ThreadOffset helper_offset); |
| 528 | LIR* CallHelper(int r_tgt, ThreadOffset helper_offset, bool safepoint_pc); |
| 529 | void CallRuntimeHelperImm(ThreadOffset helper_offset, int arg0, bool safepoint_pc); |
| 530 | void CallRuntimeHelperReg(ThreadOffset helper_offset, int arg0, bool safepoint_pc); |
| 531 | void CallRuntimeHelperRegLocation(ThreadOffset helper_offset, RegLocation arg0, |
| 532 | bool safepoint_pc); |
| 533 | void CallRuntimeHelperImmImm(ThreadOffset helper_offset, int arg0, int arg1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 534 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 535 | void CallRuntimeHelperImmRegLocation(ThreadOffset helper_offset, int arg0, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 536 | RegLocation arg1, bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 537 | void CallRuntimeHelperRegLocationImm(ThreadOffset helper_offset, RegLocation arg0, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 538 | int arg1, bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 539 | void CallRuntimeHelperImmReg(ThreadOffset helper_offset, int arg0, int arg1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 540 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 541 | void CallRuntimeHelperRegImm(ThreadOffset helper_offset, int arg0, int arg1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 542 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 543 | void CallRuntimeHelperImmMethod(ThreadOffset helper_offset, int arg0, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 544 | bool safepoint_pc); |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 545 | void CallRuntimeHelperRegMethod(ThreadOffset helper_offset, int arg0, bool safepoint_pc); |
Hiroshi Yamauchi | bb8f0ab | 2014-01-27 16:50:29 -0800 | [diff] [blame] | 546 | void CallRuntimeHelperRegMethodRegLocation(ThreadOffset helper_offset, int arg0, |
| 547 | RegLocation arg2, bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 548 | void CallRuntimeHelperRegLocationRegLocation(ThreadOffset helper_offset, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 549 | RegLocation arg0, RegLocation arg1, |
| 550 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 551 | void CallRuntimeHelperRegReg(ThreadOffset helper_offset, int arg0, int arg1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 552 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 553 | void CallRuntimeHelperRegRegImm(ThreadOffset helper_offset, int arg0, int arg1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 554 | int arg2, bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 555 | void CallRuntimeHelperImmMethodRegLocation(ThreadOffset helper_offset, int arg0, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 556 | RegLocation arg2, bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 557 | void CallRuntimeHelperImmMethodImm(ThreadOffset helper_offset, int arg0, int arg2, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 558 | bool safepoint_pc); |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 559 | void CallRuntimeHelperImmRegLocationRegLocation(ThreadOffset helper_offset, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 560 | int arg0, RegLocation arg1, RegLocation arg2, |
| 561 | bool safepoint_pc); |
Ian Rogers | a9a8254 | 2013-10-04 11:17:26 -0700 | [diff] [blame] | 562 | void CallRuntimeHelperRegLocationRegLocationRegLocation(ThreadOffset helper_offset, |
| 563 | RegLocation arg0, RegLocation arg1, |
| 564 | RegLocation arg2, |
| 565 | bool safepoint_pc); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 566 | void GenInvoke(CallInfo* info); |
| 567 | void FlushIns(RegLocation* ArgLocs, RegLocation rl_method); |
| 568 | int GenDalvikArgsNoRange(CallInfo* info, int call_state, LIR** pcrLabel, |
| 569 | NextCallInsn next_call_insn, |
| 570 | const MethodReference& target_method, |
| 571 | uint32_t vtable_idx, |
| 572 | uintptr_t direct_code, uintptr_t direct_method, InvokeType type, |
| 573 | bool skip_this); |
| 574 | int GenDalvikArgsRange(CallInfo* info, int call_state, LIR** pcrLabel, |
| 575 | NextCallInsn next_call_insn, |
| 576 | const MethodReference& target_method, |
| 577 | uint32_t vtable_idx, |
| 578 | uintptr_t direct_code, uintptr_t direct_method, InvokeType type, |
| 579 | bool skip_this); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 580 | |
| 581 | /** |
| 582 | * @brief Used to determine the register location of destination. |
| 583 | * @details This is needed during generation of inline intrinsics because it finds destination of return, |
| 584 | * either the physical register or the target of move-result. |
| 585 | * @param info Information about the invoke. |
| 586 | * @return Returns the destination location. |
| 587 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 588 | RegLocation InlineTarget(CallInfo* info); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 589 | |
| 590 | /** |
| 591 | * @brief Used to determine the wide register location of destination. |
| 592 | * @see InlineTarget |
| 593 | * @param info Information about the invoke. |
| 594 | * @return Returns the destination location. |
| 595 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 596 | RegLocation InlineTargetWide(CallInfo* info); |
| 597 | |
| 598 | bool GenInlinedCharAt(CallInfo* info); |
| 599 | bool GenInlinedStringIsEmptyOrLength(CallInfo* info, bool is_empty); |
Vladimir Marko | 6bdf1ff | 2013-10-29 17:40:46 +0000 | [diff] [blame] | 600 | bool GenInlinedReverseBytes(CallInfo* info, OpSize size); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 601 | bool GenInlinedAbsInt(CallInfo* info); |
| 602 | bool GenInlinedAbsLong(CallInfo* info); |
Yixin Shou | dbb17e3 | 2014-02-07 05:09:30 -0800 | [diff] [blame^] | 603 | bool GenInlinedAbsFloat(CallInfo* info); |
| 604 | bool GenInlinedAbsDouble(CallInfo* info); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 605 | bool GenInlinedFloatCvt(CallInfo* info); |
| 606 | bool GenInlinedDoubleCvt(CallInfo* info); |
| 607 | bool GenInlinedIndexOf(CallInfo* info, bool zero_based); |
| 608 | bool GenInlinedStringCompareTo(CallInfo* info); |
| 609 | bool GenInlinedCurrentThread(CallInfo* info); |
| 610 | bool GenInlinedUnsafeGet(CallInfo* info, bool is_long, bool is_volatile); |
| 611 | bool GenInlinedUnsafePut(CallInfo* info, bool is_long, bool is_object, |
| 612 | bool is_volatile, bool is_ordered); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 613 | int LoadArgRegs(CallInfo* info, int call_state, |
| 614 | NextCallInsn next_call_insn, |
| 615 | const MethodReference& target_method, |
| 616 | uint32_t vtable_idx, |
| 617 | uintptr_t direct_code, uintptr_t direct_method, InvokeType type, |
| 618 | bool skip_this); |
| 619 | |
| 620 | // Shared by all targets - implemented in gen_loadstore.cc. |
| 621 | RegLocation LoadCurrMethod(); |
| 622 | void LoadCurrMethodDirect(int r_tgt); |
| 623 | LIR* LoadConstant(int r_dest, int value); |
| 624 | LIR* LoadWordDisp(int rBase, int displacement, int r_dest); |
| 625 | RegLocation LoadValue(RegLocation rl_src, RegisterClass op_kind); |
| 626 | RegLocation LoadValueWide(RegLocation rl_src, RegisterClass op_kind); |
| 627 | void LoadValueDirect(RegLocation rl_src, int r_dest); |
| 628 | void LoadValueDirectFixed(RegLocation rl_src, int r_dest); |
| 629 | void LoadValueDirectWide(RegLocation rl_src, int reg_lo, int reg_hi); |
| 630 | void LoadValueDirectWideFixed(RegLocation rl_src, int reg_lo, int reg_hi); |
| 631 | LIR* StoreWordDisp(int rBase, int displacement, int r_src); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 632 | |
| 633 | /** |
| 634 | * @brief Used to do the final store in the destination as per bytecode semantics. |
| 635 | * @param rl_dest The destination dalvik register location. |
| 636 | * @param rl_src The source register location. Can be either physical register or dalvik register. |
| 637 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 638 | void StoreValue(RegLocation rl_dest, RegLocation rl_src); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 639 | |
| 640 | /** |
| 641 | * @brief Used to do the final store in a wide destination as per bytecode semantics. |
| 642 | * @see StoreValue |
| 643 | * @param rl_dest The destination dalvik register location. |
| 644 | * @param rl_src The source register location. Can be either physical register or dalvik register. |
| 645 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 646 | void StoreValueWide(RegLocation rl_dest, RegLocation rl_src); |
| 647 | |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 648 | /** |
| 649 | * @brief Used to do the final store in a wide destination as per bytecode semantics. |
| 650 | * @see StoreValueWide |
| 651 | * @param rl_dest The destination dalvik register location. |
| 652 | * @param rl_src The source register location. It must be kLocPhysReg |
| 653 | * |
| 654 | * This is used for x86 two operand computations, where we have computed the correct |
| 655 | * register values that now need to be properly registered. This is used to avoid an |
| 656 | * extra pair of register copies that would result if StoreValueWide was called. |
| 657 | */ |
| 658 | void StoreFinalValueWide(RegLocation rl_dest, RegLocation rl_src); |
| 659 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 660 | // Shared by all targets - implemented in mir_to_lir.cc. |
| 661 | void CompileDalvikInstruction(MIR* mir, BasicBlock* bb, LIR* label_list); |
| 662 | void HandleExtendedMethodMIR(BasicBlock* bb, MIR* mir); |
| 663 | bool MethodBlockCodeGen(BasicBlock* bb); |
Vladimir Marko | 5816ed4 | 2013-11-27 17:04:20 +0000 | [diff] [blame] | 664 | void SpecialMIR2LIR(const InlineMethod& special); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 665 | void MethodMIR2LIR(); |
| 666 | |
Mark Mendell | 766e929 | 2014-01-27 07:55:47 -0800 | [diff] [blame] | 667 | // Routines that work for the generic case, but may be overriden by target. |
| 668 | /* |
| 669 | * @brief Compare memory to immediate, and branch if condition true. |
| 670 | * @param cond The condition code that when true will branch to the target. |
| 671 | * @param temp_reg A temporary register that can be used if compare to memory is not |
| 672 | * supported by the architecture. |
| 673 | * @param base_reg The register holding the base address. |
| 674 | * @param offset The offset from the base. |
| 675 | * @param check_value The immediate to compare to. |
| 676 | * @returns The branch instruction that was generated. |
| 677 | */ |
| 678 | virtual LIR* OpCmpMemImmBranch(ConditionCode cond, int temp_reg, int base_reg, |
| 679 | int offset, int check_value, LIR* target); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 680 | |
| 681 | // Required for target - codegen helpers. |
buzbee | 11b63d1 | 2013-08-27 07:34:17 -0700 | [diff] [blame] | 682 | virtual bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 683 | RegLocation rl_src, RegLocation rl_dest, int lit) = 0; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 684 | virtual int LoadHelper(ThreadOffset offset) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 685 | virtual LIR* LoadBaseDisp(int rBase, int displacement, int r_dest, OpSize size, int s_reg) = 0; |
| 686 | virtual LIR* LoadBaseDispWide(int rBase, int displacement, int r_dest_lo, int r_dest_hi, |
| 687 | int s_reg) = 0; |
| 688 | virtual LIR* LoadBaseIndexed(int rBase, int r_index, int r_dest, int scale, OpSize size) = 0; |
| 689 | virtual LIR* LoadBaseIndexedDisp(int rBase, int r_index, int scale, int displacement, |
| 690 | int r_dest, int r_dest_hi, OpSize size, int s_reg) = 0; |
| 691 | virtual LIR* LoadConstantNoClobber(int r_dest, int value) = 0; |
| 692 | virtual LIR* LoadConstantWide(int r_dest_lo, int r_dest_hi, int64_t value) = 0; |
| 693 | virtual LIR* StoreBaseDisp(int rBase, int displacement, int r_src, OpSize size) = 0; |
| 694 | virtual LIR* StoreBaseDispWide(int rBase, int displacement, int r_src_lo, int r_src_hi) = 0; |
| 695 | virtual LIR* StoreBaseIndexed(int rBase, int r_index, int r_src, int scale, OpSize size) = 0; |
| 696 | virtual LIR* StoreBaseIndexedDisp(int rBase, int r_index, int scale, int displacement, |
| 697 | int r_src, int r_src_hi, OpSize size, int s_reg) = 0; |
| 698 | virtual void MarkGCCard(int val_reg, int tgt_addr_reg) = 0; |
| 699 | |
| 700 | // Required for target - register utilities. |
| 701 | virtual bool IsFpReg(int reg) = 0; |
| 702 | virtual bool SameRegType(int reg1, int reg2) = 0; |
| 703 | virtual int AllocTypedTemp(bool fp_hint, int reg_class) = 0; |
| 704 | virtual int AllocTypedTempPair(bool fp_hint, int reg_class) = 0; |
| 705 | virtual int S2d(int low_reg, int high_reg) = 0; |
| 706 | virtual int TargetReg(SpecialTargetRegister reg) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 707 | virtual RegLocation GetReturnAlt() = 0; |
| 708 | virtual RegLocation GetReturnWideAlt() = 0; |
| 709 | virtual RegLocation LocCReturn() = 0; |
| 710 | virtual RegLocation LocCReturnDouble() = 0; |
| 711 | virtual RegLocation LocCReturnFloat() = 0; |
| 712 | virtual RegLocation LocCReturnWide() = 0; |
| 713 | virtual uint32_t FpRegMask() = 0; |
| 714 | virtual uint64_t GetRegMaskCommon(int reg) = 0; |
| 715 | virtual void AdjustSpillMask() = 0; |
Vladimir Marko | 31c2aac | 2013-12-09 16:31:19 +0000 | [diff] [blame] | 716 | virtual void ClobberCallerSave() = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 717 | virtual void FlushReg(int reg) = 0; |
| 718 | virtual void FlushRegWide(int reg1, int reg2) = 0; |
| 719 | virtual void FreeCallTemps() = 0; |
| 720 | virtual void FreeRegLocTemps(RegLocation rl_keep, RegLocation rl_free) = 0; |
| 721 | virtual void LockCallTemps() = 0; |
| 722 | virtual void MarkPreservedSingle(int v_reg, int reg) = 0; |
| 723 | virtual void CompilerInitializeRegAlloc() = 0; |
| 724 | |
| 725 | // Required for target - miscellaneous. |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 726 | virtual void AssembleLIR() = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 727 | virtual void DumpResourceMask(LIR* lir, uint64_t mask, const char* prefix) = 0; |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 728 | virtual void SetupTargetResourceMasks(LIR* lir, uint64_t flags) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 729 | virtual const char* GetTargetInstFmt(int opcode) = 0; |
| 730 | virtual const char* GetTargetInstName(int opcode) = 0; |
| 731 | virtual std::string BuildInsnString(const char* fmt, LIR* lir, unsigned char* base_addr) = 0; |
| 732 | virtual uint64_t GetPCUseDefEncoding() = 0; |
| 733 | virtual uint64_t GetTargetInstFlags(int opcode) = 0; |
| 734 | virtual int GetInsnSize(LIR* lir) = 0; |
| 735 | virtual bool IsUnconditionalBranch(LIR* lir) = 0; |
| 736 | |
| 737 | // Required for target - Dalvik-level generators. |
| 738 | virtual void GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest, |
| 739 | RegLocation rl_src1, RegLocation rl_src2) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 740 | virtual void GenMulLong(Instruction::Code, |
| 741 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 742 | RegLocation rl_src2) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 743 | virtual void GenAddLong(Instruction::Code, |
| 744 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 745 | RegLocation rl_src2) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 746 | virtual void GenAndLong(Instruction::Code, |
| 747 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 748 | RegLocation rl_src2) = 0; |
| 749 | virtual void GenArithOpDouble(Instruction::Code opcode, |
| 750 | RegLocation rl_dest, RegLocation rl_src1, |
| 751 | RegLocation rl_src2) = 0; |
| 752 | virtual void GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest, |
| 753 | RegLocation rl_src1, RegLocation rl_src2) = 0; |
| 754 | virtual void GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, |
| 755 | RegLocation rl_src1, RegLocation rl_src2) = 0; |
| 756 | virtual void GenConversion(Instruction::Code opcode, RegLocation rl_dest, |
| 757 | RegLocation rl_src) = 0; |
Vladimir Marko | 1c282e2 | 2013-11-21 14:49:47 +0000 | [diff] [blame] | 758 | virtual bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object) = 0; |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 759 | |
| 760 | /** |
| 761 | * @brief Used to generate code for intrinsic java\.lang\.Math methods min and max. |
| 762 | * @details This is also applicable for java\.lang\.StrictMath since it is a simple algorithm |
| 763 | * that applies on integers. The generated code will write the smallest or largest value |
| 764 | * directly into the destination register as specified by the invoke information. |
| 765 | * @param info Information about the invoke. |
| 766 | * @param is_min If true generates code that computes minimum. Otherwise computes maximum. |
| 767 | * @return Returns true if successfully generated |
| 768 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 769 | virtual bool GenInlinedMinMaxInt(CallInfo* info, bool is_min) = 0; |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 770 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 771 | virtual bool GenInlinedSqrt(CallInfo* info) = 0; |
Vladimir Marko | e508a20 | 2013-11-04 15:24:22 +0000 | [diff] [blame] | 772 | virtual bool GenInlinedPeek(CallInfo* info, OpSize size) = 0; |
| 773 | virtual bool GenInlinedPoke(CallInfo* info, OpSize size) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 774 | virtual void GenNegLong(RegLocation rl_dest, RegLocation rl_src) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 775 | virtual void GenOrLong(Instruction::Code, |
| 776 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 777 | RegLocation rl_src2) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 778 | virtual void GenSubLong(Instruction::Code, |
| 779 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 780 | RegLocation rl_src2) = 0; |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 781 | virtual void GenXorLong(Instruction::Code, |
| 782 | RegLocation rl_dest, RegLocation rl_src1, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 783 | RegLocation rl_src2) = 0; |
| 784 | virtual LIR* GenRegMemCheck(ConditionCode c_code, int reg1, int base, |
| 785 | int offset, ThrowKind kind) = 0; |
| 786 | virtual RegLocation GenDivRem(RegLocation rl_dest, int reg_lo, int reg_hi, |
| 787 | bool is_div) = 0; |
| 788 | virtual RegLocation GenDivRemLit(RegLocation rl_dest, int reg_lo, int lit, |
| 789 | bool is_div) = 0; |
Mark Mendell | 2bf31e6 | 2014-01-23 12:13:40 -0800 | [diff] [blame] | 790 | /* |
| 791 | * @brief Generate an integer div or rem operation by a literal. |
| 792 | * @param rl_dest Destination Location. |
| 793 | * @param rl_src1 Numerator Location. |
| 794 | * @param rl_src2 Divisor Location. |
| 795 | * @param is_div 'true' if this is a division, 'false' for a remainder. |
| 796 | * @param check_zero 'true' if an exception should be generated if the divisor is 0. |
| 797 | */ |
| 798 | virtual RegLocation GenDivRem(RegLocation rl_dest, RegLocation rl_src1, |
| 799 | RegLocation rl_src2, bool is_div, bool check_zero) = 0; |
| 800 | /* |
| 801 | * @brief Generate an integer div or rem operation by a literal. |
| 802 | * @param rl_dest Destination Location. |
| 803 | * @param rl_src Numerator Location. |
| 804 | * @param lit Divisor. |
| 805 | * @param is_div 'true' if this is a division, 'false' for a remainder. |
| 806 | */ |
| 807 | virtual RegLocation GenDivRemLit(RegLocation rl_dest, RegLocation rl_src1, |
| 808 | int lit, bool is_div) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 809 | virtual void GenCmpLong(RegLocation rl_dest, RegLocation rl_src1, |
| 810 | RegLocation rl_src2) = 0; |
Razvan A Lupusoru | 090dd44 | 2013-12-20 14:35:03 -0800 | [diff] [blame] | 811 | |
| 812 | /** |
| 813 | * @brief Used for generating code that throws ArithmeticException if both registers are zero. |
| 814 | * @details This is used for generating DivideByZero checks when divisor is held in two separate registers. |
| 815 | * @param reg_lo The register holding the lower 32-bits. |
| 816 | * @param reg_hi The register holding the upper 32-bits. |
| 817 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 818 | virtual void GenDivZeroCheck(int reg_lo, int reg_hi) = 0; |
Razvan A Lupusoru | 090dd44 | 2013-12-20 14:35:03 -0800 | [diff] [blame] | 819 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 820 | virtual void GenEntrySequence(RegLocation* ArgLocs, |
| 821 | RegLocation rl_method) = 0; |
| 822 | virtual void GenExitSequence() = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 823 | virtual void GenFillArrayData(DexOffset table_offset, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 824 | RegLocation rl_src) = 0; |
| 825 | virtual void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, |
| 826 | bool is_double) = 0; |
| 827 | virtual void GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) = 0; |
Razvan A Lupusoru | e27b3bf | 2014-01-23 09:41:45 -0800 | [diff] [blame] | 828 | |
| 829 | /** |
| 830 | * @brief Lowers the kMirOpSelect MIR into LIR. |
| 831 | * @param bb The basic block in which the MIR is from. |
| 832 | * @param mir The MIR whose opcode is kMirOpSelect. |
| 833 | */ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 834 | virtual void GenSelect(BasicBlock* bb, MIR* mir) = 0; |
Razvan A Lupusoru | e27b3bf | 2014-01-23 09:41:45 -0800 | [diff] [blame] | 835 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 836 | virtual void GenMemBarrier(MemBarrierKind barrier_kind) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 837 | virtual void GenMoveException(RegLocation rl_dest) = 0; |
| 838 | virtual void GenMultiplyByTwoBitMultiplier(RegLocation rl_src, |
| 839 | RegLocation rl_result, int lit, int first_bit, |
| 840 | int second_bit) = 0; |
| 841 | virtual void GenNegDouble(RegLocation rl_dest, RegLocation rl_src) = 0; |
| 842 | virtual void GenNegFloat(RegLocation rl_dest, RegLocation rl_src) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 843 | virtual void GenPackedSwitch(MIR* mir, DexOffset table_offset, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 844 | RegLocation rl_src) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 845 | virtual void GenSparseSwitch(MIR* mir, DexOffset table_offset, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 846 | RegLocation rl_src) = 0; |
| 847 | virtual void GenSpecialCase(BasicBlock* bb, MIR* mir, |
Vladimir Marko | 5816ed4 | 2013-11-27 17:04:20 +0000 | [diff] [blame] | 848 | const InlineMethod& special) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 849 | virtual void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, |
| 850 | RegLocation rl_index, RegLocation rl_dest, int scale) = 0; |
| 851 | virtual void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, |
Ian Rogers | a9a8254 | 2013-10-04 11:17:26 -0700 | [diff] [blame] | 852 | RegLocation rl_index, RegLocation rl_src, int scale, |
| 853 | bool card_mark) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 854 | virtual void GenShiftImmOpLong(Instruction::Code opcode, |
| 855 | RegLocation rl_dest, RegLocation rl_src1, |
| 856 | RegLocation rl_shift) = 0; |
| 857 | |
| 858 | // Required for target - single operation generators. |
| 859 | virtual LIR* OpUnconditionalBranch(LIR* target) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 860 | virtual LIR* OpCmpBranch(ConditionCode cond, int src1, int src2, LIR* target) = 0; |
| 861 | virtual LIR* OpCmpImmBranch(ConditionCode cond, int reg, int check_value, LIR* target) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 862 | virtual LIR* OpCondBranch(ConditionCode cc, LIR* target) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 863 | virtual LIR* OpDecAndBranch(ConditionCode c_code, int reg, LIR* target) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 864 | virtual LIR* OpFpRegCopy(int r_dest, int r_src) = 0; |
| 865 | virtual LIR* OpIT(ConditionCode cond, const char* guide) = 0; |
| 866 | virtual LIR* OpMem(OpKind op, int rBase, int disp) = 0; |
| 867 | virtual LIR* OpPcRelLoad(int reg, LIR* target) = 0; |
| 868 | virtual LIR* OpReg(OpKind op, int r_dest_src) = 0; |
| 869 | virtual LIR* OpRegCopy(int r_dest, int r_src) = 0; |
| 870 | virtual LIR* OpRegCopyNoInsert(int r_dest, int r_src) = 0; |
| 871 | virtual LIR* OpRegImm(OpKind op, int r_dest_src1, int value) = 0; |
| 872 | virtual LIR* OpRegMem(OpKind op, int r_dest, int rBase, int offset) = 0; |
| 873 | virtual LIR* OpRegReg(OpKind op, int r_dest_src1, int r_src2) = 0; |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 874 | |
| 875 | /** |
| 876 | * @brief Used for generating a conditional register to register operation. |
| 877 | * @param op The opcode kind. |
| 878 | * @param cc The condition code that when true will perform the opcode. |
| 879 | * @param r_dest The destination physical register. |
| 880 | * @param r_src The source physical register. |
| 881 | * @return Returns the newly created LIR or null in case of creation failure. |
| 882 | */ |
| 883 | virtual LIR* OpCondRegReg(OpKind op, ConditionCode cc, int r_dest, int r_src) = 0; |
| 884 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 885 | virtual LIR* OpRegRegImm(OpKind op, int r_dest, int r_src1, int value) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 886 | virtual LIR* OpRegRegReg(OpKind op, int r_dest, int r_src1, int r_src2) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 887 | virtual LIR* OpTestSuspend(LIR* target) = 0; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 888 | virtual LIR* OpThreadMem(OpKind op, ThreadOffset thread_offset) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 889 | virtual LIR* OpVldm(int rBase, int count) = 0; |
| 890 | virtual LIR* OpVstm(int rBase, int count) = 0; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 891 | virtual void OpLea(int rBase, int reg1, int reg2, int scale, int offset) = 0; |
| 892 | virtual void OpRegCopyWide(int dest_lo, int dest_hi, int src_lo, int src_hi) = 0; |
Ian Rogers | 468532e | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 893 | virtual void OpTlsCmp(ThreadOffset offset, int val) = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 894 | virtual bool InexpensiveConstantInt(int32_t value) = 0; |
| 895 | virtual bool InexpensiveConstantFloat(int32_t value) = 0; |
| 896 | virtual bool InexpensiveConstantLong(int64_t value) = 0; |
| 897 | virtual bool InexpensiveConstantDouble(int64_t value) = 0; |
| 898 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 899 | // May be optimized by targets. |
| 900 | virtual void GenMonitorEnter(int opt_flags, RegLocation rl_src); |
| 901 | virtual void GenMonitorExit(int opt_flags, RegLocation rl_src); |
| 902 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 903 | // Temp workaround |
| 904 | void Workaround7250540(RegLocation rl_dest, int value); |
| 905 | |
| 906 | protected: |
| 907 | Mir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena); |
| 908 | |
| 909 | CompilationUnit* GetCompilationUnit() { |
| 910 | return cu_; |
| 911 | } |
Mark Mendell | 4708dcd | 2014-01-22 09:05:18 -0800 | [diff] [blame] | 912 | /* |
| 913 | * @brief Returns the index of the lowest set bit in 'x'. |
| 914 | * @param x Value to be examined. |
| 915 | * @returns The bit number of the lowest bit set in the value. |
| 916 | */ |
| 917 | int32_t LowestSetBit(uint64_t x); |
| 918 | /* |
| 919 | * @brief Is this value a power of two? |
| 920 | * @param x Value to be examined. |
| 921 | * @returns 'true' if only 1 bit is set in the value. |
| 922 | */ |
| 923 | bool IsPowerOfTwo(uint64_t x); |
| 924 | /* |
| 925 | * @brief Do these SRs overlap? |
| 926 | * @param rl_op1 One RegLocation |
| 927 | * @param rl_op2 The other RegLocation |
| 928 | * @return 'true' if the VR pairs overlap |
| 929 | * |
| 930 | * Check to see if a result pair has a misaligned overlap with an operand pair. This |
| 931 | * is not usual for dx to generate, but it is legal (for now). In a future rev of |
| 932 | * dex, we'll want to make this case illegal. |
| 933 | */ |
| 934 | bool BadOverlap(RegLocation rl_op1, RegLocation rl_op2); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 935 | |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 936 | /* |
| 937 | * @brief Force a location (in a register) into a temporary register |
| 938 | * @param loc location of result |
| 939 | * @returns update location |
| 940 | */ |
| 941 | RegLocation ForceTemp(RegLocation loc); |
| 942 | |
| 943 | /* |
| 944 | * @brief Force a wide location (in registers) into temporary registers |
| 945 | * @param loc location of result |
| 946 | * @returns update location |
| 947 | */ |
| 948 | RegLocation ForceTempWide(RegLocation loc); |
| 949 | |
Mark Mendell | df8ee2e | 2014-01-27 16:37:47 -0800 | [diff] [blame] | 950 | virtual void GenInstanceofFinal(bool use_declaring_class, uint32_t type_idx, |
| 951 | RegLocation rl_dest, RegLocation rl_src); |
| 952 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 953 | private: |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 954 | void GenInstanceofCallingHelper(bool needs_access_check, bool type_known_final, |
| 955 | bool type_known_abstract, bool use_declaring_class, |
| 956 | bool can_assume_type_is_in_dex_cache, |
| 957 | uint32_t type_idx, RegLocation rl_dest, |
| 958 | RegLocation rl_src); |
| 959 | |
| 960 | void ClobberBody(RegisterInfo* p); |
| 961 | void ResetDefBody(RegisterInfo* p) { |
| 962 | p->def_start = NULL; |
| 963 | p->def_end = NULL; |
| 964 | } |
| 965 | |
| 966 | public: |
| 967 | // TODO: add accessors for these. |
| 968 | LIR* literal_list_; // Constants. |
| 969 | LIR* method_literal_list_; // Method literals requiring patching. |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 970 | LIR* class_literal_list_; // Class literals requiring patching. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 971 | LIR* code_literal_list_; // Code literals requiring patching. |
buzbee | b48819d | 2013-09-14 16:15:25 -0700 | [diff] [blame] | 972 | LIR* first_fixup_; // Doubly-linked list of LIR nodes requiring fixups. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 973 | |
| 974 | protected: |
| 975 | CompilationUnit* const cu_; |
| 976 | MIRGraph* const mir_graph_; |
| 977 | GrowableArray<SwitchTable*> switch_tables_; |
| 978 | GrowableArray<FillArrayData*> fill_array_data_; |
| 979 | GrowableArray<LIR*> throw_launchpads_; |
| 980 | GrowableArray<LIR*> suspend_launchpads_; |
| 981 | GrowableArray<LIR*> intrinsic_launchpads_; |
buzbee | bd663de | 2013-09-10 15:41:31 -0700 | [diff] [blame] | 982 | GrowableArray<RegisterInfo*> tempreg_info_; |
| 983 | GrowableArray<RegisterInfo*> reginfo_map_; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 984 | GrowableArray<void*> pointer_storage_; |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 985 | CodeOffset current_code_offset_; // Working byte offset of machine instructons. |
| 986 | CodeOffset data_offset_; // starting offset of literal pool. |
| 987 | size_t total_size_; // header + code size. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 988 | LIR* block_label_list_; |
| 989 | PromotionMap* promotion_map_; |
| 990 | /* |
| 991 | * TODO: The code generation utilities don't have a built-in |
| 992 | * mechanism to propagate the original Dalvik opcode address to the |
| 993 | * associated generated instructions. For the trace compiler, this wasn't |
| 994 | * necessary because the interpreter handled all throws and debugging |
| 995 | * requests. For now we'll handle this by placing the Dalvik offset |
| 996 | * in the CompilationUnit struct before codegen for each instruction. |
| 997 | * The low-level LIR creation utilites will pull it from here. Rework this. |
| 998 | */ |
buzbee | 0d82948 | 2013-10-11 15:24:55 -0700 | [diff] [blame] | 999 | DexOffset current_dalvik_offset_; |
| 1000 | size_t estimated_native_code_size_; // Just an estimate; used to reserve code_buffer_ size. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1001 | RegisterPool* reg_pool_; |
| 1002 | /* |
| 1003 | * Sanity checking for the register temp tracking. The same ssa |
| 1004 | * name should never be associated with one temp register per |
| 1005 | * instruction compilation. |
| 1006 | */ |
| 1007 | int live_sreg_; |
| 1008 | CodeBuffer code_buffer_; |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 1009 | // The encoding mapping table data (dex -> pc offset and pc offset -> dex) with a size prefix. |
Vladimir Marko | 06606b9 | 2013-12-02 15:31:08 +0000 | [diff] [blame] | 1010 | std::vector<uint8_t> encoded_mapping_table_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1011 | std::vector<uint32_t> core_vmap_table_; |
| 1012 | std::vector<uint32_t> fp_vmap_table_; |
| 1013 | std::vector<uint8_t> native_gc_map_; |
| 1014 | int num_core_spills_; |
| 1015 | int num_fp_spills_; |
| 1016 | int frame_size_; |
| 1017 | unsigned int core_spill_mask_; |
| 1018 | unsigned int fp_spill_mask_; |
| 1019 | LIR* first_lir_insn_; |
| 1020 | LIR* last_lir_insn_; |
| 1021 | }; // Class Mir2Lir |
| 1022 | |
| 1023 | } // namespace art |
| 1024 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 1025 | #endif // ART_COMPILER_DEX_QUICK_MIR_TO_LIR_H_ |