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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_COMPILER_DEX_QUICK_X86_CODEGEN_X86_H_ |
| 18 | #define ART_COMPILER_DEX_QUICK_X86_CODEGEN_X86_H_ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 19 | |
| 20 | #include "dex/compiler_internals.h" |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 21 | #include "dex/quick/mir_to_lir.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 22 | #include "x86_lir.h" |
| 23 | |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 24 | #include <map> |
Maxim Kazantsev | 6dccdc2 | 2014-08-18 18:43:55 +0700 | [diff] [blame] | 25 | #include <vector> |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 26 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 27 | namespace art { |
| 28 | |
Mark Mendell | e87f9b5 | 2014-04-30 14:13:18 -0400 | [diff] [blame] | 29 | class X86Mir2Lir : public Mir2Lir { |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 30 | protected: |
| 31 | class InToRegStorageMapper { |
| 32 | public: |
Serguei Katkov | 407a9d2 | 2014-07-05 03:09:32 +0700 | [diff] [blame] | 33 | virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref) = 0; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 34 | virtual ~InToRegStorageMapper() {} |
| 35 | }; |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 36 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 37 | class InToRegStorageX86_64Mapper : public InToRegStorageMapper { |
| 38 | public: |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 39 | explicit InToRegStorageX86_64Mapper(Mir2Lir* ml) : ml_(ml), cur_core_reg_(0), cur_fp_reg_(0) {} |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 40 | virtual ~InToRegStorageX86_64Mapper() {} |
Serguei Katkov | 407a9d2 | 2014-07-05 03:09:32 +0700 | [diff] [blame] | 41 | virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref); |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 42 | protected: |
| 43 | Mir2Lir* ml_; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 44 | private: |
| 45 | int cur_core_reg_; |
| 46 | int cur_fp_reg_; |
| 47 | }; |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 48 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 49 | class InToRegStorageMapping { |
| 50 | public: |
| 51 | InToRegStorageMapping() : max_mapped_in_(0), is_there_stack_mapped_(false), |
| 52 | initialized_(false) {} |
| 53 | void Initialize(RegLocation* arg_locs, int count, InToRegStorageMapper* mapper); |
| 54 | int GetMaxMappedIn() { return max_mapped_in_; } |
| 55 | bool IsThereStackMapped() { return is_there_stack_mapped_; } |
| 56 | RegStorage Get(int in_position); |
| 57 | bool IsInitialized() { return initialized_; } |
| 58 | private: |
| 59 | std::map<int, RegStorage> mapping_; |
| 60 | int max_mapped_in_; |
| 61 | bool is_there_stack_mapped_; |
| 62 | bool initialized_; |
| 63 | }; |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 64 | |
Maxim Kazantsev | 6dccdc2 | 2014-08-18 18:43:55 +0700 | [diff] [blame] | 65 | class ExplicitTempRegisterLock { |
| 66 | public: |
| 67 | ExplicitTempRegisterLock(X86Mir2Lir* mir_to_lir, int n_regs, ...); |
| 68 | ~ExplicitTempRegisterLock(); |
| 69 | protected: |
| 70 | std::vector<RegStorage> temp_regs_; |
| 71 | X86Mir2Lir* const mir_to_lir_; |
| 72 | }; |
| 73 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 74 | public: |
Elena Sayapina | dd64450 | 2014-07-01 18:39:52 +0700 | [diff] [blame] | 75 | X86Mir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 76 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 77 | // Required for target - codegen helpers. |
| 78 | bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div, RegLocation rl_src, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 79 | RegLocation rl_dest, int lit) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 80 | bool EasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) OVERRIDE; |
| 81 | LIR* CheckSuspendUsingLoad() OVERRIDE; |
Andreas Gampe | 9843059 | 2014-07-27 19:44:50 -0700 | [diff] [blame] | 82 | RegStorage LoadHelper(QuickEntrypointEnum trampoline) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 83 | LIR* LoadBaseDisp(RegStorage r_base, int displacement, RegStorage r_dest, |
Andreas Gampe | 3c12c51 | 2014-06-24 18:46:29 +0000 | [diff] [blame] | 84 | OpSize size, VolatileKind is_volatile) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 85 | LIR* LoadBaseIndexed(RegStorage r_base, RegStorage r_index, RegStorage r_dest, int scale, |
Vladimir Marko | 3bf7c60 | 2014-05-07 14:55:43 +0100 | [diff] [blame] | 86 | OpSize size) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 87 | LIR* LoadConstantNoClobber(RegStorage r_dest, int value); |
| 88 | LIR* LoadConstantWide(RegStorage r_dest, int64_t value); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 89 | LIR* StoreBaseDisp(RegStorage r_base, int displacement, RegStorage r_src, |
Andreas Gampe | 3c12c51 | 2014-06-24 18:46:29 +0000 | [diff] [blame] | 90 | OpSize size, VolatileKind is_volatile) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 91 | LIR* StoreBaseIndexed(RegStorage r_base, RegStorage r_index, RegStorage r_src, int scale, |
| 92 | OpSize size) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 93 | void MarkGCCard(RegStorage val_reg, RegStorage tgt_addr_reg) OVERRIDE; |
| 94 | void GenImplicitNullCheck(RegStorage reg, int opt_flags) OVERRIDE; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 95 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 96 | // Required for target - register utilities. |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 97 | RegStorage TargetReg(SpecialTargetRegister reg) OVERRIDE; |
Andreas Gampe | ccc6026 | 2014-07-04 18:02:38 -0700 | [diff] [blame] | 98 | RegStorage TargetReg(SpecialTargetRegister symbolic_reg, WideKind wide_kind) OVERRIDE { |
| 99 | if (wide_kind == kWide) { |
| 100 | if (cu_->target64) { |
| 101 | return As64BitReg(TargetReg32(symbolic_reg)); |
| 102 | } else { |
| 103 | // x86: construct a pair. |
| 104 | DCHECK((kArg0 <= symbolic_reg && symbolic_reg < kArg3) || |
| 105 | (kFArg0 <= symbolic_reg && symbolic_reg < kFArg3) || |
| 106 | (kRet0 == symbolic_reg)); |
| 107 | return RegStorage::MakeRegPair(TargetReg32(symbolic_reg), |
| 108 | TargetReg32(static_cast<SpecialTargetRegister>(symbolic_reg + 1))); |
| 109 | } |
| 110 | } else if (wide_kind == kRef && cu_->target64) { |
| 111 | return As64BitReg(TargetReg32(symbolic_reg)); |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 112 | } else { |
Andreas Gampe | ccc6026 | 2014-07-04 18:02:38 -0700 | [diff] [blame] | 113 | return TargetReg32(symbolic_reg); |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 114 | } |
| 115 | } |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 116 | RegStorage TargetPtrReg(SpecialTargetRegister symbolic_reg) OVERRIDE { |
Andreas Gampe | ccc6026 | 2014-07-04 18:02:38 -0700 | [diff] [blame] | 117 | return TargetReg(symbolic_reg, cu_->target64 ? kWide : kNotWide); |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 118 | } |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 119 | |
| 120 | RegStorage GetArgMappingToPhysicalReg(int arg_num) OVERRIDE; |
| 121 | |
| 122 | RegLocation GetReturnAlt() OVERRIDE; |
| 123 | RegLocation GetReturnWideAlt() OVERRIDE; |
| 124 | RegLocation LocCReturn() OVERRIDE; |
| 125 | RegLocation LocCReturnRef() OVERRIDE; |
| 126 | RegLocation LocCReturnDouble() OVERRIDE; |
| 127 | RegLocation LocCReturnFloat() OVERRIDE; |
| 128 | RegLocation LocCReturnWide() OVERRIDE; |
| 129 | |
Vladimir Marko | 8dea81c | 2014-06-06 14:50:36 +0100 | [diff] [blame] | 130 | ResourceMask GetRegMaskCommon(const RegStorage& reg) const OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 131 | void AdjustSpillMask() OVERRIDE; |
| 132 | void ClobberCallerSave() OVERRIDE; |
| 133 | void FreeCallTemps() OVERRIDE; |
| 134 | void LockCallTemps() OVERRIDE; |
| 135 | |
| 136 | void CompilerInitializeRegAlloc() OVERRIDE; |
| 137 | int VectorRegisterSize() OVERRIDE; |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 138 | int NumReservableVectorRegisters(bool long_or_fp) OVERRIDE; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 139 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 140 | // Required for target - miscellaneous. |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 141 | void AssembleLIR() OVERRIDE; |
Vladimir Marko | 8dea81c | 2014-06-06 14:50:36 +0100 | [diff] [blame] | 142 | void DumpResourceMask(LIR* lir, const ResourceMask& mask, const char* prefix) OVERRIDE; |
| 143 | void SetupTargetResourceMasks(LIR* lir, uint64_t flags, |
| 144 | ResourceMask* use_mask, ResourceMask* def_mask) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 145 | const char* GetTargetInstFmt(int opcode) OVERRIDE; |
| 146 | const char* GetTargetInstName(int opcode) OVERRIDE; |
| 147 | std::string BuildInsnString(const char* fmt, LIR* lir, unsigned char* base_addr) OVERRIDE; |
Vladimir Marko | 8dea81c | 2014-06-06 14:50:36 +0100 | [diff] [blame] | 148 | ResourceMask GetPCUseDefEncoding() const OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 149 | uint64_t GetTargetInstFlags(int opcode) OVERRIDE; |
Ian Rogers | 5aa6e04 | 2014-06-13 16:38:24 -0700 | [diff] [blame] | 150 | size_t GetInsnSize(LIR* lir) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 151 | bool IsUnconditionalBranch(LIR* lir) OVERRIDE; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 152 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 153 | // Get the register class for load/store of a field. |
| 154 | RegisterClass RegClassForFieldLoadStore(OpSize size, bool is_volatile) OVERRIDE; |
Vladimir Marko | 674744e | 2014-04-24 15:18:26 +0100 | [diff] [blame] | 155 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 156 | // Required for target - Dalvik-level generators. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 157 | void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 158 | RegLocation rl_dest, int scale) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 159 | void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 160 | RegLocation rl_index, RegLocation rl_src, int scale, bool card_mark) OVERRIDE; |
| 161 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 162 | void GenArithOpDouble(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 163 | RegLocation rl_src2) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 164 | void GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 165 | RegLocation rl_src2) OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 166 | void GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 167 | RegLocation rl_src2) OVERRIDE; |
| 168 | void GenConversion(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src) OVERRIDE; |
| 169 | |
| 170 | bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object) OVERRIDE; |
| 171 | bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) OVERRIDE; |
| 172 | bool GenInlinedMinMaxFP(CallInfo* info, bool is_min, bool is_double) OVERRIDE; |
Yixin Shou | 8c914c0 | 2014-07-28 14:17:09 -0400 | [diff] [blame] | 173 | bool GenInlinedReverseBits(CallInfo* info, OpSize size) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 174 | bool GenInlinedSqrt(CallInfo* info) OVERRIDE; |
Yixin Shou | 7071c8d | 2014-03-05 06:07:48 -0500 | [diff] [blame] | 175 | bool GenInlinedAbsFloat(CallInfo* info) OVERRIDE; |
| 176 | bool GenInlinedAbsDouble(CallInfo* info) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 177 | bool GenInlinedPeek(CallInfo* info, OpSize size) OVERRIDE; |
| 178 | bool GenInlinedPoke(CallInfo* info, OpSize size) OVERRIDE; |
Andreas Gampe | 9843059 | 2014-07-27 19:44:50 -0700 | [diff] [blame] | 179 | bool GenInlinedCharAt(CallInfo* info) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 180 | |
| 181 | // Long instructions. |
Andreas Gampe | c76c614 | 2014-08-04 16:30:03 -0700 | [diff] [blame] | 182 | void GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 183 | RegLocation rl_src2, int flags) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 184 | void GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 185 | RegLocation rl_src2, int flags) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 186 | void GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 187 | RegLocation rl_src1, RegLocation rl_shift, int flags) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 188 | void GenCmpLong(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2) OVERRIDE; |
| 189 | void GenIntToLong(RegLocation rl_dest, RegLocation rl_src) OVERRIDE; |
| 190 | void GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest, |
| 191 | RegLocation rl_src1, RegLocation rl_shift) OVERRIDE; |
Razvan A Lupusoru | 3bc0174 | 2014-02-06 13:18:43 -0800 | [diff] [blame] | 192 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 193 | /* |
| 194 | * @brief Generate a two address long operation with a constant value |
| 195 | * @param rl_dest location of result |
| 196 | * @param rl_src constant source operand |
| 197 | * @param op Opcode to be generated |
| 198 | * @return success or not |
| 199 | */ |
| 200 | bool GenLongImm(RegLocation rl_dest, RegLocation rl_src, Instruction::Code op); |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 201 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 202 | /* |
| 203 | * @brief Generate a three address long operation with a constant value |
| 204 | * @param rl_dest location of result |
| 205 | * @param rl_src1 source operand |
| 206 | * @param rl_src2 constant source operand |
| 207 | * @param op Opcode to be generated |
| 208 | * @return success or not |
| 209 | */ |
| 210 | bool GenLongLongImm(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, |
| 211 | Instruction::Code op); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 212 | /** |
| 213 | * @brief Generate a long arithmetic operation. |
| 214 | * @param rl_dest The destination. |
| 215 | * @param rl_src1 First operand. |
| 216 | * @param rl_src2 Second operand. |
| 217 | * @param op The DEX opcode for the operation. |
| 218 | * @param is_commutative The sources can be swapped if needed. |
| 219 | */ |
| 220 | virtual void GenLongArith(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, |
| 221 | Instruction::Code op, bool is_commutative); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 222 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 223 | /** |
| 224 | * @brief Generate a two operand long arithmetic operation. |
| 225 | * @param rl_dest The destination. |
| 226 | * @param rl_src Second operand. |
| 227 | * @param op The DEX opcode for the operation. |
| 228 | */ |
| 229 | void GenLongArith(RegLocation rl_dest, RegLocation rl_src, Instruction::Code op); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 230 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 231 | /** |
| 232 | * @brief Generate a long operation. |
| 233 | * @param rl_dest The destination. Must be in a register |
| 234 | * @param rl_src The other operand. May be in a register or in memory. |
| 235 | * @param op The DEX opcode for the operation. |
| 236 | */ |
| 237 | virtual void GenLongRegOrMemOp(RegLocation rl_dest, RegLocation rl_src, Instruction::Code op); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 238 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 239 | |
| 240 | // TODO: collapse reg_lo, reg_hi |
| 241 | RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div) |
| 242 | OVERRIDE; |
| 243 | RegLocation GenDivRemLit(RegLocation rl_dest, RegStorage reg_lo, int lit, bool is_div) OVERRIDE; |
| 244 | void GenDivZeroCheckWide(RegStorage reg) OVERRIDE; |
| 245 | void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE; |
| 246 | void GenExitSequence() OVERRIDE; |
| 247 | void GenSpecialExitSequence() OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 248 | void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double) OVERRIDE; |
| 249 | void GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) OVERRIDE; |
| 250 | void GenSelect(BasicBlock* bb, MIR* mir) OVERRIDE; |
| 251 | void GenSelectConst32(RegStorage left_op, RegStorage right_op, ConditionCode code, |
| 252 | int32_t true_val, int32_t false_val, RegStorage rs_dest, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 253 | RegisterClass dest_reg_class) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 254 | bool GenMemBarrier(MemBarrierKind barrier_kind) OVERRIDE; |
| 255 | void GenMoveException(RegLocation rl_dest) OVERRIDE; |
| 256 | void GenMultiplyByTwoBitMultiplier(RegLocation rl_src, RegLocation rl_result, int lit, |
| 257 | int first_bit, int second_bit) OVERRIDE; |
| 258 | void GenNegDouble(RegLocation rl_dest, RegLocation rl_src) OVERRIDE; |
| 259 | void GenNegFloat(RegLocation rl_dest, RegLocation rl_src) OVERRIDE; |
Andreas Gampe | 48971b3 | 2014-08-06 10:09:01 -0700 | [diff] [blame] | 260 | void GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) OVERRIDE; |
| 261 | void GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) OVERRIDE; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 262 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 263 | /** |
| 264 | * @brief Implement instanceof a final class with x86 specific code. |
| 265 | * @param use_declaring_class 'true' if we can use the class itself. |
| 266 | * @param type_idx Type index to use if use_declaring_class is 'false'. |
| 267 | * @param rl_dest Result to be set to 0 or 1. |
| 268 | * @param rl_src Object to be tested. |
| 269 | */ |
| 270 | void GenInstanceofFinal(bool use_declaring_class, uint32_t type_idx, RegLocation rl_dest, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 271 | RegLocation rl_src) OVERRIDE; |
Chao-ying Fu | a014776 | 2014-06-06 18:38:49 -0700 | [diff] [blame] | 272 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 273 | // Single operation generators. |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 274 | LIR* OpUnconditionalBranch(LIR* target) OVERRIDE; |
| 275 | LIR* OpCmpBranch(ConditionCode cond, RegStorage src1, RegStorage src2, LIR* target) OVERRIDE; |
| 276 | LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) OVERRIDE; |
| 277 | LIR* OpCondBranch(ConditionCode cc, LIR* target) OVERRIDE; |
| 278 | LIR* OpDecAndBranch(ConditionCode c_code, RegStorage reg, LIR* target) OVERRIDE; |
| 279 | LIR* OpFpRegCopy(RegStorage r_dest, RegStorage r_src) OVERRIDE; |
| 280 | LIR* OpIT(ConditionCode cond, const char* guide) OVERRIDE; |
| 281 | void OpEndIT(LIR* it) OVERRIDE; |
| 282 | LIR* OpMem(OpKind op, RegStorage r_base, int disp) OVERRIDE; |
| 283 | LIR* OpPcRelLoad(RegStorage reg, LIR* target) OVERRIDE; |
| 284 | LIR* OpReg(OpKind op, RegStorage r_dest_src) OVERRIDE; |
| 285 | void OpRegCopy(RegStorage r_dest, RegStorage r_src) OVERRIDE; |
| 286 | LIR* OpRegCopyNoInsert(RegStorage r_dest, RegStorage r_src) OVERRIDE; |
| 287 | LIR* OpRegImm(OpKind op, RegStorage r_dest_src1, int value) OVERRIDE; |
| 288 | LIR* OpRegReg(OpKind op, RegStorage r_dest_src1, RegStorage r_src2) OVERRIDE; |
| 289 | LIR* OpMovRegMem(RegStorage r_dest, RegStorage r_base, int offset, MoveType move_type) OVERRIDE; |
| 290 | LIR* OpMovMemReg(RegStorage r_base, int offset, RegStorage r_src, MoveType move_type) OVERRIDE; |
| 291 | LIR* OpCondRegReg(OpKind op, ConditionCode cc, RegStorage r_dest, RegStorage r_src) OVERRIDE; |
| 292 | LIR* OpRegRegImm(OpKind op, RegStorage r_dest, RegStorage r_src1, int value) OVERRIDE; |
| 293 | LIR* OpRegRegReg(OpKind op, RegStorage r_dest, RegStorage r_src1, RegStorage r_src2) OVERRIDE; |
| 294 | LIR* OpTestSuspend(LIR* target) OVERRIDE; |
| 295 | LIR* OpVldm(RegStorage r_base, int count) OVERRIDE; |
| 296 | LIR* OpVstm(RegStorage r_base, int count) OVERRIDE; |
| 297 | void OpRegCopyWide(RegStorage dest, RegStorage src) OVERRIDE; |
| 298 | bool GenInlinedCurrentThread(CallInfo* info) OVERRIDE; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 299 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 300 | bool InexpensiveConstantInt(int32_t value) OVERRIDE; |
| 301 | bool InexpensiveConstantFloat(int32_t value) OVERRIDE; |
| 302 | bool InexpensiveConstantLong(int64_t value) OVERRIDE; |
| 303 | bool InexpensiveConstantDouble(int64_t value) OVERRIDE; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 304 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 305 | /* |
| 306 | * @brief Should try to optimize for two address instructions? |
| 307 | * @return true if we try to avoid generating three operand instructions. |
| 308 | */ |
| 309 | virtual bool GenerateTwoOperandInstructions() const { return true; } |
Mark Mendell | e87f9b5 | 2014-04-30 14:13:18 -0400 | [diff] [blame] | 310 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 311 | /* |
| 312 | * @brief x86 specific codegen for int operations. |
| 313 | * @param opcode Operation to perform. |
| 314 | * @param rl_dest Destination for the result. |
| 315 | * @param rl_lhs Left hand operand. |
| 316 | * @param rl_rhs Right hand operand. |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 317 | * @param flags The instruction optimization flags. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 318 | */ |
| 319 | void GenArithOpInt(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_lhs, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 320 | RegLocation rl_rhs, int flags) OVERRIDE; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 321 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 322 | /* |
| 323 | * @brief Load the Method* of a dex method into the register. |
| 324 | * @param target_method The MethodReference of the method to be invoked. |
| 325 | * @param type How the method will be invoked. |
| 326 | * @param register that will contain the code address. |
| 327 | * @note register will be passed to TargetReg to get physical register. |
| 328 | */ |
| 329 | void LoadMethodAddress(const MethodReference& target_method, InvokeType type, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 330 | SpecialTargetRegister symbolic_reg) OVERRIDE; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 331 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 332 | /* |
| 333 | * @brief Load the Class* of a Dex Class type into the register. |
Fred Shih | e7f82e2 | 2014-08-06 10:46:37 -0700 | [diff] [blame] | 334 | * @param dex DexFile that contains the class type. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 335 | * @param type How the method will be invoked. |
| 336 | * @param register that will contain the code address. |
| 337 | * @note register will be passed to TargetReg to get physical register. |
| 338 | */ |
Fred Shih | e7f82e2 | 2014-08-06 10:46:37 -0700 | [diff] [blame] | 339 | void LoadClassType(const DexFile& dex_file, uint32_t type_idx, |
| 340 | SpecialTargetRegister symbolic_reg) OVERRIDE; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 341 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 342 | void FlushIns(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE; |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 343 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 344 | NextCallInsn GetNextSDCallInsn() OVERRIDE; |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 345 | int GenDalvikArgsNoRange(CallInfo* info, int call_state, LIR** pcrLabel, |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 346 | NextCallInsn next_call_insn, |
| 347 | const MethodReference& target_method, |
| 348 | uint32_t vtable_idx, |
| 349 | uintptr_t direct_code, uintptr_t direct_method, InvokeType type, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 350 | bool skip_this) OVERRIDE; |
Dmitry Petrochenko | 58994cd | 2014-05-17 01:02:18 +0700 | [diff] [blame] | 351 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 352 | int GenDalvikArgsRange(CallInfo* info, int call_state, LIR** pcrLabel, |
| 353 | NextCallInsn next_call_insn, |
| 354 | const MethodReference& target_method, |
| 355 | uint32_t vtable_idx, |
| 356 | uintptr_t direct_code, uintptr_t direct_method, InvokeType type, |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 357 | bool skip_this) OVERRIDE; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 358 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 359 | /* |
| 360 | * @brief Generate a relative call to the method that will be patched at link time. |
| 361 | * @param target_method The MethodReference of the method to be invoked. |
| 362 | * @param type How the method will be invoked. |
| 363 | * @returns Call instruction |
| 364 | */ |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 365 | LIR* CallWithLinkerFixup(const MethodReference& target_method, InvokeType type); |
| 366 | |
| 367 | /* |
| 368 | * @brief Generate the actual call insn based on the method info. |
| 369 | * @param method_info the lowering info for the method call. |
| 370 | * @returns Call instruction |
| 371 | */ |
| 372 | LIR* GenCallInsn(const MirMethodLoweringInfo& method_info) OVERRIDE; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 373 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 374 | /* |
| 375 | * @brief Handle x86 specific literals |
| 376 | */ |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 377 | void InstallLiteralPools() OVERRIDE; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 378 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 379 | /* |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 380 | * @brief Generate the debug_frame FDE information. |
| 381 | * @returns pointer to vector containing CFE information |
| 382 | */ |
Tong Shen | 547cdfd | 2014-08-05 01:54:19 -0700 | [diff] [blame] | 383 | std::vector<uint8_t>* ReturnFrameDescriptionEntry() OVERRIDE; |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 384 | |
Andreas Gampe | 9843059 | 2014-07-27 19:44:50 -0700 | [diff] [blame] | 385 | LIR* InvokeTrampoline(OpKind op, RegStorage r_tgt, QuickEntrypointEnum trampoline) OVERRIDE; |
| 386 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 387 | protected: |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 388 | RegStorage TargetReg32(SpecialTargetRegister reg); |
Chao-ying Fu | a77ee51 | 2014-07-01 17:43:41 -0700 | [diff] [blame] | 389 | // Casting of RegStorage |
| 390 | RegStorage As32BitReg(RegStorage reg) { |
| 391 | DCHECK(!reg.IsPair()); |
| 392 | if ((kFailOnSizeError || kReportSizeError) && !reg.Is64Bit()) { |
| 393 | if (kFailOnSizeError) { |
| 394 | LOG(FATAL) << "Expected 64b register " << reg.GetReg(); |
| 395 | } else { |
| 396 | LOG(WARNING) << "Expected 64b register " << reg.GetReg(); |
| 397 | return reg; |
| 398 | } |
| 399 | } |
| 400 | RegStorage ret_val = RegStorage(RegStorage::k32BitSolo, |
| 401 | reg.GetRawBits() & RegStorage::kRegTypeMask); |
| 402 | DCHECK_EQ(GetRegInfo(reg)->FindMatchingView(RegisterInfo::k32SoloStorageMask) |
| 403 | ->GetReg().GetReg(), |
| 404 | ret_val.GetReg()); |
| 405 | return ret_val; |
| 406 | } |
| 407 | |
| 408 | RegStorage As64BitReg(RegStorage reg) { |
| 409 | DCHECK(!reg.IsPair()); |
| 410 | if ((kFailOnSizeError || kReportSizeError) && !reg.Is32Bit()) { |
| 411 | if (kFailOnSizeError) { |
| 412 | LOG(FATAL) << "Expected 32b register " << reg.GetReg(); |
| 413 | } else { |
| 414 | LOG(WARNING) << "Expected 32b register " << reg.GetReg(); |
| 415 | return reg; |
| 416 | } |
| 417 | } |
| 418 | RegStorage ret_val = RegStorage(RegStorage::k64BitSolo, |
| 419 | reg.GetRawBits() & RegStorage::kRegTypeMask); |
| 420 | DCHECK_EQ(GetRegInfo(reg)->FindMatchingView(RegisterInfo::k64SoloStorageMask) |
| 421 | ->GetReg().GetReg(), |
| 422 | ret_val.GetReg()); |
| 423 | return ret_val; |
| 424 | } |
| 425 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 426 | LIR* LoadBaseIndexedDisp(RegStorage r_base, RegStorage r_index, int scale, int displacement, |
| 427 | RegStorage r_dest, OpSize size); |
| 428 | LIR* StoreBaseIndexedDisp(RegStorage r_base, RegStorage r_index, int scale, int displacement, |
Jean Christophe Beyler | b5bce7c | 2014-07-25 12:32:18 -0700 | [diff] [blame] | 429 | RegStorage r_src, OpSize size, int opt_flags = 0); |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 430 | |
| 431 | RegStorage GetCoreArgMappingToPhysicalReg(int core_arg_num); |
| 432 | |
| 433 | int AssignInsnOffsets(); |
| 434 | void AssignOffsets(); |
| 435 | AssemblerStatus AssembleInstructions(CodeOffset start_addr); |
| 436 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 437 | size_t ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index, |
Ian Rogers | 5aa6e04 | 2014-06-13 16:38:24 -0700 | [diff] [blame] | 438 | int32_t raw_base, int32_t displacement); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 439 | void CheckValidByteRegister(const X86EncodingMap* entry, int32_t raw_reg); |
| 440 | void EmitPrefix(const X86EncodingMap* entry, |
Ian Rogers | 5aa6e04 | 2014-06-13 16:38:24 -0700 | [diff] [blame] | 441 | int32_t raw_reg_r, int32_t raw_reg_x, int32_t raw_reg_b); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 442 | void EmitOpcode(const X86EncodingMap* entry); |
| 443 | void EmitPrefixAndOpcode(const X86EncodingMap* entry, |
Ian Rogers | 5aa6e04 | 2014-06-13 16:38:24 -0700 | [diff] [blame] | 444 | int32_t reg_r, int32_t reg_x, int32_t reg_b); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 445 | void EmitDisp(uint8_t base, int32_t disp); |
| 446 | void EmitModrmThread(uint8_t reg_or_opcode); |
| 447 | void EmitModrmDisp(uint8_t reg_or_opcode, uint8_t base, int32_t disp); |
| 448 | void EmitModrmSibDisp(uint8_t reg_or_opcode, uint8_t base, uint8_t index, int scale, |
| 449 | int32_t disp); |
| 450 | void EmitImm(const X86EncodingMap* entry, int64_t imm); |
| 451 | void EmitNullary(const X86EncodingMap* entry); |
| 452 | void EmitOpRegOpcode(const X86EncodingMap* entry, int32_t raw_reg); |
| 453 | void EmitOpReg(const X86EncodingMap* entry, int32_t raw_reg); |
| 454 | void EmitOpMem(const X86EncodingMap* entry, int32_t raw_base, int32_t disp); |
| 455 | void EmitOpArray(const X86EncodingMap* entry, int32_t raw_base, int32_t raw_index, int scale, |
| 456 | int32_t disp); |
| 457 | void EmitMemReg(const X86EncodingMap* entry, int32_t raw_base, int32_t disp, int32_t raw_reg); |
| 458 | void EmitRegMem(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base, int32_t disp); |
| 459 | void EmitRegArray(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base, |
| 460 | int32_t raw_index, int scale, int32_t disp); |
| 461 | void EmitArrayReg(const X86EncodingMap* entry, int32_t raw_base, int32_t raw_index, int scale, |
| 462 | int32_t disp, int32_t raw_reg); |
| 463 | void EmitMemImm(const X86EncodingMap* entry, int32_t raw_base, int32_t disp, int32_t imm); |
| 464 | void EmitArrayImm(const X86EncodingMap* entry, int32_t raw_base, int32_t raw_index, int scale, |
| 465 | int32_t raw_disp, int32_t imm); |
| 466 | void EmitRegThread(const X86EncodingMap* entry, int32_t raw_reg, int32_t disp); |
| 467 | void EmitRegReg(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2); |
| 468 | void EmitRegRegImm(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2, int32_t imm); |
| 469 | void EmitRegMemImm(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_base, int32_t disp, |
| 470 | int32_t imm); |
| 471 | void EmitMemRegImm(const X86EncodingMap* entry, int32_t base, int32_t disp, int32_t raw_reg1, |
| 472 | int32_t imm); |
| 473 | void EmitRegImm(const X86EncodingMap* entry, int32_t raw_reg, int32_t imm); |
| 474 | void EmitThreadImm(const X86EncodingMap* entry, int32_t disp, int32_t imm); |
| 475 | void EmitMovRegImm(const X86EncodingMap* entry, int32_t raw_reg, int64_t imm); |
| 476 | void EmitShiftRegImm(const X86EncodingMap* entry, int32_t raw_reg, int32_t imm); |
| 477 | void EmitShiftRegCl(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_cl); |
| 478 | void EmitShiftMemCl(const X86EncodingMap* entry, int32_t raw_base, int32_t disp, int32_t raw_cl); |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 479 | void EmitShiftRegRegCl(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2, |
| 480 | int32_t raw_cl); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 481 | void EmitShiftMemImm(const X86EncodingMap* entry, int32_t raw_base, int32_t disp, int32_t imm); |
| 482 | void EmitRegCond(const X86EncodingMap* entry, int32_t raw_reg, int32_t cc); |
| 483 | void EmitMemCond(const X86EncodingMap* entry, int32_t raw_base, int32_t disp, int32_t cc); |
| 484 | void EmitRegRegCond(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2, int32_t cc); |
| 485 | void EmitRegMemCond(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_base, int32_t disp, |
| 486 | int32_t cc); |
Razvan A Lupusoru | bd288c2 | 2013-12-20 17:27:23 -0800 | [diff] [blame] | 487 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 488 | void EmitJmp(const X86EncodingMap* entry, int32_t rel); |
| 489 | void EmitJcc(const X86EncodingMap* entry, int32_t rel, int32_t cc); |
| 490 | void EmitCallMem(const X86EncodingMap* entry, int32_t raw_base, int32_t disp); |
| 491 | void EmitCallImmediate(const X86EncodingMap* entry, int32_t disp); |
| 492 | void EmitCallThread(const X86EncodingMap* entry, int32_t disp); |
| 493 | void EmitPcRel(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base_or_table, |
| 494 | int32_t raw_index, int scale, int32_t table_or_disp); |
| 495 | void EmitMacro(const X86EncodingMap* entry, int32_t raw_reg, int32_t offset); |
| 496 | void EmitUnimplemented(const X86EncodingMap* entry, LIR* lir); |
| 497 | void GenFusedLongCmpImmBranch(BasicBlock* bb, RegLocation rl_src1, |
| 498 | int64_t val, ConditionCode ccode); |
| 499 | void GenConstWide(RegLocation rl_dest, int64_t value); |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 500 | void GenMultiplyVectorSignedByte(RegStorage rs_dest_src1, RegStorage rs_src2); |
| 501 | void GenMultiplyVectorLong(RegStorage rs_dest_src1, RegStorage rs_src2); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 502 | void GenShiftByteVector(MIR* mir); |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 503 | void AndMaskVectorRegister(RegStorage rs_src1, uint32_t m1, uint32_t m2, uint32_t m3, |
| 504 | uint32_t m4); |
| 505 | void MaskVectorRegister(X86OpCode opcode, RegStorage rs_src1, uint32_t m1, uint32_t m2, |
| 506 | uint32_t m3, uint32_t m4); |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 507 | void AppendOpcodeWithConst(X86OpCode opcode, int reg, MIR* mir); |
Mark Mendell | 0a1174e | 2014-09-11 14:51:02 -0400 | [diff] [blame] | 508 | virtual void LoadVectorRegister(RegStorage rs_dest, RegStorage rs_src, OpSize opsize, |
| 509 | int op_mov); |
Mark Mendell | 2637f2e | 2014-04-30 10:10:47 -0400 | [diff] [blame] | 510 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 511 | static bool ProvidesFullMemoryBarrier(X86OpCode opcode); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 512 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 513 | /* |
| 514 | * @brief Ensure that a temporary register is byte addressable. |
| 515 | * @returns a temporary guarenteed to be byte addressable. |
| 516 | */ |
| 517 | virtual RegStorage AllocateByteRegister(); |
Razvan A Lupusoru | 99ad723 | 2014-02-25 17:41:08 -0800 | [diff] [blame] | 518 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 519 | /* |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 520 | * @brief Use a wide temporary as a 128-bit register |
| 521 | * @returns a 128-bit temporary register. |
| 522 | */ |
| 523 | virtual RegStorage Get128BitRegister(RegStorage reg); |
| 524 | |
| 525 | /* |
Chao-ying Fu | 7e399fd | 2014-06-10 18:11:11 -0700 | [diff] [blame] | 526 | * @brief Check if a register is byte addressable. |
| 527 | * @returns true if a register is byte addressable. |
| 528 | */ |
| 529 | bool IsByteRegister(RegStorage reg); |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 530 | |
| 531 | void GenDivRemLongLit(RegLocation rl_dest, RegLocation rl_src, int64_t imm, bool is_div); |
| 532 | |
DaniilSokolov | 70c4f06 | 2014-06-24 17:34:00 -0700 | [diff] [blame] | 533 | bool GenInlinedArrayCopyCharArray(CallInfo* info) OVERRIDE; |
Chao-ying Fu | 7e399fd | 2014-06-10 18:11:11 -0700 | [diff] [blame] | 534 | |
| 535 | /* |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 536 | * @brief generate inline code for fast case of Strng.indexOf. |
| 537 | * @param info Call parameters |
| 538 | * @param zero_based 'true' if the index into the string is 0. |
| 539 | * @returns 'true' if the call was inlined, 'false' if a regular call needs to be |
| 540 | * generated. |
| 541 | */ |
| 542 | bool GenInlinedIndexOf(CallInfo* info, bool zero_based); |
Mark Mendell | e87f9b5 | 2014-04-30 14:13:18 -0400 | [diff] [blame] | 543 | |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 544 | /** |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 545 | * @brief Used to reserve a range of vector registers. |
| 546 | * @see kMirOpReserveVectorRegisters |
| 547 | * @param mir The extended MIR for reservation. |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 548 | */ |
| 549 | void ReserveVectorRegisters(MIR* mir); |
| 550 | |
| 551 | /** |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 552 | * @brief Used to return a range of vector registers. |
| 553 | * @see kMirOpReturnVectorRegisters |
| 554 | * @param mir The extended MIR for returning vector regs. |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 555 | */ |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 556 | void ReturnVectorRegisters(MIR* mir); |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 557 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 558 | /* |
| 559 | * @brief Load 128 bit constant into vector register. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 560 | * @param mir The MIR whose opcode is kMirConstVector |
| 561 | * @note vA is the TypeSize for the register. |
| 562 | * @note vB is the destination XMM register. arg[0..3] are 32 bit constant values. |
| 563 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 564 | void GenConst128(MIR* mir); |
Mark Mendell | 4028a6c | 2014-02-19 20:06:20 -0800 | [diff] [blame] | 565 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 566 | /* |
| 567 | * @brief MIR to move a vectorized register to another. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 568 | * @param mir The MIR whose opcode is kMirConstVector. |
| 569 | * @note vA: TypeSize |
| 570 | * @note vB: destination |
| 571 | * @note vC: source |
| 572 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 573 | void GenMoveVector(MIR* mir); |
Mark Mendell | d65c51a | 2014-04-29 16:55:20 -0400 | [diff] [blame] | 574 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 575 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 576 | * @brief Packed multiply of units in two vector registers: vB = vB .* @note vC using vA to know |
| 577 | * the type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 578 | * @param mir The MIR whose opcode is kMirConstVector. |
| 579 | * @note vA: TypeSize |
| 580 | * @note vB: destination and source |
| 581 | * @note vC: source |
| 582 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 583 | void GenMultiplyVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 584 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 585 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 586 | * @brief Packed addition of units in two vector registers: vB = vB .+ vC using vA to know the |
| 587 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 588 | * @param mir The MIR whose opcode is kMirConstVector. |
| 589 | * @note vA: TypeSize |
| 590 | * @note vB: destination and source |
| 591 | * @note vC: source |
| 592 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 593 | void GenAddVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 594 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 595 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 596 | * @brief Packed subtraction of units in two vector registers: vB = vB .- vC using vA to know the |
| 597 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 598 | * @param mir The MIR whose opcode is kMirConstVector. |
| 599 | * @note vA: TypeSize |
| 600 | * @note vB: destination and source |
| 601 | * @note vC: source |
| 602 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 603 | void GenSubtractVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 604 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 605 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 606 | * @brief Packed shift left of units in two vector registers: vB = vB .<< vC using vA to know the |
| 607 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 608 | * @param mir The MIR whose opcode is kMirConstVector. |
| 609 | * @note vA: TypeSize |
| 610 | * @note vB: destination and source |
| 611 | * @note vC: immediate |
| 612 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 613 | void GenShiftLeftVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 614 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 615 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 616 | * @brief Packed signed shift right of units in two vector registers: vB = vB .>> vC using vA to |
| 617 | * know the type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 618 | * @param mir The MIR whose opcode is kMirConstVector. |
| 619 | * @note vA: TypeSize |
| 620 | * @note vB: destination and source |
| 621 | * @note vC: immediate |
| 622 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 623 | void GenSignedShiftRightVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 624 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 625 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 626 | * @brief Packed unsigned shift right of units in two vector registers: vB = vB .>>> vC using vA |
| 627 | * to know the type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 628 | * @param mir The MIR whose opcode is kMirConstVector. |
| 629 | * @note vA: TypeSize |
| 630 | * @note vB: destination and source |
| 631 | * @note vC: immediate |
| 632 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 633 | void GenUnsignedShiftRightVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 634 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 635 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 636 | * @brief Packed bitwise and of units in two vector registers: vB = vB .& vC using vA to know the |
| 637 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 638 | * @note vA: TypeSize |
| 639 | * @note vB: destination and source |
| 640 | * @note vC: source |
| 641 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 642 | void GenAndVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 643 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 644 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 645 | * @brief Packed bitwise or of units in two vector registers: vB = vB .| vC using vA to know the |
| 646 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 647 | * @param mir The MIR whose opcode is kMirConstVector. |
| 648 | * @note vA: TypeSize |
| 649 | * @note vB: destination and source |
| 650 | * @note vC: source |
| 651 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 652 | void GenOrVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 653 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 654 | /* |
Yixin Shou | f40f890 | 2014-08-14 14:10:32 -0400 | [diff] [blame] | 655 | * @brief Packed bitwise xor of units in two vector registers: vB = vB .^ vC using vA to know the |
| 656 | * type of the vector. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 657 | * @param mir The MIR whose opcode is kMirConstVector. |
| 658 | * @note vA: TypeSize |
| 659 | * @note vB: destination and source |
| 660 | * @note vC: source |
| 661 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 662 | void GenXorVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 663 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 664 | /* |
| 665 | * @brief Reduce a 128-bit packed element into a single VR by taking lower bits |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 666 | * @param mir The MIR whose opcode is kMirConstVector. |
| 667 | * @details Instruction does a horizontal addition of the packed elements and then adds it to VR. |
| 668 | * @note vA: TypeSize |
| 669 | * @note vB: destination and source VR (not vector register) |
| 670 | * @note vC: source (vector register) |
| 671 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 672 | void GenAddReduceVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 673 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 674 | /* |
| 675 | * @brief Extract a packed element into a single VR. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 676 | * @param mir The MIR whose opcode is kMirConstVector. |
| 677 | * @note vA: TypeSize |
| 678 | * @note vB: destination VR (not vector register) |
| 679 | * @note vC: source (vector register) |
| 680 | * @note arg[0]: The index to use for extraction from vector register (which packed element). |
| 681 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 682 | void GenReduceVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 683 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 684 | /* |
| 685 | * @brief Create a vector value, with all TypeSize values equal to vC |
| 686 | * @param bb The basic block in which the MIR is from. |
| 687 | * @param mir The MIR whose opcode is kMirConstVector. |
| 688 | * @note vA: TypeSize. |
| 689 | * @note vB: destination vector register. |
| 690 | * @note vC: source VR (not vector register). |
| 691 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 692 | void GenSetVector(MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 693 | |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 694 | /** |
| 695 | * @brief Used to generate code for kMirOpPackedArrayGet. |
| 696 | * @param bb The basic block of MIR. |
| 697 | * @param mir The mir whose opcode is kMirOpPackedArrayGet. |
| 698 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 699 | void GenPackedArrayGet(BasicBlock* bb, MIR* mir); |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 700 | |
| 701 | /** |
| 702 | * @brief Used to generate code for kMirOpPackedArrayPut. |
| 703 | * @param bb The basic block of MIR. |
| 704 | * @param mir The mir whose opcode is kMirOpPackedArrayPut. |
| 705 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 706 | void GenPackedArrayPut(BasicBlock* bb, MIR* mir); |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 707 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 708 | /* |
| 709 | * @brief Generate code for a vector opcode. |
| 710 | * @param bb The basic block in which the MIR is from. |
| 711 | * @param mir The MIR whose opcode is a non-standard opcode. |
| 712 | */ |
| 713 | void GenMachineSpecificExtendedMethodMIR(BasicBlock* bb, MIR* mir); |
Mark Mendell | fe94578 | 2014-05-22 09:52:36 -0400 | [diff] [blame] | 714 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 715 | /* |
| 716 | * @brief Return the correct x86 opcode for the Dex operation |
| 717 | * @param op Dex opcode for the operation |
| 718 | * @param loc Register location of the operand |
| 719 | * @param is_high_op 'true' if this is an operation on the high word |
| 720 | * @param value Immediate value for the operation. Used for byte variants |
| 721 | * @returns the correct x86 opcode to perform the operation |
| 722 | */ |
| 723 | X86OpCode GetOpcode(Instruction::Code op, RegLocation loc, bool is_high_op, int32_t value); |
Mark Mendell | d65c51a | 2014-04-29 16:55:20 -0400 | [diff] [blame] | 724 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 725 | /* |
| 726 | * @brief Return the correct x86 opcode for the Dex operation |
| 727 | * @param op Dex opcode for the operation |
| 728 | * @param dest location of the destination. May be register or memory. |
| 729 | * @param rhs Location for the rhs of the operation. May be in register or memory. |
| 730 | * @param is_high_op 'true' if this is an operation on the high word |
| 731 | * @returns the correct x86 opcode to perform the operation |
| 732 | * @note at most one location may refer to memory |
| 733 | */ |
| 734 | X86OpCode GetOpcode(Instruction::Code op, RegLocation dest, RegLocation rhs, |
| 735 | bool is_high_op); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 736 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 737 | /* |
| 738 | * @brief Is this operation a no-op for this opcode and value |
| 739 | * @param op Dex opcode for the operation |
| 740 | * @param value Immediate value for the operation. |
| 741 | * @returns 'true' if the operation will have no effect |
| 742 | */ |
| 743 | bool IsNoOp(Instruction::Code op, int32_t value); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 744 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 745 | /** |
| 746 | * @brief Calculate magic number and shift for a given divisor |
| 747 | * @param divisor divisor number for calculation |
| 748 | * @param magic hold calculated magic number |
| 749 | * @param shift hold calculated shift |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 750 | * @param is_long 'true' if divisor is jlong, 'false' for jint. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 751 | */ |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 752 | void CalculateMagicAndShift(int64_t divisor, int64_t& magic, int& shift, bool is_long); |
Mark Mendell | e02d48f | 2014-01-15 11:19:23 -0800 | [diff] [blame] | 753 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 754 | /* |
| 755 | * @brief Generate an integer div or rem operation. |
| 756 | * @param rl_dest Destination Location. |
| 757 | * @param rl_src1 Numerator Location. |
| 758 | * @param rl_src2 Divisor Location. |
| 759 | * @param is_div 'true' if this is a division, 'false' for a remainder. |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 760 | * @param flags The instruction optimization flags. It can include information |
| 761 | * if exception check can be elided. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 762 | */ |
| 763 | RegLocation GenDivRem(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 764 | bool is_div, int flags); |
Mark Mendell | 2bf31e6 | 2014-01-23 12:13:40 -0800 | [diff] [blame] | 765 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 766 | /* |
| 767 | * @brief Generate an integer div or rem operation by a literal. |
| 768 | * @param rl_dest Destination Location. |
| 769 | * @param rl_src Numerator Location. |
| 770 | * @param lit Divisor. |
| 771 | * @param is_div 'true' if this is a division, 'false' for a remainder. |
| 772 | */ |
| 773 | RegLocation GenDivRemLit(RegLocation rl_dest, RegLocation rl_src, int lit, bool is_div); |
Mark Mendell | 2bf31e6 | 2014-01-23 12:13:40 -0800 | [diff] [blame] | 774 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 775 | /* |
| 776 | * Generate code to implement long shift operations. |
| 777 | * @param opcode The DEX opcode to specify the shift type. |
| 778 | * @param rl_dest The destination. |
| 779 | * @param rl_src The value to be shifted. |
| 780 | * @param shift_amount How much to shift. |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 781 | * @param flags The instruction optimization flags. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 782 | * @returns the RegLocation of the result. |
| 783 | */ |
| 784 | RegLocation GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 785 | RegLocation rl_src, int shift_amount, int flags); |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 786 | /* |
| 787 | * Generate an imul of a register by a constant or a better sequence. |
| 788 | * @param dest Destination Register. |
| 789 | * @param src Source Register. |
| 790 | * @param val Constant multiplier. |
| 791 | */ |
| 792 | void GenImulRegImm(RegStorage dest, RegStorage src, int val); |
Mark Mendell | 4708dcd | 2014-01-22 09:05:18 -0800 | [diff] [blame] | 793 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 794 | /* |
| 795 | * Generate an imul of a memory location by a constant or a better sequence. |
| 796 | * @param dest Destination Register. |
| 797 | * @param sreg Symbolic register. |
| 798 | * @param displacement Displacement on stack of Symbolic Register. |
| 799 | * @param val Constant multiplier. |
| 800 | */ |
| 801 | void GenImulMemImm(RegStorage dest, int sreg, int displacement, int val); |
Mark Mendell | feb2b4e | 2014-01-28 12:59:49 -0800 | [diff] [blame] | 802 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 803 | /* |
| 804 | * @brief Compare memory to immediate, and branch if condition true. |
| 805 | * @param cond The condition code that when true will branch to the target. |
| 806 | * @param temp_reg A temporary register that can be used if compare memory is not |
| 807 | * supported by the architecture. |
| 808 | * @param base_reg The register holding the base address. |
| 809 | * @param offset The offset from the base. |
| 810 | * @param check_value The immediate to compare to. |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 811 | * @param target branch target (or nullptr) |
| 812 | * @param compare output for getting LIR for comparison (or nullptr) |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 813 | */ |
| 814 | LIR* OpCmpMemImmBranch(ConditionCode cond, RegStorage temp_reg, RegStorage base_reg, |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 815 | int offset, int check_value, LIR* target, LIR** compare); |
Mark Mendell | 766e929 | 2014-01-27 07:55:47 -0800 | [diff] [blame] | 816 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 817 | void GenRemFP(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, bool is_double); |
| 818 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 819 | /* |
| 820 | * Can this operation be using core registers without temporaries? |
| 821 | * @param rl_lhs Left hand operand. |
| 822 | * @param rl_rhs Right hand operand. |
| 823 | * @returns 'true' if the operation can proceed without needing temporary regs. |
| 824 | */ |
| 825 | bool IsOperationSafeWithoutTemps(RegLocation rl_lhs, RegLocation rl_rhs); |
Razvan A Lupusoru | 614c2b4 | 2014-01-28 17:05:21 -0800 | [diff] [blame] | 826 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 827 | /** |
| 828 | * @brief Generates inline code for conversion of long to FP by using x87/ |
| 829 | * @param rl_dest The destination of the FP. |
| 830 | * @param rl_src The source of the long. |
| 831 | * @param is_double 'true' if dealing with double, 'false' for float. |
| 832 | */ |
| 833 | virtual void GenLongToFP(RegLocation rl_dest, RegLocation rl_src, bool is_double); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 834 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 835 | void GenArrayBoundsCheck(RegStorage index, RegStorage array_base, int32_t len_offset); |
| 836 | void GenArrayBoundsCheck(int32_t index, RegStorage array_base, int32_t len_offset); |
| 837 | |
| 838 | LIR* OpRegMem(OpKind op, RegStorage r_dest, RegStorage r_base, int offset); |
| 839 | LIR* OpRegMem(OpKind op, RegStorage r_dest, RegLocation value); |
| 840 | LIR* OpMemReg(OpKind op, RegLocation rl_dest, int value); |
| 841 | LIR* OpThreadMem(OpKind op, ThreadOffset<4> thread_offset); |
| 842 | LIR* OpThreadMem(OpKind op, ThreadOffset<8> thread_offset); |
| 843 | void OpRegThreadMem(OpKind op, RegStorage r_dest, ThreadOffset<4> thread_offset); |
| 844 | void OpRegThreadMem(OpKind op, RegStorage r_dest, ThreadOffset<8> thread_offset); |
| 845 | void OpTlsCmp(ThreadOffset<4> offset, int val); |
| 846 | void OpTlsCmp(ThreadOffset<8> offset, int val); |
| 847 | |
| 848 | void OpLea(RegStorage r_base, RegStorage reg1, RegStorage reg2, int scale, int offset); |
| 849 | |
Andreas Gampe | c76c614 | 2014-08-04 16:30:03 -0700 | [diff] [blame] | 850 | // Try to do a long multiplication where rl_src2 is a constant. This simplified setup might fail, |
| 851 | // in which case false will be returned. |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 852 | bool GenMulLongConst(RegLocation rl_dest, RegLocation rl_src1, int64_t val, int flags); |
Andreas Gampe | c76c614 | 2014-08-04 16:30:03 -0700 | [diff] [blame] | 853 | void GenMulLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 854 | RegLocation rl_src2, int flags); |
Andreas Gampe | c76c614 | 2014-08-04 16:30:03 -0700 | [diff] [blame] | 855 | void GenNotLong(RegLocation rl_dest, RegLocation rl_src); |
| 856 | void GenNegLong(RegLocation rl_dest, RegLocation rl_src); |
| 857 | void GenDivRemLong(Instruction::Code, RegLocation rl_dest, RegLocation rl_src1, |
Razvan A Lupusoru | 5c5676b | 2014-09-29 16:42:11 -0700 | [diff] [blame] | 858 | RegLocation rl_src2, bool is_div, int flags); |
Andreas Gampe | c76c614 | 2014-08-04 16:30:03 -0700 | [diff] [blame] | 859 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 860 | void SpillCoreRegs(); |
| 861 | void UnSpillCoreRegs(); |
| 862 | void UnSpillFPRegs(); |
| 863 | void SpillFPRegs(); |
| 864 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 865 | /* |
| 866 | * @brief Perform MIR analysis before compiling method. |
| 867 | * @note Invokes Mir2LiR::Materialize after analysis. |
| 868 | */ |
| 869 | void Materialize(); |
Razvan A Lupusoru | 614c2b4 | 2014-01-28 17:05:21 -0800 | [diff] [blame] | 870 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 871 | /* |
| 872 | * Mir2Lir's UpdateLoc() looks to see if the Dalvik value is currently live in any temp register |
| 873 | * without regard to data type. In practice, this can result in UpdateLoc returning a |
| 874 | * location record for a Dalvik float value in a core register, and vis-versa. For targets |
| 875 | * which can inexpensively move data between core and float registers, this can often be a win. |
| 876 | * However, for x86 this is generally not a win. These variants of UpdateLoc() |
| 877 | * take a register class argument - and will return an in-register location record only if |
| 878 | * the value is live in a temp register of the correct class. Additionally, if the value is in |
| 879 | * a temp register of the wrong register class, it will be clobbered. |
| 880 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 881 | RegLocation UpdateLocTyped(RegLocation loc); |
| 882 | RegLocation UpdateLocWideTyped(RegLocation loc); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 883 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 884 | /* |
| 885 | * @brief Analyze MIR before generating code, to prepare for the code generation. |
| 886 | */ |
| 887 | void AnalyzeMIR(); |
buzbee | 30adc73 | 2014-05-09 15:10:18 -0700 | [diff] [blame] | 888 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 889 | /* |
| 890 | * @brief Analyze one basic block. |
| 891 | * @param bb Basic block to analyze. |
| 892 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 893 | void AnalyzeBB(BasicBlock* bb); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 894 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 895 | /* |
| 896 | * @brief Analyze one extended MIR instruction |
| 897 | * @param opcode MIR instruction opcode. |
| 898 | * @param bb Basic block containing instruction. |
| 899 | * @param mir Extended instruction to analyze. |
| 900 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 901 | void AnalyzeExtendedMIR(int opcode, BasicBlock* bb, MIR* mir); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 902 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 903 | /* |
| 904 | * @brief Analyze one MIR instruction |
| 905 | * @param opcode MIR instruction opcode. |
| 906 | * @param bb Basic block containing instruction. |
| 907 | * @param mir Instruction to analyze. |
| 908 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 909 | virtual void AnalyzeMIR(int opcode, BasicBlock* bb, MIR* mir); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 910 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 911 | /* |
| 912 | * @brief Analyze one MIR float/double instruction |
| 913 | * @param opcode MIR instruction opcode. |
| 914 | * @param bb Basic block containing instruction. |
| 915 | * @param mir Instruction to analyze. |
| 916 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 917 | virtual void AnalyzeFPInstruction(int opcode, BasicBlock* bb, MIR* mir); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 918 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 919 | /* |
| 920 | * @brief Analyze one use of a double operand. |
| 921 | * @param rl_use Double RegLocation for the operand. |
| 922 | */ |
| 923 | void AnalyzeDoubleUse(RegLocation rl_use); |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 924 | |
Yixin Shou | 7071c8d | 2014-03-05 06:07:48 -0500 | [diff] [blame] | 925 | /* |
| 926 | * @brief Analyze one invoke-static MIR instruction |
| 927 | * @param opcode MIR instruction opcode. |
| 928 | * @param bb Basic block containing instruction. |
| 929 | * @param mir Instruction to analyze. |
| 930 | */ |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 931 | void AnalyzeInvokeStatic(int opcode, BasicBlock* bb, MIR* mir); |
Yixin Shou | 7071c8d | 2014-03-05 06:07:48 -0500 | [diff] [blame] | 932 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 933 | // Information derived from analysis of MIR |
Dmitry Petrochenko | 9ee801f | 2014-05-12 11:31:37 +0700 | [diff] [blame] | 934 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 935 | // The compiler temporary for the code address of the method. |
| 936 | CompilerTemp *base_of_code_; |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 937 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 938 | // Have we decided to compute a ptr to code and store in temporary VR? |
| 939 | bool store_method_addr_; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 940 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 941 | // Have we used the stored method address? |
| 942 | bool store_method_addr_used_; |
Mark Mendell | 67c39c4 | 2014-01-31 17:28:00 -0800 | [diff] [blame] | 943 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 944 | // Instructions to remove if we didn't use the stored method address. |
| 945 | LIR* setup_method_address_[2]; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 946 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 947 | // Instructions needing patching with Method* values. |
Vladimir Marko | e39c54e | 2014-09-22 14:50:02 +0100 | [diff] [blame] | 948 | ArenaVector<LIR*> method_address_insns_; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 949 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 950 | // Instructions needing patching with Class Type* values. |
Vladimir Marko | e39c54e | 2014-09-22 14:50:02 +0100 | [diff] [blame] | 951 | ArenaVector<LIR*> class_type_address_insns_; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 952 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 953 | // Instructions needing patching with PC relative code addresses. |
Vladimir Marko | e39c54e | 2014-09-22 14:50:02 +0100 | [diff] [blame] | 954 | ArenaVector<LIR*> call_method_insns_; |
Mark Mendell | 55d0eac | 2014-02-06 11:02:52 -0800 | [diff] [blame] | 955 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 956 | // Prologue decrement of stack pointer. |
| 957 | LIR* stack_decrement_; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 958 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 959 | // Epilogue increment of stack pointer. |
| 960 | LIR* stack_increment_; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 961 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 962 | // The list of const vector literals. |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 963 | LIR* const_vectors_; |
Mark Mendell | d65c51a | 2014-04-29 16:55:20 -0400 | [diff] [blame] | 964 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 965 | /* |
| 966 | * @brief Search for a matching vector literal |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 967 | * @param constants An array of size 4 which contains all of 32-bit constants. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 968 | * @returns pointer to matching LIR constant, or nullptr if not found. |
| 969 | */ |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 970 | LIR* ScanVectorLiteral(int32_t* constants); |
Mark Mendell | d65c51a | 2014-04-29 16:55:20 -0400 | [diff] [blame] | 971 | |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 972 | /* |
| 973 | * @brief Add a constant vector literal |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 974 | * @param constants An array of size 4 which contains all of 32-bit constants. |
Ian Rogers | 0f9b9c5 | 2014-06-09 01:32:12 -0700 | [diff] [blame] | 975 | */ |
Lupusoru, Razvan A | b3a84e2 | 2014-07-28 14:11:01 -0700 | [diff] [blame] | 976 | LIR* AddVectorLiteral(int32_t* constants); |
Mark Mendell | d65c51a | 2014-04-29 16:55:20 -0400 | [diff] [blame] | 977 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 978 | bool WideGPRsAreAliases() const OVERRIDE { |
Serguei Katkov | 59a42af | 2014-07-05 00:55:46 +0700 | [diff] [blame] | 979 | return cu_->target64; // On 64b, we have 64b GPRs. |
| 980 | } |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 981 | |
| 982 | bool WideFPRsAreAliases() const OVERRIDE { |
Serguei Katkov | 59a42af | 2014-07-05 00:55:46 +0700 | [diff] [blame] | 983 | return true; // xmm registers have 64b views even on x86. |
| 984 | } |
| 985 | |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 986 | /* |
| 987 | * @brief Dump a RegLocation using printf |
| 988 | * @param loc Register location to dump |
| 989 | */ |
| 990 | static void DumpRegLocation(RegLocation loc); |
| 991 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 992 | InToRegStorageMapping in_to_reg_storage_mapping_; |
Alexei Zavjalov | 6bbf096 | 2014-07-15 02:19:41 +0700 | [diff] [blame] | 993 | |
Udayan Banerji | 60bfe7b | 2014-07-08 19:59:43 -0700 | [diff] [blame] | 994 | private: |
Yixin Shou | 8c914c0 | 2014-07-28 14:17:09 -0400 | [diff] [blame] | 995 | void SwapBits(RegStorage result_reg, int shift, int32_t value); |
| 996 | void SwapBits64(RegStorage result_reg, int shift, int64_t value); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame^] | 997 | |
| 998 | static const X86EncodingMap EncodingMap[kX86Last]; |
| 999 | |
| 1000 | friend std::ostream& operator<<(std::ostream& os, const X86OpCode& rhs); |
| 1001 | |
| 1002 | DISALLOW_COPY_AND_ASSIGN(X86Mir2Lir); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1003 | }; |
| 1004 | |
| 1005 | } // namespace art |
| 1006 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 1007 | #endif // ART_COMPILER_DEX_QUICK_X86_CODEGEN_X86_H_ |