Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "code_generator_arm.h" |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 18 | |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 19 | #include "entrypoints/quick/quick_entrypoints.h" |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 20 | #include "gc/accounting/card_table.h" |
Ian Rogers | 7e70b00 | 2014-10-08 11:47:24 -0700 | [diff] [blame] | 21 | #include "mirror/array-inl.h" |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 22 | #include "mirror/art_method.h" |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 23 | #include "mirror/class.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 24 | #include "thread.h" |
Nicolas Geoffray | 9cf3552 | 2014-06-09 18:40:10 +0100 | [diff] [blame] | 25 | #include "utils/arm/assembler_arm.h" |
| 26 | #include "utils/arm/managed_register_arm.h" |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 27 | #include "utils/assembler.h" |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 28 | #include "utils/stack_checks.h" |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 29 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 30 | namespace art { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 31 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 32 | namespace arm { |
| 33 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 34 | static DRegister FromLowSToD(SRegister reg) { |
| 35 | DCHECK_EQ(reg % 2, 0); |
| 36 | return static_cast<DRegister>(reg / 2); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 37 | } |
| 38 | |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 39 | static constexpr bool kExplicitStackOverflowCheck = false; |
| 40 | |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 41 | static constexpr int kNumberOfPushedRegistersAtEntry = 1 + 2; // LR, R6, R7 |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 42 | static constexpr int kCurrentMethodStackOffset = 0; |
| 43 | |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 44 | static constexpr Register kRuntimeParameterCoreRegisters[] = { R0, R1, R2, R3 }; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 45 | static constexpr size_t kRuntimeParameterCoreRegistersLength = |
| 46 | arraysize(kRuntimeParameterCoreRegisters); |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 47 | static constexpr SRegister kRuntimeParameterFpuRegisters[] = { S0, S1, S2, S3 }; |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 48 | static constexpr size_t kRuntimeParameterFpuRegistersLength = |
| 49 | arraysize(kRuntimeParameterFpuRegisters); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 50 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 51 | class InvokeRuntimeCallingConvention : public CallingConvention<Register, SRegister> { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 52 | public: |
| 53 | InvokeRuntimeCallingConvention() |
| 54 | : CallingConvention(kRuntimeParameterCoreRegisters, |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 55 | kRuntimeParameterCoreRegistersLength, |
| 56 | kRuntimeParameterFpuRegisters, |
| 57 | kRuntimeParameterFpuRegistersLength) {} |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 58 | |
| 59 | private: |
| 60 | DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention); |
| 61 | }; |
| 62 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 63 | #define __ reinterpret_cast<ArmAssembler*>(codegen->GetAssembler())-> |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 64 | #define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArmWordSize, x).Int32Value() |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 65 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 66 | class SlowPathCodeARM : public SlowPathCode { |
| 67 | public: |
| 68 | SlowPathCodeARM() : entry_label_(), exit_label_() {} |
| 69 | |
| 70 | Label* GetEntryLabel() { return &entry_label_; } |
| 71 | Label* GetExitLabel() { return &exit_label_; } |
| 72 | |
| 73 | private: |
| 74 | Label entry_label_; |
| 75 | Label exit_label_; |
| 76 | |
| 77 | DISALLOW_COPY_AND_ASSIGN(SlowPathCodeARM); |
| 78 | }; |
| 79 | |
| 80 | class NullCheckSlowPathARM : public SlowPathCodeARM { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 81 | public: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 82 | explicit NullCheckSlowPathARM(HNullCheck* instruction) : instruction_(instruction) {} |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 83 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 84 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 85 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 86 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 87 | arm_codegen->InvokeRuntime( |
| 88 | QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | private: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 92 | HNullCheck* const instruction_; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 93 | DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM); |
| 94 | }; |
| 95 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 96 | class DivZeroCheckSlowPathARM : public SlowPathCodeARM { |
| 97 | public: |
| 98 | explicit DivZeroCheckSlowPathARM(HDivZeroCheck* instruction) : instruction_(instruction) {} |
| 99 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 100 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 101 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
| 102 | __ Bind(GetEntryLabel()); |
| 103 | arm_codegen->InvokeRuntime( |
| 104 | QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc()); |
| 105 | } |
| 106 | |
| 107 | private: |
| 108 | HDivZeroCheck* const instruction_; |
| 109 | DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM); |
| 110 | }; |
| 111 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 112 | class StackOverflowCheckSlowPathARM : public SlowPathCodeARM { |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 113 | public: |
| 114 | StackOverflowCheckSlowPathARM() {} |
| 115 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 116 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 117 | __ Bind(GetEntryLabel()); |
| 118 | __ LoadFromOffset(kLoadWord, PC, TR, |
| 119 | QUICK_ENTRYPOINT_OFFSET(kArmWordSize, pThrowStackOverflow).Int32Value()); |
| 120 | } |
| 121 | |
| 122 | private: |
| 123 | DISALLOW_COPY_AND_ASSIGN(StackOverflowCheckSlowPathARM); |
| 124 | }; |
| 125 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 126 | class SuspendCheckSlowPathARM : public SlowPathCodeARM { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 127 | public: |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 128 | SuspendCheckSlowPathARM(HSuspendCheck* instruction, HBasicBlock* successor) |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 129 | : instruction_(instruction), successor_(successor) {} |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 130 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 131 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 132 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 133 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 134 | codegen->SaveLiveRegisters(instruction_->GetLocations()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 135 | arm_codegen->InvokeRuntime( |
| 136 | QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 137 | codegen->RestoreLiveRegisters(instruction_->GetLocations()); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 138 | if (successor_ == nullptr) { |
| 139 | __ b(GetReturnLabel()); |
| 140 | } else { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 141 | __ b(arm_codegen->GetLabelOf(successor_)); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 142 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 145 | Label* GetReturnLabel() { |
| 146 | DCHECK(successor_ == nullptr); |
| 147 | return &return_label_; |
| 148 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 149 | |
| 150 | private: |
| 151 | HSuspendCheck* const instruction_; |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 152 | // If not null, the block to branch to after the suspend check. |
| 153 | HBasicBlock* const successor_; |
| 154 | |
| 155 | // If `successor_` is null, the label to branch to after the suspend check. |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 156 | Label return_label_; |
| 157 | |
| 158 | DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM); |
| 159 | }; |
| 160 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 161 | class BoundsCheckSlowPathARM : public SlowPathCodeARM { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 162 | public: |
Roland Levillain | 5799fc0 | 2014-09-25 12:15:20 +0100 | [diff] [blame] | 163 | BoundsCheckSlowPathARM(HBoundsCheck* instruction, |
| 164 | Location index_location, |
| 165 | Location length_location) |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 166 | : instruction_(instruction), |
| 167 | index_location_(index_location), |
| 168 | length_location_(length_location) {} |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 169 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 170 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 171 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 172 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 173 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 174 | // move resolver. |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 175 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 176 | codegen->EmitParallelMoves( |
| 177 | index_location_, |
| 178 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
| 179 | length_location_, |
| 180 | Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 181 | arm_codegen->InvokeRuntime( |
| 182 | QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | private: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 186 | HBoundsCheck* const instruction_; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 187 | const Location index_location_; |
| 188 | const Location length_location_; |
| 189 | |
| 190 | DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM); |
| 191 | }; |
| 192 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 193 | class LoadClassSlowPathARM : public SlowPathCodeARM { |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 194 | public: |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 195 | LoadClassSlowPathARM(HLoadClass* cls, |
| 196 | HInstruction* at, |
| 197 | uint32_t dex_pc, |
| 198 | bool do_clinit) |
| 199 | : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { |
| 200 | DCHECK(at->IsLoadClass() || at->IsClinitCheck()); |
| 201 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 202 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 203 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 204 | LocationSummary* locations = at_->GetLocations(); |
| 205 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 206 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
| 207 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 208 | codegen->SaveLiveRegisters(locations); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 209 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 210 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 211 | __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 212 | arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 213 | int32_t entry_point_offset = do_clinit_ |
| 214 | ? QUICK_ENTRY_POINT(pInitializeStaticStorage) |
| 215 | : QUICK_ENTRY_POINT(pInitializeType); |
| 216 | arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_); |
| 217 | |
| 218 | // Move the class to the desired location. |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 219 | Location out = locations->Out(); |
| 220 | if (out.IsValid()) { |
| 221 | DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg())); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 222 | arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0)); |
| 223 | } |
| 224 | codegen->RestoreLiveRegisters(locations); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 225 | __ b(GetExitLabel()); |
| 226 | } |
| 227 | |
| 228 | private: |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 229 | // The class this slow path will load. |
| 230 | HLoadClass* const cls_; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 231 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 232 | // The instruction where this slow path is happening. |
| 233 | // (Might be the load class or an initialization check). |
| 234 | HInstruction* const at_; |
| 235 | |
| 236 | // The dex PC of `at_`. |
| 237 | const uint32_t dex_pc_; |
| 238 | |
| 239 | // Whether to initialize the class. |
| 240 | const bool do_clinit_; |
| 241 | |
| 242 | DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 243 | }; |
| 244 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 245 | class LoadStringSlowPathARM : public SlowPathCodeARM { |
| 246 | public: |
| 247 | explicit LoadStringSlowPathARM(HLoadString* instruction) : instruction_(instruction) {} |
| 248 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 249 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 250 | LocationSummary* locations = instruction_->GetLocations(); |
| 251 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
| 252 | |
| 253 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
| 254 | __ Bind(GetEntryLabel()); |
| 255 | codegen->SaveLiveRegisters(locations); |
| 256 | |
| 257 | InvokeRuntimeCallingConvention calling_convention; |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame^] | 258 | arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
| 259 | __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex()); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 260 | arm_codegen->InvokeRuntime( |
| 261 | QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc()); |
| 262 | arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0)); |
| 263 | |
| 264 | codegen->RestoreLiveRegisters(locations); |
| 265 | __ b(GetExitLabel()); |
| 266 | } |
| 267 | |
| 268 | private: |
| 269 | HLoadString* const instruction_; |
| 270 | |
| 271 | DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM); |
| 272 | }; |
| 273 | |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 274 | class TypeCheckSlowPathARM : public SlowPathCodeARM { |
| 275 | public: |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 276 | TypeCheckSlowPathARM(HInstruction* instruction, |
| 277 | Location class_to_check, |
| 278 | Location object_class, |
| 279 | uint32_t dex_pc) |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 280 | : instruction_(instruction), |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 281 | class_to_check_(class_to_check), |
| 282 | object_class_(object_class), |
| 283 | dex_pc_(dex_pc) {} |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 284 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 285 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 286 | LocationSummary* locations = instruction_->GetLocations(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 287 | DCHECK(instruction_->IsCheckCast() |
| 288 | || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 289 | |
| 290 | CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen); |
| 291 | __ Bind(GetEntryLabel()); |
| 292 | codegen->SaveLiveRegisters(locations); |
| 293 | |
| 294 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 295 | // move resolver. |
| 296 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 297 | codegen->EmitParallelMoves( |
| 298 | class_to_check_, |
| 299 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
| 300 | object_class_, |
| 301 | Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 302 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 303 | if (instruction_->IsInstanceOf()) { |
| 304 | arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_); |
| 305 | arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0)); |
| 306 | } else { |
| 307 | DCHECK(instruction_->IsCheckCast()); |
| 308 | arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_); |
| 309 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 310 | |
| 311 | codegen->RestoreLiveRegisters(locations); |
| 312 | __ b(GetExitLabel()); |
| 313 | } |
| 314 | |
| 315 | private: |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 316 | HInstruction* const instruction_; |
| 317 | const Location class_to_check_; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 318 | const Location object_class_; |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 319 | uint32_t dex_pc_; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 320 | |
| 321 | DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM); |
| 322 | }; |
| 323 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 324 | #undef __ |
| 325 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 326 | #undef __ |
| 327 | #define __ reinterpret_cast<ArmAssembler*>(GetAssembler())-> |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 328 | |
| 329 | inline Condition ARMCondition(IfCondition cond) { |
| 330 | switch (cond) { |
| 331 | case kCondEQ: return EQ; |
| 332 | case kCondNE: return NE; |
| 333 | case kCondLT: return LT; |
| 334 | case kCondLE: return LE; |
| 335 | case kCondGT: return GT; |
| 336 | case kCondGE: return GE; |
| 337 | default: |
| 338 | LOG(FATAL) << "Unknown if condition"; |
| 339 | } |
| 340 | return EQ; // Unreachable. |
| 341 | } |
| 342 | |
| 343 | inline Condition ARMOppositeCondition(IfCondition cond) { |
| 344 | switch (cond) { |
| 345 | case kCondEQ: return NE; |
| 346 | case kCondNE: return EQ; |
| 347 | case kCondLT: return GE; |
| 348 | case kCondLE: return GT; |
| 349 | case kCondGT: return LE; |
| 350 | case kCondGE: return LT; |
| 351 | default: |
| 352 | LOG(FATAL) << "Unknown if condition"; |
| 353 | } |
| 354 | return EQ; // Unreachable. |
| 355 | } |
| 356 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 357 | void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const { |
| 358 | stream << ArmManagedRegister::FromCoreRegister(Register(reg)); |
| 359 | } |
| 360 | |
| 361 | void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 362 | stream << ArmManagedRegister::FromSRegister(SRegister(reg)); |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 363 | } |
| 364 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 365 | size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 366 | __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index); |
| 367 | return kArmWordSize; |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 368 | } |
| 369 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 370 | size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 371 | __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index); |
| 372 | return kArmWordSize; |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 375 | CodeGeneratorARM::CodeGeneratorARM(HGraph* graph) |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 376 | : CodeGenerator(graph, kNumberOfCoreRegisters, kNumberOfSRegisters, kNumberOfRegisterPairs), |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 377 | block_labels_(graph->GetArena(), 0), |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 378 | location_builder_(graph, this), |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 379 | instruction_visitor_(graph, this), |
Nicolas Geoffray | 8d48673 | 2014-07-16 16:23:40 +0100 | [diff] [blame] | 380 | move_resolver_(graph->GetArena(), this), |
| 381 | assembler_(true) {} |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 382 | |
Nicolas Geoffray | ab032bc | 2014-07-15 12:55:21 +0100 | [diff] [blame] | 383 | size_t CodeGeneratorARM::FrameEntrySpillSize() const { |
| 384 | return kNumberOfPushedRegistersAtEntry * kArmWordSize; |
| 385 | } |
| 386 | |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 387 | Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 388 | switch (type) { |
| 389 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 390 | size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 391 | ArmManagedRegister pair = |
| 392 | ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg)); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 393 | DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]); |
| 394 | DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]); |
| 395 | |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 396 | blocked_core_registers_[pair.AsRegisterPairLow()] = true; |
| 397 | blocked_core_registers_[pair.AsRegisterPairHigh()] = true; |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 398 | UpdateBlockedPairRegisters(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 399 | return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh()); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | case Primitive::kPrimByte: |
| 403 | case Primitive::kPrimBoolean: |
| 404 | case Primitive::kPrimChar: |
| 405 | case Primitive::kPrimShort: |
| 406 | case Primitive::kPrimInt: |
| 407 | case Primitive::kPrimNot: { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 408 | int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 409 | // Block all register pairs that contain `reg`. |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 410 | for (int i = 0; i < kNumberOfRegisterPairs; i++) { |
| 411 | ArmManagedRegister current = |
| 412 | ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i)); |
| 413 | if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 414 | blocked_register_pairs_[i] = true; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 415 | } |
| 416 | } |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 417 | return Location::RegisterLocation(reg); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 418 | } |
| 419 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 420 | case Primitive::kPrimFloat: { |
| 421 | int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 422 | return Location::FpuRegisterLocation(reg); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 423 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 424 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 425 | case Primitive::kPrimDouble: { |
Nicolas Geoffray | 3c03503 | 2014-10-28 10:46:40 +0000 | [diff] [blame] | 426 | int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters); |
| 427 | DCHECK_EQ(reg % 2, 0); |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 428 | return Location::FpuRegisterPairLocation(reg, reg + 1); |
| 429 | } |
| 430 | |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 431 | case Primitive::kPrimVoid: |
| 432 | LOG(FATAL) << "Unreachable type " << type; |
| 433 | } |
| 434 | |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 435 | return Location(); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 436 | } |
| 437 | |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 438 | void CodeGeneratorARM::SetupBlockedRegisters() const { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 439 | // Don't allocate the dalvik style register pair passing. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 440 | blocked_register_pairs_[R1_R2] = true; |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 441 | |
| 442 | // Stack register, LR and PC are always reserved. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 443 | blocked_core_registers_[SP] = true; |
| 444 | blocked_core_registers_[LR] = true; |
| 445 | blocked_core_registers_[PC] = true; |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 446 | |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 447 | // Reserve thread register. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 448 | blocked_core_registers_[TR] = true; |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 449 | |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 450 | // Reserve temp register. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 451 | blocked_core_registers_[IP] = true; |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 452 | |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 453 | // TODO: We currently don't use Quick's callee saved registers. |
| 454 | // We always save and restore R6 and R7 to make sure we can use three |
| 455 | // register pairs for long operations. |
| 456 | blocked_core_registers_[R4] = true; |
| 457 | blocked_core_registers_[R5] = true; |
| 458 | blocked_core_registers_[R8] = true; |
| 459 | blocked_core_registers_[R10] = true; |
| 460 | blocked_core_registers_[R11] = true; |
| 461 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 462 | blocked_fpu_registers_[S16] = true; |
| 463 | blocked_fpu_registers_[S17] = true; |
| 464 | blocked_fpu_registers_[S18] = true; |
| 465 | blocked_fpu_registers_[S19] = true; |
| 466 | blocked_fpu_registers_[S20] = true; |
| 467 | blocked_fpu_registers_[S21] = true; |
| 468 | blocked_fpu_registers_[S22] = true; |
| 469 | blocked_fpu_registers_[S23] = true; |
Nicolas Geoffray | 3c03503 | 2014-10-28 10:46:40 +0000 | [diff] [blame] | 470 | blocked_fpu_registers_[S24] = true; |
| 471 | blocked_fpu_registers_[S25] = true; |
| 472 | blocked_fpu_registers_[S26] = true; |
| 473 | blocked_fpu_registers_[S27] = true; |
| 474 | blocked_fpu_registers_[S28] = true; |
| 475 | blocked_fpu_registers_[S29] = true; |
| 476 | blocked_fpu_registers_[S30] = true; |
| 477 | blocked_fpu_registers_[S31] = true; |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 478 | |
| 479 | UpdateBlockedPairRegisters(); |
| 480 | } |
| 481 | |
| 482 | void CodeGeneratorARM::UpdateBlockedPairRegisters() const { |
| 483 | for (int i = 0; i < kNumberOfRegisterPairs; i++) { |
| 484 | ArmManagedRegister current = |
| 485 | ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i)); |
| 486 | if (blocked_core_registers_[current.AsRegisterPairLow()] |
| 487 | || blocked_core_registers_[current.AsRegisterPairHigh()]) { |
| 488 | blocked_register_pairs_[i] = true; |
| 489 | } |
| 490 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 491 | } |
| 492 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 493 | InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen) |
| 494 | : HGraphVisitor(graph), |
| 495 | assembler_(codegen->GetAssembler()), |
| 496 | codegen_(codegen) {} |
| 497 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 498 | void CodeGeneratorARM::GenerateFrameEntry() { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 499 | bool skip_overflow_check = |
| 500 | IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 501 | if (!skip_overflow_check) { |
| 502 | if (kExplicitStackOverflowCheck) { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 503 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathARM(); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 504 | AddSlowPath(slow_path); |
| 505 | |
| 506 | __ LoadFromOffset(kLoadWord, IP, TR, Thread::StackEndOffset<kArmWordSize>().Int32Value()); |
| 507 | __ cmp(SP, ShifterOperand(IP)); |
| 508 | __ b(slow_path->GetEntryLabel(), CC); |
| 509 | } else { |
| 510 | __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm))); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 511 | __ LoadFromOffset(kLoadWord, IP, IP, 0); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 512 | RecordPcInfo(nullptr, 0); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 516 | core_spill_mask_ |= (1 << LR | 1 << R6 | 1 << R7); |
| 517 | __ PushList(1 << LR | 1 << R6 | 1 << R7); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 518 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 519 | // The return PC has already been pushed on the stack. |
Nicolas Geoffray | 707c809 | 2014-04-04 10:50:14 +0100 | [diff] [blame] | 520 | __ AddConstant(SP, -(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kArmWordSize)); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 521 | __ StoreToOffset(kStoreWord, R0, SP, 0); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | void CodeGeneratorARM::GenerateFrameExit() { |
Nicolas Geoffray | 707c809 | 2014-04-04 10:50:14 +0100 | [diff] [blame] | 525 | __ AddConstant(SP, GetFrameSize() - kNumberOfPushedRegistersAtEntry * kArmWordSize); |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 526 | __ PopList(1 << PC | 1 << R6 | 1 << R7); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 529 | void CodeGeneratorARM::Bind(HBasicBlock* block) { |
| 530 | __ Bind(GetLabelOf(block)); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 533 | Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const { |
| 534 | switch (load->GetType()) { |
| 535 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 536 | case Primitive::kPrimDouble: |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 537 | return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); |
| 538 | break; |
| 539 | |
| 540 | case Primitive::kPrimInt: |
| 541 | case Primitive::kPrimNot: |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 542 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 543 | return Location::StackSlot(GetStackSlot(load->GetLocal())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 544 | |
| 545 | case Primitive::kPrimBoolean: |
| 546 | case Primitive::kPrimByte: |
| 547 | case Primitive::kPrimChar: |
| 548 | case Primitive::kPrimShort: |
| 549 | case Primitive::kPrimVoid: |
| 550 | LOG(FATAL) << "Unexpected type " << load->GetType(); |
| 551 | } |
| 552 | |
| 553 | LOG(FATAL) << "Unreachable"; |
| 554 | return Location(); |
| 555 | } |
| 556 | |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 557 | Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) { |
| 558 | switch (type) { |
| 559 | case Primitive::kPrimBoolean: |
| 560 | case Primitive::kPrimByte: |
| 561 | case Primitive::kPrimChar: |
| 562 | case Primitive::kPrimShort: |
| 563 | case Primitive::kPrimInt: |
| 564 | case Primitive::kPrimNot: { |
| 565 | uint32_t index = gp_index_++; |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 566 | uint32_t stack_index = stack_index_++; |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 567 | if (index < calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 568 | return Location::RegisterLocation(calling_convention.GetRegisterAt(index)); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 569 | } else { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 570 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index)); |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 571 | } |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 572 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 573 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 574 | case Primitive::kPrimLong: { |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 575 | uint32_t index = gp_index_; |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 576 | uint32_t stack_index = stack_index_; |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 577 | gp_index_ += 2; |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 578 | stack_index_ += 2; |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 579 | if (index + 1 < calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 580 | ArmManagedRegister pair = ArmManagedRegister::FromRegisterPair( |
| 581 | calling_convention.GetRegisterPairAt(index)); |
| 582 | return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh()); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 583 | } else if (index + 1 == calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 0a6c459 | 2014-10-30 16:37:57 +0000 | [diff] [blame] | 584 | return Location::QuickParameter(index, stack_index); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 585 | } else { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 586 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index)); |
| 587 | } |
| 588 | } |
| 589 | |
| 590 | case Primitive::kPrimFloat: { |
| 591 | uint32_t stack_index = stack_index_++; |
| 592 | if (float_index_ % 2 == 0) { |
| 593 | float_index_ = std::max(double_index_, float_index_); |
| 594 | } |
| 595 | if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { |
| 596 | return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++)); |
| 597 | } else { |
| 598 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index)); |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | case Primitive::kPrimDouble: { |
| 603 | double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); |
| 604 | uint32_t stack_index = stack_index_; |
| 605 | stack_index_ += 2; |
| 606 | if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) { |
| 607 | uint32_t index = double_index_; |
| 608 | double_index_ += 2; |
| 609 | return Location::FpuRegisterPairLocation( |
| 610 | calling_convention.GetFpuRegisterAt(index), |
| 611 | calling_convention.GetFpuRegisterAt(index + 1)); |
| 612 | } else { |
| 613 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index)); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 617 | case Primitive::kPrimVoid: |
| 618 | LOG(FATAL) << "Unexpected parameter type " << type; |
| 619 | break; |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 620 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 621 | return Location(); |
| 622 | } |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 623 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 624 | Location InvokeDexCallingConventionVisitor::GetReturnLocation(Primitive::Type type) { |
| 625 | switch (type) { |
| 626 | case Primitive::kPrimBoolean: |
| 627 | case Primitive::kPrimByte: |
| 628 | case Primitive::kPrimChar: |
| 629 | case Primitive::kPrimShort: |
| 630 | case Primitive::kPrimInt: |
| 631 | case Primitive::kPrimNot: { |
| 632 | return Location::RegisterLocation(R0); |
| 633 | } |
| 634 | |
| 635 | case Primitive::kPrimFloat: { |
| 636 | return Location::FpuRegisterLocation(S0); |
| 637 | } |
| 638 | |
| 639 | case Primitive::kPrimLong: { |
| 640 | return Location::RegisterPairLocation(R0, R1); |
| 641 | } |
| 642 | |
| 643 | case Primitive::kPrimDouble: { |
| 644 | return Location::FpuRegisterPairLocation(S0, S1); |
| 645 | } |
| 646 | |
| 647 | case Primitive::kPrimVoid: |
| 648 | return Location(); |
| 649 | } |
| 650 | UNREACHABLE(); |
| 651 | return Location(); |
| 652 | } |
| 653 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 654 | void CodeGeneratorARM::Move32(Location destination, Location source) { |
| 655 | if (source.Equals(destination)) { |
| 656 | return; |
| 657 | } |
| 658 | if (destination.IsRegister()) { |
| 659 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 660 | __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 661 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 662 | __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 663 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 664 | __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 665 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 666 | } else if (destination.IsFpuRegister()) { |
| 667 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 668 | __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 669 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 670 | __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 671 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 672 | __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 673 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 674 | } else { |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 675 | DCHECK(destination.IsStackSlot()) << destination; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 676 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 677 | __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 678 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 679 | __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 680 | } else { |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 681 | DCHECK(source.IsStackSlot()) << source; |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 682 | __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex()); |
| 683 | __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 684 | } |
| 685 | } |
| 686 | } |
| 687 | |
| 688 | void CodeGeneratorARM::Move64(Location destination, Location source) { |
| 689 | if (source.Equals(destination)) { |
| 690 | return; |
| 691 | } |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 692 | if (destination.IsRegisterPair()) { |
| 693 | if (source.IsRegisterPair()) { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 694 | EmitParallelMoves( |
| 695 | Location::RegisterLocation(source.AsRegisterPairHigh<Register>()), |
| 696 | Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()), |
| 697 | Location::RegisterLocation(source.AsRegisterPairLow<Register>()), |
| 698 | Location::RegisterLocation(destination.AsRegisterPairLow<Register>())); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 699 | } else if (source.IsFpuRegister()) { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 700 | UNIMPLEMENTED(FATAL); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 701 | } else if (source.IsQuickParameter()) { |
Nicolas Geoffray | 0a6c459 | 2014-10-30 16:37:57 +0000 | [diff] [blame] | 702 | uint16_t register_index = source.GetQuickParameterRegisterIndex(); |
| 703 | uint16_t stack_index = source.GetQuickParameterStackIndex(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 704 | InvokeDexCallingConvention calling_convention; |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 705 | EmitParallelMoves( |
| 706 | Location::RegisterLocation(calling_convention.GetRegisterAt(register_index)), |
| 707 | Location::RegisterLocation(destination.AsRegisterPairLow<Register>()), |
| 708 | Location::StackSlot( |
| 709 | calling_convention.GetStackOffsetOf(stack_index + 1) + GetFrameSize()), |
| 710 | Location::RegisterLocation(destination.AsRegisterPairHigh<Register>())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 711 | } else { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 712 | // No conflict possible, so just do the moves. |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 713 | DCHECK(source.IsDoubleStackSlot()); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 714 | if (destination.AsRegisterPairLow<Register>() == R1) { |
| 715 | DCHECK_EQ(destination.AsRegisterPairHigh<Register>(), R2); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 716 | __ LoadFromOffset(kLoadWord, R1, SP, source.GetStackIndex()); |
| 717 | __ LoadFromOffset(kLoadWord, R2, SP, source.GetHighStackIndex(kArmWordSize)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 718 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 719 | __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(), |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 720 | SP, source.GetStackIndex()); |
| 721 | } |
| 722 | } |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 723 | } else if (destination.IsFpuRegisterPair()) { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 724 | if (source.IsDoubleStackSlot()) { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 725 | __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), |
| 726 | SP, |
| 727 | source.GetStackIndex()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 728 | } else { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 729 | UNIMPLEMENTED(FATAL); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 730 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 731 | } else if (destination.IsQuickParameter()) { |
| 732 | InvokeDexCallingConvention calling_convention; |
Nicolas Geoffray | 0a6c459 | 2014-10-30 16:37:57 +0000 | [diff] [blame] | 733 | uint16_t register_index = destination.GetQuickParameterRegisterIndex(); |
| 734 | uint16_t stack_index = destination.GetQuickParameterStackIndex(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 735 | if (source.IsRegisterPair()) { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 736 | UNIMPLEMENTED(FATAL); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 737 | } else if (source.IsFpuRegister()) { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 738 | UNIMPLEMENTED(FATAL); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 739 | } else { |
| 740 | DCHECK(source.IsDoubleStackSlot()); |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 741 | EmitParallelMoves( |
| 742 | Location::StackSlot(source.GetStackIndex()), |
| 743 | Location::RegisterLocation(calling_convention.GetRegisterAt(register_index)), |
| 744 | Location::StackSlot(source.GetHighStackIndex(kArmWordSize)), |
| 745 | Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index + 1))); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 746 | } |
| 747 | } else { |
| 748 | DCHECK(destination.IsDoubleStackSlot()); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 749 | if (source.IsRegisterPair()) { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 750 | // No conflict possible, so just do the moves. |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 751 | if (source.AsRegisterPairLow<Register>() == R1) { |
| 752 | DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 753 | __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex()); |
| 754 | __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 755 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 756 | __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(), |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 757 | SP, destination.GetStackIndex()); |
| 758 | } |
| 759 | } else if (source.IsQuickParameter()) { |
| 760 | InvokeDexCallingConvention calling_convention; |
Nicolas Geoffray | 0a6c459 | 2014-10-30 16:37:57 +0000 | [diff] [blame] | 761 | uint16_t register_index = source.GetQuickParameterRegisterIndex(); |
| 762 | uint16_t stack_index = source.GetQuickParameterStackIndex(); |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 763 | // Just move the low part. The only time a source is a quick parameter is |
| 764 | // when moving the parameter to its stack locations. And the (Java) caller |
| 765 | // of this method has already done that. |
Nicolas Geoffray | 0a6c459 | 2014-10-30 16:37:57 +0000 | [diff] [blame] | 766 | __ StoreToOffset(kStoreWord, calling_convention.GetRegisterAt(register_index), |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 767 | SP, destination.GetStackIndex()); |
| 768 | DCHECK_EQ(calling_convention.GetStackOffsetOf(stack_index + 1) + GetFrameSize(), |
| 769 | static_cast<size_t>(destination.GetHighStackIndex(kArmWordSize))); |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 770 | } else if (source.IsFpuRegisterPair()) { |
| 771 | __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()), |
| 772 | SP, |
| 773 | destination.GetStackIndex()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 774 | } else { |
| 775 | DCHECK(source.IsDoubleStackSlot()); |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 776 | EmitParallelMoves( |
| 777 | Location::StackSlot(source.GetStackIndex()), |
| 778 | Location::StackSlot(destination.GetStackIndex()), |
| 779 | Location::StackSlot(source.GetHighStackIndex(kArmWordSize)), |
| 780 | Location::StackSlot(destination.GetHighStackIndex(kArmWordSize))); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 785 | void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 786 | LocationSummary* locations = instruction->GetLocations(); |
| 787 | if (locations != nullptr && locations->Out().Equals(location)) { |
| 788 | return; |
| 789 | } |
| 790 | |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 791 | if (locations != nullptr && locations->Out().IsConstant()) { |
| 792 | HConstant* const_to_move = locations->Out().GetConstant(); |
| 793 | if (const_to_move->IsIntConstant()) { |
| 794 | int32_t value = const_to_move->AsIntConstant()->GetValue(); |
| 795 | if (location.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 796 | __ LoadImmediate(location.AsRegister<Register>(), value); |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 797 | } else { |
| 798 | DCHECK(location.IsStackSlot()); |
| 799 | __ LoadImmediate(IP, value); |
| 800 | __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex()); |
| 801 | } |
| 802 | } else if (const_to_move->IsLongConstant()) { |
| 803 | int64_t value = const_to_move->AsLongConstant()->GetValue(); |
| 804 | if (location.IsRegisterPair()) { |
| 805 | __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value)); |
| 806 | __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value)); |
| 807 | } else { |
| 808 | DCHECK(location.IsDoubleStackSlot()); |
| 809 | __ LoadImmediate(IP, Low32Bits(value)); |
| 810 | __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex()); |
| 811 | __ LoadImmediate(IP, High32Bits(value)); |
| 812 | __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize)); |
| 813 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 814 | } |
Roland Levillain | 476df55 | 2014-10-09 17:51:36 +0100 | [diff] [blame] | 815 | } else if (instruction->IsLoadLocal()) { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 816 | uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); |
| 817 | switch (instruction->GetType()) { |
| 818 | case Primitive::kPrimBoolean: |
| 819 | case Primitive::kPrimByte: |
| 820 | case Primitive::kPrimChar: |
| 821 | case Primitive::kPrimShort: |
| 822 | case Primitive::kPrimInt: |
| 823 | case Primitive::kPrimNot: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 824 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 825 | Move32(location, Location::StackSlot(stack_slot)); |
| 826 | break; |
| 827 | |
| 828 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 829 | case Primitive::kPrimDouble: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 830 | Move64(location, Location::DoubleStackSlot(stack_slot)); |
| 831 | break; |
| 832 | |
| 833 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 834 | LOG(FATAL) << "Unexpected type " << instruction->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 835 | } |
Nicolas Geoffray | f43083d | 2014-11-07 10:48:10 +0000 | [diff] [blame] | 836 | } else if (instruction->IsTemporary()) { |
| 837 | Location temp_location = GetTemporaryLocation(instruction->AsTemporary()); |
Calin Juravle | f97f9fb | 2014-11-11 15:38:19 +0000 | [diff] [blame] | 838 | if (temp_location.IsStackSlot()) { |
| 839 | Move32(location, temp_location); |
| 840 | } else { |
| 841 | DCHECK(temp_location.IsDoubleStackSlot()); |
| 842 | Move64(location, temp_location); |
| 843 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 844 | } else { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 845 | DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 846 | switch (instruction->GetType()) { |
| 847 | case Primitive::kPrimBoolean: |
| 848 | case Primitive::kPrimByte: |
| 849 | case Primitive::kPrimChar: |
| 850 | case Primitive::kPrimShort: |
| 851 | case Primitive::kPrimNot: |
| 852 | case Primitive::kPrimInt: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 853 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 854 | Move32(location, locations->Out()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 855 | break; |
| 856 | |
| 857 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 858 | case Primitive::kPrimDouble: |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 859 | Move64(location, locations->Out()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 860 | break; |
| 861 | |
| 862 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 863 | LOG(FATAL) << "Unexpected type " << instruction->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 864 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 865 | } |
| 866 | } |
| 867 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 868 | void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset, |
| 869 | HInstruction* instruction, |
| 870 | uint32_t dex_pc) { |
| 871 | __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset); |
| 872 | __ blx(LR); |
| 873 | RecordPcInfo(instruction, dex_pc); |
| 874 | DCHECK(instruction->IsSuspendCheck() |
| 875 | || instruction->IsBoundsCheck() |
| 876 | || instruction->IsNullCheck() |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 877 | || instruction->IsDivZeroCheck() |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 878 | || instruction->GetLocations()->CanCall() |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 879 | || !IsLeafMethod()); |
| 880 | } |
| 881 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 882 | void LocationsBuilderARM::VisitGoto(HGoto* got) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 883 | got->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 884 | } |
| 885 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 886 | void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) { |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 887 | HBasicBlock* successor = got->GetSuccessor(); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 888 | DCHECK(!successor->IsExitBlock()); |
| 889 | |
| 890 | HBasicBlock* block = got->GetBlock(); |
| 891 | HInstruction* previous = got->GetPrevious(); |
| 892 | |
| 893 | HLoopInformation* info = block->GetLoopInformation(); |
| 894 | if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) { |
| 895 | codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck()); |
| 896 | GenerateSuspendCheck(info->GetSuspendCheck(), successor); |
| 897 | return; |
| 898 | } |
| 899 | |
| 900 | if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { |
| 901 | GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); |
| 902 | } |
| 903 | if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 904 | __ b(codegen_->GetLabelOf(successor)); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 908 | void LocationsBuilderARM::VisitExit(HExit* exit) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 909 | exit->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 912 | void InstructionCodeGeneratorARM::VisitExit(HExit* exit) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 913 | UNUSED(exit); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 914 | if (kIsDebugBuild) { |
| 915 | __ Comment("Unreachable"); |
| 916 | __ bkpt(0); |
| 917 | } |
| 918 | } |
| 919 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 920 | void LocationsBuilderARM::VisitIf(HIf* if_instr) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 921 | LocationSummary* locations = |
| 922 | new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 923 | HInstruction* cond = if_instr->InputAt(0); |
Nicolas Geoffray | 01ef345 | 2014-10-01 11:32:17 +0100 | [diff] [blame] | 924 | if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 925 | locations->SetInAt(0, Location::RequiresRegister()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 926 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 927 | } |
| 928 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 929 | void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) { |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 930 | HInstruction* cond = if_instr->InputAt(0); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 931 | if (cond->IsIntConstant()) { |
| 932 | // Constant condition, statically compared against 1. |
| 933 | int32_t cond_value = cond->AsIntConstant()->GetValue(); |
| 934 | if (cond_value == 1) { |
| 935 | if (!codegen_->GoesToNextBlock(if_instr->GetBlock(), |
| 936 | if_instr->IfTrueSuccessor())) { |
| 937 | __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 938 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 939 | return; |
| 940 | } else { |
| 941 | DCHECK_EQ(cond_value, 0); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 942 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 943 | } else { |
| 944 | if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) { |
| 945 | // Condition has been materialized, compare the output to 0 |
| 946 | DCHECK(if_instr->GetLocations()->InAt(0).IsRegister()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 947 | __ cmp(if_instr->GetLocations()->InAt(0).AsRegister<Register>(), |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 948 | ShifterOperand(0)); |
| 949 | __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()), NE); |
| 950 | } else { |
| 951 | // Condition has not been materialized, use its inputs as the |
| 952 | // comparison and its condition as the branch condition. |
| 953 | LocationSummary* locations = cond->GetLocations(); |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 954 | Register left = locations->InAt(0).AsRegister<Register>(); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 955 | if (locations->InAt(1).IsRegister()) { |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 956 | __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>())); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 957 | } else { |
| 958 | DCHECK(locations->InAt(1).IsConstant()); |
| 959 | int32_t value = |
| 960 | locations->InAt(1).GetConstant()->AsIntConstant()->GetValue(); |
| 961 | ShifterOperand operand; |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 962 | if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) { |
| 963 | __ cmp(left, operand); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 964 | } else { |
| 965 | Register temp = IP; |
| 966 | __ LoadImmediate(temp, value); |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 967 | __ cmp(left, ShifterOperand(temp)); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()), |
| 971 | ARMCondition(cond->AsCondition()->GetCondition())); |
| 972 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 973 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 974 | if (!codegen_->GoesToNextBlock(if_instr->GetBlock(), |
| 975 | if_instr->IfFalseSuccessor())) { |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 976 | __ b(codegen_->GetLabelOf(if_instr->IfFalseSuccessor())); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 977 | } |
| 978 | } |
| 979 | |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 980 | |
| 981 | void LocationsBuilderARM::VisitCondition(HCondition* comp) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 982 | LocationSummary* locations = |
| 983 | new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 984 | locations->SetInAt(0, Location::RequiresRegister()); |
| 985 | locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1))); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 986 | if (comp->NeedsMaterialization()) { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 987 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 988 | } |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 991 | void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 992 | if (!comp->NeedsMaterialization()) return; |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 993 | LocationSummary* locations = comp->GetLocations(); |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 994 | Register left = locations->InAt(0).AsRegister<Register>(); |
| 995 | |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 996 | if (locations->InAt(1).IsRegister()) { |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 997 | __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 998 | } else { |
| 999 | DCHECK(locations->InAt(1).IsConstant()); |
| 1000 | int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue(); |
| 1001 | ShifterOperand operand; |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 1002 | if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) { |
| 1003 | __ cmp(left, operand); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1004 | } else { |
| 1005 | Register temp = IP; |
| 1006 | __ LoadImmediate(temp, value); |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 1007 | __ cmp(left, ShifterOperand(temp)); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1008 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1009 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1010 | __ it(ARMCondition(comp->GetCondition()), kItElse); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1011 | __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1), |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1012 | ARMCondition(comp->GetCondition())); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1013 | __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0), |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1014 | ARMOppositeCondition(comp->GetCondition())); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
| 1017 | void LocationsBuilderARM::VisitEqual(HEqual* comp) { |
| 1018 | VisitCondition(comp); |
| 1019 | } |
| 1020 | |
| 1021 | void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) { |
| 1022 | VisitCondition(comp); |
| 1023 | } |
| 1024 | |
| 1025 | void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) { |
| 1026 | VisitCondition(comp); |
| 1027 | } |
| 1028 | |
| 1029 | void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) { |
| 1030 | VisitCondition(comp); |
| 1031 | } |
| 1032 | |
| 1033 | void LocationsBuilderARM::VisitLessThan(HLessThan* comp) { |
| 1034 | VisitCondition(comp); |
| 1035 | } |
| 1036 | |
| 1037 | void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) { |
| 1038 | VisitCondition(comp); |
| 1039 | } |
| 1040 | |
| 1041 | void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
| 1042 | VisitCondition(comp); |
| 1043 | } |
| 1044 | |
| 1045 | void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
| 1046 | VisitCondition(comp); |
| 1047 | } |
| 1048 | |
| 1049 | void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) { |
| 1050 | VisitCondition(comp); |
| 1051 | } |
| 1052 | |
| 1053 | void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) { |
| 1054 | VisitCondition(comp); |
| 1055 | } |
| 1056 | |
| 1057 | void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
| 1058 | VisitCondition(comp); |
| 1059 | } |
| 1060 | |
| 1061 | void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
| 1062 | VisitCondition(comp); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | void LocationsBuilderARM::VisitLocal(HLocal* local) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1066 | local->SetLocations(nullptr); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1069 | void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) { |
| 1070 | DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock()); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1073 | void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) { |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 1074 | load->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1075 | } |
| 1076 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1077 | void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) { |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 1078 | // Nothing to do, this is driven by the code generator. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1079 | UNUSED(load); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1083 | LocationSummary* locations = |
| 1084 | new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1085 | switch (store->InputAt(1)->GetType()) { |
| 1086 | case Primitive::kPrimBoolean: |
| 1087 | case Primitive::kPrimByte: |
| 1088 | case Primitive::kPrimChar: |
| 1089 | case Primitive::kPrimShort: |
| 1090 | case Primitive::kPrimInt: |
| 1091 | case Primitive::kPrimNot: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1092 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1093 | locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); |
| 1094 | break; |
| 1095 | |
| 1096 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1097 | case Primitive::kPrimDouble: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1098 | locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); |
| 1099 | break; |
| 1100 | |
| 1101 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1102 | LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1103 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1106 | void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1107 | UNUSED(store); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1111 | LocationSummary* locations = |
| 1112 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1113 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1114 | } |
| 1115 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1116 | void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) { |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 1117 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1118 | UNUSED(constant); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1121 | void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1122 | LocationSummary* locations = |
| 1123 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1124 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) { |
| 1128 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1129 | UNUSED(constant); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1130 | } |
| 1131 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1132 | void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) { |
| 1133 | LocationSummary* locations = |
| 1134 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
| 1135 | locations->SetOut(Location::ConstantLocation(constant)); |
| 1136 | } |
| 1137 | |
| 1138 | void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant) { |
| 1139 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1140 | UNUSED(constant); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) { |
| 1144 | LocationSummary* locations = |
| 1145 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
| 1146 | locations->SetOut(Location::ConstantLocation(constant)); |
| 1147 | } |
| 1148 | |
| 1149 | void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant) { |
| 1150 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1151 | UNUSED(constant); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1152 | } |
| 1153 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1154 | void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1155 | ret->SetLocations(nullptr); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1158 | void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1159 | UNUSED(ret); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1160 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 1161 | } |
| 1162 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1163 | void LocationsBuilderARM::VisitReturn(HReturn* ret) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1164 | LocationSummary* locations = |
| 1165 | new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall); |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 1166 | locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType())); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1169 | void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1170 | UNUSED(ret); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1171 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1174 | void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1175 | HandleInvoke(invoke); |
| 1176 | } |
| 1177 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1178 | void CodeGeneratorARM::LoadCurrentMethod(Register reg) { |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1179 | __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1180 | } |
| 1181 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1182 | void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1183 | Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1184 | |
| 1185 | // TODO: Implement all kinds of calls: |
| 1186 | // 1) boot -> boot |
| 1187 | // 2) app -> boot |
| 1188 | // 3) app -> app |
| 1189 | // |
| 1190 | // Currently we implement the app -> app logic, which looks up in the resolve cache. |
| 1191 | |
| 1192 | // temp = method; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1193 | codegen_->LoadCurrentMethod(temp); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1194 | // temp = temp->dex_cache_resolved_methods_; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1195 | __ LoadFromOffset( |
| 1196 | kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value()); |
Nicolas Geoffray | 4e44c82 | 2014-12-17 12:25:12 +0000 | [diff] [blame] | 1197 | // temp = temp[index_in_cache] |
| 1198 | __ LoadFromOffset( |
| 1199 | kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetIndexInDexCache())); |
| 1200 | // LR = temp[offset_of_quick_compiled_code] |
| 1201 | __ LoadFromOffset(kLoadWord, LR, temp, |
| 1202 | mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
| 1203 | kArmWordSize).Int32Value()); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1204 | // LR() |
| 1205 | __ blx(LR); |
| 1206 | |
| 1207 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
| 1208 | DCHECK(!codegen_->IsLeafMethod()); |
| 1209 | } |
| 1210 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1211 | void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1212 | LocationSummary* locations = |
| 1213 | new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1214 | locations->AddTemp(Location::RegisterLocation(R0)); |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 1215 | |
| 1216 | InvokeDexCallingConventionVisitor calling_convention_visitor; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1217 | for (size_t i = 0; i < invoke->InputCount(); i++) { |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 1218 | HInstruction* input = invoke->InputAt(i); |
| 1219 | locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType())); |
| 1220 | } |
| 1221 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 1222 | locations->SetOut(calling_convention_visitor.GetReturnLocation(invoke->GetType())); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1225 | void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
| 1226 | HandleInvoke(invoke); |
| 1227 | } |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1228 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1229 | void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1230 | Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1231 | uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() + |
| 1232 | invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry); |
| 1233 | LocationSummary* locations = invoke->GetLocations(); |
| 1234 | Location receiver = locations->InAt(0); |
| 1235 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 1236 | // temp = object->GetClass(); |
| 1237 | if (receiver.IsStackSlot()) { |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1238 | __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex()); |
| 1239 | __ LoadFromOffset(kLoadWord, temp, temp, class_offset); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1240 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1241 | __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1242 | } |
| 1243 | // temp = temp->GetMethodAt(method_offset); |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 1244 | uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
Nicolas Geoffray | 86a8d7a | 2014-11-19 08:47:18 +0000 | [diff] [blame] | 1245 | kArmWordSize).Int32Value(); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1246 | __ LoadFromOffset(kLoadWord, temp, temp, method_offset); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1247 | // LR = temp->GetEntryPoint(); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1248 | __ LoadFromOffset(kLoadWord, LR, temp, entry_point); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1249 | // LR(); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1250 | __ blx(LR); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 1251 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1252 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1253 | } |
| 1254 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1255 | void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 1256 | HandleInvoke(invoke); |
| 1257 | // Add the hidden argument. |
| 1258 | invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12)); |
| 1259 | } |
| 1260 | |
| 1261 | void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 1262 | // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1263 | Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1264 | uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() + |
| 1265 | (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry); |
| 1266 | LocationSummary* locations = invoke->GetLocations(); |
| 1267 | Location receiver = locations->InAt(0); |
| 1268 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 1269 | |
| 1270 | // Set the hidden argument. |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1271 | __ LoadImmediate(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(), |
| 1272 | invoke->GetDexMethodIndex()); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1273 | |
| 1274 | // temp = object->GetClass(); |
| 1275 | if (receiver.IsStackSlot()) { |
| 1276 | __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex()); |
| 1277 | __ LoadFromOffset(kLoadWord, temp, temp, class_offset); |
| 1278 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1279 | __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1280 | } |
| 1281 | // temp = temp->GetImtEntryAt(method_offset); |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 1282 | uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
Nicolas Geoffray | 86a8d7a | 2014-11-19 08:47:18 +0000 | [diff] [blame] | 1283 | kArmWordSize).Int32Value(); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1284 | __ LoadFromOffset(kLoadWord, temp, temp, method_offset); |
| 1285 | // LR = temp->GetEntryPoint(); |
| 1286 | __ LoadFromOffset(kLoadWord, LR, temp, entry_point); |
| 1287 | // LR(); |
| 1288 | __ blx(LR); |
| 1289 | DCHECK(!codegen_->IsLeafMethod()); |
| 1290 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
| 1291 | } |
| 1292 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1293 | void LocationsBuilderARM::VisitNeg(HNeg* neg) { |
| 1294 | LocationSummary* locations = |
| 1295 | new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall); |
| 1296 | switch (neg->GetResultType()) { |
| 1297 | case Primitive::kPrimInt: |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1298 | case Primitive::kPrimLong: { |
| 1299 | bool output_overlaps = (neg->GetResultType() == Primitive::kPrimLong); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1300 | locations->SetInAt(0, Location::RequiresRegister()); |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1301 | locations->SetOut(Location::RequiresRegister(), output_overlaps); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1302 | break; |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1303 | } |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1304 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1305 | case Primitive::kPrimFloat: |
| 1306 | case Primitive::kPrimDouble: |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1307 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1308 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1309 | break; |
| 1310 | |
| 1311 | default: |
| 1312 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 1313 | } |
| 1314 | } |
| 1315 | |
| 1316 | void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) { |
| 1317 | LocationSummary* locations = neg->GetLocations(); |
| 1318 | Location out = locations->Out(); |
| 1319 | Location in = locations->InAt(0); |
| 1320 | switch (neg->GetResultType()) { |
| 1321 | case Primitive::kPrimInt: |
| 1322 | DCHECK(in.IsRegister()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1323 | __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0)); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1324 | break; |
| 1325 | |
| 1326 | case Primitive::kPrimLong: |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1327 | DCHECK(in.IsRegisterPair()); |
| 1328 | // out.lo = 0 - in.lo (and update the carry/borrow (C) flag) |
| 1329 | __ rsbs(out.AsRegisterPairLow<Register>(), |
| 1330 | in.AsRegisterPairLow<Register>(), |
| 1331 | ShifterOperand(0)); |
| 1332 | // We cannot emit an RSC (Reverse Subtract with Carry) |
| 1333 | // instruction here, as it does not exist in the Thumb-2 |
| 1334 | // instruction set. We use the following approach |
| 1335 | // using SBC and SUB instead. |
| 1336 | // |
| 1337 | // out.hi = -C |
| 1338 | __ sbc(out.AsRegisterPairHigh<Register>(), |
| 1339 | out.AsRegisterPairHigh<Register>(), |
| 1340 | ShifterOperand(out.AsRegisterPairHigh<Register>())); |
| 1341 | // out.hi = out.hi - in.hi |
| 1342 | __ sub(out.AsRegisterPairHigh<Register>(), |
| 1343 | out.AsRegisterPairHigh<Register>(), |
| 1344 | ShifterOperand(in.AsRegisterPairHigh<Register>())); |
| 1345 | break; |
| 1346 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1347 | case Primitive::kPrimFloat: |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1348 | DCHECK(in.IsFpuRegister()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1349 | __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>()); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1350 | break; |
| 1351 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1352 | case Primitive::kPrimDouble: |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1353 | DCHECK(in.IsFpuRegisterPair()); |
| 1354 | __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 1355 | FromLowSToD(in.AsFpuRegisterPairLow<SRegister>())); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1356 | break; |
| 1357 | |
| 1358 | default: |
| 1359 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 1360 | } |
| 1361 | } |
| 1362 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1363 | void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) { |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1364 | Primitive::Type result_type = conversion->GetResultType(); |
| 1365 | Primitive::Type input_type = conversion->GetInputType(); |
Nicolas Geoffray | 01fcc9e | 2014-12-01 14:16:20 +0000 | [diff] [blame] | 1366 | DCHECK_NE(result_type, input_type); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1367 | |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1368 | // The float-to-long and double-to-long type conversions rely on a |
| 1369 | // call to the runtime. |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1370 | LocationSummary::CallKind call_kind = |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1371 | ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble) |
| 1372 | && result_type == Primitive::kPrimLong) |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1373 | ? LocationSummary::kCall |
| 1374 | : LocationSummary::kNoCall; |
| 1375 | LocationSummary* locations = |
| 1376 | new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind); |
| 1377 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1378 | switch (result_type) { |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1379 | case Primitive::kPrimByte: |
| 1380 | switch (input_type) { |
| 1381 | case Primitive::kPrimShort: |
| 1382 | case Primitive::kPrimInt: |
| 1383 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1384 | // Processing a Dex `int-to-byte' instruction. |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1385 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1386 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1387 | break; |
| 1388 | |
| 1389 | default: |
| 1390 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1391 | << " to " << result_type; |
| 1392 | } |
| 1393 | break; |
| 1394 | |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1395 | case Primitive::kPrimShort: |
| 1396 | switch (input_type) { |
| 1397 | case Primitive::kPrimByte: |
| 1398 | case Primitive::kPrimInt: |
| 1399 | case Primitive::kPrimChar: |
| 1400 | // Processing a Dex `int-to-short' instruction. |
| 1401 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1402 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1403 | break; |
| 1404 | |
| 1405 | default: |
| 1406 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1407 | << " to " << result_type; |
| 1408 | } |
| 1409 | break; |
| 1410 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1411 | case Primitive::kPrimInt: |
| 1412 | switch (input_type) { |
| 1413 | case Primitive::kPrimLong: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1414 | // Processing a Dex `long-to-int' instruction. |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1415 | locations->SetInAt(0, Location::Any()); |
| 1416 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1417 | break; |
| 1418 | |
| 1419 | case Primitive::kPrimFloat: |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 1420 | // Processing a Dex `float-to-int' instruction. |
| 1421 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1422 | locations->SetOut(Location::RequiresRegister()); |
| 1423 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1424 | break; |
| 1425 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1426 | case Primitive::kPrimDouble: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1427 | // Processing a Dex `double-to-int' instruction. |
| 1428 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1429 | locations->SetOut(Location::RequiresRegister()); |
| 1430 | locations->AddTemp(Location::RequiresFpuRegister()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1431 | break; |
| 1432 | |
| 1433 | default: |
| 1434 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1435 | << " to " << result_type; |
| 1436 | } |
| 1437 | break; |
| 1438 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1439 | case Primitive::kPrimLong: |
| 1440 | switch (input_type) { |
| 1441 | case Primitive::kPrimByte: |
| 1442 | case Primitive::kPrimShort: |
| 1443 | case Primitive::kPrimInt: |
Roland Levillain | 666c732 | 2014-11-10 13:39:43 +0000 | [diff] [blame] | 1444 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1445 | // Processing a Dex `int-to-long' instruction. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1446 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1447 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1448 | break; |
| 1449 | |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1450 | case Primitive::kPrimFloat: { |
| 1451 | // Processing a Dex `float-to-long' instruction. |
| 1452 | InvokeRuntimeCallingConvention calling_convention; |
| 1453 | locations->SetInAt(0, Location::FpuRegisterLocation( |
| 1454 | calling_convention.GetFpuRegisterAt(0))); |
| 1455 | locations->SetOut(Location::RegisterPairLocation(R0, R1)); |
| 1456 | break; |
| 1457 | } |
| 1458 | |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1459 | case Primitive::kPrimDouble: { |
| 1460 | // Processing a Dex `double-to-long' instruction. |
| 1461 | InvokeRuntimeCallingConvention calling_convention; |
| 1462 | locations->SetInAt(0, Location::FpuRegisterPairLocation( |
| 1463 | calling_convention.GetFpuRegisterAt(0), |
| 1464 | calling_convention.GetFpuRegisterAt(1))); |
| 1465 | locations->SetOut(Location::RegisterPairLocation(R0, R1)); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1466 | break; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1467 | } |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1468 | |
| 1469 | default: |
| 1470 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1471 | << " to " << result_type; |
| 1472 | } |
| 1473 | break; |
| 1474 | |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1475 | case Primitive::kPrimChar: |
| 1476 | switch (input_type) { |
| 1477 | case Primitive::kPrimByte: |
| 1478 | case Primitive::kPrimShort: |
| 1479 | case Primitive::kPrimInt: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1480 | // Processing a Dex `int-to-char' instruction. |
| 1481 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1482 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1483 | break; |
| 1484 | |
| 1485 | default: |
| 1486 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1487 | << " to " << result_type; |
| 1488 | } |
| 1489 | break; |
| 1490 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1491 | case Primitive::kPrimFloat: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1492 | switch (input_type) { |
| 1493 | case Primitive::kPrimByte: |
| 1494 | case Primitive::kPrimShort: |
| 1495 | case Primitive::kPrimInt: |
| 1496 | case Primitive::kPrimChar: |
| 1497 | // Processing a Dex `int-to-float' instruction. |
| 1498 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1499 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1500 | break; |
| 1501 | |
| 1502 | case Primitive::kPrimLong: |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1503 | // Processing a Dex `long-to-float' instruction. |
| 1504 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1505 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1506 | locations->AddTemp(Location::RequiresRegister()); |
| 1507 | locations->AddTemp(Location::RequiresRegister()); |
| 1508 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1509 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1510 | break; |
| 1511 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1512 | case Primitive::kPrimDouble: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1513 | // Processing a Dex `double-to-float' instruction. |
| 1514 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1515 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1516 | break; |
| 1517 | |
| 1518 | default: |
| 1519 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1520 | << " to " << result_type; |
| 1521 | }; |
| 1522 | break; |
| 1523 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1524 | case Primitive::kPrimDouble: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1525 | switch (input_type) { |
| 1526 | case Primitive::kPrimByte: |
| 1527 | case Primitive::kPrimShort: |
| 1528 | case Primitive::kPrimInt: |
| 1529 | case Primitive::kPrimChar: |
| 1530 | // Processing a Dex `int-to-double' instruction. |
| 1531 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1532 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1533 | break; |
| 1534 | |
| 1535 | case Primitive::kPrimLong: |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1536 | // Processing a Dex `long-to-double' instruction. |
| 1537 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1538 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1539 | locations->AddTemp(Location::RequiresRegister()); |
| 1540 | locations->AddTemp(Location::RequiresRegister()); |
| 1541 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1542 | break; |
| 1543 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1544 | case Primitive::kPrimFloat: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1545 | // Processing a Dex `float-to-double' instruction. |
| 1546 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1547 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1548 | break; |
| 1549 | |
| 1550 | default: |
| 1551 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1552 | << " to " << result_type; |
| 1553 | }; |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1554 | break; |
| 1555 | |
| 1556 | default: |
| 1557 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1558 | << " to " << result_type; |
| 1559 | } |
| 1560 | } |
| 1561 | |
| 1562 | void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) { |
| 1563 | LocationSummary* locations = conversion->GetLocations(); |
| 1564 | Location out = locations->Out(); |
| 1565 | Location in = locations->InAt(0); |
| 1566 | Primitive::Type result_type = conversion->GetResultType(); |
| 1567 | Primitive::Type input_type = conversion->GetInputType(); |
Nicolas Geoffray | 01fcc9e | 2014-12-01 14:16:20 +0000 | [diff] [blame] | 1568 | DCHECK_NE(result_type, input_type); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1569 | switch (result_type) { |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1570 | case Primitive::kPrimByte: |
| 1571 | switch (input_type) { |
| 1572 | case Primitive::kPrimShort: |
| 1573 | case Primitive::kPrimInt: |
| 1574 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1575 | // Processing a Dex `int-to-byte' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1576 | __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8); |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1577 | break; |
| 1578 | |
| 1579 | default: |
| 1580 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1581 | << " to " << result_type; |
| 1582 | } |
| 1583 | break; |
| 1584 | |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1585 | case Primitive::kPrimShort: |
| 1586 | switch (input_type) { |
| 1587 | case Primitive::kPrimByte: |
| 1588 | case Primitive::kPrimInt: |
| 1589 | case Primitive::kPrimChar: |
| 1590 | // Processing a Dex `int-to-short' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1591 | __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1592 | break; |
| 1593 | |
| 1594 | default: |
| 1595 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1596 | << " to " << result_type; |
| 1597 | } |
| 1598 | break; |
| 1599 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1600 | case Primitive::kPrimInt: |
| 1601 | switch (input_type) { |
| 1602 | case Primitive::kPrimLong: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1603 | // Processing a Dex `long-to-int' instruction. |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1604 | DCHECK(out.IsRegister()); |
| 1605 | if (in.IsRegisterPair()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1606 | __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1607 | } else if (in.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1608 | __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1609 | } else { |
| 1610 | DCHECK(in.IsConstant()); |
| 1611 | DCHECK(in.GetConstant()->IsLongConstant()); |
| 1612 | int64_t value = in.GetConstant()->AsLongConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1613 | __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value)); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1614 | } |
| 1615 | break; |
| 1616 | |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 1617 | case Primitive::kPrimFloat: { |
| 1618 | // Processing a Dex `float-to-int' instruction. |
| 1619 | SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>(); |
| 1620 | __ vmovs(temp, in.AsFpuRegister<SRegister>()); |
| 1621 | __ vcvtis(temp, temp); |
| 1622 | __ vmovrs(out.AsRegister<Register>(), temp); |
| 1623 | break; |
| 1624 | } |
| 1625 | |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1626 | case Primitive::kPrimDouble: { |
| 1627 | // Processing a Dex `double-to-int' instruction. |
| 1628 | SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>(); |
| 1629 | DRegister temp_d = FromLowSToD(temp_s); |
| 1630 | __ vmovd(temp_d, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>())); |
| 1631 | __ vcvtid(temp_s, temp_d); |
| 1632 | __ vmovrs(out.AsRegister<Register>(), temp_s); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1633 | break; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1634 | } |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1635 | |
| 1636 | default: |
| 1637 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1638 | << " to " << result_type; |
| 1639 | } |
| 1640 | break; |
| 1641 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1642 | case Primitive::kPrimLong: |
| 1643 | switch (input_type) { |
| 1644 | case Primitive::kPrimByte: |
| 1645 | case Primitive::kPrimShort: |
| 1646 | case Primitive::kPrimInt: |
Roland Levillain | 666c732 | 2014-11-10 13:39:43 +0000 | [diff] [blame] | 1647 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1648 | // Processing a Dex `int-to-long' instruction. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1649 | DCHECK(out.IsRegisterPair()); |
| 1650 | DCHECK(in.IsRegister()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1651 | __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>()); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1652 | // Sign extension. |
| 1653 | __ Asr(out.AsRegisterPairHigh<Register>(), |
| 1654 | out.AsRegisterPairLow<Register>(), |
| 1655 | 31); |
| 1656 | break; |
| 1657 | |
| 1658 | case Primitive::kPrimFloat: |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1659 | // Processing a Dex `float-to-long' instruction. |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1660 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pF2l), |
| 1661 | conversion, |
| 1662 | conversion->GetDexPc()); |
| 1663 | break; |
| 1664 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1665 | case Primitive::kPrimDouble: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1666 | // Processing a Dex `double-to-long' instruction. |
| 1667 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pD2l), |
| 1668 | conversion, |
| 1669 | conversion->GetDexPc()); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1670 | break; |
| 1671 | |
| 1672 | default: |
| 1673 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1674 | << " to " << result_type; |
| 1675 | } |
| 1676 | break; |
| 1677 | |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1678 | case Primitive::kPrimChar: |
| 1679 | switch (input_type) { |
| 1680 | case Primitive::kPrimByte: |
| 1681 | case Primitive::kPrimShort: |
| 1682 | case Primitive::kPrimInt: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1683 | // Processing a Dex `int-to-char' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1684 | __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16); |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1685 | break; |
| 1686 | |
| 1687 | default: |
| 1688 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1689 | << " to " << result_type; |
| 1690 | } |
| 1691 | break; |
| 1692 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1693 | case Primitive::kPrimFloat: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1694 | switch (input_type) { |
| 1695 | case Primitive::kPrimByte: |
| 1696 | case Primitive::kPrimShort: |
| 1697 | case Primitive::kPrimInt: |
| 1698 | case Primitive::kPrimChar: { |
| 1699 | // Processing a Dex `int-to-float' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1700 | __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>()); |
| 1701 | __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1702 | break; |
| 1703 | } |
| 1704 | |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1705 | case Primitive::kPrimLong: { |
| 1706 | // Processing a Dex `long-to-float' instruction. |
| 1707 | Register low = in.AsRegisterPairLow<Register>(); |
| 1708 | Register high = in.AsRegisterPairHigh<Register>(); |
| 1709 | SRegister output = out.AsFpuRegister<SRegister>(); |
| 1710 | Register constant_low = locations->GetTemp(0).AsRegister<Register>(); |
| 1711 | Register constant_high = locations->GetTemp(1).AsRegister<Register>(); |
| 1712 | SRegister temp1_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>(); |
| 1713 | DRegister temp1_d = FromLowSToD(temp1_s); |
| 1714 | SRegister temp2_s = locations->GetTemp(3).AsFpuRegisterPairLow<SRegister>(); |
| 1715 | DRegister temp2_d = FromLowSToD(temp2_s); |
| 1716 | |
| 1717 | // Operations use doubles for precision reasons (each 32-bit |
| 1718 | // half of a long fits in the 53-bit mantissa of a double, |
| 1719 | // but not in the 24-bit mantissa of a float). This is |
| 1720 | // especially important for the low bits. The result is |
| 1721 | // eventually converted to float. |
| 1722 | |
| 1723 | // temp1_d = int-to-double(high) |
| 1724 | __ vmovsr(temp1_s, high); |
| 1725 | __ vcvtdi(temp1_d, temp1_s); |
| 1726 | // Using vmovd to load the `k2Pow32EncodingForDouble` constant |
| 1727 | // as an immediate value into `temp2_d` does not work, as |
| 1728 | // this instruction only transfers 8 significant bits of its |
| 1729 | // immediate operand. Instead, use two 32-bit core |
| 1730 | // registers to load `k2Pow32EncodingForDouble` into |
| 1731 | // `temp2_d`. |
| 1732 | __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble)); |
| 1733 | __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble)); |
| 1734 | __ vmovdrr(temp2_d, constant_low, constant_high); |
| 1735 | // temp1_d = temp1_d * 2^32 |
| 1736 | __ vmuld(temp1_d, temp1_d, temp2_d); |
| 1737 | // temp2_d = unsigned-to-double(low) |
| 1738 | __ vmovsr(temp2_s, low); |
| 1739 | __ vcvtdu(temp2_d, temp2_s); |
| 1740 | // temp1_d = temp1_d + temp2_d |
| 1741 | __ vaddd(temp1_d, temp1_d, temp2_d); |
| 1742 | // output = double-to-float(temp1_d); |
| 1743 | __ vcvtsd(output, temp1_d); |
| 1744 | break; |
| 1745 | } |
| 1746 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1747 | case Primitive::kPrimDouble: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1748 | // Processing a Dex `double-to-float' instruction. |
| 1749 | __ vcvtsd(out.AsFpuRegister<SRegister>(), |
| 1750 | FromLowSToD(in.AsFpuRegisterPairLow<SRegister>())); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1751 | break; |
| 1752 | |
| 1753 | default: |
| 1754 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1755 | << " to " << result_type; |
| 1756 | }; |
| 1757 | break; |
| 1758 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1759 | case Primitive::kPrimDouble: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1760 | switch (input_type) { |
| 1761 | case Primitive::kPrimByte: |
| 1762 | case Primitive::kPrimShort: |
| 1763 | case Primitive::kPrimInt: |
| 1764 | case Primitive::kPrimChar: { |
| 1765 | // Processing a Dex `int-to-double' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1766 | __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1767 | __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 1768 | out.AsFpuRegisterPairLow<SRegister>()); |
| 1769 | break; |
| 1770 | } |
| 1771 | |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1772 | case Primitive::kPrimLong: { |
| 1773 | // Processing a Dex `long-to-double' instruction. |
| 1774 | Register low = in.AsRegisterPairLow<Register>(); |
| 1775 | Register high = in.AsRegisterPairHigh<Register>(); |
| 1776 | SRegister out_s = out.AsFpuRegisterPairLow<SRegister>(); |
| 1777 | DRegister out_d = FromLowSToD(out_s); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1778 | Register constant_low = locations->GetTemp(0).AsRegister<Register>(); |
| 1779 | Register constant_high = locations->GetTemp(1).AsRegister<Register>(); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1780 | SRegister temp_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>(); |
| 1781 | DRegister temp_d = FromLowSToD(temp_s); |
| 1782 | |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1783 | // out_d = int-to-double(high) |
| 1784 | __ vmovsr(out_s, high); |
| 1785 | __ vcvtdi(out_d, out_s); |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1786 | // Using vmovd to load the `k2Pow32EncodingForDouble` constant |
| 1787 | // as an immediate value into `temp_d` does not work, as |
| 1788 | // this instruction only transfers 8 significant bits of its |
| 1789 | // immediate operand. Instead, use two 32-bit core |
| 1790 | // registers to load `k2Pow32EncodingForDouble` into `temp_d`. |
| 1791 | __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble)); |
| 1792 | __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble)); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1793 | __ vmovdrr(temp_d, constant_low, constant_high); |
| 1794 | // out_d = out_d * 2^32 |
| 1795 | __ vmuld(out_d, out_d, temp_d); |
| 1796 | // temp_d = unsigned-to-double(low) |
| 1797 | __ vmovsr(temp_s, low); |
| 1798 | __ vcvtdu(temp_d, temp_s); |
| 1799 | // out_d = out_d + temp_d |
| 1800 | __ vaddd(out_d, out_d, temp_d); |
| 1801 | break; |
| 1802 | } |
| 1803 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1804 | case Primitive::kPrimFloat: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1805 | // Processing a Dex `float-to-double' instruction. |
| 1806 | __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 1807 | in.AsFpuRegister<SRegister>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1808 | break; |
| 1809 | |
| 1810 | default: |
| 1811 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1812 | << " to " << result_type; |
| 1813 | }; |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1814 | break; |
| 1815 | |
| 1816 | default: |
| 1817 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1818 | << " to " << result_type; |
| 1819 | } |
| 1820 | } |
| 1821 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1822 | void LocationsBuilderARM::VisitAdd(HAdd* add) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1823 | LocationSummary* locations = |
| 1824 | new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1825 | switch (add->GetResultType()) { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1826 | case Primitive::kPrimInt: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1827 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 1828 | bool output_overlaps = (add->GetResultType() == Primitive::kPrimLong); |
| 1829 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1830 | locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1))); |
| 1831 | locations->SetOut(Location::RequiresRegister(), output_overlaps); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1832 | break; |
| 1833 | } |
| 1834 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1835 | case Primitive::kPrimFloat: |
| 1836 | case Primitive::kPrimDouble: { |
| 1837 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1838 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 1839 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1840 | break; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1841 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1842 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1843 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1844 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1845 | } |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
| 1848 | void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) { |
| 1849 | LocationSummary* locations = add->GetLocations(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1850 | Location out = locations->Out(); |
| 1851 | Location first = locations->InAt(0); |
| 1852 | Location second = locations->InAt(1); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1853 | switch (add->GetResultType()) { |
| 1854 | case Primitive::kPrimInt: |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1855 | if (second.IsRegister()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1856 | __ add(out.AsRegister<Register>(), |
| 1857 | first.AsRegister<Register>(), |
| 1858 | ShifterOperand(second.AsRegister<Register>())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1859 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1860 | __ AddConstant(out.AsRegister<Register>(), |
| 1861 | first.AsRegister<Register>(), |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1862 | second.GetConstant()->AsIntConstant()->GetValue()); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1863 | } |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1864 | break; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1865 | |
| 1866 | case Primitive::kPrimLong: |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1867 | __ adds(out.AsRegisterPairLow<Register>(), |
| 1868 | first.AsRegisterPairLow<Register>(), |
| 1869 | ShifterOperand(second.AsRegisterPairLow<Register>())); |
| 1870 | __ adc(out.AsRegisterPairHigh<Register>(), |
| 1871 | first.AsRegisterPairHigh<Register>(), |
| 1872 | ShifterOperand(second.AsRegisterPairHigh<Register>())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1873 | break; |
| 1874 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1875 | case Primitive::kPrimFloat: |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1876 | __ vadds(out.AsFpuRegister<SRegister>(), |
| 1877 | first.AsFpuRegister<SRegister>(), |
| 1878 | second.AsFpuRegister<SRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1879 | break; |
| 1880 | |
| 1881 | case Primitive::kPrimDouble: |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 1882 | __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 1883 | FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()), |
| 1884 | FromLowSToD(second.AsFpuRegisterPairLow<SRegister>())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1885 | break; |
| 1886 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1887 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1888 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1889 | } |
| 1890 | } |
| 1891 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1892 | void LocationsBuilderARM::VisitSub(HSub* sub) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1893 | LocationSummary* locations = |
| 1894 | new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1895 | switch (sub->GetResultType()) { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1896 | case Primitive::kPrimInt: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1897 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 1898 | bool output_overlaps = (sub->GetResultType() == Primitive::kPrimLong); |
| 1899 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1900 | locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1))); |
| 1901 | locations->SetOut(Location::RequiresRegister(), output_overlaps); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1902 | break; |
| 1903 | } |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1904 | case Primitive::kPrimFloat: |
| 1905 | case Primitive::kPrimDouble: { |
| 1906 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1907 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 1908 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1909 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1910 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1911 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1912 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1913 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1914 | } |
| 1915 | |
| 1916 | void InstructionCodeGeneratorARM::VisitSub(HSub* sub) { |
| 1917 | LocationSummary* locations = sub->GetLocations(); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1918 | Location out = locations->Out(); |
| 1919 | Location first = locations->InAt(0); |
| 1920 | Location second = locations->InAt(1); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1921 | switch (sub->GetResultType()) { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1922 | case Primitive::kPrimInt: { |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1923 | if (second.IsRegister()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1924 | __ sub(out.AsRegister<Register>(), |
| 1925 | first.AsRegister<Register>(), |
| 1926 | ShifterOperand(second.AsRegister<Register>())); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1927 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1928 | __ AddConstant(out.AsRegister<Register>(), |
| 1929 | first.AsRegister<Register>(), |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1930 | -second.GetConstant()->AsIntConstant()->GetValue()); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1931 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1932 | break; |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1933 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1934 | |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1935 | case Primitive::kPrimLong: { |
| 1936 | __ subs(out.AsRegisterPairLow<Register>(), |
| 1937 | first.AsRegisterPairLow<Register>(), |
| 1938 | ShifterOperand(second.AsRegisterPairLow<Register>())); |
| 1939 | __ sbc(out.AsRegisterPairHigh<Register>(), |
| 1940 | first.AsRegisterPairHigh<Register>(), |
| 1941 | ShifterOperand(second.AsRegisterPairHigh<Register>())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1942 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1943 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1944 | |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1945 | case Primitive::kPrimFloat: { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1946 | __ vsubs(out.AsFpuRegister<SRegister>(), |
| 1947 | first.AsFpuRegister<SRegister>(), |
| 1948 | second.AsFpuRegister<SRegister>()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1949 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1950 | } |
| 1951 | |
| 1952 | case Primitive::kPrimDouble: { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 1953 | __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 1954 | FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()), |
| 1955 | FromLowSToD(second.AsFpuRegisterPairLow<SRegister>())); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1956 | break; |
| 1957 | } |
| 1958 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1959 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1960 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 1961 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1962 | } |
| 1963 | } |
| 1964 | |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 1965 | void LocationsBuilderARM::VisitMul(HMul* mul) { |
| 1966 | LocationSummary* locations = |
| 1967 | new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall); |
| 1968 | switch (mul->GetResultType()) { |
| 1969 | case Primitive::kPrimInt: |
| 1970 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 1971 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1972 | locations->SetInAt(1, Location::RequiresRegister()); |
| 1973 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 1974 | break; |
| 1975 | } |
| 1976 | |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 1977 | case Primitive::kPrimFloat: |
| 1978 | case Primitive::kPrimDouble: { |
| 1979 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1980 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 1981 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 1982 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 1983 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 1984 | |
| 1985 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 1986 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 1987 | } |
| 1988 | } |
| 1989 | |
| 1990 | void InstructionCodeGeneratorARM::VisitMul(HMul* mul) { |
| 1991 | LocationSummary* locations = mul->GetLocations(); |
| 1992 | Location out = locations->Out(); |
| 1993 | Location first = locations->InAt(0); |
| 1994 | Location second = locations->InAt(1); |
| 1995 | switch (mul->GetResultType()) { |
| 1996 | case Primitive::kPrimInt: { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 1997 | __ mul(out.AsRegister<Register>(), |
| 1998 | first.AsRegister<Register>(), |
| 1999 | second.AsRegister<Register>()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2000 | break; |
| 2001 | } |
| 2002 | case Primitive::kPrimLong: { |
| 2003 | Register out_hi = out.AsRegisterPairHigh<Register>(); |
| 2004 | Register out_lo = out.AsRegisterPairLow<Register>(); |
| 2005 | Register in1_hi = first.AsRegisterPairHigh<Register>(); |
| 2006 | Register in1_lo = first.AsRegisterPairLow<Register>(); |
| 2007 | Register in2_hi = second.AsRegisterPairHigh<Register>(); |
| 2008 | Register in2_lo = second.AsRegisterPairLow<Register>(); |
| 2009 | |
| 2010 | // Extra checks to protect caused by the existence of R1_R2. |
| 2011 | // The algorithm is wrong if out.hi is either in1.lo or in2.lo: |
| 2012 | // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2); |
| 2013 | DCHECK_NE(out_hi, in1_lo); |
| 2014 | DCHECK_NE(out_hi, in2_lo); |
| 2015 | |
| 2016 | // input: in1 - 64 bits, in2 - 64 bits |
| 2017 | // output: out |
| 2018 | // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo |
| 2019 | // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32] |
| 2020 | // parts: out.lo = (in1.lo * in2.lo)[31:0] |
| 2021 | |
| 2022 | // IP <- in1.lo * in2.hi |
| 2023 | __ mul(IP, in1_lo, in2_hi); |
| 2024 | // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo |
| 2025 | __ mla(out_hi, in1_hi, in2_lo, IP); |
| 2026 | // out.lo <- (in1.lo * in2.lo)[31:0]; |
| 2027 | __ umull(out_lo, IP, in1_lo, in2_lo); |
| 2028 | // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32] |
| 2029 | __ add(out_hi, out_hi, ShifterOperand(IP)); |
| 2030 | break; |
| 2031 | } |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2032 | |
| 2033 | case Primitive::kPrimFloat: { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2034 | __ vmuls(out.AsFpuRegister<SRegister>(), |
| 2035 | first.AsFpuRegister<SRegister>(), |
| 2036 | second.AsFpuRegister<SRegister>()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2037 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2038 | } |
| 2039 | |
| 2040 | case Primitive::kPrimDouble: { |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 2041 | __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 2042 | FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()), |
| 2043 | FromLowSToD(second.AsFpuRegisterPairLow<SRegister>())); |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2044 | break; |
| 2045 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2046 | |
| 2047 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2048 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2049 | } |
| 2050 | } |
| 2051 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2052 | void LocationsBuilderARM::VisitDiv(HDiv* div) { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2053 | LocationSummary::CallKind call_kind = div->GetResultType() == Primitive::kPrimLong |
| 2054 | ? LocationSummary::kCall |
| 2055 | : LocationSummary::kNoCall; |
| 2056 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind); |
| 2057 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2058 | switch (div->GetResultType()) { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2059 | case Primitive::kPrimInt: { |
| 2060 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2061 | locations->SetInAt(1, Location::RequiresRegister()); |
| 2062 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2063 | break; |
| 2064 | } |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2065 | case Primitive::kPrimLong: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2066 | InvokeRuntimeCallingConvention calling_convention; |
| 2067 | locations->SetInAt(0, Location::RegisterPairLocation( |
| 2068 | calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1))); |
| 2069 | locations->SetInAt(1, Location::RegisterPairLocation( |
| 2070 | calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3))); |
| 2071 | // The runtime helper puts the output in R0,R2. |
| 2072 | locations->SetOut(Location::RegisterPairLocation(R0, R2)); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2073 | break; |
| 2074 | } |
| 2075 | case Primitive::kPrimFloat: |
| 2076 | case Primitive::kPrimDouble: { |
| 2077 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2078 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2079 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
| 2080 | break; |
| 2081 | } |
| 2082 | |
| 2083 | default: |
| 2084 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 2085 | } |
| 2086 | } |
| 2087 | |
| 2088 | void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) { |
| 2089 | LocationSummary* locations = div->GetLocations(); |
| 2090 | Location out = locations->Out(); |
| 2091 | Location first = locations->InAt(0); |
| 2092 | Location second = locations->InAt(1); |
| 2093 | |
| 2094 | switch (div->GetResultType()) { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2095 | case Primitive::kPrimInt: { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2096 | __ sdiv(out.AsRegister<Register>(), |
| 2097 | first.AsRegister<Register>(), |
| 2098 | second.AsRegister<Register>()); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2099 | break; |
| 2100 | } |
| 2101 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2102 | case Primitive::kPrimLong: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2103 | InvokeRuntimeCallingConvention calling_convention; |
| 2104 | DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>()); |
| 2105 | DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>()); |
| 2106 | DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>()); |
| 2107 | DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>()); |
| 2108 | DCHECK_EQ(R0, out.AsRegisterPairLow<Register>()); |
| 2109 | DCHECK_EQ(R2, out.AsRegisterPairHigh<Register>()); |
| 2110 | |
| 2111 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2112 | break; |
| 2113 | } |
| 2114 | |
| 2115 | case Primitive::kPrimFloat: { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2116 | __ vdivs(out.AsFpuRegister<SRegister>(), |
| 2117 | first.AsFpuRegister<SRegister>(), |
| 2118 | second.AsFpuRegister<SRegister>()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2119 | break; |
| 2120 | } |
| 2121 | |
| 2122 | case Primitive::kPrimDouble: { |
| 2123 | __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), |
| 2124 | FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()), |
| 2125 | FromLowSToD(second.AsFpuRegisterPairLow<SRegister>())); |
| 2126 | break; |
| 2127 | } |
| 2128 | |
| 2129 | default: |
| 2130 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 2131 | } |
| 2132 | } |
| 2133 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2134 | void LocationsBuilderARM::VisitRem(HRem* rem) { |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2135 | Primitive::Type type = rem->GetResultType(); |
| 2136 | LocationSummary::CallKind call_kind = type == Primitive::kPrimInt |
| 2137 | ? LocationSummary::kNoCall |
| 2138 | : LocationSummary::kCall; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2139 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind); |
| 2140 | |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2141 | switch (type) { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2142 | case Primitive::kPrimInt: { |
| 2143 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2144 | locations->SetInAt(1, Location::RequiresRegister()); |
| 2145 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2146 | locations->AddTemp(Location::RequiresRegister()); |
| 2147 | break; |
| 2148 | } |
| 2149 | case Primitive::kPrimLong: { |
| 2150 | InvokeRuntimeCallingConvention calling_convention; |
| 2151 | locations->SetInAt(0, Location::RegisterPairLocation( |
| 2152 | calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1))); |
| 2153 | locations->SetInAt(1, Location::RegisterPairLocation( |
| 2154 | calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3))); |
| 2155 | // The runtime helper puts the output in R2,R3. |
| 2156 | locations->SetOut(Location::RegisterPairLocation(R2, R3)); |
| 2157 | break; |
| 2158 | } |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2159 | case Primitive::kPrimFloat: { |
| 2160 | InvokeRuntimeCallingConvention calling_convention; |
| 2161 | locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0))); |
| 2162 | locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1))); |
| 2163 | locations->SetOut(Location::FpuRegisterLocation(S0)); |
| 2164 | break; |
| 2165 | } |
| 2166 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2167 | case Primitive::kPrimDouble: { |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2168 | InvokeRuntimeCallingConvention calling_convention; |
| 2169 | locations->SetInAt(0, Location::FpuRegisterPairLocation( |
| 2170 | calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1))); |
| 2171 | locations->SetInAt(1, Location::FpuRegisterPairLocation( |
| 2172 | calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3))); |
| 2173 | locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1)); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2174 | break; |
| 2175 | } |
| 2176 | |
| 2177 | default: |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2178 | LOG(FATAL) << "Unexpected rem type " << type; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2179 | } |
| 2180 | } |
| 2181 | |
| 2182 | void InstructionCodeGeneratorARM::VisitRem(HRem* rem) { |
| 2183 | LocationSummary* locations = rem->GetLocations(); |
| 2184 | Location out = locations->Out(); |
| 2185 | Location first = locations->InAt(0); |
| 2186 | Location second = locations->InAt(1); |
| 2187 | |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2188 | Primitive::Type type = rem->GetResultType(); |
| 2189 | switch (type) { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2190 | case Primitive::kPrimInt: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2191 | Register reg1 = first.AsRegister<Register>(); |
| 2192 | Register reg2 = second.AsRegister<Register>(); |
| 2193 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2194 | |
| 2195 | // temp = reg1 / reg2 (integer division) |
| 2196 | // temp = temp * reg2 |
| 2197 | // dest = reg1 - temp |
| 2198 | __ sdiv(temp, reg1, reg2); |
| 2199 | __ mul(temp, temp, reg2); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2200 | __ sub(out.AsRegister<Register>(), reg1, ShifterOperand(temp)); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2201 | break; |
| 2202 | } |
| 2203 | |
| 2204 | case Primitive::kPrimLong: { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2205 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc()); |
| 2206 | break; |
| 2207 | } |
| 2208 | |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2209 | case Primitive::kPrimFloat: { |
| 2210 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf), rem, rem->GetDexPc()); |
| 2211 | break; |
| 2212 | } |
| 2213 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2214 | case Primitive::kPrimDouble: { |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2215 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod), rem, rem->GetDexPc()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2216 | break; |
| 2217 | } |
| 2218 | |
| 2219 | default: |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2220 | LOG(FATAL) << "Unexpected rem type " << type; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2221 | } |
| 2222 | } |
| 2223 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2224 | void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
| 2225 | LocationSummary* locations = |
| 2226 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2227 | locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0))); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2228 | if (instruction->HasUses()) { |
| 2229 | locations->SetOut(Location::SameAsFirstInput()); |
| 2230 | } |
| 2231 | } |
| 2232 | |
| 2233 | void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
| 2234 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction); |
| 2235 | codegen_->AddSlowPath(slow_path); |
| 2236 | |
| 2237 | LocationSummary* locations = instruction->GetLocations(); |
| 2238 | Location value = locations->InAt(0); |
| 2239 | |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2240 | switch (instruction->GetType()) { |
| 2241 | case Primitive::kPrimInt: { |
| 2242 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2243 | __ cmp(value.AsRegister<Register>(), ShifterOperand(0)); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2244 | __ b(slow_path->GetEntryLabel(), EQ); |
| 2245 | } else { |
| 2246 | DCHECK(value.IsConstant()) << value; |
| 2247 | if (value.GetConstant()->AsIntConstant()->GetValue() == 0) { |
| 2248 | __ b(slow_path->GetEntryLabel()); |
| 2249 | } |
| 2250 | } |
| 2251 | break; |
| 2252 | } |
| 2253 | case Primitive::kPrimLong: { |
| 2254 | if (value.IsRegisterPair()) { |
| 2255 | __ orrs(IP, |
| 2256 | value.AsRegisterPairLow<Register>(), |
| 2257 | ShifterOperand(value.AsRegisterPairHigh<Register>())); |
| 2258 | __ b(slow_path->GetEntryLabel(), EQ); |
| 2259 | } else { |
| 2260 | DCHECK(value.IsConstant()) << value; |
| 2261 | if (value.GetConstant()->AsLongConstant()->GetValue() == 0) { |
| 2262 | __ b(slow_path->GetEntryLabel()); |
| 2263 | } |
| 2264 | } |
| 2265 | break; |
| 2266 | default: |
| 2267 | LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType(); |
| 2268 | } |
| 2269 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2270 | } |
| 2271 | |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2272 | void LocationsBuilderARM::HandleShift(HBinaryOperation* op) { |
| 2273 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 2274 | |
| 2275 | LocationSummary::CallKind call_kind = op->GetResultType() == Primitive::kPrimLong |
| 2276 | ? LocationSummary::kCall |
| 2277 | : LocationSummary::kNoCall; |
| 2278 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(op, call_kind); |
| 2279 | |
| 2280 | switch (op->GetResultType()) { |
| 2281 | case Primitive::kPrimInt: { |
| 2282 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2283 | locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1))); |
| 2284 | locations->SetOut(Location::RequiresRegister()); |
| 2285 | break; |
| 2286 | } |
| 2287 | case Primitive::kPrimLong: { |
| 2288 | InvokeRuntimeCallingConvention calling_convention; |
| 2289 | locations->SetInAt(0, Location::RegisterPairLocation( |
| 2290 | calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1))); |
| 2291 | locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2))); |
| 2292 | // The runtime helper puts the output in R0,R2. |
| 2293 | locations->SetOut(Location::RegisterPairLocation(R0, R2)); |
| 2294 | break; |
| 2295 | } |
| 2296 | default: |
| 2297 | LOG(FATAL) << "Unexpected operation type " << op->GetResultType(); |
| 2298 | } |
| 2299 | } |
| 2300 | |
| 2301 | void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) { |
| 2302 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 2303 | |
| 2304 | LocationSummary* locations = op->GetLocations(); |
| 2305 | Location out = locations->Out(); |
| 2306 | Location first = locations->InAt(0); |
| 2307 | Location second = locations->InAt(1); |
| 2308 | |
| 2309 | Primitive::Type type = op->GetResultType(); |
| 2310 | switch (type) { |
| 2311 | case Primitive::kPrimInt: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2312 | Register out_reg = out.AsRegister<Register>(); |
| 2313 | Register first_reg = first.AsRegister<Register>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2314 | // Arm doesn't mask the shift count so we need to do it ourselves. |
| 2315 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2316 | Register second_reg = second.AsRegister<Register>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2317 | __ and_(second_reg, second_reg, ShifterOperand(kMaxIntShiftValue)); |
| 2318 | if (op->IsShl()) { |
| 2319 | __ Lsl(out_reg, first_reg, second_reg); |
| 2320 | } else if (op->IsShr()) { |
| 2321 | __ Asr(out_reg, first_reg, second_reg); |
| 2322 | } else { |
| 2323 | __ Lsr(out_reg, first_reg, second_reg); |
| 2324 | } |
| 2325 | } else { |
| 2326 | int32_t cst = second.GetConstant()->AsIntConstant()->GetValue(); |
| 2327 | uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue); |
| 2328 | if (shift_value == 0) { // arm does not support shifting with 0 immediate. |
| 2329 | __ Mov(out_reg, first_reg); |
| 2330 | } else if (op->IsShl()) { |
| 2331 | __ Lsl(out_reg, first_reg, shift_value); |
| 2332 | } else if (op->IsShr()) { |
| 2333 | __ Asr(out_reg, first_reg, shift_value); |
| 2334 | } else { |
| 2335 | __ Lsr(out_reg, first_reg, shift_value); |
| 2336 | } |
| 2337 | } |
| 2338 | break; |
| 2339 | } |
| 2340 | case Primitive::kPrimLong: { |
| 2341 | // TODO: Inline the assembly instead of calling the runtime. |
| 2342 | InvokeRuntimeCallingConvention calling_convention; |
| 2343 | DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>()); |
| 2344 | DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2345 | DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegister<Register>()); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2346 | DCHECK_EQ(R0, out.AsRegisterPairLow<Register>()); |
| 2347 | DCHECK_EQ(R2, out.AsRegisterPairHigh<Register>()); |
| 2348 | |
| 2349 | int32_t entry_point_offset; |
| 2350 | if (op->IsShl()) { |
| 2351 | entry_point_offset = QUICK_ENTRY_POINT(pShlLong); |
| 2352 | } else if (op->IsShr()) { |
| 2353 | entry_point_offset = QUICK_ENTRY_POINT(pShrLong); |
| 2354 | } else { |
| 2355 | entry_point_offset = QUICK_ENTRY_POINT(pUshrLong); |
| 2356 | } |
| 2357 | __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset); |
| 2358 | __ blx(LR); |
| 2359 | break; |
| 2360 | } |
| 2361 | default: |
| 2362 | LOG(FATAL) << "Unexpected operation type " << type; |
| 2363 | } |
| 2364 | } |
| 2365 | |
| 2366 | void LocationsBuilderARM::VisitShl(HShl* shl) { |
| 2367 | HandleShift(shl); |
| 2368 | } |
| 2369 | |
| 2370 | void InstructionCodeGeneratorARM::VisitShl(HShl* shl) { |
| 2371 | HandleShift(shl); |
| 2372 | } |
| 2373 | |
| 2374 | void LocationsBuilderARM::VisitShr(HShr* shr) { |
| 2375 | HandleShift(shr); |
| 2376 | } |
| 2377 | |
| 2378 | void InstructionCodeGeneratorARM::VisitShr(HShr* shr) { |
| 2379 | HandleShift(shr); |
| 2380 | } |
| 2381 | |
| 2382 | void LocationsBuilderARM::VisitUShr(HUShr* ushr) { |
| 2383 | HandleShift(ushr); |
| 2384 | } |
| 2385 | |
| 2386 | void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) { |
| 2387 | HandleShift(ushr); |
| 2388 | } |
| 2389 | |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2390 | void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2391 | LocationSummary* locations = |
| 2392 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2393 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2394 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 2395 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
| 2396 | locations->SetOut(Location::RegisterLocation(R0)); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2397 | } |
| 2398 | |
| 2399 | void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) { |
| 2400 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 2401 | codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2402 | __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 2403 | codegen_->InvokeRuntime( |
| 2404 | QUICK_ENTRY_POINT(pAllocObjectWithAccessCheck), instruction, instruction->GetDexPc()); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2405 | } |
| 2406 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2407 | void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) { |
| 2408 | LocationSummary* locations = |
| 2409 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 2410 | InvokeRuntimeCallingConvention calling_convention; |
| 2411 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame^] | 2412 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2))); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2413 | locations->SetOut(Location::RegisterLocation(R0)); |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame^] | 2414 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2415 | } |
| 2416 | |
| 2417 | void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) { |
| 2418 | InvokeRuntimeCallingConvention calling_convention; |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame^] | 2419 | codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2)); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2420 | __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 2421 | codegen_->InvokeRuntime( |
| 2422 | QUICK_ENTRY_POINT(pAllocArrayWithAccessCheck), instruction, instruction->GetDexPc()); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2423 | } |
| 2424 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2425 | void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2426 | LocationSummary* locations = |
| 2427 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 2428 | Location location = parameter_visitor_.GetNextLocation(instruction->GetType()); |
| 2429 | if (location.IsStackSlot()) { |
| 2430 | location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
| 2431 | } else if (location.IsDoubleStackSlot()) { |
| 2432 | location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2433 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 2434 | locations->SetOut(location); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2435 | } |
| 2436 | |
| 2437 | void InstructionCodeGeneratorARM::VisitParameterValue(HParameterValue* instruction) { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2438 | // Nothing to do, the parameter is already at its location. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 2439 | UNUSED(instruction); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2440 | } |
| 2441 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2442 | void LocationsBuilderARM::VisitNot(HNot* not_) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2443 | LocationSummary* locations = |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2444 | new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 2445 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2446 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 2447 | } |
| 2448 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2449 | void InstructionCodeGeneratorARM::VisitNot(HNot* not_) { |
| 2450 | LocationSummary* locations = not_->GetLocations(); |
| 2451 | Location out = locations->Out(); |
| 2452 | Location in = locations->InAt(0); |
| 2453 | switch (not_->InputAt(0)->GetType()) { |
| 2454 | case Primitive::kPrimBoolean: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2455 | __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1)); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2456 | break; |
| 2457 | |
| 2458 | case Primitive::kPrimInt: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2459 | __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>())); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2460 | break; |
| 2461 | |
| 2462 | case Primitive::kPrimLong: |
Roland Levillain | 7056643 | 2014-10-24 16:20:17 +0100 | [diff] [blame] | 2463 | __ mvn(out.AsRegisterPairLow<Register>(), |
| 2464 | ShifterOperand(in.AsRegisterPairLow<Register>())); |
| 2465 | __ mvn(out.AsRegisterPairHigh<Register>(), |
| 2466 | ShifterOperand(in.AsRegisterPairHigh<Register>())); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2467 | break; |
| 2468 | |
| 2469 | default: |
| 2470 | LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType(); |
| 2471 | } |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 2472 | } |
| 2473 | |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2474 | void LocationsBuilderARM::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2475 | LocationSummary* locations = |
| 2476 | new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2477 | switch (compare->InputAt(0)->GetType()) { |
| 2478 | case Primitive::kPrimLong: { |
| 2479 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2480 | locations->SetInAt(1, Location::RequiresRegister()); |
| 2481 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2482 | break; |
| 2483 | } |
| 2484 | case Primitive::kPrimFloat: |
| 2485 | case Primitive::kPrimDouble: { |
| 2486 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2487 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2488 | locations->SetOut(Location::RequiresRegister()); |
| 2489 | break; |
| 2490 | } |
| 2491 | default: |
| 2492 | LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType(); |
| 2493 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2494 | } |
| 2495 | |
| 2496 | void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2497 | LocationSummary* locations = compare->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2498 | Register out = locations->Out().AsRegister<Register>(); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2499 | Location left = locations->InAt(0); |
| 2500 | Location right = locations->InAt(1); |
| 2501 | |
| 2502 | Label less, greater, done; |
| 2503 | Primitive::Type type = compare->InputAt(0)->GetType(); |
| 2504 | switch (type) { |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2505 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2506 | __ cmp(left.AsRegisterPairHigh<Register>(), |
| 2507 | ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare. |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2508 | __ b(&less, LT); |
| 2509 | __ b(&greater, GT); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2510 | // Do LoadImmediate before any `cmp`, as LoadImmediate might affect the status flags. |
| 2511 | __ LoadImmediate(out, 0); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2512 | __ cmp(left.AsRegisterPairLow<Register>(), |
| 2513 | ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare. |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2514 | break; |
| 2515 | } |
| 2516 | case Primitive::kPrimFloat: |
| 2517 | case Primitive::kPrimDouble: { |
| 2518 | __ LoadImmediate(out, 0); |
| 2519 | if (type == Primitive::kPrimFloat) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2520 | __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2521 | } else { |
| 2522 | __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()), |
| 2523 | FromLowSToD(right.AsFpuRegisterPairLow<SRegister>())); |
| 2524 | } |
| 2525 | __ vmstat(); // transfer FP status register to ARM APSR. |
| 2526 | __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered. |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2527 | break; |
| 2528 | } |
| 2529 | default: |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2530 | LOG(FATAL) << "Unexpected compare type " << type; |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2531 | } |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2532 | __ b(&done, EQ); |
| 2533 | __ b(&less, CC); // CC is for both: unsigned compare for longs and 'less than' for floats. |
| 2534 | |
| 2535 | __ Bind(&greater); |
| 2536 | __ LoadImmediate(out, 1); |
| 2537 | __ b(&done); |
| 2538 | |
| 2539 | __ Bind(&less); |
| 2540 | __ LoadImmediate(out, -1); |
| 2541 | |
| 2542 | __ Bind(&done); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2543 | } |
| 2544 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 2545 | void LocationsBuilderARM::VisitPhi(HPhi* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2546 | LocationSummary* locations = |
| 2547 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 2548 | for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) { |
| 2549 | locations->SetInAt(i, Location::Any()); |
| 2550 | } |
| 2551 | locations->SetOut(Location::Any()); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 2552 | } |
| 2553 | |
| 2554 | void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 2555 | UNUSED(instruction); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 2556 | LOG(FATAL) << "Unreachable"; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 2557 | } |
| 2558 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2559 | void InstructionCodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) { |
| 2560 | // TODO (ported from quick): revisit Arm barrier kinds |
| 2561 | DmbOptions flavour = DmbOptions::ISH; // quiet c++ warnings |
| 2562 | switch (kind) { |
| 2563 | case MemBarrierKind::kAnyStore: |
| 2564 | case MemBarrierKind::kLoadAny: |
| 2565 | case MemBarrierKind::kAnyAny: { |
| 2566 | flavour = DmbOptions::ISH; |
| 2567 | break; |
| 2568 | } |
| 2569 | case MemBarrierKind::kStoreStore: { |
| 2570 | flavour = DmbOptions::ISHST; |
| 2571 | break; |
| 2572 | } |
| 2573 | default: |
| 2574 | LOG(FATAL) << "Unexpected memory barrier " << kind; |
| 2575 | } |
| 2576 | __ dmb(flavour); |
| 2577 | } |
| 2578 | |
| 2579 | void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr, |
| 2580 | uint32_t offset, |
| 2581 | Register out_lo, |
| 2582 | Register out_hi) { |
| 2583 | if (offset != 0) { |
| 2584 | __ LoadImmediate(out_lo, offset); |
| 2585 | __ add(addr, addr, ShifterOperand(out_lo)); |
| 2586 | } |
| 2587 | __ ldrexd(out_lo, out_hi, addr); |
| 2588 | } |
| 2589 | |
| 2590 | void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr, |
| 2591 | uint32_t offset, |
| 2592 | Register value_lo, |
| 2593 | Register value_hi, |
| 2594 | Register temp1, |
| 2595 | Register temp2) { |
| 2596 | Label fail; |
| 2597 | if (offset != 0) { |
| 2598 | __ LoadImmediate(temp1, offset); |
| 2599 | __ add(addr, addr, ShifterOperand(temp1)); |
| 2600 | } |
| 2601 | __ Bind(&fail); |
| 2602 | // We need a load followed by store. (The address used in a STREX instruction must |
| 2603 | // be the same as the address in the most recently executed LDREX instruction.) |
| 2604 | __ ldrexd(temp1, temp2, addr); |
| 2605 | __ strexd(temp1, value_lo, value_hi, addr); |
| 2606 | __ cmp(temp1, ShifterOperand(0)); |
| 2607 | __ b(&fail, NE); |
| 2608 | } |
| 2609 | |
| 2610 | void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) { |
| 2611 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 2612 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2613 | LocationSummary* locations = |
| 2614 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 2615 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2616 | locations->SetInAt(1, Location::RequiresRegister()); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2617 | |
| 2618 | bool is_volatile = field_info.IsVolatile(); |
| 2619 | Primitive::Type field_type = field_info.GetFieldType(); |
| 2620 | bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble; |
| 2621 | |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 2622 | // Temporary registers for the write barrier. |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2623 | // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark. |
| 2624 | if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) { |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 2625 | locations->AddTemp(Location::RequiresRegister()); |
| 2626 | locations->AddTemp(Location::RequiresRegister()); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2627 | } else if (is_volatile && is_wide) { |
| 2628 | // Arm encoding have some additional constraints for ldrexd/strexd: |
| 2629 | // - registers need to be consecutive |
| 2630 | // - the first register should be even but not R14. |
| 2631 | // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever |
| 2632 | // enable Arm encoding. |
| 2633 | DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet()); |
| 2634 | |
| 2635 | locations->AddTemp(Location::RequiresRegister()); |
| 2636 | locations->AddTemp(Location::RequiresRegister()); |
| 2637 | if (field_type == Primitive::kPrimDouble) { |
| 2638 | // For doubles we need two more registers to copy the value. |
| 2639 | locations->AddTemp(Location::RegisterLocation(R2)); |
| 2640 | locations->AddTemp(Location::RegisterLocation(R3)); |
| 2641 | } |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 2642 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2643 | } |
| 2644 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2645 | void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction, |
| 2646 | const FieldInfo& field_info) { |
| 2647 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 2648 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2649 | LocationSummary* locations = instruction->GetLocations(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2650 | Register base = locations->InAt(0).AsRegister<Register>(); |
| 2651 | Location value = locations->InAt(1); |
| 2652 | |
| 2653 | bool is_volatile = field_info.IsVolatile(); |
| 2654 | Primitive::Type field_type = field_info.GetFieldType(); |
| 2655 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 2656 | |
| 2657 | if (is_volatile) { |
| 2658 | GenerateMemoryBarrier(MemBarrierKind::kAnyStore); |
| 2659 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2660 | |
| 2661 | switch (field_type) { |
| 2662 | case Primitive::kPrimBoolean: |
| 2663 | case Primitive::kPrimByte: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2664 | __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2665 | break; |
| 2666 | } |
| 2667 | |
| 2668 | case Primitive::kPrimShort: |
| 2669 | case Primitive::kPrimChar: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2670 | __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2671 | break; |
| 2672 | } |
| 2673 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2674 | case Primitive::kPrimInt: |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2675 | case Primitive::kPrimNot: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2676 | Register value_reg = value.AsRegister<Register>(); |
| 2677 | __ StoreToOffset(kStoreWord, value_reg, base, offset); |
| 2678 | if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2679 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
| 2680 | Register card = locations->GetTemp(1).AsRegister<Register>(); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2681 | codegen_->MarkGCCard(temp, card, base, value_reg); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2682 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2683 | break; |
| 2684 | } |
| 2685 | |
| 2686 | case Primitive::kPrimLong: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2687 | if (is_volatile) { |
| 2688 | // TODO: We could use ldrd and strd that are atomic with Large Physical Address Extension |
| 2689 | // support. This info is stored in the compiler driver (HasAtomicLdrdAndStrd) and we should |
| 2690 | // pass it around to be able to optimize. |
| 2691 | GenerateWideAtomicStore(base, offset, |
| 2692 | value.AsRegisterPairLow<Register>(), |
| 2693 | value.AsRegisterPairHigh<Register>(), |
| 2694 | locations->GetTemp(0).AsRegister<Register>(), |
| 2695 | locations->GetTemp(1).AsRegister<Register>()); |
| 2696 | } else { |
| 2697 | __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset); |
| 2698 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2699 | break; |
| 2700 | } |
| 2701 | |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2702 | case Primitive::kPrimFloat: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2703 | __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset); |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2704 | break; |
| 2705 | } |
| 2706 | |
| 2707 | case Primitive::kPrimDouble: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2708 | DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()); |
| 2709 | if (is_volatile) { |
| 2710 | Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>(); |
| 2711 | Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>(); |
| 2712 | |
| 2713 | __ vmovrrd(value_reg_lo, value_reg_hi, value_reg); |
| 2714 | |
| 2715 | GenerateWideAtomicStore(base, offset, |
| 2716 | value_reg_lo, |
| 2717 | value_reg_hi, |
| 2718 | locations->GetTemp(2).AsRegister<Register>(), |
| 2719 | locations->GetTemp(3).AsRegister<Register>()); |
| 2720 | } else { |
| 2721 | __ StoreDToOffset(value_reg, base, offset); |
| 2722 | } |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2723 | break; |
| 2724 | } |
| 2725 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2726 | case Primitive::kPrimVoid: |
| 2727 | LOG(FATAL) << "Unreachable type " << field_type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 2728 | UNREACHABLE(); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2729 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2730 | |
| 2731 | if (is_volatile) { |
| 2732 | GenerateMemoryBarrier(MemBarrierKind::kAnyAny); |
| 2733 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2734 | } |
| 2735 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2736 | void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) { |
| 2737 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2738 | LocationSummary* locations = |
| 2739 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 2740 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2741 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2742 | |
| 2743 | if (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimDouble)) { |
| 2744 | // Arm encoding have some additional constraints for ldrexd/strexd: |
| 2745 | // - registers need to be consecutive |
| 2746 | // - the first register should be even but not R14. |
| 2747 | // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever |
| 2748 | // enable Arm encoding. |
| 2749 | DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet()); |
| 2750 | locations->AddTemp(Location::RequiresRegister()); |
| 2751 | locations->AddTemp(Location::RequiresRegister()); |
| 2752 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2753 | } |
| 2754 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2755 | void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction, |
| 2756 | const FieldInfo& field_info) { |
| 2757 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2758 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2759 | LocationSummary* locations = instruction->GetLocations(); |
| 2760 | Register base = locations->InAt(0).AsRegister<Register>(); |
| 2761 | Location out = locations->Out(); |
| 2762 | bool is_volatile = field_info.IsVolatile(); |
| 2763 | Primitive::Type field_type = field_info.GetFieldType(); |
| 2764 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 2765 | |
| 2766 | switch (field_type) { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2767 | case Primitive::kPrimBoolean: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2768 | __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2769 | break; |
| 2770 | } |
| 2771 | |
| 2772 | case Primitive::kPrimByte: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2773 | __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2774 | break; |
| 2775 | } |
| 2776 | |
| 2777 | case Primitive::kPrimShort: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2778 | __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2779 | break; |
| 2780 | } |
| 2781 | |
| 2782 | case Primitive::kPrimChar: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2783 | __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2784 | break; |
| 2785 | } |
| 2786 | |
| 2787 | case Primitive::kPrimInt: |
| 2788 | case Primitive::kPrimNot: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2789 | __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2790 | break; |
| 2791 | } |
| 2792 | |
| 2793 | case Primitive::kPrimLong: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2794 | if (is_volatile) { |
| 2795 | GenerateWideAtomicLoad(base, offset, |
| 2796 | out.AsRegisterPairLow<Register>(), |
| 2797 | out.AsRegisterPairHigh<Register>()); |
| 2798 | } else { |
| 2799 | __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset); |
| 2800 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2801 | break; |
| 2802 | } |
| 2803 | |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2804 | case Primitive::kPrimFloat: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2805 | __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset); |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2806 | break; |
| 2807 | } |
| 2808 | |
| 2809 | case Primitive::kPrimDouble: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2810 | DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()); |
| 2811 | if (is_volatile) { |
| 2812 | Register lo = locations->GetTemp(0).AsRegister<Register>(); |
| 2813 | Register hi = locations->GetTemp(1).AsRegister<Register>(); |
| 2814 | GenerateWideAtomicLoad(base, offset, lo, hi); |
| 2815 | __ vmovdrr(out_reg, lo, hi); |
| 2816 | } else { |
| 2817 | __ LoadDFromOffset(out_reg, base, offset); |
| 2818 | } |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 2819 | break; |
| 2820 | } |
| 2821 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2822 | case Primitive::kPrimVoid: |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2823 | LOG(FATAL) << "Unreachable type " << field_type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 2824 | UNREACHABLE(); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2825 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 2826 | |
| 2827 | if (is_volatile) { |
| 2828 | GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 2829 | } |
| 2830 | } |
| 2831 | |
| 2832 | void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
| 2833 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 2834 | } |
| 2835 | |
| 2836 | void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
| 2837 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 2838 | } |
| 2839 | |
| 2840 | void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
| 2841 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 2842 | } |
| 2843 | |
| 2844 | void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
| 2845 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 2846 | } |
| 2847 | |
| 2848 | void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 2849 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 2850 | } |
| 2851 | |
| 2852 | void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 2853 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 2854 | } |
| 2855 | |
| 2856 | void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
| 2857 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 2858 | } |
| 2859 | |
| 2860 | void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
| 2861 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2862 | } |
| 2863 | |
| 2864 | void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2865 | LocationSummary* locations = |
| 2866 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2867 | locations->SetInAt(0, Location::RequiresRegister()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 2868 | if (instruction->HasUses()) { |
| 2869 | locations->SetOut(Location::SameAsFirstInput()); |
| 2870 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2871 | } |
| 2872 | |
| 2873 | void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 2874 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2875 | codegen_->AddSlowPath(slow_path); |
| 2876 | |
| 2877 | LocationSummary* locations = instruction->GetLocations(); |
| 2878 | Location obj = locations->InAt(0); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2879 | |
| 2880 | if (obj.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2881 | __ cmp(obj.AsRegister<Register>(), ShifterOperand(0)); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 2882 | __ b(slow_path->GetEntryLabel(), EQ); |
| 2883 | } else { |
| 2884 | DCHECK(obj.IsConstant()) << obj; |
| 2885 | DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0); |
| 2886 | __ b(slow_path->GetEntryLabel()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2887 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 2888 | } |
| 2889 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2890 | void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2891 | LocationSummary* locations = |
| 2892 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 2893 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2894 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
| 2895 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2896 | } |
| 2897 | |
| 2898 | void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) { |
| 2899 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2900 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2901 | Location index = locations->InAt(1); |
| 2902 | |
| 2903 | switch (instruction->GetType()) { |
| 2904 | case Primitive::kPrimBoolean: { |
| 2905 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2906 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2907 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2908 | size_t offset = |
| 2909 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2910 | __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset); |
| 2911 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2912 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>())); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2913 | __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset); |
| 2914 | } |
| 2915 | break; |
| 2916 | } |
| 2917 | |
| 2918 | case Primitive::kPrimByte: { |
| 2919 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2920 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2921 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2922 | size_t offset = |
| 2923 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2924 | __ LoadFromOffset(kLoadSignedByte, out, obj, offset); |
| 2925 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2926 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>())); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2927 | __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset); |
| 2928 | } |
| 2929 | break; |
| 2930 | } |
| 2931 | |
| 2932 | case Primitive::kPrimShort: { |
| 2933 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2934 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2935 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2936 | size_t offset = |
| 2937 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2938 | __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset); |
| 2939 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2940 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2941 | __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset); |
| 2942 | } |
| 2943 | break; |
| 2944 | } |
| 2945 | |
| 2946 | case Primitive::kPrimChar: { |
| 2947 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2948 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2949 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2950 | size_t offset = |
| 2951 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2952 | __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset); |
| 2953 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2954 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2955 | __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset); |
| 2956 | } |
| 2957 | break; |
| 2958 | } |
| 2959 | |
| 2960 | case Primitive::kPrimInt: |
| 2961 | case Primitive::kPrimNot: { |
| 2962 | DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t)); |
| 2963 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2964 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2965 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2966 | size_t offset = |
| 2967 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2968 | __ LoadFromOffset(kLoadWord, out, obj, offset); |
| 2969 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2970 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2971 | __ LoadFromOffset(kLoadWord, out, IP, data_offset); |
| 2972 | } |
| 2973 | break; |
| 2974 | } |
| 2975 | |
| 2976 | case Primitive::kPrimLong: { |
| 2977 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2978 | Location out = locations->Out(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2979 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2980 | size_t offset = |
| 2981 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2982 | __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2983 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2984 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8)); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2985 | __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2986 | } |
| 2987 | break; |
| 2988 | } |
| 2989 | |
| 2990 | case Primitive::kPrimFloat: |
| 2991 | case Primitive::kPrimDouble: |
| 2992 | LOG(FATAL) << "Unimplemented register type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 2993 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2994 | case Primitive::kPrimVoid: |
| 2995 | LOG(FATAL) << "Unreachable type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 2996 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 2997 | } |
| 2998 | } |
| 2999 | |
| 3000 | void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3001 | Primitive::Type value_type = instruction->GetComponentType(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3002 | |
| 3003 | bool needs_write_barrier = |
| 3004 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
| 3005 | bool needs_runtime_call = instruction->NeedsTypeCheck(); |
| 3006 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3007 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary( |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3008 | instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall); |
| 3009 | if (needs_runtime_call) { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3010 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3011 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 3012 | locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
| 3013 | locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3014 | } else { |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3015 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3016 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
| 3017 | locations->SetInAt(2, Location::RequiresRegister()); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3018 | |
| 3019 | if (needs_write_barrier) { |
| 3020 | // Temporary registers for the write barrier. |
| 3021 | locations->AddTemp(Location::RequiresRegister()); |
| 3022 | locations->AddTemp(Location::RequiresRegister()); |
| 3023 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3024 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3025 | } |
| 3026 | |
| 3027 | void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) { |
| 3028 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3029 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3030 | Location index = locations->InAt(1); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3031 | Primitive::Type value_type = instruction->GetComponentType(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3032 | bool needs_runtime_call = locations->WillCall(); |
| 3033 | bool needs_write_barrier = |
| 3034 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3035 | |
| 3036 | switch (value_type) { |
| 3037 | case Primitive::kPrimBoolean: |
| 3038 | case Primitive::kPrimByte: { |
| 3039 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3040 | Register value = locations->InAt(2).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3041 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3042 | size_t offset = |
| 3043 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3044 | __ StoreToOffset(kStoreByte, value, obj, offset); |
| 3045 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3046 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>())); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3047 | __ StoreToOffset(kStoreByte, value, IP, data_offset); |
| 3048 | } |
| 3049 | break; |
| 3050 | } |
| 3051 | |
| 3052 | case Primitive::kPrimShort: |
| 3053 | case Primitive::kPrimChar: { |
| 3054 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3055 | Register value = locations->InAt(2).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3056 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3057 | size_t offset = |
| 3058 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3059 | __ StoreToOffset(kStoreHalfword, value, obj, offset); |
| 3060 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3061 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3062 | __ StoreToOffset(kStoreHalfword, value, IP, data_offset); |
| 3063 | } |
| 3064 | break; |
| 3065 | } |
| 3066 | |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3067 | case Primitive::kPrimInt: |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3068 | case Primitive::kPrimNot: { |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3069 | if (!needs_runtime_call) { |
| 3070 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3071 | Register value = locations->InAt(2).AsRegister<Register>(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3072 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3073 | size_t offset = |
| 3074 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset; |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3075 | __ StoreToOffset(kStoreWord, value, obj, offset); |
| 3076 | } else { |
| 3077 | DCHECK(index.IsRegister()) << index; |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3078 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4)); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3079 | __ StoreToOffset(kStoreWord, value, IP, data_offset); |
| 3080 | } |
| 3081 | if (needs_write_barrier) { |
| 3082 | DCHECK_EQ(value_type, Primitive::kPrimNot); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3083 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
| 3084 | Register card = locations->GetTemp(1).AsRegister<Register>(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3085 | codegen_->MarkGCCard(temp, card, obj, value); |
| 3086 | } |
| 3087 | } else { |
| 3088 | DCHECK_EQ(value_type, Primitive::kPrimNot); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3089 | codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject), |
| 3090 | instruction, |
| 3091 | instruction->GetDexPc()); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3092 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3093 | break; |
| 3094 | } |
| 3095 | |
| 3096 | case Primitive::kPrimLong: { |
| 3097 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3098 | Location value = locations->InAt(2); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3099 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3100 | size_t offset = |
| 3101 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3102 | __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3103 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3104 | __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8)); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3105 | __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3106 | } |
| 3107 | break; |
| 3108 | } |
| 3109 | |
| 3110 | case Primitive::kPrimFloat: |
| 3111 | case Primitive::kPrimDouble: |
| 3112 | LOG(FATAL) << "Unimplemented register type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3113 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3114 | case Primitive::kPrimVoid: |
| 3115 | LOG(FATAL) << "Unreachable type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3116 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3117 | } |
| 3118 | } |
| 3119 | |
| 3120 | void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3121 | LocationSummary* locations = |
| 3122 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3123 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3124 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3125 | } |
| 3126 | |
| 3127 | void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) { |
| 3128 | LocationSummary* locations = instruction->GetLocations(); |
| 3129 | uint32_t offset = mirror::Array::LengthOffset().Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3130 | Register obj = locations->InAt(0).AsRegister<Register>(); |
| 3131 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3132 | __ LoadFromOffset(kLoadWord, out, obj, offset); |
| 3133 | } |
| 3134 | |
| 3135 | void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3136 | LocationSummary* locations = |
| 3137 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3138 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3139 | locations->SetInAt(1, Location::RequiresRegister()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3140 | if (instruction->HasUses()) { |
| 3141 | locations->SetOut(Location::SameAsFirstInput()); |
| 3142 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3143 | } |
| 3144 | |
| 3145 | void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) { |
| 3146 | LocationSummary* locations = instruction->GetLocations(); |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 3147 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM( |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3148 | instruction, locations->InAt(0), locations->InAt(1)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3149 | codegen_->AddSlowPath(slow_path); |
| 3150 | |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3151 | Register index = locations->InAt(0).AsRegister<Register>(); |
| 3152 | Register length = locations->InAt(1).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3153 | |
| 3154 | __ cmp(index, ShifterOperand(length)); |
| 3155 | __ b(slow_path->GetEntryLabel(), CS); |
| 3156 | } |
| 3157 | |
| 3158 | void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) { |
| 3159 | Label is_null; |
| 3160 | __ CompareAndBranchIfZero(value, &is_null); |
| 3161 | __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value()); |
| 3162 | __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); |
| 3163 | __ strb(card, Address(card, temp)); |
| 3164 | __ Bind(&is_null); |
| 3165 | } |
| 3166 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3167 | void LocationsBuilderARM::VisitTemporary(HTemporary* temp) { |
| 3168 | temp->SetLocations(nullptr); |
| 3169 | } |
| 3170 | |
| 3171 | void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) { |
| 3172 | // Nothing to do, this is driven by the code generator. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 3173 | UNUSED(temp); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3174 | } |
| 3175 | |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 3176 | void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 3177 | UNUSED(instruction); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3178 | LOG(FATAL) << "Unreachable"; |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 3179 | } |
| 3180 | |
| 3181 | void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) { |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3182 | codegen_->GetMoveResolver()->EmitNativeCode(instruction); |
| 3183 | } |
| 3184 | |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3185 | void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) { |
| 3186 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath); |
| 3187 | } |
| 3188 | |
| 3189 | void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) { |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3190 | HBasicBlock* block = instruction->GetBlock(); |
| 3191 | if (block->GetLoopInformation() != nullptr) { |
| 3192 | DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction); |
| 3193 | // The back edge will generate the suspend check. |
| 3194 | return; |
| 3195 | } |
| 3196 | if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) { |
| 3197 | // The goto will generate the suspend check. |
| 3198 | return; |
| 3199 | } |
| 3200 | GenerateSuspendCheck(instruction, nullptr); |
| 3201 | } |
| 3202 | |
| 3203 | void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction, |
| 3204 | HBasicBlock* successor) { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3205 | SuspendCheckSlowPathARM* slow_path = |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3206 | new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3207 | codegen_->AddSlowPath(slow_path); |
| 3208 | |
Nicolas Geoffray | 44b819e | 2014-11-06 12:00:54 +0000 | [diff] [blame] | 3209 | __ LoadFromOffset( |
| 3210 | kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value()); |
| 3211 | __ cmp(IP, ShifterOperand(0)); |
| 3212 | // TODO: Figure out the branch offsets and use cbz/cbnz. |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3213 | if (successor == nullptr) { |
Nicolas Geoffray | 44b819e | 2014-11-06 12:00:54 +0000 | [diff] [blame] | 3214 | __ b(slow_path->GetEntryLabel(), NE); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3215 | __ Bind(slow_path->GetReturnLabel()); |
| 3216 | } else { |
Nicolas Geoffray | 44b819e | 2014-11-06 12:00:54 +0000 | [diff] [blame] | 3217 | __ b(codegen_->GetLabelOf(successor), EQ); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3218 | __ b(slow_path->GetEntryLabel()); |
| 3219 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3220 | } |
| 3221 | |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3222 | ArmAssembler* ParallelMoveResolverARM::GetAssembler() const { |
| 3223 | return codegen_->GetAssembler(); |
| 3224 | } |
| 3225 | |
| 3226 | void ParallelMoveResolverARM::EmitMove(size_t index) { |
| 3227 | MoveOperands* move = moves_.Get(index); |
| 3228 | Location source = move->GetSource(); |
| 3229 | Location destination = move->GetDestination(); |
| 3230 | |
| 3231 | if (source.IsRegister()) { |
| 3232 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3233 | __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>()); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3234 | } else { |
| 3235 | DCHECK(destination.IsStackSlot()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3236 | __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3237 | SP, destination.GetStackIndex()); |
| 3238 | } |
| 3239 | } else if (source.IsStackSlot()) { |
| 3240 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3241 | __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3242 | SP, source.GetStackIndex()); |
| 3243 | } else { |
| 3244 | DCHECK(destination.IsStackSlot()); |
| 3245 | __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex()); |
| 3246 | __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex()); |
| 3247 | } |
| 3248 | } else { |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3249 | DCHECK(source.IsConstant()); |
Roland Levillain | 476df55 | 2014-10-09 17:51:36 +0100 | [diff] [blame] | 3250 | DCHECK(source.GetConstant()->IsIntConstant()); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3251 | int32_t value = source.GetConstant()->AsIntConstant()->GetValue(); |
| 3252 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3253 | __ LoadImmediate(destination.AsRegister<Register>(), value); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3254 | } else { |
| 3255 | DCHECK(destination.IsStackSlot()); |
| 3256 | __ LoadImmediate(IP, value); |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 3257 | __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex()); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3258 | } |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3259 | } |
| 3260 | } |
| 3261 | |
| 3262 | void ParallelMoveResolverARM::Exchange(Register reg, int mem) { |
| 3263 | __ Mov(IP, reg); |
| 3264 | __ LoadFromOffset(kLoadWord, reg, SP, mem); |
| 3265 | __ StoreToOffset(kStoreWord, IP, SP, mem); |
| 3266 | } |
| 3267 | |
| 3268 | void ParallelMoveResolverARM::Exchange(int mem1, int mem2) { |
| 3269 | ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters()); |
| 3270 | int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0; |
| 3271 | __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()), |
| 3272 | SP, mem1 + stack_offset); |
| 3273 | __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset); |
| 3274 | __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()), |
| 3275 | SP, mem2 + stack_offset); |
| 3276 | __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset); |
| 3277 | } |
| 3278 | |
| 3279 | void ParallelMoveResolverARM::EmitSwap(size_t index) { |
| 3280 | MoveOperands* move = moves_.Get(index); |
| 3281 | Location source = move->GetSource(); |
| 3282 | Location destination = move->GetDestination(); |
| 3283 | |
| 3284 | if (source.IsRegister() && destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3285 | DCHECK_NE(source.AsRegister<Register>(), IP); |
| 3286 | DCHECK_NE(destination.AsRegister<Register>(), IP); |
| 3287 | __ Mov(IP, source.AsRegister<Register>()); |
| 3288 | __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>()); |
| 3289 | __ Mov(destination.AsRegister<Register>(), IP); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3290 | } else if (source.IsRegister() && destination.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3291 | Exchange(source.AsRegister<Register>(), destination.GetStackIndex()); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3292 | } else if (source.IsStackSlot() && destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3293 | Exchange(destination.AsRegister<Register>(), source.GetStackIndex()); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 3294 | } else if (source.IsStackSlot() && destination.IsStackSlot()) { |
| 3295 | Exchange(source.GetStackIndex(), destination.GetStackIndex()); |
| 3296 | } else { |
| 3297 | LOG(FATAL) << "Unimplemented"; |
| 3298 | } |
| 3299 | } |
| 3300 | |
| 3301 | void ParallelMoveResolverARM::SpillScratch(int reg) { |
| 3302 | __ Push(static_cast<Register>(reg)); |
| 3303 | } |
| 3304 | |
| 3305 | void ParallelMoveResolverARM::RestoreScratch(int reg) { |
| 3306 | __ Pop(static_cast<Register>(reg)); |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 3307 | } |
| 3308 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3309 | void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3310 | LocationSummary::CallKind call_kind = cls->CanCallRuntime() |
| 3311 | ? LocationSummary::kCallOnSlowPath |
| 3312 | : LocationSummary::kNoCall; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3313 | LocationSummary* locations = |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3314 | new (GetGraph()->GetArena()) LocationSummary(cls, call_kind); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3315 | locations->SetOut(Location::RequiresRegister()); |
| 3316 | } |
| 3317 | |
| 3318 | void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3319 | Register out = cls->GetLocations()->Out().AsRegister<Register>(); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3320 | if (cls->IsReferrersClass()) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3321 | DCHECK(!cls->CanCallRuntime()); |
| 3322 | DCHECK(!cls->MustGenerateClinitCheck()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3323 | codegen_->LoadCurrentMethod(out); |
| 3324 | __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()); |
| 3325 | } else { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3326 | DCHECK(cls->CanCallRuntime()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3327 | codegen_->LoadCurrentMethod(out); |
| 3328 | __ LoadFromOffset( |
| 3329 | kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value()); |
| 3330 | __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3331 | |
| 3332 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM( |
| 3333 | cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck()); |
| 3334 | codegen_->AddSlowPath(slow_path); |
| 3335 | __ cmp(out, ShifterOperand(0)); |
| 3336 | __ b(slow_path->GetEntryLabel(), EQ); |
| 3337 | if (cls->MustGenerateClinitCheck()) { |
| 3338 | GenerateClassInitializationCheck(slow_path, out); |
| 3339 | } else { |
| 3340 | __ Bind(slow_path->GetExitLabel()); |
| 3341 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3342 | } |
| 3343 | } |
| 3344 | |
| 3345 | void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) { |
| 3346 | LocationSummary* locations = |
| 3347 | new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath); |
| 3348 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3349 | if (check->HasUses()) { |
| 3350 | locations->SetOut(Location::SameAsFirstInput()); |
| 3351 | } |
| 3352 | } |
| 3353 | |
| 3354 | void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3355 | // We assume the class is not null. |
| 3356 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM( |
| 3357 | check->GetLoadClass(), check, check->GetDexPc(), true); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3358 | codegen_->AddSlowPath(slow_path); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3359 | GenerateClassInitializationCheck(slow_path, |
| 3360 | check->GetLocations()->InAt(0).AsRegister<Register>()); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3361 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3362 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 3363 | void InstructionCodeGeneratorARM::GenerateClassInitializationCheck( |
| 3364 | SlowPathCodeARM* slow_path, Register class_reg) { |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 3365 | __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value()); |
| 3366 | __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized)); |
| 3367 | __ b(slow_path->GetEntryLabel(), LT); |
| 3368 | // Even if the initialized flag is set, we may be in a situation where caches are not synced |
| 3369 | // properly. Therefore, we do a memory fence. |
| 3370 | __ dmb(ISH); |
| 3371 | __ Bind(slow_path->GetExitLabel()); |
| 3372 | } |
| 3373 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 3374 | void LocationsBuilderARM::VisitLoadString(HLoadString* load) { |
| 3375 | LocationSummary* locations = |
| 3376 | new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath); |
| 3377 | locations->SetOut(Location::RequiresRegister()); |
| 3378 | } |
| 3379 | |
| 3380 | void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) { |
| 3381 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load); |
| 3382 | codegen_->AddSlowPath(slow_path); |
| 3383 | |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3384 | Register out = load->GetLocations()->Out().AsRegister<Register>(); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 3385 | codegen_->LoadCurrentMethod(out); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 3386 | __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value()); |
| 3387 | __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value()); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 3388 | __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex())); |
| 3389 | __ cmp(out, ShifterOperand(0)); |
| 3390 | __ b(slow_path->GetEntryLabel(), EQ); |
| 3391 | __ Bind(slow_path->GetExitLabel()); |
| 3392 | } |
| 3393 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 3394 | void LocationsBuilderARM::VisitLoadException(HLoadException* load) { |
| 3395 | LocationSummary* locations = |
| 3396 | new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall); |
| 3397 | locations->SetOut(Location::RequiresRegister()); |
| 3398 | } |
| 3399 | |
| 3400 | void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3401 | Register out = load->GetLocations()->Out().AsRegister<Register>(); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 3402 | int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value(); |
| 3403 | __ LoadFromOffset(kLoadWord, out, TR, offset); |
| 3404 | __ LoadImmediate(IP, 0); |
| 3405 | __ StoreToOffset(kStoreWord, IP, TR, offset); |
| 3406 | } |
| 3407 | |
| 3408 | void LocationsBuilderARM::VisitThrow(HThrow* instruction) { |
| 3409 | LocationSummary* locations = |
| 3410 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 3411 | InvokeRuntimeCallingConvention calling_convention; |
| 3412 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 3413 | } |
| 3414 | |
| 3415 | void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) { |
| 3416 | codegen_->InvokeRuntime( |
| 3417 | QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc()); |
| 3418 | } |
| 3419 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 3420 | void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 3421 | LocationSummary::CallKind call_kind = instruction->IsClassFinal() |
| 3422 | ? LocationSummary::kNoCall |
| 3423 | : LocationSummary::kCallOnSlowPath; |
| 3424 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind); |
| 3425 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3426 | locations->SetInAt(1, Location::RequiresRegister()); |
| 3427 | locations->SetOut(Location::RequiresRegister()); |
| 3428 | } |
| 3429 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 3430 | void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 3431 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3432 | Register obj = locations->InAt(0).AsRegister<Register>(); |
| 3433 | Register cls = locations->InAt(1).AsRegister<Register>(); |
| 3434 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 3435 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 3436 | Label done, zero; |
| 3437 | SlowPathCodeARM* slow_path = nullptr; |
| 3438 | |
| 3439 | // Return 0 if `obj` is null. |
| 3440 | // TODO: avoid this check if we know obj is not null. |
| 3441 | __ cmp(obj, ShifterOperand(0)); |
| 3442 | __ b(&zero, EQ); |
| 3443 | // Compare the class of `obj` with `cls`. |
| 3444 | __ LoadFromOffset(kLoadWord, out, obj, class_offset); |
| 3445 | __ cmp(out, ShifterOperand(cls)); |
| 3446 | if (instruction->IsClassFinal()) { |
| 3447 | // Classes must be equal for the instanceof to succeed. |
| 3448 | __ b(&zero, NE); |
| 3449 | __ LoadImmediate(out, 1); |
| 3450 | __ b(&done); |
| 3451 | } else { |
| 3452 | // If the classes are not equal, we go into a slow path. |
| 3453 | DCHECK(locations->OnlyCallsOnSlowPath()); |
| 3454 | slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM( |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 3455 | instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc()); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 3456 | codegen_->AddSlowPath(slow_path); |
| 3457 | __ b(slow_path->GetEntryLabel(), NE); |
| 3458 | __ LoadImmediate(out, 1); |
| 3459 | __ b(&done); |
| 3460 | } |
| 3461 | __ Bind(&zero); |
| 3462 | __ LoadImmediate(out, 0); |
| 3463 | if (slow_path != nullptr) { |
| 3464 | __ Bind(slow_path->GetExitLabel()); |
| 3465 | } |
| 3466 | __ Bind(&done); |
| 3467 | } |
| 3468 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 3469 | void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) { |
| 3470 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary( |
| 3471 | instruction, LocationSummary::kCallOnSlowPath); |
| 3472 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3473 | locations->SetInAt(1, Location::RequiresRegister()); |
| 3474 | locations->AddTemp(Location::RequiresRegister()); |
| 3475 | } |
| 3476 | |
| 3477 | void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) { |
| 3478 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3479 | Register obj = locations->InAt(0).AsRegister<Register>(); |
| 3480 | Register cls = locations->InAt(1).AsRegister<Register>(); |
| 3481 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 3482 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 3483 | |
| 3484 | SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM( |
| 3485 | instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc()); |
| 3486 | codegen_->AddSlowPath(slow_path); |
| 3487 | |
| 3488 | // TODO: avoid this check if we know obj is not null. |
| 3489 | __ cmp(obj, ShifterOperand(0)); |
| 3490 | __ b(slow_path->GetExitLabel(), EQ); |
| 3491 | // Compare the class of `obj` with `cls`. |
| 3492 | __ LoadFromOffset(kLoadWord, temp, obj, class_offset); |
| 3493 | __ cmp(temp, ShifterOperand(cls)); |
| 3494 | __ b(slow_path->GetEntryLabel(), NE); |
| 3495 | __ Bind(slow_path->GetExitLabel()); |
| 3496 | } |
| 3497 | |
Nicolas Geoffray | b7baf5c | 2014-11-11 16:29:44 +0000 | [diff] [blame] | 3498 | void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) { |
| 3499 | LocationSummary* locations = |
| 3500 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 3501 | InvokeRuntimeCallingConvention calling_convention; |
| 3502 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 3503 | } |
| 3504 | |
| 3505 | void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) { |
| 3506 | codegen_->InvokeRuntime(instruction->IsEnter() |
| 3507 | ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject), |
| 3508 | instruction, |
| 3509 | instruction->GetDexPc()); |
| 3510 | } |
| 3511 | |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 3512 | void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); } |
| 3513 | void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); } |
| 3514 | void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); } |
| 3515 | |
| 3516 | void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 3517 | LocationSummary* locations = |
| 3518 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
| 3519 | DCHECK(instruction->GetResultType() == Primitive::kPrimInt |
| 3520 | || instruction->GetResultType() == Primitive::kPrimLong); |
| 3521 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3522 | locations->SetInAt(1, Location::RequiresRegister()); |
| 3523 | bool output_overlaps = (instruction->GetResultType() == Primitive::kPrimLong); |
| 3524 | locations->SetOut(Location::RequiresRegister(), output_overlaps); |
| 3525 | } |
| 3526 | |
| 3527 | void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) { |
| 3528 | HandleBitwiseOperation(instruction); |
| 3529 | } |
| 3530 | |
| 3531 | void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) { |
| 3532 | HandleBitwiseOperation(instruction); |
| 3533 | } |
| 3534 | |
| 3535 | void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) { |
| 3536 | HandleBitwiseOperation(instruction); |
| 3537 | } |
| 3538 | |
| 3539 | void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 3540 | LocationSummary* locations = instruction->GetLocations(); |
| 3541 | |
| 3542 | if (instruction->GetResultType() == Primitive::kPrimInt) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3543 | Register first = locations->InAt(0).AsRegister<Register>(); |
| 3544 | Register second = locations->InAt(1).AsRegister<Register>(); |
| 3545 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 3546 | if (instruction->IsAnd()) { |
| 3547 | __ and_(out, first, ShifterOperand(second)); |
| 3548 | } else if (instruction->IsOr()) { |
| 3549 | __ orr(out, first, ShifterOperand(second)); |
| 3550 | } else { |
| 3551 | DCHECK(instruction->IsXor()); |
| 3552 | __ eor(out, first, ShifterOperand(second)); |
| 3553 | } |
| 3554 | } else { |
| 3555 | DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong); |
| 3556 | Location first = locations->InAt(0); |
| 3557 | Location second = locations->InAt(1); |
| 3558 | Location out = locations->Out(); |
| 3559 | if (instruction->IsAnd()) { |
| 3560 | __ and_(out.AsRegisterPairLow<Register>(), |
| 3561 | first.AsRegisterPairLow<Register>(), |
| 3562 | ShifterOperand(second.AsRegisterPairLow<Register>())); |
| 3563 | __ and_(out.AsRegisterPairHigh<Register>(), |
| 3564 | first.AsRegisterPairHigh<Register>(), |
| 3565 | ShifterOperand(second.AsRegisterPairHigh<Register>())); |
| 3566 | } else if (instruction->IsOr()) { |
| 3567 | __ orr(out.AsRegisterPairLow<Register>(), |
| 3568 | first.AsRegisterPairLow<Register>(), |
| 3569 | ShifterOperand(second.AsRegisterPairLow<Register>())); |
| 3570 | __ orr(out.AsRegisterPairHigh<Register>(), |
| 3571 | first.AsRegisterPairHigh<Register>(), |
| 3572 | ShifterOperand(second.AsRegisterPairHigh<Register>())); |
| 3573 | } else { |
| 3574 | DCHECK(instruction->IsXor()); |
| 3575 | __ eor(out.AsRegisterPairLow<Register>(), |
| 3576 | first.AsRegisterPairLow<Register>(), |
| 3577 | ShifterOperand(second.AsRegisterPairLow<Register>())); |
| 3578 | __ eor(out.AsRegisterPairHigh<Register>(), |
| 3579 | first.AsRegisterPairHigh<Register>(), |
| 3580 | ShifterOperand(second.AsRegisterPairHigh<Register>())); |
| 3581 | } |
| 3582 | } |
| 3583 | } |
| 3584 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 3585 | } // namespace arm |
| 3586 | } // namespace art |