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_x86.h" |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 18 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 19 | #include "code_generator_utils.h" |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 20 | #include "entrypoints/quick/quick_entrypoints.h" |
Nicolas Geoffray | cb1b00a | 2015-01-28 14:50:01 +0000 | [diff] [blame] | 21 | #include "entrypoints/quick/quick_entrypoints_enum.h" |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 22 | #include "gc/accounting/card_table.h" |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 23 | #include "intrinsics.h" |
| 24 | #include "intrinsics_x86.h" |
Ian Rogers | 7e70b00 | 2014-10-08 11:47:24 -0700 | [diff] [blame] | 25 | #include "mirror/array-inl.h" |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 26 | #include "mirror/art_method.h" |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 27 | #include "mirror/class.h" |
Nicolas Geoffray | f6e206c | 2014-08-07 20:25:41 +0100 | [diff] [blame] | 28 | #include "thread.h" |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 29 | #include "utils/assembler.h" |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 30 | #include "utils/stack_checks.h" |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 31 | #include "utils/x86/assembler_x86.h" |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 32 | #include "utils/x86/managed_register_x86.h" |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 33 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 34 | namespace art { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 35 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 36 | namespace x86 { |
| 37 | |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 38 | static constexpr int kCurrentMethodStackOffset = 0; |
| 39 | |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 40 | static constexpr Register kCoreCalleeSaves[] = { EBP, ESI, EDI }; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 41 | |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 42 | static constexpr int kC2ConditionMask = 0x400; |
| 43 | |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 44 | static constexpr int kFakeReturnRegister = Register(8); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 45 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 46 | #define __ reinterpret_cast<X86Assembler*>(codegen->GetAssembler())-> |
| 47 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 48 | class NullCheckSlowPathX86 : public SlowPathCodeX86 { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 49 | public: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 50 | explicit NullCheckSlowPathX86(HNullCheck* instruction) : instruction_(instruction) {} |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 51 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 52 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 53 | __ Bind(GetEntryLabel()); |
| 54 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowNullPointer))); |
Mingyao Yang | 2be4869 | 2015-03-31 17:03:08 -0700 | [diff] [blame] | 55 | RecordPcInfo(codegen, instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | private: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 59 | HNullCheck* const instruction_; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 60 | DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathX86); |
| 61 | }; |
| 62 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 63 | class DivZeroCheckSlowPathX86 : public SlowPathCodeX86 { |
| 64 | public: |
| 65 | explicit DivZeroCheckSlowPathX86(HDivZeroCheck* instruction) : instruction_(instruction) {} |
| 66 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 67 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 68 | __ Bind(GetEntryLabel()); |
| 69 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowDivZero))); |
Mingyao Yang | 2be4869 | 2015-03-31 17:03:08 -0700 | [diff] [blame] | 70 | RecordPcInfo(codegen, instruction_, instruction_->GetDexPc()); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | private: |
| 74 | HDivZeroCheck* const instruction_; |
| 75 | DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathX86); |
| 76 | }; |
| 77 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 78 | class DivRemMinusOneSlowPathX86 : public SlowPathCodeX86 { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 79 | public: |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 80 | explicit DivRemMinusOneSlowPathX86(Register reg, bool is_div) : reg_(reg), is_div_(is_div) {} |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 81 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 82 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 83 | __ Bind(GetEntryLabel()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 84 | if (is_div_) { |
| 85 | __ negl(reg_); |
| 86 | } else { |
| 87 | __ movl(reg_, Immediate(0)); |
| 88 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 89 | __ jmp(GetExitLabel()); |
| 90 | } |
| 91 | |
| 92 | private: |
| 93 | Register reg_; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 94 | bool is_div_; |
| 95 | DISALLOW_COPY_AND_ASSIGN(DivRemMinusOneSlowPathX86); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 98 | class BoundsCheckSlowPathX86 : public SlowPathCodeX86 { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 99 | public: |
Roland Levillain | 5799fc0 | 2014-09-25 12:15:20 +0100 | [diff] [blame] | 100 | BoundsCheckSlowPathX86(HBoundsCheck* instruction, |
| 101 | Location index_location, |
| 102 | Location length_location) |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 103 | : instruction_(instruction), |
| 104 | index_location_(index_location), |
| 105 | length_location_(length_location) {} |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 106 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 107 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 108 | CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 109 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 110 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 111 | // move resolver. |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 112 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 113 | x86_codegen->EmitParallelMoves( |
| 114 | index_location_, |
| 115 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 116 | Primitive::kPrimInt, |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 117 | length_location_, |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 118 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
| 119 | Primitive::kPrimInt); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 120 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowArrayBounds))); |
Mingyao Yang | 2be4869 | 2015-03-31 17:03:08 -0700 | [diff] [blame] | 121 | RecordPcInfo(codegen, instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | private: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 125 | HBoundsCheck* const instruction_; |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 126 | const Location index_location_; |
| 127 | const Location length_location_; |
| 128 | |
| 129 | DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathX86); |
| 130 | }; |
| 131 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 132 | class SuspendCheckSlowPathX86 : public SlowPathCodeX86 { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 133 | public: |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 134 | SuspendCheckSlowPathX86(HSuspendCheck* instruction, HBasicBlock* successor) |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 135 | : instruction_(instruction), successor_(successor) {} |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 136 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 137 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 138 | CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 139 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 140 | SaveLiveRegisters(codegen, instruction_->GetLocations()); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 141 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pTestSuspend))); |
Mingyao Yang | 2be4869 | 2015-03-31 17:03:08 -0700 | [diff] [blame] | 142 | RecordPcInfo(codegen, instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 143 | RestoreLiveRegisters(codegen, instruction_->GetLocations()); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 144 | if (successor_ == nullptr) { |
| 145 | __ jmp(GetReturnLabel()); |
| 146 | } else { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 147 | __ jmp(x86_codegen->GetLabelOf(successor_)); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 148 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 151 | Label* GetReturnLabel() { |
| 152 | DCHECK(successor_ == nullptr); |
| 153 | return &return_label_; |
| 154 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 155 | |
| 156 | private: |
| 157 | HSuspendCheck* const instruction_; |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 158 | HBasicBlock* const successor_; |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 159 | Label return_label_; |
| 160 | |
| 161 | DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathX86); |
| 162 | }; |
| 163 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 164 | class LoadStringSlowPathX86 : public SlowPathCodeX86 { |
| 165 | public: |
| 166 | explicit LoadStringSlowPathX86(HLoadString* instruction) : instruction_(instruction) {} |
| 167 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 168 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 169 | LocationSummary* locations = instruction_->GetLocations(); |
| 170 | DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
| 171 | |
| 172 | CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen); |
| 173 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 174 | SaveLiveRegisters(codegen, locations); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 175 | |
| 176 | InvokeRuntimeCallingConvention calling_convention; |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame] | 177 | x86_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
| 178 | __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction_->GetStringIndex())); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 179 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pResolveString))); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 180 | RecordPcInfo(codegen, instruction_, instruction_->GetDexPc()); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 181 | x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX)); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 182 | RestoreLiveRegisters(codegen, locations); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 183 | |
| 184 | __ jmp(GetExitLabel()); |
| 185 | } |
| 186 | |
| 187 | private: |
| 188 | HLoadString* const instruction_; |
| 189 | |
| 190 | DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathX86); |
| 191 | }; |
| 192 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 193 | class LoadClassSlowPathX86 : public SlowPathCodeX86 { |
| 194 | public: |
| 195 | LoadClassSlowPathX86(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 | } |
| 202 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +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 | CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen); |
| 206 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 207 | SaveLiveRegisters(codegen, locations); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 208 | |
| 209 | InvokeRuntimeCallingConvention calling_convention; |
| 210 | __ movl(calling_convention.GetRegisterAt(0), Immediate(cls_->GetTypeIndex())); |
| 211 | x86_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
| 212 | __ fs()->call(Address::Absolute(do_clinit_ |
| 213 | ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeStaticStorage) |
| 214 | : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pInitializeType))); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 215 | RecordPcInfo(codegen, at_, dex_pc_); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 216 | |
| 217 | // Move the class to the desired location. |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 218 | Location out = locations->Out(); |
| 219 | if (out.IsValid()) { |
| 220 | DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg())); |
| 221 | x86_codegen->Move32(out, Location::RegisterLocation(EAX)); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 222 | } |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 223 | |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 224 | RestoreLiveRegisters(codegen, locations); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 225 | __ jmp(GetExitLabel()); |
| 226 | } |
| 227 | |
| 228 | private: |
| 229 | // The class this slow path will load. |
| 230 | HLoadClass* const cls_; |
| 231 | |
| 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(LoadClassSlowPathX86); |
| 243 | }; |
| 244 | |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 245 | class TypeCheckSlowPathX86 : public SlowPathCodeX86 { |
| 246 | public: |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 247 | TypeCheckSlowPathX86(HInstruction* instruction, |
| 248 | Location class_to_check, |
| 249 | Location object_class, |
| 250 | uint32_t dex_pc) |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 251 | : instruction_(instruction), |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 252 | class_to_check_(class_to_check), |
| 253 | object_class_(object_class), |
| 254 | dex_pc_(dex_pc) {} |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 255 | |
Alexandre Rames | 2ed20af | 2015-03-06 13:55:35 +0000 | [diff] [blame] | 256 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 257 | LocationSummary* locations = instruction_->GetLocations(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 258 | DCHECK(instruction_->IsCheckCast() |
| 259 | || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg())); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 260 | |
| 261 | CodeGeneratorX86* x86_codegen = down_cast<CodeGeneratorX86*>(codegen); |
| 262 | __ Bind(GetEntryLabel()); |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 263 | SaveLiveRegisters(codegen, locations); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 264 | |
| 265 | // We're moving two locations to locations that could overlap, so we need a parallel |
| 266 | // move resolver. |
| 267 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 268 | x86_codegen->EmitParallelMoves( |
| 269 | class_to_check_, |
| 270 | Location::RegisterLocation(calling_convention.GetRegisterAt(0)), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 271 | Primitive::kPrimNot, |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 272 | object_class_, |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 273 | Location::RegisterLocation(calling_convention.GetRegisterAt(1)), |
| 274 | Primitive::kPrimNot); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 275 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 276 | if (instruction_->IsInstanceOf()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 277 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, |
| 278 | pInstanceofNonTrivial))); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 279 | } else { |
| 280 | DCHECK(instruction_->IsCheckCast()); |
| 281 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pCheckCast))); |
| 282 | } |
| 283 | |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 284 | RecordPcInfo(codegen, instruction_, dex_pc_); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 285 | if (instruction_->IsInstanceOf()) { |
| 286 | x86_codegen->Move32(locations->Out(), Location::RegisterLocation(EAX)); |
| 287 | } |
Nicolas Geoffray | a8ac913 | 2015-03-13 16:36:36 +0000 | [diff] [blame] | 288 | RestoreLiveRegisters(codegen, locations); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 289 | |
| 290 | __ jmp(GetExitLabel()); |
| 291 | } |
| 292 | |
| 293 | private: |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 294 | HInstruction* const instruction_; |
| 295 | const Location class_to_check_; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 296 | const Location object_class_; |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 297 | const uint32_t dex_pc_; |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 298 | |
| 299 | DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathX86); |
| 300 | }; |
| 301 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 302 | class DeoptimizationSlowPathX86 : public SlowPathCodeX86 { |
| 303 | public: |
| 304 | explicit DeoptimizationSlowPathX86(HInstruction* instruction) |
| 305 | : instruction_(instruction) {} |
| 306 | |
| 307 | void EmitNativeCode(CodeGenerator* codegen) OVERRIDE { |
| 308 | __ Bind(GetEntryLabel()); |
| 309 | SaveLiveRegisters(codegen, instruction_->GetLocations()); |
| 310 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeoptimize))); |
| 311 | // No need to restore live registers. |
| 312 | DCHECK(instruction_->IsDeoptimize()); |
| 313 | HDeoptimize* deoptimize = instruction_->AsDeoptimize(); |
| 314 | uint32_t dex_pc = deoptimize->GetDexPc(); |
| 315 | codegen->RecordPcInfo(instruction_, dex_pc, this); |
| 316 | } |
| 317 | |
| 318 | private: |
| 319 | HInstruction* const instruction_; |
| 320 | DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathX86); |
| 321 | }; |
| 322 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 323 | #undef __ |
| 324 | #define __ reinterpret_cast<X86Assembler*>(GetAssembler())-> |
| 325 | |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 326 | inline Condition X86Condition(IfCondition cond) { |
| 327 | switch (cond) { |
| 328 | case kCondEQ: return kEqual; |
| 329 | case kCondNE: return kNotEqual; |
| 330 | case kCondLT: return kLess; |
| 331 | case kCondLE: return kLessEqual; |
| 332 | case kCondGT: return kGreater; |
| 333 | case kCondGE: return kGreaterEqual; |
| 334 | default: |
| 335 | LOG(FATAL) << "Unknown if condition"; |
| 336 | } |
| 337 | return kEqual; |
| 338 | } |
| 339 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 340 | void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const { |
| 341 | stream << X86ManagedRegister::FromCpuRegister(Register(reg)); |
| 342 | } |
| 343 | |
| 344 | void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const { |
| 345 | stream << X86ManagedRegister::FromXmmRegister(XmmRegister(reg)); |
| 346 | } |
| 347 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 348 | size_t CodeGeneratorX86::SaveCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 349 | __ movl(Address(ESP, stack_index), static_cast<Register>(reg_id)); |
| 350 | return kX86WordSize; |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 351 | } |
| 352 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 353 | size_t CodeGeneratorX86::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) { |
| 354 | __ movl(static_cast<Register>(reg_id), Address(ESP, stack_index)); |
| 355 | return kX86WordSize; |
Nicolas Geoffray | 3bca0df | 2014-09-19 11:01:00 +0100 | [diff] [blame] | 356 | } |
| 357 | |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 358 | size_t CodeGeneratorX86::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) { |
| 359 | __ movsd(Address(ESP, stack_index), XmmRegister(reg_id)); |
| 360 | return GetFloatingPointSpillSlotSize(); |
| 361 | } |
| 362 | |
| 363 | size_t CodeGeneratorX86::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) { |
| 364 | __ movsd(XmmRegister(reg_id), Address(ESP, stack_index)); |
| 365 | return GetFloatingPointSpillSlotSize(); |
| 366 | } |
| 367 | |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 368 | CodeGeneratorX86::CodeGeneratorX86(HGraph* graph, |
| 369 | const X86InstructionSetFeatures& isa_features, |
| 370 | const CompilerOptions& compiler_options) |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 371 | : CodeGenerator(graph, |
| 372 | kNumberOfCpuRegisters, |
| 373 | kNumberOfXmmRegisters, |
| 374 | kNumberOfRegisterPairs, |
| 375 | ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves), |
| 376 | arraysize(kCoreCalleeSaves)) |
| 377 | | (1 << kFakeReturnRegister), |
| 378 | 0, |
| 379 | compiler_options), |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 380 | block_labels_(graph->GetArena(), 0), |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 381 | location_builder_(graph, this), |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 382 | instruction_visitor_(graph, this), |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 383 | move_resolver_(graph->GetArena(), this), |
| 384 | isa_features_(isa_features) { |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 385 | // Use a fake return address register to mimic Quick. |
| 386 | AddAllocatedRegister(Location::RegisterLocation(kFakeReturnRegister)); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 387 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 388 | |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 389 | Location CodeGeneratorX86::AllocateFreeRegister(Primitive::Type type) const { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 390 | switch (type) { |
| 391 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 392 | size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 393 | X86ManagedRegister pair = |
| 394 | X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg)); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 395 | DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]); |
| 396 | DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]); |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 397 | blocked_core_registers_[pair.AsRegisterPairLow()] = true; |
| 398 | blocked_core_registers_[pair.AsRegisterPairHigh()] = true; |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 399 | UpdateBlockedPairRegisters(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 400 | return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh()); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | case Primitive::kPrimByte: |
| 404 | case Primitive::kPrimBoolean: |
| 405 | case Primitive::kPrimChar: |
| 406 | case Primitive::kPrimShort: |
| 407 | case Primitive::kPrimInt: |
| 408 | case Primitive::kPrimNot: { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 409 | Register reg = static_cast<Register>( |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 410 | FindFreeEntry(blocked_core_registers_, kNumberOfCpuRegisters)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 411 | // Block all register pairs that contain `reg`. |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 412 | for (int i = 0; i < kNumberOfRegisterPairs; i++) { |
| 413 | X86ManagedRegister current = |
| 414 | X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i)); |
| 415 | if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 416 | blocked_register_pairs_[i] = true; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 417 | } |
| 418 | } |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 419 | return Location::RegisterLocation(reg); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 423 | case Primitive::kPrimDouble: { |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 424 | return Location::FpuRegisterLocation( |
| 425 | FindFreeEntry(blocked_fpu_registers_, kNumberOfXmmRegisters)); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 426 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 427 | |
| 428 | case Primitive::kPrimVoid: |
| 429 | LOG(FATAL) << "Unreachable type " << type; |
| 430 | } |
| 431 | |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 432 | return Location(); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 433 | } |
| 434 | |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 435 | void CodeGeneratorX86::SetupBlockedRegisters(bool is_baseline) const { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 436 | // Don't allocate the dalvik style register pair passing. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 437 | blocked_register_pairs_[ECX_EDX] = true; |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 438 | |
| 439 | // Stack register is always reserved. |
Nicolas Geoffray | 71175b7 | 2014-10-09 22:13:55 +0100 | [diff] [blame] | 440 | blocked_core_registers_[ESP] = true; |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 441 | |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 442 | if (is_baseline) { |
| 443 | blocked_core_registers_[EBP] = true; |
| 444 | blocked_core_registers_[ESI] = true; |
| 445 | blocked_core_registers_[EDI] = true; |
| 446 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 447 | |
| 448 | UpdateBlockedPairRegisters(); |
| 449 | } |
| 450 | |
| 451 | void CodeGeneratorX86::UpdateBlockedPairRegisters() const { |
| 452 | for (int i = 0; i < kNumberOfRegisterPairs; i++) { |
| 453 | X86ManagedRegister current = |
| 454 | X86ManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i)); |
| 455 | if (blocked_core_registers_[current.AsRegisterPairLow()] |
| 456 | || blocked_core_registers_[current.AsRegisterPairHigh()]) { |
| 457 | blocked_register_pairs_[i] = true; |
| 458 | } |
| 459 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 460 | } |
| 461 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 462 | InstructionCodeGeneratorX86::InstructionCodeGeneratorX86(HGraph* graph, CodeGeneratorX86* codegen) |
| 463 | : HGraphVisitor(graph), |
| 464 | assembler_(codegen->GetAssembler()), |
| 465 | codegen_(codegen) {} |
| 466 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 467 | static dwarf::Reg DWARFReg(Register reg) { |
David Srbecky | 9d8606d | 2015-04-12 09:35:32 +0100 | [diff] [blame] | 468 | return dwarf::Reg::X86Core(static_cast<int>(reg)); |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 469 | } |
| 470 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 471 | void CodeGeneratorX86::GenerateFrameEntry() { |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 472 | __ cfi().SetCurrentCFAOffset(kX86WordSize); // return address |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 473 | __ Bind(&frame_entry_label_); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 474 | bool skip_overflow_check = |
| 475 | IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86); |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 476 | DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks()); |
Calin Juravle | 93edf73 | 2015-01-20 20:14:07 +0000 | [diff] [blame] | 477 | |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 478 | if (!skip_overflow_check) { |
Nicolas Geoffray | 397f2e4 | 2014-07-23 12:57:19 +0100 | [diff] [blame] | 479 | __ testl(EAX, Address(ESP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86)))); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 480 | RecordPcInfo(nullptr, 0); |
Nicolas Geoffray | 397f2e4 | 2014-07-23 12:57:19 +0100 | [diff] [blame] | 481 | } |
| 482 | |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 483 | if (HasEmptyFrame()) { |
| 484 | return; |
Nicolas Geoffray | c0572a4 | 2015-02-06 14:35:25 +0000 | [diff] [blame] | 485 | } |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 486 | |
| 487 | for (int i = arraysize(kCoreCalleeSaves) - 1; i >= 0; --i) { |
| 488 | Register reg = kCoreCalleeSaves[i]; |
| 489 | if (allocated_registers_.ContainsCoreRegister(reg)) { |
| 490 | __ pushl(reg); |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 491 | __ cfi().AdjustCFAOffset(kX86WordSize); |
| 492 | __ cfi().RelOffset(DWARFReg(reg), 0); |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 496 | int adjust = GetFrameSize() - FrameEntrySpillSize(); |
| 497 | __ subl(ESP, Immediate(adjust)); |
| 498 | __ cfi().AdjustCFAOffset(adjust); |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 499 | __ movl(Address(ESP, kCurrentMethodStackOffset), EAX); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | void CodeGeneratorX86::GenerateFrameExit() { |
David Srbecky | c34dc93 | 2015-04-12 09:27:43 +0100 | [diff] [blame] | 503 | __ cfi().RememberState(); |
| 504 | if (!HasEmptyFrame()) { |
| 505 | int adjust = GetFrameSize() - FrameEntrySpillSize(); |
| 506 | __ addl(ESP, Immediate(adjust)); |
| 507 | __ cfi().AdjustCFAOffset(-adjust); |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 508 | |
David Srbecky | c34dc93 | 2015-04-12 09:27:43 +0100 | [diff] [blame] | 509 | for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) { |
| 510 | Register reg = kCoreCalleeSaves[i]; |
| 511 | if (allocated_registers_.ContainsCoreRegister(reg)) { |
| 512 | __ popl(reg); |
| 513 | __ cfi().AdjustCFAOffset(-static_cast<int>(kX86WordSize)); |
| 514 | __ cfi().Restore(DWARFReg(reg)); |
| 515 | } |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 516 | } |
Nicolas Geoffray | c0572a4 | 2015-02-06 14:35:25 +0000 | [diff] [blame] | 517 | } |
David Srbecky | c34dc93 | 2015-04-12 09:27:43 +0100 | [diff] [blame] | 518 | __ ret(); |
| 519 | __ cfi().RestoreState(); |
| 520 | __ cfi().DefCFAOffset(GetFrameSize()); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 523 | void CodeGeneratorX86::Bind(HBasicBlock* block) { |
| 524 | __ Bind(GetLabelOf(block)); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 527 | void CodeGeneratorX86::LoadCurrentMethod(Register reg) { |
Nicolas Geoffray | c0572a4 | 2015-02-06 14:35:25 +0000 | [diff] [blame] | 528 | DCHECK(RequiresCurrentMethod()); |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 529 | __ movl(reg, Address(ESP, kCurrentMethodStackOffset)); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 530 | } |
| 531 | |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 532 | Location CodeGeneratorX86::GetStackLocation(HLoadLocal* load) const { |
| 533 | switch (load->GetType()) { |
| 534 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 535 | case Primitive::kPrimDouble: |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 536 | return Location::DoubleStackSlot(GetStackSlot(load->GetLocal())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 537 | |
| 538 | case Primitive::kPrimInt: |
| 539 | case Primitive::kPrimNot: |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 540 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 541 | return Location::StackSlot(GetStackSlot(load->GetLocal())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 542 | |
| 543 | case Primitive::kPrimBoolean: |
| 544 | case Primitive::kPrimByte: |
| 545 | case Primitive::kPrimChar: |
| 546 | case Primitive::kPrimShort: |
| 547 | case Primitive::kPrimVoid: |
| 548 | LOG(FATAL) << "Unexpected type " << load->GetType(); |
Andreas Gampe | 65b798e | 2015-04-06 09:35:22 -0700 | [diff] [blame] | 549 | UNREACHABLE(); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | LOG(FATAL) << "Unreachable"; |
Andreas Gampe | 65b798e | 2015-04-06 09:35:22 -0700 | [diff] [blame] | 553 | UNREACHABLE(); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 554 | } |
| 555 | |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 556 | Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) { |
| 557 | switch (type) { |
| 558 | case Primitive::kPrimBoolean: |
| 559 | case Primitive::kPrimByte: |
| 560 | case Primitive::kPrimChar: |
| 561 | case Primitive::kPrimShort: |
| 562 | case Primitive::kPrimInt: |
| 563 | case Primitive::kPrimNot: { |
| 564 | uint32_t index = gp_index_++; |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 565 | stack_index_++; |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 566 | if (index < calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 567 | return Location::RegisterLocation(calling_convention.GetRegisterAt(index)); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 568 | } else { |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 569 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 570 | } |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 571 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 572 | |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 573 | case Primitive::kPrimLong: { |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 574 | uint32_t index = gp_index_; |
| 575 | gp_index_ += 2; |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 576 | stack_index_ += 2; |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 577 | if (index + 1 < calling_convention.GetNumberOfRegisters()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 578 | X86ManagedRegister pair = X86ManagedRegister::FromRegisterPair( |
| 579 | calling_convention.GetRegisterPairAt(index)); |
| 580 | return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh()); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 581 | } else { |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 582 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | case Primitive::kPrimFloat: { |
| 587 | uint32_t index = fp_index_++; |
| 588 | stack_index_++; |
| 589 | if (index < calling_convention.GetNumberOfFpuRegisters()) { |
| 590 | return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index)); |
| 591 | } else { |
| 592 | return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1)); |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | case Primitive::kPrimDouble: { |
| 597 | uint32_t index = fp_index_++; |
| 598 | stack_index_ += 2; |
| 599 | if (index < calling_convention.GetNumberOfFpuRegisters()) { |
| 600 | return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(index)); |
| 601 | } else { |
| 602 | return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2)); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 603 | } |
| 604 | } |
| 605 | |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 606 | case Primitive::kPrimVoid: |
| 607 | LOG(FATAL) << "Unexpected parameter type " << type; |
| 608 | break; |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 609 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 610 | return Location(); |
| 611 | } |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 612 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 613 | void CodeGeneratorX86::Move32(Location destination, Location source) { |
| 614 | if (source.Equals(destination)) { |
| 615 | return; |
| 616 | } |
| 617 | if (destination.IsRegister()) { |
| 618 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 619 | __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 620 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 621 | __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 622 | } else { |
| 623 | DCHECK(source.IsStackSlot()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 624 | __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 625 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 626 | } else if (destination.IsFpuRegister()) { |
| 627 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 628 | __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 629 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 630 | __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 631 | } else { |
| 632 | DCHECK(source.IsStackSlot()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 633 | __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex())); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 634 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 635 | } else { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 636 | DCHECK(destination.IsStackSlot()) << destination; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 637 | if (source.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 638 | __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 639 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 640 | __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>()); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 641 | } else if (source.IsConstant()) { |
| 642 | HConstant* constant = source.GetConstant(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 643 | int32_t value = GetInt32ValueOf(constant); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 644 | __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 645 | } else { |
| 646 | DCHECK(source.IsStackSlot()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 647 | __ pushl(Address(ESP, source.GetStackIndex())); |
| 648 | __ popl(Address(ESP, destination.GetStackIndex())); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 649 | } |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | void CodeGeneratorX86::Move64(Location destination, Location source) { |
| 654 | if (source.Equals(destination)) { |
| 655 | return; |
| 656 | } |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 657 | if (destination.IsRegisterPair()) { |
| 658 | if (source.IsRegisterPair()) { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 659 | EmitParallelMoves( |
| 660 | Location::RegisterLocation(source.AsRegisterPairHigh<Register>()), |
| 661 | Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 662 | Primitive::kPrimInt, |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 663 | Location::RegisterLocation(source.AsRegisterPairLow<Register>()), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 664 | Location::RegisterLocation(destination.AsRegisterPairLow<Register>()), |
| 665 | Primitive::kPrimInt); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 666 | } else if (source.IsFpuRegister()) { |
| 667 | LOG(FATAL) << "Unimplemented"; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 668 | } else { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 669 | // No conflict possible, so just do the moves. |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 670 | DCHECK(source.IsDoubleStackSlot()); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 671 | __ movl(destination.AsRegisterPairLow<Register>(), Address(ESP, source.GetStackIndex())); |
| 672 | __ movl(destination.AsRegisterPairHigh<Register>(), |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 673 | Address(ESP, source.GetHighStackIndex(kX86WordSize))); |
| 674 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 675 | } else if (destination.IsFpuRegister()) { |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 676 | if (source.IsFpuRegister()) { |
| 677 | __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
| 678 | } else if (source.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 679 | __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex())); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 680 | } else { |
| 681 | LOG(FATAL) << "Unimplemented"; |
| 682 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 683 | } else { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 684 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 685 | if (source.IsRegisterPair()) { |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 686 | // No conflict possible, so just do the moves. |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 687 | __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegisterPairLow<Register>()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 688 | __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 689 | source.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 690 | } else if (source.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 691 | __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 692 | } else if (source.IsConstant()) { |
| 693 | HConstant* constant = source.GetConstant(); |
| 694 | int64_t value; |
| 695 | if (constant->IsLongConstant()) { |
| 696 | value = constant->AsLongConstant()->GetValue(); |
| 697 | } else { |
| 698 | DCHECK(constant->IsDoubleConstant()); |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 699 | value = bit_cast<int64_t, double>(constant->AsDoubleConstant()->GetValue()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 700 | } |
| 701 | __ movl(Address(ESP, destination.GetStackIndex()), Immediate(Low32Bits(value))); |
| 702 | __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), Immediate(High32Bits(value))); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 703 | } else { |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 704 | DCHECK(source.IsDoubleStackSlot()) << source; |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 705 | EmitParallelMoves( |
| 706 | Location::StackSlot(source.GetStackIndex()), |
| 707 | Location::StackSlot(destination.GetStackIndex()), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 708 | Primitive::kPrimInt, |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 709 | Location::StackSlot(source.GetHighStackIndex(kX86WordSize)), |
Nicolas Geoffray | 9021825 | 2015-04-15 11:56:51 +0100 | [diff] [blame] | 710 | Location::StackSlot(destination.GetHighStackIndex(kX86WordSize)), |
| 711 | Primitive::kPrimInt); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | } |
| 715 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 716 | void CodeGeneratorX86::Move(HInstruction* instruction, Location location, HInstruction* move_for) { |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 717 | LocationSummary* locations = instruction->GetLocations(); |
| 718 | if (locations != nullptr && locations->Out().Equals(location)) { |
| 719 | return; |
| 720 | } |
| 721 | |
| 722 | if (locations != nullptr && locations->Out().IsConstant()) { |
| 723 | HConstant* const_to_move = locations->Out().GetConstant(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 724 | if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) { |
| 725 | Immediate imm(GetInt32ValueOf(const_to_move)); |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 726 | if (location.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 727 | __ movl(location.AsRegister<Register>(), imm); |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 728 | } else if (location.IsStackSlot()) { |
| 729 | __ movl(Address(ESP, location.GetStackIndex()), imm); |
| 730 | } else { |
| 731 | DCHECK(location.IsConstant()); |
| 732 | DCHECK_EQ(location.GetConstant(), const_to_move); |
| 733 | } |
| 734 | } else if (const_to_move->IsLongConstant()) { |
| 735 | int64_t value = const_to_move->AsLongConstant()->GetValue(); |
| 736 | if (location.IsRegisterPair()) { |
| 737 | __ movl(location.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value))); |
| 738 | __ movl(location.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value))); |
| 739 | } else if (location.IsDoubleStackSlot()) { |
| 740 | __ movl(Address(ESP, location.GetStackIndex()), Immediate(Low32Bits(value))); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 741 | __ movl(Address(ESP, location.GetHighStackIndex(kX86WordSize)), |
| 742 | Immediate(High32Bits(value))); |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 743 | } else { |
| 744 | DCHECK(location.IsConstant()); |
| 745 | DCHECK_EQ(location.GetConstant(), instruction); |
| 746 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 747 | } |
Nicolas Geoffray | f43083d | 2014-11-07 10:48:10 +0000 | [diff] [blame] | 748 | } else if (instruction->IsTemporary()) { |
| 749 | Location temp_location = GetTemporaryLocation(instruction->AsTemporary()); |
Calin Juravle | f97f9fb | 2014-11-11 15:38:19 +0000 | [diff] [blame] | 750 | if (temp_location.IsStackSlot()) { |
| 751 | Move32(location, temp_location); |
| 752 | } else { |
| 753 | DCHECK(temp_location.IsDoubleStackSlot()); |
| 754 | Move64(location, temp_location); |
| 755 | } |
Roland Levillain | 476df55 | 2014-10-09 17:51:36 +0100 | [diff] [blame] | 756 | } else if (instruction->IsLoadLocal()) { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 757 | int slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 758 | switch (instruction->GetType()) { |
| 759 | case Primitive::kPrimBoolean: |
| 760 | case Primitive::kPrimByte: |
| 761 | case Primitive::kPrimChar: |
| 762 | case Primitive::kPrimShort: |
| 763 | case Primitive::kPrimInt: |
| 764 | case Primitive::kPrimNot: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 765 | case Primitive::kPrimFloat: |
| 766 | Move32(location, Location::StackSlot(slot)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 767 | break; |
| 768 | |
| 769 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 770 | case Primitive::kPrimDouble: |
| 771 | Move64(location, Location::DoubleStackSlot(slot)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 772 | break; |
| 773 | |
| 774 | default: |
| 775 | LOG(FATAL) << "Unimplemented local type " << instruction->GetType(); |
| 776 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 777 | } else { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 778 | DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 779 | switch (instruction->GetType()) { |
| 780 | case Primitive::kPrimBoolean: |
| 781 | case Primitive::kPrimByte: |
| 782 | case Primitive::kPrimChar: |
| 783 | case Primitive::kPrimShort: |
| 784 | case Primitive::kPrimInt: |
| 785 | case Primitive::kPrimNot: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 786 | case Primitive::kPrimFloat: |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 787 | Move32(location, locations->Out()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 788 | break; |
| 789 | |
| 790 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 791 | case Primitive::kPrimDouble: |
Calin Juravle | a21f598 | 2014-11-13 15:53:04 +0000 | [diff] [blame] | 792 | Move64(location, locations->Out()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 793 | break; |
| 794 | |
| 795 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 796 | LOG(FATAL) << "Unexpected type " << instruction->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 797 | } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 798 | } |
| 799 | } |
| 800 | |
| 801 | void LocationsBuilderX86::VisitGoto(HGoto* got) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 802 | got->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 805 | void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 806 | HBasicBlock* successor = got->GetSuccessor(); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 807 | DCHECK(!successor->IsExitBlock()); |
| 808 | |
| 809 | HBasicBlock* block = got->GetBlock(); |
| 810 | HInstruction* previous = got->GetPrevious(); |
| 811 | |
| 812 | HLoopInformation* info = block->GetLoopInformation(); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 813 | if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) { |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 814 | codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck()); |
| 815 | GenerateSuspendCheck(info->GetSuspendCheck(), successor); |
| 816 | return; |
| 817 | } |
| 818 | |
| 819 | if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { |
| 820 | GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); |
| 821 | } |
| 822 | if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 823 | __ jmp(codegen_->GetLabelOf(successor)); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 824 | } |
| 825 | } |
| 826 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 827 | void LocationsBuilderX86::VisitExit(HExit* exit) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 828 | exit->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 829 | } |
| 830 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 831 | void InstructionCodeGeneratorX86::VisitExit(HExit* exit) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 832 | UNUSED(exit); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 835 | void InstructionCodeGeneratorX86::GenerateTestAndBranch(HInstruction* instruction, |
| 836 | Label* true_target, |
| 837 | Label* false_target, |
| 838 | Label* always_true_target) { |
| 839 | HInstruction* cond = instruction->InputAt(0); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 840 | if (cond->IsIntConstant()) { |
| 841 | // Constant condition, statically compared against 1. |
| 842 | int32_t cond_value = cond->AsIntConstant()->GetValue(); |
| 843 | if (cond_value == 1) { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 844 | if (always_true_target != nullptr) { |
| 845 | __ jmp(always_true_target); |
Nicolas Geoffray | 18efde5 | 2014-09-22 15:51:11 +0100 | [diff] [blame] | 846 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 847 | return; |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 848 | } else { |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 849 | DCHECK_EQ(cond_value, 0); |
| 850 | } |
| 851 | } else { |
| 852 | bool materialized = |
| 853 | !cond->IsCondition() || cond->AsCondition()->NeedsMaterialization(); |
| 854 | // Moves do not affect the eflags register, so if the condition is |
| 855 | // evaluated just before the if, we don't need to evaluate it |
| 856 | // again. |
| 857 | bool eflags_set = cond->IsCondition() |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 858 | && cond->AsCondition()->IsBeforeWhenDisregardMoves(instruction); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 859 | if (materialized) { |
| 860 | if (!eflags_set) { |
| 861 | // Materialized condition, compare against 0. |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 862 | Location lhs = instruction->GetLocations()->InAt(0); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 863 | if (lhs.IsRegister()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 864 | __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>()); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 865 | } else { |
| 866 | __ cmpl(Address(ESP, lhs.GetStackIndex()), Immediate(0)); |
| 867 | } |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 868 | __ j(kNotEqual, true_target); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 869 | } else { |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 870 | __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 871 | } |
| 872 | } else { |
| 873 | Location lhs = cond->GetLocations()->InAt(0); |
| 874 | Location rhs = cond->GetLocations()->InAt(1); |
| 875 | // LHS is guaranteed to be in a register (see |
| 876 | // LocationsBuilderX86::VisitCondition). |
| 877 | if (rhs.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 878 | __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>()); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 879 | } else if (rhs.IsConstant()) { |
Calin Juravle | b330664 | 2015-04-20 18:30:42 +0100 | [diff] [blame] | 880 | int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant()); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 881 | if (constant == 0) { |
| 882 | __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>()); |
| 883 | } else { |
| 884 | __ cmpl(lhs.AsRegister<Register>(), Immediate(constant)); |
| 885 | } |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 886 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 887 | __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex())); |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 888 | } |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 889 | __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 890 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 891 | } |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 892 | if (false_target != nullptr) { |
| 893 | __ jmp(false_target); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 894 | } |
| 895 | } |
| 896 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 897 | void LocationsBuilderX86::VisitIf(HIf* if_instr) { |
| 898 | LocationSummary* locations = |
| 899 | new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall); |
| 900 | HInstruction* cond = if_instr->InputAt(0); |
| 901 | if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) { |
| 902 | locations->SetInAt(0, Location::Any()); |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | void InstructionCodeGeneratorX86::VisitIf(HIf* if_instr) { |
| 907 | Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor()); |
| 908 | Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor()); |
| 909 | Label* always_true_target = true_target; |
| 910 | if (codegen_->GoesToNextBlock(if_instr->GetBlock(), |
| 911 | if_instr->IfTrueSuccessor())) { |
| 912 | always_true_target = nullptr; |
| 913 | } |
| 914 | if (codegen_->GoesToNextBlock(if_instr->GetBlock(), |
| 915 | if_instr->IfFalseSuccessor())) { |
| 916 | false_target = nullptr; |
| 917 | } |
| 918 | GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target); |
| 919 | } |
| 920 | |
| 921 | void LocationsBuilderX86::VisitDeoptimize(HDeoptimize* deoptimize) { |
| 922 | LocationSummary* locations = new (GetGraph()->GetArena()) |
| 923 | LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath); |
| 924 | HInstruction* cond = deoptimize->InputAt(0); |
| 925 | DCHECK(cond->IsCondition()); |
| 926 | if (cond->AsCondition()->NeedsMaterialization()) { |
| 927 | locations->SetInAt(0, Location::Any()); |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | void InstructionCodeGeneratorX86::VisitDeoptimize(HDeoptimize* deoptimize) { |
| 932 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) |
| 933 | DeoptimizationSlowPathX86(deoptimize); |
| 934 | codegen_->AddSlowPath(slow_path); |
| 935 | Label* slow_path_entry = slow_path->GetEntryLabel(); |
| 936 | GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry); |
| 937 | } |
| 938 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 939 | void LocationsBuilderX86::VisitLocal(HLocal* local) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 940 | local->SetLocations(nullptr); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 943 | void InstructionCodeGeneratorX86::VisitLocal(HLocal* local) { |
| 944 | DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock()); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 947 | void LocationsBuilderX86::VisitLoadLocal(HLoadLocal* local) { |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 948 | local->SetLocations(nullptr); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 949 | } |
| 950 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 951 | void InstructionCodeGeneratorX86::VisitLoadLocal(HLoadLocal* load) { |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 952 | // Nothing to do, this is driven by the code generator. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 953 | UNUSED(load); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 954 | } |
| 955 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 956 | void LocationsBuilderX86::VisitStoreLocal(HStoreLocal* store) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 957 | LocationSummary* locations = |
| 958 | new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 959 | switch (store->InputAt(1)->GetType()) { |
| 960 | case Primitive::kPrimBoolean: |
| 961 | case Primitive::kPrimByte: |
| 962 | case Primitive::kPrimChar: |
| 963 | case Primitive::kPrimShort: |
| 964 | case Primitive::kPrimInt: |
| 965 | case Primitive::kPrimNot: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 966 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 967 | locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal()))); |
| 968 | break; |
| 969 | |
| 970 | case Primitive::kPrimLong: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 971 | case Primitive::kPrimDouble: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 972 | locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal()))); |
| 973 | break; |
| 974 | |
| 975 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 976 | LOG(FATAL) << "Unknown local type " << store->InputAt(1)->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 977 | } |
| 978 | store->SetLocations(locations); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 979 | } |
| 980 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 981 | void InstructionCodeGeneratorX86::VisitStoreLocal(HStoreLocal* store) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 982 | UNUSED(store); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 985 | void LocationsBuilderX86::VisitCondition(HCondition* comp) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 986 | LocationSummary* locations = |
| 987 | new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 988 | locations->SetInAt(0, Location::RequiresRegister()); |
| 989 | locations->SetInAt(1, Location::Any()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 990 | if (comp->NeedsMaterialization()) { |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 991 | // We need a byte register. |
| 992 | locations->SetOut(Location::RegisterLocation(ECX)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 993 | } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 994 | } |
| 995 | |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 996 | void InstructionCodeGeneratorX86::VisitCondition(HCondition* comp) { |
| 997 | if (comp->NeedsMaterialization()) { |
| 998 | LocationSummary* locations = comp->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 999 | Register reg = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 18efde5 | 2014-09-22 15:51:11 +0100 | [diff] [blame] | 1000 | // Clear register: setcc only sets the low byte. |
| 1001 | __ xorl(reg, reg); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1002 | Location lhs = locations->InAt(0); |
| 1003 | Location rhs = locations->InAt(1); |
| 1004 | if (rhs.IsRegister()) { |
| 1005 | __ cmpl(lhs.AsRegister<Register>(), rhs.AsRegister<Register>()); |
| 1006 | } else if (rhs.IsConstant()) { |
Mingyao Yang | 8928cab | 2015-03-03 16:15:23 -0800 | [diff] [blame] | 1007 | int32_t constant = CodeGenerator::GetInt32ValueOf(rhs.GetConstant()); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1008 | if (constant == 0) { |
| 1009 | __ testl(lhs.AsRegister<Register>(), lhs.AsRegister<Register>()); |
| 1010 | } else { |
| 1011 | __ cmpl(lhs.AsRegister<Register>(), Immediate(constant)); |
| 1012 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1013 | } else { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1014 | __ cmpl(lhs.AsRegister<Register>(), Address(ESP, rhs.GetStackIndex())); |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1015 | } |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1016 | __ setb(X86Condition(comp->GetCondition()), reg); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1017 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
| 1020 | void LocationsBuilderX86::VisitEqual(HEqual* comp) { |
| 1021 | VisitCondition(comp); |
| 1022 | } |
| 1023 | |
| 1024 | void InstructionCodeGeneratorX86::VisitEqual(HEqual* comp) { |
| 1025 | VisitCondition(comp); |
| 1026 | } |
| 1027 | |
| 1028 | void LocationsBuilderX86::VisitNotEqual(HNotEqual* comp) { |
| 1029 | VisitCondition(comp); |
| 1030 | } |
| 1031 | |
| 1032 | void InstructionCodeGeneratorX86::VisitNotEqual(HNotEqual* comp) { |
| 1033 | VisitCondition(comp); |
| 1034 | } |
| 1035 | |
| 1036 | void LocationsBuilderX86::VisitLessThan(HLessThan* comp) { |
| 1037 | VisitCondition(comp); |
| 1038 | } |
| 1039 | |
| 1040 | void InstructionCodeGeneratorX86::VisitLessThan(HLessThan* comp) { |
| 1041 | VisitCondition(comp); |
| 1042 | } |
| 1043 | |
| 1044 | void LocationsBuilderX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
| 1045 | VisitCondition(comp); |
| 1046 | } |
| 1047 | |
| 1048 | void InstructionCodeGeneratorX86::VisitLessThanOrEqual(HLessThanOrEqual* comp) { |
| 1049 | VisitCondition(comp); |
| 1050 | } |
| 1051 | |
| 1052 | void LocationsBuilderX86::VisitGreaterThan(HGreaterThan* comp) { |
| 1053 | VisitCondition(comp); |
| 1054 | } |
| 1055 | |
| 1056 | void InstructionCodeGeneratorX86::VisitGreaterThan(HGreaterThan* comp) { |
| 1057 | VisitCondition(comp); |
| 1058 | } |
| 1059 | |
| 1060 | void LocationsBuilderX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
| 1061 | VisitCondition(comp); |
| 1062 | } |
| 1063 | |
| 1064 | void InstructionCodeGeneratorX86::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) { |
| 1065 | VisitCondition(comp); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
| 1068 | void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1069 | LocationSummary* locations = |
| 1070 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1071 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1074 | void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant) { |
Roland Levillain | 3a3fd0f | 2014-10-10 13:56:31 +0100 | [diff] [blame] | 1075 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1076 | UNUSED(constant); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 1079 | void LocationsBuilderX86::VisitNullConstant(HNullConstant* constant) { |
| 1080 | LocationSummary* locations = |
| 1081 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
| 1082 | locations->SetOut(Location::ConstantLocation(constant)); |
| 1083 | } |
| 1084 | |
| 1085 | void InstructionCodeGeneratorX86::VisitNullConstant(HNullConstant* constant) { |
| 1086 | // Will be generated at use site. |
| 1087 | UNUSED(constant); |
| 1088 | } |
| 1089 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1090 | void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1091 | LocationSummary* locations = |
| 1092 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 1093 | locations->SetOut(Location::ConstantLocation(constant)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant) { |
| 1097 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1098 | UNUSED(constant); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1099 | } |
| 1100 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1101 | void LocationsBuilderX86::VisitFloatConstant(HFloatConstant* constant) { |
| 1102 | LocationSummary* locations = |
| 1103 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
| 1104 | locations->SetOut(Location::ConstantLocation(constant)); |
| 1105 | } |
| 1106 | |
| 1107 | void InstructionCodeGeneratorX86::VisitFloatConstant(HFloatConstant* constant) { |
| 1108 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1109 | UNUSED(constant); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | void LocationsBuilderX86::VisitDoubleConstant(HDoubleConstant* constant) { |
| 1113 | LocationSummary* locations = |
| 1114 | new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall); |
| 1115 | locations->SetOut(Location::ConstantLocation(constant)); |
| 1116 | } |
| 1117 | |
| 1118 | void InstructionCodeGeneratorX86::VisitDoubleConstant(HDoubleConstant* constant) { |
| 1119 | // Will be generated at use site. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1120 | UNUSED(constant); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1121 | } |
| 1122 | |
Calin Juravle | 27df758 | 2015-04-17 19:12:31 +0100 | [diff] [blame] | 1123 | void LocationsBuilderX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) { |
| 1124 | memory_barrier->SetLocations(nullptr); |
| 1125 | } |
| 1126 | |
| 1127 | void InstructionCodeGeneratorX86::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) { |
| 1128 | GenerateMemoryBarrier(memory_barrier->GetBarrierKind()); |
| 1129 | } |
| 1130 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1131 | void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1132 | ret->SetLocations(nullptr); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1135 | void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1136 | UNUSED(ret); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1137 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1140 | void LocationsBuilderX86::VisitReturn(HReturn* ret) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1141 | LocationSummary* locations = |
| 1142 | new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1143 | switch (ret->InputAt(0)->GetType()) { |
| 1144 | case Primitive::kPrimBoolean: |
| 1145 | case Primitive::kPrimByte: |
| 1146 | case Primitive::kPrimChar: |
| 1147 | case Primitive::kPrimShort: |
| 1148 | case Primitive::kPrimInt: |
| 1149 | case Primitive::kPrimNot: |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1150 | locations->SetInAt(0, Location::RegisterLocation(EAX)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1151 | break; |
| 1152 | |
| 1153 | case Primitive::kPrimLong: |
| 1154 | locations->SetInAt( |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1155 | 0, Location::RegisterPairLocation(EAX, EDX)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1156 | break; |
| 1157 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1158 | case Primitive::kPrimFloat: |
| 1159 | case Primitive::kPrimDouble: |
| 1160 | locations->SetInAt( |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1161 | 0, Location::FpuRegisterLocation(XMM0)); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1162 | break; |
| 1163 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1164 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1165 | LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1166 | } |
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 InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1170 | if (kIsDebugBuild) { |
| 1171 | switch (ret->InputAt(0)->GetType()) { |
| 1172 | case Primitive::kPrimBoolean: |
| 1173 | case Primitive::kPrimByte: |
| 1174 | case Primitive::kPrimChar: |
| 1175 | case Primitive::kPrimShort: |
| 1176 | case Primitive::kPrimInt: |
| 1177 | case Primitive::kPrimNot: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1178 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<Register>(), EAX); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1179 | break; |
| 1180 | |
| 1181 | case Primitive::kPrimLong: |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1182 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairLow<Register>(), EAX); |
| 1183 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegisterPairHigh<Register>(), EDX); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1184 | break; |
| 1185 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1186 | case Primitive::kPrimFloat: |
| 1187 | case Primitive::kPrimDouble: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1188 | DCHECK_EQ(ret->GetLocations()->InAt(0).AsFpuRegister<XmmRegister>(), XMM0); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1189 | break; |
| 1190 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1191 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1192 | LOG(FATAL) << "Unknown return type " << ret->InputAt(0)->GetType(); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1193 | } |
| 1194 | } |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1195 | codegen_->GenerateFrameExit(); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1198 | void LocationsBuilderX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame^] | 1199 | // Explicit clinit checks triggered by static invokes must have been |
| 1200 | // pruned by art::PrepareForRegisterAllocation. |
| 1201 | DCHECK(!invoke->IsStaticWithExplicitClinitCheck()); |
| 1202 | |
Mark Mendell | fb8d279 | 2015-03-31 22:16:59 -0400 | [diff] [blame] | 1203 | IntrinsicLocationsBuilderX86 intrinsic(codegen_); |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 1204 | if (intrinsic.TryDispatch(invoke)) { |
| 1205 | return; |
| 1206 | } |
| 1207 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1208 | HandleInvoke(invoke); |
| 1209 | } |
| 1210 | |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 1211 | static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorX86* codegen) { |
| 1212 | if (invoke->GetLocations()->Intrinsified()) { |
| 1213 | IntrinsicCodeGeneratorX86 intrinsic(codegen); |
| 1214 | intrinsic.Dispatch(invoke); |
| 1215 | return true; |
| 1216 | } |
| 1217 | return false; |
| 1218 | } |
| 1219 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1220 | void InstructionCodeGeneratorX86::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) { |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame^] | 1221 | // Explicit clinit checks triggered by static invokes must have been |
| 1222 | // pruned by art::PrepareForRegisterAllocation. |
| 1223 | DCHECK(!invoke->IsStaticWithExplicitClinitCheck()); |
| 1224 | |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 1225 | if (TryGenerateIntrinsicCode(invoke, codegen_)) { |
| 1226 | return; |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 1227 | } |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1228 | |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 1229 | codegen_->GenerateStaticOrDirectCall( |
| 1230 | invoke, invoke->GetLocations()->GetTemp(0).AsRegister<Register>()); |
Mingyao Yang | 8693fe1 | 2015-04-17 16:51:08 -0700 | [diff] [blame] | 1231 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | void LocationsBuilderX86::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
| 1235 | HandleInvoke(invoke); |
| 1236 | } |
| 1237 | |
| 1238 | void LocationsBuilderX86::HandleInvoke(HInvoke* invoke) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1239 | LocationSummary* locations = |
| 1240 | new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1241 | locations->AddTemp(Location::RegisterLocation(EAX)); |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 1242 | |
| 1243 | InvokeDexCallingConventionVisitor calling_convention_visitor; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1244 | for (size_t i = 0; i < invoke->InputCount(); i++) { |
Nicolas Geoffray | db928fc | 2014-04-16 17:38:32 +0100 | [diff] [blame] | 1245 | HInstruction* input = invoke->InputAt(i); |
| 1246 | locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType())); |
| 1247 | } |
| 1248 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1249 | switch (invoke->GetType()) { |
| 1250 | case Primitive::kPrimBoolean: |
| 1251 | case Primitive::kPrimByte: |
| 1252 | case Primitive::kPrimChar: |
| 1253 | case Primitive::kPrimShort: |
| 1254 | case Primitive::kPrimInt: |
| 1255 | case Primitive::kPrimNot: |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1256 | locations->SetOut(Location::RegisterLocation(EAX)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1257 | break; |
| 1258 | |
| 1259 | case Primitive::kPrimLong: |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1260 | locations->SetOut(Location::RegisterPairLocation(EAX, EDX)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1261 | break; |
| 1262 | |
| 1263 | case Primitive::kPrimVoid: |
| 1264 | break; |
| 1265 | |
| 1266 | case Primitive::kPrimDouble: |
| 1267 | case Primitive::kPrimFloat: |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1268 | locations->SetOut(Location::FpuRegisterLocation(XMM0)); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1269 | break; |
| 1270 | } |
| 1271 | |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1272 | invoke->SetLocations(locations); |
| 1273 | } |
| 1274 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1275 | void InstructionCodeGeneratorX86::VisitInvokeVirtual(HInvokeVirtual* invoke) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1276 | Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1277 | uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() + |
| 1278 | invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry); |
| 1279 | LocationSummary* locations = invoke->GetLocations(); |
| 1280 | Location receiver = locations->InAt(0); |
| 1281 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 1282 | // temp = object->GetClass(); |
| 1283 | if (receiver.IsStackSlot()) { |
| 1284 | __ movl(temp, Address(ESP, receiver.GetStackIndex())); |
| 1285 | __ movl(temp, Address(temp, class_offset)); |
| 1286 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1287 | __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset)); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1288 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 1289 | codegen_->MaybeRecordImplicitNullCheck(invoke); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 1290 | // temp = temp->GetMethodAt(method_offset); |
| 1291 | __ movl(temp, Address(temp, method_offset)); |
| 1292 | // call temp->GetEntryPoint(); |
Nicolas Geoffray | 86a8d7a | 2014-11-19 08:47:18 +0000 | [diff] [blame] | 1293 | __ call(Address( |
| 1294 | temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value())); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1295 | |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 1296 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1297 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1298 | } |
| 1299 | |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1300 | void LocationsBuilderX86::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 1301 | HandleInvoke(invoke); |
| 1302 | // Add the hidden argument. |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 1303 | invoke->GetLocations()->AddTemp(Location::FpuRegisterLocation(XMM7)); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
| 1306 | void InstructionCodeGeneratorX86::VisitInvokeInterface(HInvokeInterface* invoke) { |
| 1307 | // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1308 | Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1309 | uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() + |
| 1310 | (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry); |
| 1311 | LocationSummary* locations = invoke->GetLocations(); |
| 1312 | Location receiver = locations->InAt(0); |
| 1313 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 1314 | |
| 1315 | // Set the hidden argument. |
| 1316 | __ movl(temp, Immediate(invoke->GetDexMethodIndex())); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1317 | __ movd(invoke->GetLocations()->GetTemp(1).AsFpuRegister<XmmRegister>(), temp); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1318 | |
| 1319 | // temp = object->GetClass(); |
| 1320 | if (receiver.IsStackSlot()) { |
| 1321 | __ movl(temp, Address(ESP, receiver.GetStackIndex())); |
| 1322 | __ movl(temp, Address(temp, class_offset)); |
| 1323 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1324 | __ movl(temp, Address(receiver.AsRegister<Register>(), class_offset)); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1325 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 1326 | codegen_->MaybeRecordImplicitNullCheck(invoke); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1327 | // temp = temp->GetImtEntryAt(method_offset); |
| 1328 | __ movl(temp, Address(temp, method_offset)); |
| 1329 | // call temp->GetEntryPoint(); |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 1330 | __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( |
Nicolas Geoffray | 86a8d7a | 2014-11-19 08:47:18 +0000 | [diff] [blame] | 1331 | kX86WordSize).Int32Value())); |
Nicolas Geoffray | 52839d1 | 2014-11-07 17:47:25 +0000 | [diff] [blame] | 1332 | |
| 1333 | DCHECK(!codegen_->IsLeafMethod()); |
| 1334 | codegen_->RecordPcInfo(invoke, invoke->GetDexPc()); |
| 1335 | } |
| 1336 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1337 | void LocationsBuilderX86::VisitNeg(HNeg* neg) { |
| 1338 | LocationSummary* locations = |
| 1339 | new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall); |
| 1340 | switch (neg->GetResultType()) { |
| 1341 | case Primitive::kPrimInt: |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1342 | case Primitive::kPrimLong: |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1343 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1344 | locations->SetOut(Location::SameAsFirstInput()); |
| 1345 | break; |
| 1346 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1347 | case Primitive::kPrimFloat: |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1348 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1349 | locations->SetOut(Location::SameAsFirstInput()); |
| 1350 | locations->AddTemp(Location::RequiresRegister()); |
| 1351 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1352 | break; |
| 1353 | |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1354 | case Primitive::kPrimDouble: |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1355 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1356 | locations->SetOut(Location::SameAsFirstInput()); |
| 1357 | locations->AddTemp(Location::RequiresFpuRegister()); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1358 | break; |
| 1359 | |
| 1360 | default: |
| 1361 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 1362 | } |
| 1363 | } |
| 1364 | |
| 1365 | void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) { |
| 1366 | LocationSummary* locations = neg->GetLocations(); |
| 1367 | Location out = locations->Out(); |
| 1368 | Location in = locations->InAt(0); |
| 1369 | switch (neg->GetResultType()) { |
| 1370 | case Primitive::kPrimInt: |
| 1371 | DCHECK(in.IsRegister()); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1372 | DCHECK(in.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1373 | __ negl(out.AsRegister<Register>()); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1374 | break; |
| 1375 | |
| 1376 | case Primitive::kPrimLong: |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1377 | DCHECK(in.IsRegisterPair()); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1378 | DCHECK(in.Equals(out)); |
Roland Levillain | 2e07b4f | 2014-10-23 18:12:09 +0100 | [diff] [blame] | 1379 | __ negl(out.AsRegisterPairLow<Register>()); |
| 1380 | // Negation is similar to subtraction from zero. The least |
| 1381 | // significant byte triggers a borrow when it is different from |
| 1382 | // zero; to take it into account, add 1 to the most significant |
| 1383 | // byte if the carry flag (CF) is set to 1 after the first NEGL |
| 1384 | // operation. |
| 1385 | __ adcl(out.AsRegisterPairHigh<Register>(), Immediate(0)); |
| 1386 | __ negl(out.AsRegisterPairHigh<Register>()); |
| 1387 | break; |
| 1388 | |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1389 | case Primitive::kPrimFloat: { |
| 1390 | DCHECK(in.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1391 | Register constant = locations->GetTemp(0).AsRegister<Register>(); |
| 1392 | XmmRegister mask = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1393 | // Implement float negation with an exclusive or with value |
| 1394 | // 0x80000000 (mask for bit 31, representing the sign of a |
| 1395 | // single-precision floating-point number). |
| 1396 | __ movl(constant, Immediate(INT32_C(0x80000000))); |
| 1397 | __ movd(mask, constant); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1398 | __ xorps(out.AsFpuRegister<XmmRegister>(), mask); |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1399 | break; |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1400 | } |
Roland Levillain | 3dbcb38 | 2014-10-28 17:30:07 +0000 | [diff] [blame] | 1401 | |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1402 | case Primitive::kPrimDouble: { |
| 1403 | DCHECK(in.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1404 | XmmRegister mask = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1405 | // Implement double negation with an exclusive or with value |
| 1406 | // 0x8000000000000000 (mask for bit 63, representing the sign of |
| 1407 | // a double-precision floating-point number). |
| 1408 | __ LoadLongConstant(mask, INT64_C(0x8000000000000000)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1409 | __ xorpd(out.AsFpuRegister<XmmRegister>(), mask); |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1410 | break; |
Roland Levillain | 5368c21 | 2014-11-27 15:03:41 +0000 | [diff] [blame] | 1411 | } |
Roland Levillain | 88cb175 | 2014-10-20 16:36:47 +0100 | [diff] [blame] | 1412 | |
| 1413 | default: |
| 1414 | LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); |
| 1415 | } |
| 1416 | } |
| 1417 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1418 | void LocationsBuilderX86::VisitTypeConversion(HTypeConversion* conversion) { |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1419 | Primitive::Type result_type = conversion->GetResultType(); |
| 1420 | Primitive::Type input_type = conversion->GetInputType(); |
Nicolas Geoffray | 01fcc9e | 2014-12-01 14:16:20 +0000 | [diff] [blame] | 1421 | DCHECK_NE(result_type, input_type); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1422 | |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1423 | // The float-to-long and double-to-long type conversions rely on a |
| 1424 | // call to the runtime. |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1425 | LocationSummary::CallKind call_kind = |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1426 | ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble) |
| 1427 | && result_type == Primitive::kPrimLong) |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1428 | ? LocationSummary::kCall |
| 1429 | : LocationSummary::kNoCall; |
| 1430 | LocationSummary* locations = |
| 1431 | new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind); |
| 1432 | |
David Brazdil | b2bd1c5 | 2015-03-25 11:17:37 +0000 | [diff] [blame] | 1433 | // The Java language does not allow treating boolean as an integral type but |
| 1434 | // our bit representation makes it safe. |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1435 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1436 | switch (result_type) { |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1437 | case Primitive::kPrimByte: |
| 1438 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1439 | case Primitive::kPrimBoolean: |
| 1440 | // Boolean input is a result of code transformations. |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1441 | case Primitive::kPrimShort: |
| 1442 | case Primitive::kPrimInt: |
| 1443 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1444 | // Processing a Dex `int-to-byte' instruction. |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 1445 | locations->SetInAt(0, Location::ByteRegisterOrConstant(ECX, conversion->InputAt(0))); |
| 1446 | // Make the output overlap to please the register allocator. This greatly simplifies |
| 1447 | // the validation of the linear scan implementation |
| 1448 | locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap); |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1449 | break; |
| 1450 | |
| 1451 | default: |
| 1452 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1453 | << " to " << result_type; |
| 1454 | } |
| 1455 | break; |
| 1456 | |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1457 | case Primitive::kPrimShort: |
| 1458 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1459 | case Primitive::kPrimBoolean: |
| 1460 | // Boolean input is a result of code transformations. |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1461 | case Primitive::kPrimByte: |
| 1462 | case Primitive::kPrimInt: |
| 1463 | case Primitive::kPrimChar: |
| 1464 | // Processing a Dex `int-to-short' instruction. |
| 1465 | locations->SetInAt(0, Location::Any()); |
| 1466 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1467 | break; |
| 1468 | |
| 1469 | default: |
| 1470 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1471 | << " to " << result_type; |
| 1472 | } |
| 1473 | break; |
| 1474 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1475 | case Primitive::kPrimInt: |
| 1476 | switch (input_type) { |
| 1477 | case Primitive::kPrimLong: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1478 | // Processing a Dex `long-to-int' instruction. |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1479 | locations->SetInAt(0, Location::Any()); |
| 1480 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1481 | break; |
| 1482 | |
| 1483 | case Primitive::kPrimFloat: |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 1484 | // Processing a Dex `float-to-int' instruction. |
| 1485 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1486 | locations->SetOut(Location::RequiresRegister()); |
| 1487 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1488 | break; |
| 1489 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1490 | case Primitive::kPrimDouble: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1491 | // Processing a Dex `double-to-int' instruction. |
| 1492 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1493 | locations->SetOut(Location::RequiresRegister()); |
| 1494 | locations->AddTemp(Location::RequiresFpuRegister()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1495 | break; |
| 1496 | |
| 1497 | default: |
| 1498 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1499 | << " to " << result_type; |
| 1500 | } |
| 1501 | break; |
| 1502 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1503 | case Primitive::kPrimLong: |
| 1504 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1505 | case Primitive::kPrimBoolean: |
| 1506 | // Boolean input is a result of code transformations. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1507 | case Primitive::kPrimByte: |
| 1508 | case Primitive::kPrimShort: |
| 1509 | case Primitive::kPrimInt: |
Roland Levillain | 666c732 | 2014-11-10 13:39:43 +0000 | [diff] [blame] | 1510 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1511 | // Processing a Dex `int-to-long' instruction. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1512 | locations->SetInAt(0, Location::RegisterLocation(EAX)); |
| 1513 | locations->SetOut(Location::RegisterPairLocation(EAX, EDX)); |
| 1514 | break; |
| 1515 | |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 1516 | case Primitive::kPrimFloat: |
Vladimir Marko | 949c91f | 2015-01-27 10:48:44 +0000 | [diff] [blame] | 1517 | case Primitive::kPrimDouble: { |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 1518 | // Processing a Dex `float-to-long' or 'double-to-long' instruction. |
Vladimir Marko | 949c91f | 2015-01-27 10:48:44 +0000 | [diff] [blame] | 1519 | InvokeRuntimeCallingConvention calling_convention; |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 1520 | XmmRegister parameter = calling_convention.GetFpuRegisterAt(0); |
| 1521 | locations->SetInAt(0, Location::FpuRegisterLocation(parameter)); |
| 1522 | |
Vladimir Marko | 949c91f | 2015-01-27 10:48:44 +0000 | [diff] [blame] | 1523 | // The runtime helper puts the result in EAX, EDX. |
| 1524 | locations->SetOut(Location::RegisterPairLocation(EAX, EDX)); |
Vladimir Marko | 949c91f | 2015-01-27 10:48:44 +0000 | [diff] [blame] | 1525 | } |
Mark P Mendell | 966c3ae | 2015-01-27 15:45:27 +0000 | [diff] [blame] | 1526 | break; |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1527 | |
| 1528 | default: |
| 1529 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1530 | << " to " << result_type; |
| 1531 | } |
| 1532 | break; |
| 1533 | |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1534 | case Primitive::kPrimChar: |
| 1535 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1536 | case Primitive::kPrimBoolean: |
| 1537 | // Boolean input is a result of code transformations. |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1538 | case Primitive::kPrimByte: |
| 1539 | case Primitive::kPrimShort: |
| 1540 | case Primitive::kPrimInt: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1541 | // Processing a Dex `int-to-char' instruction. |
| 1542 | locations->SetInAt(0, Location::Any()); |
| 1543 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1544 | break; |
| 1545 | |
| 1546 | default: |
| 1547 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1548 | << " to " << result_type; |
| 1549 | } |
| 1550 | break; |
| 1551 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1552 | case Primitive::kPrimFloat: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1553 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1554 | case Primitive::kPrimBoolean: |
| 1555 | // Boolean input is a result of code transformations. |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1556 | case Primitive::kPrimByte: |
| 1557 | case Primitive::kPrimShort: |
| 1558 | case Primitive::kPrimInt: |
| 1559 | case Primitive::kPrimChar: |
| 1560 | // Processing a Dex `int-to-float' instruction. |
| 1561 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1562 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1563 | break; |
| 1564 | |
| 1565 | case Primitive::kPrimLong: |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1566 | // Processing a Dex `long-to-float' instruction. |
| 1567 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1568 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1569 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1570 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1571 | break; |
| 1572 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1573 | case Primitive::kPrimDouble: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1574 | // Processing a Dex `double-to-float' instruction. |
| 1575 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1576 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +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 | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1585 | case Primitive::kPrimDouble: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1586 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1587 | case Primitive::kPrimBoolean: |
| 1588 | // Boolean input is a result of code transformations. |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1589 | case Primitive::kPrimByte: |
| 1590 | case Primitive::kPrimShort: |
| 1591 | case Primitive::kPrimInt: |
| 1592 | case Primitive::kPrimChar: |
| 1593 | // Processing a Dex `int-to-double' instruction. |
| 1594 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1595 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1596 | break; |
| 1597 | |
| 1598 | case Primitive::kPrimLong: |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1599 | // Processing a Dex `long-to-double' instruction. |
| 1600 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1601 | locations->SetOut(Location::RequiresFpuRegister()); |
| 1602 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1603 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 1604 | break; |
| 1605 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1606 | case Primitive::kPrimFloat: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1607 | // Processing a Dex `float-to-double' instruction. |
| 1608 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 1609 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1610 | break; |
| 1611 | |
| 1612 | default: |
| 1613 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1614 | << " to " << result_type; |
| 1615 | } |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1616 | break; |
| 1617 | |
| 1618 | default: |
| 1619 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1620 | << " to " << result_type; |
| 1621 | } |
| 1622 | } |
| 1623 | |
| 1624 | void InstructionCodeGeneratorX86::VisitTypeConversion(HTypeConversion* conversion) { |
| 1625 | LocationSummary* locations = conversion->GetLocations(); |
| 1626 | Location out = locations->Out(); |
| 1627 | Location in = locations->InAt(0); |
| 1628 | Primitive::Type result_type = conversion->GetResultType(); |
| 1629 | Primitive::Type input_type = conversion->GetInputType(); |
Nicolas Geoffray | 01fcc9e | 2014-12-01 14:16:20 +0000 | [diff] [blame] | 1630 | DCHECK_NE(result_type, input_type); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1631 | switch (result_type) { |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1632 | case Primitive::kPrimByte: |
| 1633 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1634 | case Primitive::kPrimBoolean: |
| 1635 | // Boolean input is a result of code transformations. |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1636 | case Primitive::kPrimShort: |
| 1637 | case Primitive::kPrimInt: |
| 1638 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1639 | // Processing a Dex `int-to-byte' instruction. |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1640 | if (in.IsRegister()) { |
| 1641 | __ movsxb(out.AsRegister<Register>(), in.AsRegister<ByteRegister>()); |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 1642 | } else { |
| 1643 | DCHECK(in.GetConstant()->IsIntConstant()); |
| 1644 | int32_t value = in.GetConstant()->AsIntConstant()->GetValue(); |
| 1645 | __ movl(out.AsRegister<Register>(), Immediate(static_cast<int8_t>(value))); |
| 1646 | } |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 1647 | break; |
| 1648 | |
| 1649 | default: |
| 1650 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1651 | << " to " << result_type; |
| 1652 | } |
| 1653 | break; |
| 1654 | |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1655 | case Primitive::kPrimShort: |
| 1656 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1657 | case Primitive::kPrimBoolean: |
| 1658 | // Boolean input is a result of code transformations. |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1659 | case Primitive::kPrimByte: |
| 1660 | case Primitive::kPrimInt: |
| 1661 | case Primitive::kPrimChar: |
| 1662 | // Processing a Dex `int-to-short' instruction. |
| 1663 | if (in.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1664 | __ movsxw(out.AsRegister<Register>(), in.AsRegister<Register>()); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1665 | } else if (in.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1666 | __ movsxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex())); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1667 | } else { |
| 1668 | DCHECK(in.GetConstant()->IsIntConstant()); |
| 1669 | int32_t value = in.GetConstant()->AsIntConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1670 | __ movl(out.AsRegister<Register>(), Immediate(static_cast<int16_t>(value))); |
Roland Levillain | 01a8d71 | 2014-11-14 16:27:39 +0000 | [diff] [blame] | 1671 | } |
| 1672 | break; |
| 1673 | |
| 1674 | default: |
| 1675 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1676 | << " to " << result_type; |
| 1677 | } |
| 1678 | break; |
| 1679 | |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1680 | case Primitive::kPrimInt: |
| 1681 | switch (input_type) { |
| 1682 | case Primitive::kPrimLong: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1683 | // Processing a Dex `long-to-int' instruction. |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1684 | if (in.IsRegisterPair()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1685 | __ movl(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>()); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1686 | } else if (in.IsDoubleStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1687 | __ movl(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex())); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1688 | } else { |
| 1689 | DCHECK(in.IsConstant()); |
| 1690 | DCHECK(in.GetConstant()->IsLongConstant()); |
| 1691 | int64_t value = in.GetConstant()->AsLongConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1692 | __ movl(out.AsRegister<Register>(), Immediate(static_cast<int32_t>(value))); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1693 | } |
| 1694 | break; |
| 1695 | |
Roland Levillain | 3f8f936 | 2014-12-02 17:45:01 +0000 | [diff] [blame] | 1696 | case Primitive::kPrimFloat: { |
| 1697 | // Processing a Dex `float-to-int' instruction. |
| 1698 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 1699 | Register output = out.AsRegister<Register>(); |
| 1700 | XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 1701 | Label done, nan; |
| 1702 | |
| 1703 | __ movl(output, Immediate(kPrimIntMax)); |
| 1704 | // temp = int-to-float(output) |
| 1705 | __ cvtsi2ss(temp, output); |
| 1706 | // if input >= temp goto done |
| 1707 | __ comiss(input, temp); |
| 1708 | __ j(kAboveEqual, &done); |
| 1709 | // if input == NaN goto nan |
| 1710 | __ j(kUnordered, &nan); |
| 1711 | // output = float-to-int-truncate(input) |
| 1712 | __ cvttss2si(output, input); |
| 1713 | __ jmp(&done); |
| 1714 | __ Bind(&nan); |
| 1715 | // output = 0 |
| 1716 | __ xorl(output, output); |
| 1717 | __ Bind(&done); |
| 1718 | break; |
| 1719 | } |
| 1720 | |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1721 | case Primitive::kPrimDouble: { |
| 1722 | // Processing a Dex `double-to-int' instruction. |
| 1723 | XmmRegister input = in.AsFpuRegister<XmmRegister>(); |
| 1724 | Register output = out.AsRegister<Register>(); |
| 1725 | XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 1726 | Label done, nan; |
| 1727 | |
| 1728 | __ movl(output, Immediate(kPrimIntMax)); |
| 1729 | // temp = int-to-double(output) |
| 1730 | __ cvtsi2sd(temp, output); |
| 1731 | // if input >= temp goto done |
| 1732 | __ comisd(input, temp); |
| 1733 | __ j(kAboveEqual, &done); |
| 1734 | // if input == NaN goto nan |
| 1735 | __ j(kUnordered, &nan); |
| 1736 | // output = double-to-int-truncate(input) |
| 1737 | __ cvttsd2si(output, input); |
| 1738 | __ jmp(&done); |
| 1739 | __ Bind(&nan); |
| 1740 | // output = 0 |
| 1741 | __ xorl(output, output); |
| 1742 | __ Bind(&done); |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1743 | break; |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1744 | } |
Roland Levillain | 946e143 | 2014-11-11 17:35:19 +0000 | [diff] [blame] | 1745 | |
| 1746 | default: |
| 1747 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1748 | << " to " << result_type; |
| 1749 | } |
| 1750 | break; |
| 1751 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1752 | case Primitive::kPrimLong: |
| 1753 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1754 | case Primitive::kPrimBoolean: |
| 1755 | // Boolean input is a result of code transformations. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1756 | case Primitive::kPrimByte: |
| 1757 | case Primitive::kPrimShort: |
| 1758 | case Primitive::kPrimInt: |
Roland Levillain | 666c732 | 2014-11-10 13:39:43 +0000 | [diff] [blame] | 1759 | case Primitive::kPrimChar: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1760 | // Processing a Dex `int-to-long' instruction. |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1761 | DCHECK_EQ(out.AsRegisterPairLow<Register>(), EAX); |
| 1762 | DCHECK_EQ(out.AsRegisterPairHigh<Register>(), EDX); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1763 | DCHECK_EQ(in.AsRegister<Register>(), EAX); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1764 | __ cdq(); |
| 1765 | break; |
| 1766 | |
| 1767 | case Primitive::kPrimFloat: |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1768 | // Processing a Dex `float-to-long' instruction. |
| 1769 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pF2l))); |
Roland Levillain | 624279f | 2014-12-04 11:54:28 +0000 | [diff] [blame] | 1770 | codegen_->RecordPcInfo(conversion, conversion->GetDexPc()); |
| 1771 | break; |
| 1772 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1773 | case Primitive::kPrimDouble: |
Roland Levillain | 4c0b61f | 2014-12-05 12:06:01 +0000 | [diff] [blame] | 1774 | // Processing a Dex `double-to-long' instruction. |
| 1775 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pD2l))); |
| 1776 | codegen_->RecordPcInfo(conversion, conversion->GetDexPc()); |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1777 | break; |
| 1778 | |
| 1779 | default: |
| 1780 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1781 | << " to " << result_type; |
| 1782 | } |
| 1783 | break; |
| 1784 | |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1785 | case Primitive::kPrimChar: |
| 1786 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1787 | case Primitive::kPrimBoolean: |
| 1788 | // Boolean input is a result of code transformations. |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1789 | case Primitive::kPrimByte: |
| 1790 | case Primitive::kPrimShort: |
| 1791 | case Primitive::kPrimInt: |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1792 | // Processing a Dex `Process a Dex `int-to-char'' instruction. |
| 1793 | if (in.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1794 | __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>()); |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1795 | } else if (in.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1796 | __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex())); |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1797 | } else { |
| 1798 | DCHECK(in.GetConstant()->IsIntConstant()); |
| 1799 | int32_t value = in.GetConstant()->AsIntConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1800 | __ movl(out.AsRegister<Register>(), Immediate(static_cast<uint16_t>(value))); |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 1801 | } |
| 1802 | break; |
| 1803 | |
| 1804 | default: |
| 1805 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1806 | << " to " << result_type; |
| 1807 | } |
| 1808 | break; |
| 1809 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1810 | case Primitive::kPrimFloat: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1811 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1812 | case Primitive::kPrimBoolean: |
| 1813 | // Boolean input is a result of code transformations. |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1814 | case Primitive::kPrimByte: |
| 1815 | case Primitive::kPrimShort: |
| 1816 | case Primitive::kPrimInt: |
| 1817 | case Primitive::kPrimChar: |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1818 | // Processing a Dex `int-to-float' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1819 | __ cvtsi2ss(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1820 | break; |
| 1821 | |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1822 | case Primitive::kPrimLong: { |
| 1823 | // Processing a Dex `long-to-float' instruction. |
| 1824 | Register low = in.AsRegisterPairLow<Register>(); |
| 1825 | Register high = in.AsRegisterPairHigh<Register>(); |
| 1826 | XmmRegister result = out.AsFpuRegister<XmmRegister>(); |
| 1827 | XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 1828 | XmmRegister constant = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); |
| 1829 | |
| 1830 | // Operations use doubles for precision reasons (each 32-bit |
| 1831 | // half of a long fits in the 53-bit mantissa of a double, |
| 1832 | // but not in the 24-bit mantissa of a float). This is |
| 1833 | // especially important for the low bits. The result is |
| 1834 | // eventually converted to float. |
| 1835 | |
| 1836 | // low = low - 2^31 (to prevent bit 31 of `low` to be |
| 1837 | // interpreted as a sign bit) |
| 1838 | __ subl(low, Immediate(0x80000000)); |
| 1839 | // temp = int-to-double(high) |
| 1840 | __ cvtsi2sd(temp, high); |
| 1841 | // temp = temp * 2^32 |
| 1842 | __ LoadLongConstant(constant, k2Pow32EncodingForDouble); |
| 1843 | __ mulsd(temp, constant); |
| 1844 | // result = int-to-double(low) |
| 1845 | __ cvtsi2sd(result, low); |
| 1846 | // result = result + 2^31 (restore the original value of `low`) |
| 1847 | __ LoadLongConstant(constant, k2Pow31EncodingForDouble); |
| 1848 | __ addsd(result, constant); |
| 1849 | // result = result + temp |
| 1850 | __ addsd(result, temp); |
| 1851 | // result = double-to-float(result) |
| 1852 | __ cvtsd2ss(result, result); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 1853 | // Restore low. |
| 1854 | __ addl(low, Immediate(0x80000000)); |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1855 | break; |
| 1856 | } |
| 1857 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1858 | case Primitive::kPrimDouble: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1859 | // Processing a Dex `double-to-float' instruction. |
| 1860 | __ cvtsd2ss(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1861 | break; |
| 1862 | |
| 1863 | default: |
| 1864 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1865 | << " to " << result_type; |
| 1866 | }; |
| 1867 | break; |
| 1868 | |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1869 | case Primitive::kPrimDouble: |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1870 | switch (input_type) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1871 | case Primitive::kPrimBoolean: |
| 1872 | // Boolean input is a result of code transformations. |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1873 | case Primitive::kPrimByte: |
| 1874 | case Primitive::kPrimShort: |
| 1875 | case Primitive::kPrimInt: |
| 1876 | case Primitive::kPrimChar: |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1877 | // Processing a Dex `int-to-double' instruction. |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1878 | __ cvtsi2sd(out.AsFpuRegister<XmmRegister>(), in.AsRegister<Register>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1879 | break; |
| 1880 | |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1881 | case Primitive::kPrimLong: { |
| 1882 | // Processing a Dex `long-to-double' instruction. |
| 1883 | Register low = in.AsRegisterPairLow<Register>(); |
| 1884 | Register high = in.AsRegisterPairHigh<Register>(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1885 | XmmRegister result = out.AsFpuRegister<XmmRegister>(); |
| 1886 | XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 1887 | XmmRegister constant = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1888 | |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1889 | // low = low - 2^31 (to prevent bit 31 of `low` to be |
| 1890 | // interpreted as a sign bit) |
| 1891 | __ subl(low, Immediate(0x80000000)); |
| 1892 | // temp = int-to-double(high) |
| 1893 | __ cvtsi2sd(temp, high); |
| 1894 | // temp = temp * 2^32 |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1895 | __ LoadLongConstant(constant, k2Pow32EncodingForDouble); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1896 | __ mulsd(temp, constant); |
| 1897 | // result = int-to-double(low) |
| 1898 | __ cvtsi2sd(result, low); |
| 1899 | // result = result + 2^31 (restore the original value of `low`) |
Roland Levillain | 6d0e483 | 2014-11-27 18:31:21 +0000 | [diff] [blame] | 1900 | __ LoadLongConstant(constant, k2Pow31EncodingForDouble); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1901 | __ addsd(result, constant); |
| 1902 | // result = result + temp |
| 1903 | __ addsd(result, temp); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 1904 | // Restore low. |
| 1905 | __ addl(low, Immediate(0x80000000)); |
Roland Levillain | 647b9ed | 2014-11-27 12:06:00 +0000 | [diff] [blame] | 1906 | break; |
| 1907 | } |
| 1908 | |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1909 | case Primitive::kPrimFloat: |
Roland Levillain | 8964e2b | 2014-12-04 12:10:50 +0000 | [diff] [blame] | 1910 | // Processing a Dex `float-to-double' instruction. |
| 1911 | __ cvtss2sd(out.AsFpuRegister<XmmRegister>(), in.AsFpuRegister<XmmRegister>()); |
Roland Levillain | cff1374 | 2014-11-17 14:32:17 +0000 | [diff] [blame] | 1912 | break; |
| 1913 | |
| 1914 | default: |
| 1915 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1916 | << " to " << result_type; |
| 1917 | }; |
Roland Levillain | dff1f28 | 2014-11-05 14:15:05 +0000 | [diff] [blame] | 1918 | break; |
| 1919 | |
| 1920 | default: |
| 1921 | LOG(FATAL) << "Unexpected type conversion from " << input_type |
| 1922 | << " to " << result_type; |
| 1923 | } |
| 1924 | } |
| 1925 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1926 | void LocationsBuilderX86::VisitAdd(HAdd* add) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1927 | LocationSummary* locations = |
| 1928 | new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1929 | switch (add->GetResultType()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1930 | case Primitive::kPrimInt: { |
| 1931 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1932 | locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1))); |
| 1933 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 1934 | break; |
| 1935 | } |
| 1936 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1937 | case Primitive::kPrimLong: { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1938 | locations->SetInAt(0, Location::RequiresRegister()); |
| 1939 | locations->SetInAt(1, Location::Any()); |
| 1940 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1941 | break; |
| 1942 | } |
| 1943 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1944 | case Primitive::kPrimFloat: |
| 1945 | case Primitive::kPrimDouble: { |
| 1946 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
Calin Juravle | 3173c8a | 2015-02-23 15:53:39 +0000 | [diff] [blame] | 1947 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1948 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1949 | break; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1950 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1951 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1952 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1953 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
| 1954 | break; |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1955 | } |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1956 | } |
| 1957 | |
| 1958 | void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) { |
| 1959 | LocationSummary* locations = add->GetLocations(); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1960 | Location first = locations->InAt(0); |
| 1961 | Location second = locations->InAt(1); |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1962 | Location out = locations->Out(); |
| 1963 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1964 | switch (add->GetResultType()) { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1965 | case Primitive::kPrimInt: { |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1966 | if (second.IsRegister()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1967 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 1968 | __ addl(out.AsRegister<Register>(), second.AsRegister<Register>()); |
| 1969 | } else { |
| 1970 | __ leal(out.AsRegister<Register>(), Address( |
| 1971 | first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0)); |
| 1972 | } |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1973 | } else if (second.IsConstant()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1974 | int32_t value = second.GetConstant()->AsIntConstant()->GetValue(); |
| 1975 | if (out.AsRegister<Register>() == first.AsRegister<Register>()) { |
| 1976 | __ addl(out.AsRegister<Register>(), Immediate(value)); |
| 1977 | } else { |
| 1978 | __ leal(out.AsRegister<Register>(), Address(first.AsRegister<Register>(), value)); |
| 1979 | } |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1980 | } else { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 1981 | DCHECK(first.Equals(locations->Out())); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 1982 | __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 1983 | } |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1984 | break; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1985 | } |
| 1986 | |
| 1987 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 1988 | if (second.IsRegisterPair()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1989 | __ addl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); |
| 1990 | __ adcl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 1991 | } else if (second.IsDoubleStackSlot()) { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 1992 | __ addl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); |
| 1993 | __ adcl(first.AsRegisterPairHigh<Register>(), |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 1994 | Address(ESP, second.GetHighStackIndex(kX86WordSize))); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 1995 | } else { |
| 1996 | DCHECK(second.IsConstant()) << second; |
| 1997 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
| 1998 | __ addl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value))); |
| 1999 | __ adcl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value))); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2000 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2001 | break; |
| 2002 | } |
| 2003 | |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2004 | case Primitive::kPrimFloat: { |
| 2005 | if (second.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2006 | __ addss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2007 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2008 | break; |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | case Primitive::kPrimDouble: { |
| 2012 | if (second.IsFpuRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2013 | __ addsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2014 | } |
| 2015 | break; |
| 2016 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2017 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 2018 | default: |
Nicolas Geoffray | 7fb49da | 2014-10-06 09:12:41 +0100 | [diff] [blame] | 2019 | LOG(FATAL) << "Unexpected add type " << add->GetResultType(); |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 2020 | } |
| 2021 | } |
| 2022 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2023 | void LocationsBuilderX86::VisitSub(HSub* sub) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2024 | LocationSummary* locations = |
| 2025 | new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2026 | switch (sub->GetResultType()) { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2027 | case Primitive::kPrimInt: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2028 | case Primitive::kPrimLong: { |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2029 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2030 | locations->SetInAt(1, Location::Any()); |
| 2031 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2032 | break; |
| 2033 | } |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2034 | case Primitive::kPrimFloat: |
| 2035 | case Primitive::kPrimDouble: { |
| 2036 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2037 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2038 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2039 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2040 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2041 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2042 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2043 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2044 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2045 | } |
| 2046 | |
| 2047 | void InstructionCodeGeneratorX86::VisitSub(HSub* sub) { |
| 2048 | LocationSummary* locations = sub->GetLocations(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2049 | Location first = locations->InAt(0); |
| 2050 | Location second = locations->InAt(1); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2051 | DCHECK(first.Equals(locations->Out())); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2052 | switch (sub->GetResultType()) { |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2053 | case Primitive::kPrimInt: { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2054 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2055 | __ subl(first.AsRegister<Register>(), second.AsRegister<Register>()); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2056 | } else if (second.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2057 | __ subl(first.AsRegister<Register>(), |
| 2058 | Immediate(second.GetConstant()->AsIntConstant()->GetValue())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2059 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2060 | __ subl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2061 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2062 | break; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2063 | } |
| 2064 | |
| 2065 | case Primitive::kPrimLong: { |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 2066 | if (second.IsRegisterPair()) { |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2067 | __ subl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); |
| 2068 | __ sbbl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2069 | } else if (second.IsDoubleStackSlot()) { |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2070 | __ subl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2071 | __ sbbl(first.AsRegisterPairHigh<Register>(), |
| 2072 | Address(ESP, second.GetHighStackIndex(kX86WordSize))); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2073 | } else { |
| 2074 | DCHECK(second.IsConstant()) << second; |
| 2075 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
| 2076 | __ subl(first.AsRegisterPairLow<Register>(), Immediate(Low32Bits(value))); |
| 2077 | __ sbbl(first.AsRegisterPairHigh<Register>(), Immediate(High32Bits(value))); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2078 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2079 | break; |
| 2080 | } |
| 2081 | |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2082 | case Primitive::kPrimFloat: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2083 | __ subss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2084 | break; |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2085 | } |
| 2086 | |
| 2087 | case Primitive::kPrimDouble: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2088 | __ subsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2089 | break; |
| 2090 | } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 2091 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2092 | default: |
Calin Juravle | 1135168 | 2014-10-23 15:38:15 +0100 | [diff] [blame] | 2093 | LOG(FATAL) << "Unexpected sub type " << sub->GetResultType(); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2094 | } |
| 2095 | } |
| 2096 | |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2097 | void LocationsBuilderX86::VisitMul(HMul* mul) { |
| 2098 | LocationSummary* locations = |
| 2099 | new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall); |
| 2100 | switch (mul->GetResultType()) { |
| 2101 | case Primitive::kPrimInt: |
| 2102 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2103 | locations->SetInAt(1, Location::Any()); |
| 2104 | locations->SetOut(Location::SameAsFirstInput()); |
| 2105 | break; |
| 2106 | case Primitive::kPrimLong: { |
| 2107 | locations->SetInAt(0, Location::RequiresRegister()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2108 | locations->SetInAt(1, Location::Any()); |
| 2109 | locations->SetOut(Location::SameAsFirstInput()); |
| 2110 | // Needed for imul on 32bits with 64bits output. |
| 2111 | locations->AddTemp(Location::RegisterLocation(EAX)); |
| 2112 | locations->AddTemp(Location::RegisterLocation(EDX)); |
| 2113 | break; |
| 2114 | } |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2115 | case Primitive::kPrimFloat: |
| 2116 | case Primitive::kPrimDouble: { |
| 2117 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2118 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2119 | locations->SetOut(Location::SameAsFirstInput()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2120 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2121 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2122 | |
| 2123 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2124 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2125 | } |
| 2126 | } |
| 2127 | |
| 2128 | void InstructionCodeGeneratorX86::VisitMul(HMul* mul) { |
| 2129 | LocationSummary* locations = mul->GetLocations(); |
| 2130 | Location first = locations->InAt(0); |
| 2131 | Location second = locations->InAt(1); |
| 2132 | DCHECK(first.Equals(locations->Out())); |
| 2133 | |
| 2134 | switch (mul->GetResultType()) { |
| 2135 | case Primitive::kPrimInt: { |
| 2136 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2137 | __ imull(first.AsRegister<Register>(), second.AsRegister<Register>()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2138 | } else if (second.IsConstant()) { |
| 2139 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2140 | __ imull(first.AsRegister<Register>(), imm); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2141 | } else { |
| 2142 | DCHECK(second.IsStackSlot()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2143 | __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2144 | } |
| 2145 | break; |
| 2146 | } |
| 2147 | |
| 2148 | case Primitive::kPrimLong: { |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2149 | Register in1_hi = first.AsRegisterPairHigh<Register>(); |
| 2150 | Register in1_lo = first.AsRegisterPairLow<Register>(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2151 | Register eax = locations->GetTemp(0).AsRegister<Register>(); |
| 2152 | Register edx = locations->GetTemp(1).AsRegister<Register>(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2153 | |
| 2154 | DCHECK_EQ(EAX, eax); |
| 2155 | DCHECK_EQ(EDX, edx); |
| 2156 | |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2157 | // input: in1 - 64 bits, in2 - 64 bits. |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2158 | // output: in1 |
| 2159 | // formula: in1.hi : in1.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo |
| 2160 | // parts: in1.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32] |
| 2161 | // parts: in1.lo = (in1.lo * in2.lo)[31:0] |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2162 | if (second.IsConstant()) { |
| 2163 | DCHECK(second.GetConstant()->IsLongConstant()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2164 | |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2165 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
| 2166 | int32_t low_value = Low32Bits(value); |
| 2167 | int32_t high_value = High32Bits(value); |
| 2168 | Immediate low(low_value); |
| 2169 | Immediate high(high_value); |
| 2170 | |
| 2171 | __ movl(eax, high); |
| 2172 | // eax <- in1.lo * in2.hi |
| 2173 | __ imull(eax, in1_lo); |
| 2174 | // in1.hi <- in1.hi * in2.lo |
| 2175 | __ imull(in1_hi, low); |
| 2176 | // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo |
| 2177 | __ addl(in1_hi, eax); |
| 2178 | // move in2_lo to eax to prepare for double precision |
| 2179 | __ movl(eax, low); |
| 2180 | // edx:eax <- in1.lo * in2.lo |
| 2181 | __ mull(in1_lo); |
| 2182 | // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32] |
| 2183 | __ addl(in1_hi, edx); |
| 2184 | // in1.lo <- (in1.lo * in2.lo)[31:0]; |
| 2185 | __ movl(in1_lo, eax); |
| 2186 | } else if (second.IsRegisterPair()) { |
| 2187 | Register in2_hi = second.AsRegisterPairHigh<Register>(); |
| 2188 | Register in2_lo = second.AsRegisterPairLow<Register>(); |
| 2189 | |
| 2190 | __ movl(eax, in2_hi); |
| 2191 | // eax <- in1.lo * in2.hi |
| 2192 | __ imull(eax, in1_lo); |
| 2193 | // in1.hi <- in1.hi * in2.lo |
| 2194 | __ imull(in1_hi, in2_lo); |
| 2195 | // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo |
| 2196 | __ addl(in1_hi, eax); |
| 2197 | // move in1_lo to eax to prepare for double precision |
| 2198 | __ movl(eax, in1_lo); |
| 2199 | // edx:eax <- in1.lo * in2.lo |
| 2200 | __ mull(in2_lo); |
| 2201 | // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32] |
| 2202 | __ addl(in1_hi, edx); |
| 2203 | // in1.lo <- (in1.lo * in2.lo)[31:0]; |
| 2204 | __ movl(in1_lo, eax); |
| 2205 | } else { |
| 2206 | DCHECK(second.IsDoubleStackSlot()) << second; |
| 2207 | Address in2_hi(ESP, second.GetHighStackIndex(kX86WordSize)); |
| 2208 | Address in2_lo(ESP, second.GetStackIndex()); |
| 2209 | |
| 2210 | __ movl(eax, in2_hi); |
| 2211 | // eax <- in1.lo * in2.hi |
| 2212 | __ imull(eax, in1_lo); |
| 2213 | // in1.hi <- in1.hi * in2.lo |
| 2214 | __ imull(in1_hi, in2_lo); |
| 2215 | // in1.hi <- in1.lo * in2.hi + in1.hi * in2.lo |
| 2216 | __ addl(in1_hi, eax); |
| 2217 | // move in1_lo to eax to prepare for double precision |
| 2218 | __ movl(eax, in1_lo); |
| 2219 | // edx:eax <- in1.lo * in2.lo |
| 2220 | __ mull(in2_lo); |
| 2221 | // in1.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32] |
| 2222 | __ addl(in1_hi, edx); |
| 2223 | // in1.lo <- (in1.lo * in2.lo)[31:0]; |
| 2224 | __ movl(in1_lo, eax); |
| 2225 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2226 | |
| 2227 | break; |
| 2228 | } |
| 2229 | |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2230 | case Primitive::kPrimFloat: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2231 | __ mulss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2232 | break; |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | case Primitive::kPrimDouble: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2236 | __ mulsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2237 | break; |
| 2238 | } |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2239 | |
| 2240 | default: |
Calin Juravle | b5bfa96 | 2014-10-21 18:02:24 +0100 | [diff] [blame] | 2241 | LOG(FATAL) << "Unexpected mul type " << mul->GetResultType(); |
Calin Juravle | 34bacdf | 2014-10-07 20:23:36 +0100 | [diff] [blame] | 2242 | } |
| 2243 | } |
| 2244 | |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 2245 | void InstructionCodeGeneratorX86::PushOntoFPStack(Location source, uint32_t temp_offset, |
| 2246 | uint32_t stack_adjustment, bool is_float) { |
| 2247 | if (source.IsStackSlot()) { |
| 2248 | DCHECK(is_float); |
| 2249 | __ flds(Address(ESP, source.GetStackIndex() + stack_adjustment)); |
| 2250 | } else if (source.IsDoubleStackSlot()) { |
| 2251 | DCHECK(!is_float); |
| 2252 | __ fldl(Address(ESP, source.GetStackIndex() + stack_adjustment)); |
| 2253 | } else { |
| 2254 | // Write the value to the temporary location on the stack and load to FP stack. |
| 2255 | if (is_float) { |
| 2256 | Location stack_temp = Location::StackSlot(temp_offset); |
| 2257 | codegen_->Move32(stack_temp, source); |
| 2258 | __ flds(Address(ESP, temp_offset)); |
| 2259 | } else { |
| 2260 | Location stack_temp = Location::DoubleStackSlot(temp_offset); |
| 2261 | codegen_->Move64(stack_temp, source); |
| 2262 | __ fldl(Address(ESP, temp_offset)); |
| 2263 | } |
| 2264 | } |
| 2265 | } |
| 2266 | |
| 2267 | void InstructionCodeGeneratorX86::GenerateRemFP(HRem *rem) { |
| 2268 | Primitive::Type type = rem->GetResultType(); |
| 2269 | bool is_float = type == Primitive::kPrimFloat; |
| 2270 | size_t elem_size = Primitive::ComponentSize(type); |
| 2271 | LocationSummary* locations = rem->GetLocations(); |
| 2272 | Location first = locations->InAt(0); |
| 2273 | Location second = locations->InAt(1); |
| 2274 | Location out = locations->Out(); |
| 2275 | |
| 2276 | // Create stack space for 2 elements. |
| 2277 | // TODO: enhance register allocator to ask for stack temporaries. |
| 2278 | __ subl(ESP, Immediate(2 * elem_size)); |
| 2279 | |
| 2280 | // Load the values to the FP stack in reverse order, using temporaries if needed. |
| 2281 | PushOntoFPStack(second, elem_size, 2 * elem_size, is_float); |
| 2282 | PushOntoFPStack(first, 0, 2 * elem_size, is_float); |
| 2283 | |
| 2284 | // Loop doing FPREM until we stabilize. |
| 2285 | Label retry; |
| 2286 | __ Bind(&retry); |
| 2287 | __ fprem(); |
| 2288 | |
| 2289 | // Move FP status to AX. |
| 2290 | __ fstsw(); |
| 2291 | |
| 2292 | // And see if the argument reduction is complete. This is signaled by the |
| 2293 | // C2 FPU flag bit set to 0. |
| 2294 | __ andl(EAX, Immediate(kC2ConditionMask)); |
| 2295 | __ j(kNotEqual, &retry); |
| 2296 | |
| 2297 | // We have settled on the final value. Retrieve it into an XMM register. |
| 2298 | // Store FP top of stack to real stack. |
| 2299 | if (is_float) { |
| 2300 | __ fsts(Address(ESP, 0)); |
| 2301 | } else { |
| 2302 | __ fstl(Address(ESP, 0)); |
| 2303 | } |
| 2304 | |
| 2305 | // Pop the 2 items from the FP stack. |
| 2306 | __ fucompp(); |
| 2307 | |
| 2308 | // Load the value from the stack into an XMM register. |
| 2309 | DCHECK(out.IsFpuRegister()) << out; |
| 2310 | if (is_float) { |
| 2311 | __ movss(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0)); |
| 2312 | } else { |
| 2313 | __ movsd(out.AsFpuRegister<XmmRegister>(), Address(ESP, 0)); |
| 2314 | } |
| 2315 | |
| 2316 | // And remove the temporary stack space we allocated. |
| 2317 | __ addl(ESP, Immediate(2 * elem_size)); |
| 2318 | } |
| 2319 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2320 | |
| 2321 | void InstructionCodeGeneratorX86::DivRemOneOrMinusOne(HBinaryOperation* instruction) { |
| 2322 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
| 2323 | |
| 2324 | LocationSummary* locations = instruction->GetLocations(); |
| 2325 | DCHECK(locations->InAt(1).IsConstant()); |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2326 | DCHECK(locations->InAt(1).GetConstant()->IsIntConstant()); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2327 | |
| 2328 | Register out_register = locations->Out().AsRegister<Register>(); |
| 2329 | Register input_register = locations->InAt(0).AsRegister<Register>(); |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2330 | int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue(); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2331 | |
| 2332 | DCHECK(imm == 1 || imm == -1); |
| 2333 | |
| 2334 | if (instruction->IsRem()) { |
| 2335 | __ xorl(out_register, out_register); |
| 2336 | } else { |
| 2337 | __ movl(out_register, input_register); |
| 2338 | if (imm == -1) { |
| 2339 | __ negl(out_register); |
| 2340 | } |
| 2341 | } |
| 2342 | } |
| 2343 | |
| 2344 | |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2345 | void InstructionCodeGeneratorX86::DivByPowerOfTwo(HDiv* instruction) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2346 | LocationSummary* locations = instruction->GetLocations(); |
| 2347 | |
| 2348 | Register out_register = locations->Out().AsRegister<Register>(); |
| 2349 | Register input_register = locations->InAt(0).AsRegister<Register>(); |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2350 | int32_t imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue(); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2351 | |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2352 | DCHECK(IsPowerOfTwo(std::abs(imm))); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2353 | Register num = locations->GetTemp(0).AsRegister<Register>(); |
| 2354 | |
| 2355 | __ leal(num, Address(input_register, std::abs(imm) - 1)); |
| 2356 | __ testl(input_register, input_register); |
| 2357 | __ cmovl(kGreaterEqual, num, input_register); |
| 2358 | int shift = CTZ(imm); |
| 2359 | __ sarl(num, Immediate(shift)); |
| 2360 | |
| 2361 | if (imm < 0) { |
| 2362 | __ negl(num); |
| 2363 | } |
| 2364 | |
| 2365 | __ movl(out_register, num); |
| 2366 | } |
| 2367 | |
| 2368 | void InstructionCodeGeneratorX86::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) { |
| 2369 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
| 2370 | |
| 2371 | LocationSummary* locations = instruction->GetLocations(); |
| 2372 | int imm = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue(); |
| 2373 | |
| 2374 | Register eax = locations->InAt(0).AsRegister<Register>(); |
| 2375 | Register out = locations->Out().AsRegister<Register>(); |
| 2376 | Register num; |
| 2377 | Register edx; |
| 2378 | |
| 2379 | if (instruction->IsDiv()) { |
| 2380 | edx = locations->GetTemp(0).AsRegister<Register>(); |
| 2381 | num = locations->GetTemp(1).AsRegister<Register>(); |
| 2382 | } else { |
| 2383 | edx = locations->Out().AsRegister<Register>(); |
| 2384 | num = locations->GetTemp(0).AsRegister<Register>(); |
| 2385 | } |
| 2386 | |
| 2387 | DCHECK_EQ(EAX, eax); |
| 2388 | DCHECK_EQ(EDX, edx); |
| 2389 | if (instruction->IsDiv()) { |
| 2390 | DCHECK_EQ(EAX, out); |
| 2391 | } else { |
| 2392 | DCHECK_EQ(EDX, out); |
| 2393 | } |
| 2394 | |
| 2395 | int64_t magic; |
| 2396 | int shift; |
| 2397 | CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift); |
| 2398 | |
| 2399 | Label ndiv; |
| 2400 | Label end; |
| 2401 | // If numerator is 0, the result is 0, no computation needed. |
| 2402 | __ testl(eax, eax); |
| 2403 | __ j(kNotEqual, &ndiv); |
| 2404 | |
| 2405 | __ xorl(out, out); |
| 2406 | __ jmp(&end); |
| 2407 | |
| 2408 | __ Bind(&ndiv); |
| 2409 | |
| 2410 | // Save the numerator. |
| 2411 | __ movl(num, eax); |
| 2412 | |
| 2413 | // EAX = magic |
| 2414 | __ movl(eax, Immediate(magic)); |
| 2415 | |
| 2416 | // EDX:EAX = magic * numerator |
| 2417 | __ imull(num); |
| 2418 | |
| 2419 | if (imm > 0 && magic < 0) { |
| 2420 | // EDX += num |
| 2421 | __ addl(edx, num); |
| 2422 | } else if (imm < 0 && magic > 0) { |
| 2423 | __ subl(edx, num); |
| 2424 | } |
| 2425 | |
| 2426 | // Shift if needed. |
| 2427 | if (shift != 0) { |
| 2428 | __ sarl(edx, Immediate(shift)); |
| 2429 | } |
| 2430 | |
| 2431 | // EDX += 1 if EDX < 0 |
| 2432 | __ movl(eax, edx); |
| 2433 | __ shrl(edx, Immediate(31)); |
| 2434 | __ addl(edx, eax); |
| 2435 | |
| 2436 | if (instruction->IsRem()) { |
| 2437 | __ movl(eax, num); |
| 2438 | __ imull(edx, Immediate(imm)); |
| 2439 | __ subl(eax, edx); |
| 2440 | __ movl(edx, eax); |
| 2441 | } else { |
| 2442 | __ movl(eax, edx); |
| 2443 | } |
| 2444 | __ Bind(&end); |
| 2445 | } |
| 2446 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2447 | void InstructionCodeGeneratorX86::GenerateDivRemIntegral(HBinaryOperation* instruction) { |
| 2448 | DCHECK(instruction->IsDiv() || instruction->IsRem()); |
| 2449 | |
| 2450 | LocationSummary* locations = instruction->GetLocations(); |
| 2451 | Location out = locations->Out(); |
| 2452 | Location first = locations->InAt(0); |
| 2453 | Location second = locations->InAt(1); |
| 2454 | bool is_div = instruction->IsDiv(); |
| 2455 | |
| 2456 | switch (instruction->GetResultType()) { |
| 2457 | case Primitive::kPrimInt: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2458 | DCHECK_EQ(EAX, first.AsRegister<Register>()); |
| 2459 | DCHECK_EQ(is_div ? EAX : EDX, out.AsRegister<Register>()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2460 | |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2461 | if (instruction->InputAt(1)->IsIntConstant()) { |
| 2462 | int32_t imm = second.GetConstant()->AsIntConstant()->GetValue(); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2463 | |
| 2464 | if (imm == 0) { |
| 2465 | // Do not generate anything for 0. DivZeroCheck would forbid any generated code. |
| 2466 | } else if (imm == 1 || imm == -1) { |
| 2467 | DivRemOneOrMinusOne(instruction); |
| 2468 | } else if (is_div && IsPowerOfTwo(std::abs(imm))) { |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2469 | DivByPowerOfTwo(instruction->AsDiv()); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2470 | } else { |
| 2471 | DCHECK(imm <= -2 || imm >= 2); |
| 2472 | GenerateDivRemWithAnyConstant(instruction); |
| 2473 | } |
| 2474 | } else { |
| 2475 | SlowPathCodeX86* slow_path = |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 2476 | new (GetGraph()->GetArena()) DivRemMinusOneSlowPathX86(out.AsRegister<Register>(), |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2477 | is_div); |
| 2478 | codegen_->AddSlowPath(slow_path); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2479 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2480 | Register second_reg = second.AsRegister<Register>(); |
| 2481 | // 0x80000000/-1 triggers an arithmetic exception! |
| 2482 | // Dividing by -1 is actually negation and -0x800000000 = 0x80000000 so |
| 2483 | // it's safe to just use negl instead of more complex comparisons. |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2484 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2485 | __ cmpl(second_reg, Immediate(-1)); |
| 2486 | __ j(kEqual, slow_path->GetEntryLabel()); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2487 | |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2488 | // edx:eax <- sign-extended of eax |
| 2489 | __ cdq(); |
| 2490 | // eax = quotient, edx = remainder |
| 2491 | __ idivl(second_reg); |
| 2492 | __ Bind(slow_path->GetExitLabel()); |
| 2493 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2494 | break; |
| 2495 | } |
| 2496 | |
| 2497 | case Primitive::kPrimLong: { |
| 2498 | InvokeRuntimeCallingConvention calling_convention; |
| 2499 | DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>()); |
| 2500 | DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>()); |
| 2501 | DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>()); |
| 2502 | DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>()); |
| 2503 | DCHECK_EQ(EAX, out.AsRegisterPairLow<Register>()); |
| 2504 | DCHECK_EQ(EDX, out.AsRegisterPairHigh<Register>()); |
| 2505 | |
| 2506 | if (is_div) { |
| 2507 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLdiv))); |
| 2508 | } else { |
| 2509 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLmod))); |
| 2510 | } |
| 2511 | uint32_t dex_pc = is_div |
| 2512 | ? instruction->AsDiv()->GetDexPc() |
| 2513 | : instruction->AsRem()->GetDexPc(); |
| 2514 | codegen_->RecordPcInfo(instruction, dex_pc); |
| 2515 | |
| 2516 | break; |
| 2517 | } |
| 2518 | |
| 2519 | default: |
| 2520 | LOG(FATAL) << "Unexpected type for GenerateDivRemIntegral " << instruction->GetResultType(); |
| 2521 | } |
| 2522 | } |
| 2523 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2524 | void LocationsBuilderX86::VisitDiv(HDiv* div) { |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2525 | LocationSummary::CallKind call_kind = (div->GetResultType() == Primitive::kPrimLong) |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2526 | ? LocationSummary::kCall |
| 2527 | : LocationSummary::kNoCall; |
| 2528 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind); |
| 2529 | |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2530 | switch (div->GetResultType()) { |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2531 | case Primitive::kPrimInt: { |
| 2532 | locations->SetInAt(0, Location::RegisterLocation(EAX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2533 | locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1))); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2534 | locations->SetOut(Location::SameAsFirstInput()); |
| 2535 | // Intel uses edx:eax as the dividend. |
| 2536 | locations->AddTemp(Location::RegisterLocation(EDX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2537 | // We need to save the numerator while we tweak eax and edx. As we are using imul in a way |
| 2538 | // which enforces results to be in EAX and EDX, things are simpler if we use EAX also as |
| 2539 | // output and request another temp. |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2540 | if (div->InputAt(1)->IsIntConstant()) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2541 | locations->AddTemp(Location::RequiresRegister()); |
| 2542 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2543 | break; |
| 2544 | } |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2545 | case Primitive::kPrimLong: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2546 | InvokeRuntimeCallingConvention calling_convention; |
| 2547 | locations->SetInAt(0, Location::RegisterPairLocation( |
| 2548 | calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1))); |
| 2549 | locations->SetInAt(1, Location::RegisterPairLocation( |
| 2550 | calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3))); |
| 2551 | // Runtime helper puts the result in EAX, EDX. |
| 2552 | locations->SetOut(Location::RegisterPairLocation(EAX, EDX)); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2553 | break; |
| 2554 | } |
| 2555 | case Primitive::kPrimFloat: |
| 2556 | case Primitive::kPrimDouble: { |
| 2557 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2558 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2559 | locations->SetOut(Location::SameAsFirstInput()); |
| 2560 | break; |
| 2561 | } |
| 2562 | |
| 2563 | default: |
| 2564 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 2565 | } |
| 2566 | } |
| 2567 | |
| 2568 | void InstructionCodeGeneratorX86::VisitDiv(HDiv* div) { |
| 2569 | LocationSummary* locations = div->GetLocations(); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2570 | Location out = locations->Out(); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2571 | Location first = locations->InAt(0); |
| 2572 | Location second = locations->InAt(1); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2573 | |
| 2574 | switch (div->GetResultType()) { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2575 | case Primitive::kPrimInt: |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2576 | case Primitive::kPrimLong: { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2577 | GenerateDivRemIntegral(div); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2578 | break; |
| 2579 | } |
| 2580 | |
| 2581 | case Primitive::kPrimFloat: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2582 | DCHECK(first.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2583 | __ divss(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2584 | break; |
| 2585 | } |
| 2586 | |
| 2587 | case Primitive::kPrimDouble: { |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2588 | DCHECK(first.Equals(out)); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2589 | __ divsd(first.AsFpuRegister<XmmRegister>(), second.AsFpuRegister<XmmRegister>()); |
Calin Juravle | 7c4954d | 2014-10-28 16:57:40 +0000 | [diff] [blame] | 2590 | break; |
| 2591 | } |
| 2592 | |
| 2593 | default: |
| 2594 | LOG(FATAL) << "Unexpected div type " << div->GetResultType(); |
| 2595 | } |
| 2596 | } |
| 2597 | |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2598 | void LocationsBuilderX86::VisitRem(HRem* rem) { |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2599 | Primitive::Type type = rem->GetResultType(); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2600 | |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 2601 | LocationSummary::CallKind call_kind = (rem->GetResultType() == Primitive::kPrimLong) |
| 2602 | ? LocationSummary::kCall |
| 2603 | : LocationSummary::kNoCall; |
| 2604 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2605 | |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2606 | switch (type) { |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2607 | case Primitive::kPrimInt: { |
| 2608 | locations->SetInAt(0, Location::RegisterLocation(EAX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2609 | locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1))); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2610 | locations->SetOut(Location::RegisterLocation(EDX)); |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2611 | // We need to save the numerator while we tweak eax and edx. As we are using imul in a way |
| 2612 | // which enforces results to be in EAX and EDX, things are simpler if we use EDX also as |
| 2613 | // output and request another temp. |
Guillaume Sanchez | b19930c | 2015-04-09 21:12:15 +0100 | [diff] [blame] | 2614 | if (rem->InputAt(1)->IsIntConstant()) { |
Guillaume Sanchez | 0f88e87 | 2015-03-30 17:55:45 +0100 | [diff] [blame] | 2615 | locations->AddTemp(Location::RequiresRegister()); |
| 2616 | } |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2617 | break; |
| 2618 | } |
| 2619 | case Primitive::kPrimLong: { |
| 2620 | InvokeRuntimeCallingConvention calling_convention; |
| 2621 | locations->SetInAt(0, Location::RegisterPairLocation( |
| 2622 | calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1))); |
| 2623 | locations->SetInAt(1, Location::RegisterPairLocation( |
| 2624 | calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3))); |
| 2625 | // Runtime helper puts the result in EAX, EDX. |
| 2626 | locations->SetOut(Location::RegisterPairLocation(EAX, EDX)); |
| 2627 | break; |
| 2628 | } |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 2629 | case Primitive::kPrimDouble: |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2630 | case Primitive::kPrimFloat: { |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 2631 | locations->SetInAt(0, Location::Any()); |
| 2632 | locations->SetInAt(1, Location::Any()); |
| 2633 | locations->SetOut(Location::RequiresFpuRegister()); |
| 2634 | locations->AddTemp(Location::RegisterLocation(EAX)); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2635 | break; |
| 2636 | } |
| 2637 | |
| 2638 | default: |
Calin Juravle | d2ec87d | 2014-12-08 14:24:46 +0000 | [diff] [blame] | 2639 | LOG(FATAL) << "Unexpected rem type " << type; |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2640 | } |
| 2641 | } |
| 2642 | |
| 2643 | void InstructionCodeGeneratorX86::VisitRem(HRem* rem) { |
| 2644 | Primitive::Type type = rem->GetResultType(); |
| 2645 | switch (type) { |
| 2646 | case Primitive::kPrimInt: |
| 2647 | case Primitive::kPrimLong: { |
| 2648 | GenerateDivRemIntegral(rem); |
| 2649 | break; |
| 2650 | } |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 2651 | case Primitive::kPrimFloat: |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2652 | case Primitive::kPrimDouble: { |
Mark Mendell | 24f2dfa | 2015-01-14 19:51:45 -0500 | [diff] [blame] | 2653 | GenerateRemFP(rem); |
Calin Juravle | bacfec3 | 2014-11-14 15:54:36 +0000 | [diff] [blame] | 2654 | break; |
| 2655 | } |
| 2656 | default: |
| 2657 | LOG(FATAL) << "Unexpected rem type " << type; |
| 2658 | } |
| 2659 | } |
| 2660 | |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2661 | void LocationsBuilderX86::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
| 2662 | LocationSummary* locations = |
| 2663 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2664 | switch (instruction->GetType()) { |
| 2665 | case Primitive::kPrimInt: { |
| 2666 | locations->SetInAt(0, Location::Any()); |
| 2667 | break; |
| 2668 | } |
| 2669 | case Primitive::kPrimLong: { |
| 2670 | locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0))); |
| 2671 | if (!instruction->IsConstant()) { |
| 2672 | locations->AddTemp(Location::RequiresRegister()); |
| 2673 | } |
| 2674 | break; |
| 2675 | } |
| 2676 | default: |
| 2677 | LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType(); |
| 2678 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2679 | if (instruction->HasUses()) { |
| 2680 | locations->SetOut(Location::SameAsFirstInput()); |
| 2681 | } |
| 2682 | } |
| 2683 | |
| 2684 | void InstructionCodeGeneratorX86::VisitDivZeroCheck(HDivZeroCheck* instruction) { |
| 2685 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathX86(instruction); |
| 2686 | codegen_->AddSlowPath(slow_path); |
| 2687 | |
| 2688 | LocationSummary* locations = instruction->GetLocations(); |
| 2689 | Location value = locations->InAt(0); |
| 2690 | |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2691 | switch (instruction->GetType()) { |
| 2692 | case Primitive::kPrimInt: { |
| 2693 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2694 | __ testl(value.AsRegister<Register>(), value.AsRegister<Register>()); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2695 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 2696 | } else if (value.IsStackSlot()) { |
| 2697 | __ cmpl(Address(ESP, value.GetStackIndex()), Immediate(0)); |
| 2698 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 2699 | } else { |
| 2700 | DCHECK(value.IsConstant()) << value; |
| 2701 | if (value.GetConstant()->AsIntConstant()->GetValue() == 0) { |
| 2702 | __ jmp(slow_path->GetEntryLabel()); |
| 2703 | } |
| 2704 | } |
| 2705 | break; |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2706 | } |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2707 | case Primitive::kPrimLong: { |
| 2708 | if (value.IsRegisterPair()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2709 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
Calin Juravle | d6fb6cf | 2014-11-11 19:07:44 +0000 | [diff] [blame] | 2710 | __ movl(temp, value.AsRegisterPairLow<Register>()); |
| 2711 | __ orl(temp, value.AsRegisterPairHigh<Register>()); |
| 2712 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 2713 | } else { |
| 2714 | DCHECK(value.IsConstant()) << value; |
| 2715 | if (value.GetConstant()->AsLongConstant()->GetValue() == 0) { |
| 2716 | __ jmp(slow_path->GetEntryLabel()); |
| 2717 | } |
| 2718 | } |
| 2719 | break; |
| 2720 | } |
| 2721 | default: |
| 2722 | LOG(FATAL) << "Unexpected type for HDivZeroCheck" << instruction->GetType(); |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2723 | } |
Calin Juravle | d0d4852 | 2014-11-04 16:40:20 +0000 | [diff] [blame] | 2724 | } |
| 2725 | |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2726 | void LocationsBuilderX86::HandleShift(HBinaryOperation* op) { |
| 2727 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 2728 | |
| 2729 | LocationSummary* locations = |
| 2730 | new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall); |
| 2731 | |
| 2732 | switch (op->GetResultType()) { |
| 2733 | case Primitive::kPrimInt: { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2734 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2735 | // The shift count needs to be in CL. |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2736 | locations->SetInAt(1, Location::ByteRegisterOrConstant(ECX, op->InputAt(1))); |
| 2737 | locations->SetOut(Location::SameAsFirstInput()); |
| 2738 | break; |
| 2739 | } |
| 2740 | case Primitive::kPrimLong: { |
| 2741 | locations->SetInAt(0, Location::RequiresRegister()); |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2742 | // The shift count needs to be in CL. |
| 2743 | locations->SetInAt(1, Location::RegisterLocation(ECX)); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2744 | locations->SetOut(Location::SameAsFirstInput()); |
| 2745 | break; |
| 2746 | } |
| 2747 | default: |
| 2748 | LOG(FATAL) << "Unexpected op type " << op->GetResultType(); |
| 2749 | } |
| 2750 | } |
| 2751 | |
| 2752 | void InstructionCodeGeneratorX86::HandleShift(HBinaryOperation* op) { |
| 2753 | DCHECK(op->IsShl() || op->IsShr() || op->IsUShr()); |
| 2754 | |
| 2755 | LocationSummary* locations = op->GetLocations(); |
| 2756 | Location first = locations->InAt(0); |
| 2757 | Location second = locations->InAt(1); |
| 2758 | DCHECK(first.Equals(locations->Out())); |
| 2759 | |
| 2760 | switch (op->GetResultType()) { |
| 2761 | case Primitive::kPrimInt: { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2762 | Register first_reg = first.AsRegister<Register>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2763 | if (second.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2764 | Register second_reg = second.AsRegister<Register>(); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2765 | DCHECK_EQ(ECX, second_reg); |
| 2766 | if (op->IsShl()) { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2767 | __ shll(first_reg, second_reg); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2768 | } else if (op->IsShr()) { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2769 | __ sarl(first_reg, second_reg); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2770 | } else { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2771 | __ shrl(first_reg, second_reg); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2772 | } |
| 2773 | } else { |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2774 | Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue); |
| 2775 | if (op->IsShl()) { |
| 2776 | __ shll(first_reg, imm); |
| 2777 | } else if (op->IsShr()) { |
| 2778 | __ sarl(first_reg, imm); |
| 2779 | } else { |
| 2780 | __ shrl(first_reg, imm); |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2781 | } |
| 2782 | } |
| 2783 | break; |
| 2784 | } |
Roland Levillain | f9aac1e | 2015-04-10 18:12:48 +0000 | [diff] [blame] | 2785 | case Primitive::kPrimLong: { |
| 2786 | Register second_reg = second.AsRegister<Register>(); |
| 2787 | DCHECK_EQ(ECX, second_reg); |
| 2788 | if (op->IsShl()) { |
| 2789 | GenerateShlLong(first, second_reg); |
| 2790 | } else if (op->IsShr()) { |
| 2791 | GenerateShrLong(first, second_reg); |
| 2792 | } else { |
| 2793 | GenerateUShrLong(first, second_reg); |
| 2794 | } |
| 2795 | break; |
| 2796 | } |
Calin Juravle | 9aec02f | 2014-11-18 23:06:35 +0000 | [diff] [blame] | 2797 | default: |
| 2798 | LOG(FATAL) << "Unexpected op type " << op->GetResultType(); |
| 2799 | } |
| 2800 | } |
| 2801 | |
| 2802 | void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { |
| 2803 | Label done; |
| 2804 | __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter); |
| 2805 | __ shll(loc.AsRegisterPairLow<Register>(), shifter); |
| 2806 | __ testl(shifter, Immediate(32)); |
| 2807 | __ j(kEqual, &done); |
| 2808 | __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>()); |
| 2809 | __ movl(loc.AsRegisterPairLow<Register>(), Immediate(0)); |
| 2810 | __ Bind(&done); |
| 2811 | } |
| 2812 | |
| 2813 | void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { |
| 2814 | Label done; |
| 2815 | __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); |
| 2816 | __ sarl(loc.AsRegisterPairHigh<Register>(), shifter); |
| 2817 | __ testl(shifter, Immediate(32)); |
| 2818 | __ j(kEqual, &done); |
| 2819 | __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>()); |
| 2820 | __ sarl(loc.AsRegisterPairHigh<Register>(), Immediate(31)); |
| 2821 | __ Bind(&done); |
| 2822 | } |
| 2823 | |
| 2824 | void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { |
| 2825 | Label done; |
| 2826 | __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); |
| 2827 | __ shrl(loc.AsRegisterPairHigh<Register>(), shifter); |
| 2828 | __ testl(shifter, Immediate(32)); |
| 2829 | __ j(kEqual, &done); |
| 2830 | __ movl(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>()); |
| 2831 | __ movl(loc.AsRegisterPairHigh<Register>(), Immediate(0)); |
| 2832 | __ Bind(&done); |
| 2833 | } |
| 2834 | |
| 2835 | void LocationsBuilderX86::VisitShl(HShl* shl) { |
| 2836 | HandleShift(shl); |
| 2837 | } |
| 2838 | |
| 2839 | void InstructionCodeGeneratorX86::VisitShl(HShl* shl) { |
| 2840 | HandleShift(shl); |
| 2841 | } |
| 2842 | |
| 2843 | void LocationsBuilderX86::VisitShr(HShr* shr) { |
| 2844 | HandleShift(shr); |
| 2845 | } |
| 2846 | |
| 2847 | void InstructionCodeGeneratorX86::VisitShr(HShr* shr) { |
| 2848 | HandleShift(shr); |
| 2849 | } |
| 2850 | |
| 2851 | void LocationsBuilderX86::VisitUShr(HUShr* ushr) { |
| 2852 | HandleShift(ushr); |
| 2853 | } |
| 2854 | |
| 2855 | void InstructionCodeGeneratorX86::VisitUShr(HUShr* ushr) { |
| 2856 | HandleShift(ushr); |
| 2857 | } |
| 2858 | |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2859 | void LocationsBuilderX86::VisitNewInstance(HNewInstance* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2860 | LocationSummary* locations = |
| 2861 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2862 | locations->SetOut(Location::RegisterLocation(EAX)); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2863 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 2864 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 2865 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2866 | } |
| 2867 | |
| 2868 | void InstructionCodeGeneratorX86::VisitNewInstance(HNewInstance* instruction) { |
| 2869 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 2870 | codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1)); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2871 | __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex())); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2872 | |
Nicolas Geoffray | cb1b00a | 2015-01-28 14:50:01 +0000 | [diff] [blame] | 2873 | __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint()))); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2874 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2875 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
Nicolas Geoffray | f12feb8 | 2014-07-17 18:32:41 +0100 | [diff] [blame] | 2876 | DCHECK(!codegen_->IsLeafMethod()); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 2877 | } |
| 2878 | |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2879 | void LocationsBuilderX86::VisitNewArray(HNewArray* instruction) { |
| 2880 | LocationSummary* locations = |
| 2881 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 2882 | locations->SetOut(Location::RegisterLocation(EAX)); |
| 2883 | InvokeRuntimeCallingConvention calling_convention; |
| 2884 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame] | 2885 | locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2))); |
| 2886 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2887 | } |
| 2888 | |
| 2889 | void InstructionCodeGeneratorX86::VisitNewArray(HNewArray* instruction) { |
| 2890 | InvokeRuntimeCallingConvention calling_convention; |
Andreas Gampe | 1cc7dba | 2014-12-17 18:43:01 -0800 | [diff] [blame] | 2891 | codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2)); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2892 | __ movl(calling_convention.GetRegisterAt(0), Immediate(instruction->GetTypeIndex())); |
| 2893 | |
Nicolas Geoffray | cb1b00a | 2015-01-28 14:50:01 +0000 | [diff] [blame] | 2894 | __ fs()->call(Address::Absolute(GetThreadOffset<kX86WordSize>(instruction->GetEntrypoint()))); |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 2895 | |
| 2896 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
| 2897 | DCHECK(!codegen_->IsLeafMethod()); |
| 2898 | } |
| 2899 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2900 | void LocationsBuilderX86::VisitParameterValue(HParameterValue* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2901 | LocationSummary* locations = |
| 2902 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 2903 | Location location = parameter_visitor_.GetNextLocation(instruction->GetType()); |
| 2904 | if (location.IsStackSlot()) { |
| 2905 | location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
| 2906 | } else if (location.IsDoubleStackSlot()) { |
| 2907 | location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2908 | } |
Nicolas Geoffray | a747a39 | 2014-04-17 14:56:23 +0100 | [diff] [blame] | 2909 | locations->SetOut(location); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2910 | } |
| 2911 | |
| 2912 | void InstructionCodeGeneratorX86::VisitParameterValue(HParameterValue* instruction) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 2913 | UNUSED(instruction); |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 2914 | } |
| 2915 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2916 | void LocationsBuilderX86::VisitNot(HNot* not_) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2917 | LocationSummary* locations = |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2918 | new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2919 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2920 | locations->SetOut(Location::SameAsFirstInput()); |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 2921 | } |
| 2922 | |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2923 | void InstructionCodeGeneratorX86::VisitNot(HNot* not_) { |
| 2924 | LocationSummary* locations = not_->GetLocations(); |
Roland Levillain | 7056643 | 2014-10-24 16:20:17 +0100 | [diff] [blame] | 2925 | Location in = locations->InAt(0); |
Nicolas Geoffray | a7aca37 | 2014-04-28 17:47:12 +0100 | [diff] [blame] | 2926 | Location out = locations->Out(); |
Roland Levillain | 7056643 | 2014-10-24 16:20:17 +0100 | [diff] [blame] | 2927 | DCHECK(in.Equals(out)); |
Nicolas Geoffray | d8ef2e9 | 2015-02-24 16:02:06 +0000 | [diff] [blame] | 2928 | switch (not_->GetResultType()) { |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2929 | case Primitive::kPrimInt: |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2930 | __ notl(out.AsRegister<Register>()); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2931 | break; |
| 2932 | |
| 2933 | case Primitive::kPrimLong: |
Roland Levillain | 7056643 | 2014-10-24 16:20:17 +0100 | [diff] [blame] | 2934 | __ notl(out.AsRegisterPairLow<Register>()); |
| 2935 | __ notl(out.AsRegisterPairHigh<Register>()); |
Roland Levillain | 1cc5f251 | 2014-10-22 18:06:21 +0100 | [diff] [blame] | 2936 | break; |
| 2937 | |
| 2938 | default: |
| 2939 | LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType(); |
| 2940 | } |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 2941 | } |
| 2942 | |
David Brazdil | 66d126e | 2015-04-03 16:02:44 +0100 | [diff] [blame] | 2943 | void LocationsBuilderX86::VisitBooleanNot(HBooleanNot* bool_not) { |
| 2944 | LocationSummary* locations = |
| 2945 | new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall); |
| 2946 | locations->SetInAt(0, Location::RequiresRegister()); |
| 2947 | locations->SetOut(Location::SameAsFirstInput()); |
| 2948 | } |
| 2949 | |
| 2950 | void InstructionCodeGeneratorX86::VisitBooleanNot(HBooleanNot* bool_not) { |
David Brazdil | 66d126e | 2015-04-03 16:02:44 +0100 | [diff] [blame] | 2951 | LocationSummary* locations = bool_not->GetLocations(); |
| 2952 | Location in = locations->InAt(0); |
| 2953 | Location out = locations->Out(); |
| 2954 | DCHECK(in.Equals(out)); |
| 2955 | __ xorl(out.AsRegister<Register>(), Immediate(1)); |
| 2956 | } |
| 2957 | |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2958 | void LocationsBuilderX86::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2959 | LocationSummary* locations = |
| 2960 | new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2961 | switch (compare->InputAt(0)->GetType()) { |
| 2962 | case Primitive::kPrimLong: { |
| 2963 | locations->SetInAt(0, Location::RequiresRegister()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2964 | locations->SetInAt(1, Location::Any()); |
| 2965 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
| 2966 | break; |
| 2967 | } |
| 2968 | case Primitive::kPrimFloat: |
| 2969 | case Primitive::kPrimDouble: { |
| 2970 | locations->SetInAt(0, Location::RequiresFpuRegister()); |
| 2971 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
| 2972 | locations->SetOut(Location::RequiresRegister()); |
| 2973 | break; |
| 2974 | } |
| 2975 | default: |
| 2976 | LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType(); |
| 2977 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2978 | } |
| 2979 | |
| 2980 | void InstructionCodeGeneratorX86::VisitCompare(HCompare* compare) { |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2981 | LocationSummary* locations = compare->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 2982 | Register out = locations->Out().AsRegister<Register>(); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 2983 | Location left = locations->InAt(0); |
| 2984 | Location right = locations->InAt(1); |
| 2985 | |
| 2986 | Label less, greater, done; |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 2987 | switch (compare->InputAt(0)->GetType()) { |
| 2988 | case Primitive::kPrimLong: { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 2989 | Register left_low = left.AsRegisterPairLow<Register>(); |
| 2990 | Register left_high = left.AsRegisterPairHigh<Register>(); |
| 2991 | int32_t val_low = 0; |
| 2992 | int32_t val_high = 0; |
| 2993 | bool right_is_const = false; |
| 2994 | |
| 2995 | if (right.IsConstant()) { |
| 2996 | DCHECK(right.GetConstant()->IsLongConstant()); |
| 2997 | right_is_const = true; |
| 2998 | int64_t val = right.GetConstant()->AsLongConstant()->GetValue(); |
| 2999 | val_low = Low32Bits(val); |
| 3000 | val_high = High32Bits(val); |
| 3001 | } |
| 3002 | |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3003 | if (right.IsRegisterPair()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3004 | __ cmpl(left_high, right.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3005 | } else if (right.IsDoubleStackSlot()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3006 | __ cmpl(left_high, Address(ESP, right.GetHighStackIndex(kX86WordSize))); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3007 | } else { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3008 | DCHECK(right_is_const) << right; |
| 3009 | if (val_high == 0) { |
| 3010 | __ testl(left_high, left_high); |
| 3011 | } else { |
| 3012 | __ cmpl(left_high, Immediate(val_high)); |
| 3013 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3014 | } |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 3015 | __ j(kLess, &less); // Signed compare. |
| 3016 | __ j(kGreater, &greater); // Signed compare. |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3017 | if (right.IsRegisterPair()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3018 | __ cmpl(left_low, right.AsRegisterPairLow<Register>()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3019 | } else if (right.IsDoubleStackSlot()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3020 | __ cmpl(left_low, Address(ESP, right.GetStackIndex())); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3021 | } else { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3022 | DCHECK(right_is_const) << right; |
| 3023 | if (val_low == 0) { |
| 3024 | __ testl(left_low, left_low); |
| 3025 | } else { |
| 3026 | __ cmpl(left_low, Immediate(val_low)); |
| 3027 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3028 | } |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3029 | break; |
| 3030 | } |
| 3031 | case Primitive::kPrimFloat: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3032 | __ ucomiss(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3033 | __ j(kUnordered, compare->IsGtBias() ? &greater : &less); |
| 3034 | break; |
| 3035 | } |
| 3036 | case Primitive::kPrimDouble: { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3037 | __ ucomisd(left.AsFpuRegister<XmmRegister>(), right.AsFpuRegister<XmmRegister>()); |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3038 | __ j(kUnordered, compare->IsGtBias() ? &greater : &less); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 3039 | break; |
| 3040 | } |
| 3041 | default: |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3042 | LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType(); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 3043 | } |
Calin Juravle | ddb7df2 | 2014-11-25 20:56:51 +0000 | [diff] [blame] | 3044 | __ movl(out, Immediate(0)); |
| 3045 | __ j(kEqual, &done); |
| 3046 | __ j(kBelow, &less); // kBelow is for CF (unsigned & floats). |
| 3047 | |
| 3048 | __ Bind(&greater); |
| 3049 | __ movl(out, Immediate(1)); |
| 3050 | __ jmp(&done); |
| 3051 | |
| 3052 | __ Bind(&less); |
| 3053 | __ movl(out, Immediate(-1)); |
| 3054 | |
| 3055 | __ Bind(&done); |
Nicolas Geoffray | 412f10c | 2014-06-19 10:00:34 +0100 | [diff] [blame] | 3056 | } |
| 3057 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 3058 | void LocationsBuilderX86::VisitPhi(HPhi* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3059 | LocationSummary* locations = |
| 3060 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 31d76b4 | 2014-06-09 15:02:22 +0100 | [diff] [blame] | 3061 | for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) { |
| 3062 | locations->SetInAt(i, Location::Any()); |
| 3063 | } |
| 3064 | locations->SetOut(Location::Any()); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 3065 | } |
| 3066 | |
| 3067 | void InstructionCodeGeneratorX86::VisitPhi(HPhi* instruction) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 3068 | UNUSED(instruction); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3069 | LOG(FATAL) << "Unreachable"; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 3070 | } |
| 3071 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3072 | void InstructionCodeGeneratorX86::GenerateMemoryBarrier(MemBarrierKind kind) { |
| 3073 | /* |
| 3074 | * According to the JSR-133 Cookbook, for x86 only StoreLoad/AnyAny barriers need memory fence. |
| 3075 | * All other barriers (LoadAny, AnyStore, StoreStore) are nops due to the x86 memory model. |
| 3076 | * For those cases, all we need to ensure is that there is a scheduling barrier in place. |
| 3077 | */ |
| 3078 | switch (kind) { |
| 3079 | case MemBarrierKind::kAnyAny: { |
| 3080 | __ mfence(); |
| 3081 | break; |
| 3082 | } |
| 3083 | case MemBarrierKind::kAnyStore: |
| 3084 | case MemBarrierKind::kLoadAny: |
| 3085 | case MemBarrierKind::kStoreStore: { |
| 3086 | // nop |
| 3087 | break; |
| 3088 | } |
| 3089 | default: |
| 3090 | LOG(FATAL) << "Unexpected memory barrier " << kind; |
Nicolas Geoffray | 1a43dd7 | 2014-07-17 15:15:34 +0100 | [diff] [blame] | 3091 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3092 | } |
| 3093 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3094 | |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 3095 | void CodeGeneratorX86::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, |
| 3096 | Register temp) { |
| 3097 | // TODO: Implement all kinds of calls: |
| 3098 | // 1) boot -> boot |
| 3099 | // 2) app -> boot |
| 3100 | // 3) app -> app |
| 3101 | // |
| 3102 | // Currently we implement the app -> app logic, which looks up in the resolve cache. |
| 3103 | // temp = method; |
| 3104 | LoadCurrentMethod(temp); |
| 3105 | if (!invoke->IsRecursive()) { |
| 3106 | // temp = temp->dex_cache_resolved_methods_; |
| 3107 | __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value())); |
| 3108 | // temp = temp[index_in_cache] |
| 3109 | __ movl(temp, Address(temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex()))); |
| 3110 | // (temp + offset_of_quick_compiled_code)() |
| 3111 | __ call(Address( |
| 3112 | temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize).Int32Value())); |
| 3113 | } else { |
| 3114 | __ call(GetFrameEntryLabel()); |
| 3115 | } |
| 3116 | |
| 3117 | DCHECK(!IsLeafMethod()); |
Mark Mendell | 09ed1a3 | 2015-03-25 08:30:06 -0400 | [diff] [blame] | 3118 | } |
| 3119 | |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3120 | void CodeGeneratorX86::MarkGCCard(Register temp, Register card, Register object, Register value) { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3121 | Label is_null; |
| 3122 | __ testl(value, value); |
| 3123 | __ j(kEqual, &is_null); |
| 3124 | __ fs()->movl(card, Address::Absolute(Thread::CardTableOffset<kX86WordSize>().Int32Value())); |
| 3125 | __ movl(temp, object); |
| 3126 | __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift)); |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3127 | __ movb(Address(temp, card, TIMES_1, 0), |
| 3128 | X86ManagedRegister::FromCpuRegister(card).AsByteRegister()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3129 | __ Bind(&is_null); |
| 3130 | } |
| 3131 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3132 | void LocationsBuilderX86::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) { |
| 3133 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3134 | LocationSummary* locations = |
| 3135 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3136 | locations->SetInAt(0, Location::RequiresRegister()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3137 | |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 3138 | if (Primitive::IsFloatingPointType(instruction->GetType())) { |
| 3139 | locations->SetOut(Location::RequiresFpuRegister()); |
| 3140 | } else { |
| 3141 | // The output overlaps in case of long: we don't want the low move to overwrite |
| 3142 | // the object's location. |
| 3143 | locations->SetOut(Location::RequiresRegister(), |
| 3144 | (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap |
| 3145 | : Location::kNoOutputOverlap); |
| 3146 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3147 | |
| 3148 | if (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong)) { |
| 3149 | // Long values can be loaded atomically into an XMM using movsd. |
| 3150 | // So we use an XMM register as a temp to achieve atomicity (first load the temp into the XMM |
| 3151 | // and then copy the XMM into the output 32bits at a time). |
| 3152 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 3153 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3154 | } |
| 3155 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3156 | void InstructionCodeGeneratorX86::HandleFieldGet(HInstruction* instruction, |
| 3157 | const FieldInfo& field_info) { |
| 3158 | DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3159 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3160 | LocationSummary* locations = instruction->GetLocations(); |
| 3161 | Register base = locations->InAt(0).AsRegister<Register>(); |
| 3162 | Location out = locations->Out(); |
| 3163 | bool is_volatile = field_info.IsVolatile(); |
| 3164 | Primitive::Type field_type = field_info.GetFieldType(); |
| 3165 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 3166 | |
| 3167 | switch (field_type) { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3168 | case Primitive::kPrimBoolean: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3169 | __ movzxb(out.AsRegister<Register>(), Address(base, offset)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3170 | break; |
| 3171 | } |
| 3172 | |
| 3173 | case Primitive::kPrimByte: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3174 | __ movsxb(out.AsRegister<Register>(), Address(base, offset)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3175 | break; |
| 3176 | } |
| 3177 | |
| 3178 | case Primitive::kPrimShort: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3179 | __ movsxw(out.AsRegister<Register>(), Address(base, offset)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3180 | break; |
| 3181 | } |
| 3182 | |
| 3183 | case Primitive::kPrimChar: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3184 | __ movzxw(out.AsRegister<Register>(), Address(base, offset)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3185 | break; |
| 3186 | } |
| 3187 | |
| 3188 | case Primitive::kPrimInt: |
| 3189 | case Primitive::kPrimNot: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3190 | __ movl(out.AsRegister<Register>(), Address(base, offset)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3191 | break; |
| 3192 | } |
| 3193 | |
| 3194 | case Primitive::kPrimLong: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3195 | if (is_volatile) { |
| 3196 | XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 3197 | __ movsd(temp, Address(base, offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3198 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3199 | __ movd(out.AsRegisterPairLow<Register>(), temp); |
| 3200 | __ psrlq(temp, Immediate(32)); |
| 3201 | __ movd(out.AsRegisterPairHigh<Register>(), temp); |
| 3202 | } else { |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3203 | DCHECK_NE(base, out.AsRegisterPairLow<Register>()); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3204 | __ movl(out.AsRegisterPairLow<Register>(), Address(base, offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3205 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3206 | __ movl(out.AsRegisterPairHigh<Register>(), Address(base, kX86WordSize + offset)); |
| 3207 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3208 | break; |
| 3209 | } |
| 3210 | |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 3211 | case Primitive::kPrimFloat: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3212 | __ movss(out.AsFpuRegister<XmmRegister>(), Address(base, offset)); |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 3213 | break; |
| 3214 | } |
| 3215 | |
| 3216 | case Primitive::kPrimDouble: { |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3217 | __ movsd(out.AsFpuRegister<XmmRegister>(), Address(base, offset)); |
Nicolas Geoffray | 52e832b | 2014-11-06 15:15:31 +0000 | [diff] [blame] | 3218 | break; |
| 3219 | } |
| 3220 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3221 | case Primitive::kPrimVoid: |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3222 | LOG(FATAL) << "Unreachable type " << field_type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3223 | UNREACHABLE(); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3224 | } |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3225 | |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3226 | // Longs are handled in the switch. |
| 3227 | if (field_type != Primitive::kPrimLong) { |
| 3228 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 3229 | } |
| 3230 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3231 | if (is_volatile) { |
| 3232 | GenerateMemoryBarrier(MemBarrierKind::kLoadAny); |
| 3233 | } |
| 3234 | } |
| 3235 | |
| 3236 | void LocationsBuilderX86::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) { |
| 3237 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 3238 | |
| 3239 | LocationSummary* locations = |
| 3240 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
| 3241 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3242 | bool is_volatile = field_info.IsVolatile(); |
| 3243 | Primitive::Type field_type = field_info.GetFieldType(); |
| 3244 | bool is_byte_type = (field_type == Primitive::kPrimBoolean) |
| 3245 | || (field_type == Primitive::kPrimByte); |
| 3246 | |
| 3247 | // The register allocator does not support multiple |
| 3248 | // inputs that die at entry with one in a specific register. |
| 3249 | if (is_byte_type) { |
| 3250 | // Ensure the value is in a byte register. |
| 3251 | locations->SetInAt(1, Location::RegisterLocation(EAX)); |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 3252 | } else if (Primitive::IsFloatingPointType(field_type)) { |
| 3253 | locations->SetInAt(1, Location::RequiresFpuRegister()); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3254 | } else { |
| 3255 | locations->SetInAt(1, Location::RequiresRegister()); |
| 3256 | } |
| 3257 | // Temporary registers for the write barrier. |
| 3258 | if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) { |
| 3259 | locations->AddTemp(Location::RequiresRegister()); |
| 3260 | // Ensure the card is in a byte register. |
| 3261 | locations->AddTemp(Location::RegisterLocation(ECX)); |
| 3262 | } else if (is_volatile && (field_type == Primitive::kPrimLong)) { |
| 3263 | // 64bits value can be atomically written to an address with movsd and an XMM register. |
| 3264 | // We need two XMM registers because there's no easier way to (bit) copy a register pair |
| 3265 | // into a single XMM register (we copy each pair part into the XMMs and then interleave them). |
| 3266 | // NB: We could make the register allocator understand fp_reg <-> core_reg moves but given the |
| 3267 | // isolated cases when we need this it isn't worth adding the extra complexity. |
| 3268 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 3269 | locations->AddTemp(Location::RequiresFpuRegister()); |
| 3270 | } |
| 3271 | } |
| 3272 | |
| 3273 | void InstructionCodeGeneratorX86::HandleFieldSet(HInstruction* instruction, |
| 3274 | const FieldInfo& field_info) { |
| 3275 | DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet()); |
| 3276 | |
| 3277 | LocationSummary* locations = instruction->GetLocations(); |
| 3278 | Register base = locations->InAt(0).AsRegister<Register>(); |
| 3279 | Location value = locations->InAt(1); |
| 3280 | bool is_volatile = field_info.IsVolatile(); |
| 3281 | Primitive::Type field_type = field_info.GetFieldType(); |
| 3282 | uint32_t offset = field_info.GetFieldOffset().Uint32Value(); |
| 3283 | |
| 3284 | if (is_volatile) { |
| 3285 | GenerateMemoryBarrier(MemBarrierKind::kAnyStore); |
| 3286 | } |
| 3287 | |
| 3288 | switch (field_type) { |
| 3289 | case Primitive::kPrimBoolean: |
| 3290 | case Primitive::kPrimByte: { |
| 3291 | __ movb(Address(base, offset), value.AsRegister<ByteRegister>()); |
| 3292 | break; |
| 3293 | } |
| 3294 | |
| 3295 | case Primitive::kPrimShort: |
| 3296 | case Primitive::kPrimChar: { |
| 3297 | __ movw(Address(base, offset), value.AsRegister<Register>()); |
| 3298 | break; |
| 3299 | } |
| 3300 | |
| 3301 | case Primitive::kPrimInt: |
| 3302 | case Primitive::kPrimNot: { |
| 3303 | __ movl(Address(base, offset), value.AsRegister<Register>()); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3304 | break; |
| 3305 | } |
| 3306 | |
| 3307 | case Primitive::kPrimLong: { |
| 3308 | if (is_volatile) { |
| 3309 | XmmRegister temp1 = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); |
| 3310 | XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); |
| 3311 | __ movd(temp1, value.AsRegisterPairLow<Register>()); |
| 3312 | __ movd(temp2, value.AsRegisterPairHigh<Register>()); |
| 3313 | __ punpckldq(temp1, temp2); |
| 3314 | __ movsd(Address(base, offset), temp1); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3315 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3316 | } else { |
| 3317 | __ movl(Address(base, offset), value.AsRegisterPairLow<Register>()); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3318 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3319 | __ movl(Address(base, kX86WordSize + offset), value.AsRegisterPairHigh<Register>()); |
| 3320 | } |
| 3321 | break; |
| 3322 | } |
| 3323 | |
| 3324 | case Primitive::kPrimFloat: { |
| 3325 | __ movss(Address(base, offset), value.AsFpuRegister<XmmRegister>()); |
| 3326 | break; |
| 3327 | } |
| 3328 | |
| 3329 | case Primitive::kPrimDouble: { |
| 3330 | __ movsd(Address(base, offset), value.AsFpuRegister<XmmRegister>()); |
| 3331 | break; |
| 3332 | } |
| 3333 | |
| 3334 | case Primitive::kPrimVoid: |
| 3335 | LOG(FATAL) << "Unreachable type " << field_type; |
| 3336 | UNREACHABLE(); |
| 3337 | } |
| 3338 | |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3339 | // Longs are handled in the switch. |
| 3340 | if (field_type != Primitive::kPrimLong) { |
| 3341 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 3342 | } |
| 3343 | |
| 3344 | if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) { |
| 3345 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
| 3346 | Register card = locations->GetTemp(1).AsRegister<Register>(); |
| 3347 | codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>()); |
| 3348 | } |
| 3349 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 3350 | if (is_volatile) { |
| 3351 | GenerateMemoryBarrier(MemBarrierKind::kAnyAny); |
| 3352 | } |
| 3353 | } |
| 3354 | |
| 3355 | void LocationsBuilderX86::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 3356 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 3357 | } |
| 3358 | |
| 3359 | void InstructionCodeGeneratorX86::VisitStaticFieldGet(HStaticFieldGet* instruction) { |
| 3360 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 3361 | } |
| 3362 | |
| 3363 | void LocationsBuilderX86::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
| 3364 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 3365 | } |
| 3366 | |
| 3367 | void InstructionCodeGeneratorX86::VisitStaticFieldSet(HStaticFieldSet* instruction) { |
| 3368 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 3369 | } |
| 3370 | |
| 3371 | void LocationsBuilderX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
| 3372 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 3373 | } |
| 3374 | |
| 3375 | void InstructionCodeGeneratorX86::VisitInstanceFieldSet(HInstanceFieldSet* instruction) { |
| 3376 | HandleFieldSet(instruction, instruction->GetFieldInfo()); |
| 3377 | } |
| 3378 | |
| 3379 | void LocationsBuilderX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
| 3380 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
| 3381 | } |
| 3382 | |
| 3383 | void InstructionCodeGeneratorX86::VisitInstanceFieldGet(HInstanceFieldGet* instruction) { |
| 3384 | HandleFieldGet(instruction, instruction->GetFieldInfo()); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3385 | } |
| 3386 | |
| 3387 | void LocationsBuilderX86::VisitNullCheck(HNullCheck* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3388 | LocationSummary* locations = |
| 3389 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 3390 | Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks() |
| 3391 | ? Location::RequiresRegister() |
| 3392 | : Location::Any(); |
| 3393 | locations->SetInAt(0, loc); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3394 | if (instruction->HasUses()) { |
| 3395 | locations->SetOut(Location::SameAsFirstInput()); |
| 3396 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3397 | } |
| 3398 | |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 3399 | void InstructionCodeGeneratorX86::GenerateImplicitNullCheck(HNullCheck* instruction) { |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3400 | if (codegen_->CanMoveNullCheckToUser(instruction)) { |
| 3401 | return; |
| 3402 | } |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 3403 | LocationSummary* locations = instruction->GetLocations(); |
| 3404 | Location obj = locations->InAt(0); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3405 | |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 3406 | __ testl(EAX, Address(obj.AsRegister<Register>(), 0)); |
| 3407 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
| 3408 | } |
| 3409 | |
| 3410 | void InstructionCodeGeneratorX86::GenerateExplicitNullCheck(HNullCheck* instruction) { |
Nicolas Geoffray | 92a73ae | 2014-10-16 11:12:52 +0100 | [diff] [blame] | 3411 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathX86(instruction); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3412 | codegen_->AddSlowPath(slow_path); |
| 3413 | |
| 3414 | LocationSummary* locations = instruction->GetLocations(); |
| 3415 | Location obj = locations->InAt(0); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3416 | |
| 3417 | if (obj.IsRegister()) { |
Mark Mendell | 42514f6 | 2015-03-31 11:34:22 -0400 | [diff] [blame] | 3418 | __ testl(obj.AsRegister<Register>(), obj.AsRegister<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3419 | } else if (obj.IsStackSlot()) { |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3420 | __ cmpl(Address(ESP, obj.GetStackIndex()), Immediate(0)); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3421 | } else { |
| 3422 | DCHECK(obj.IsConstant()) << obj; |
| 3423 | DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0); |
| 3424 | __ jmp(slow_path->GetEntryLabel()); |
| 3425 | return; |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3426 | } |
| 3427 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 3428 | } |
| 3429 | |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 3430 | void InstructionCodeGeneratorX86::VisitNullCheck(HNullCheck* instruction) { |
| 3431 | if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) { |
| 3432 | GenerateImplicitNullCheck(instruction); |
| 3433 | } else { |
| 3434 | GenerateExplicitNullCheck(instruction); |
| 3435 | } |
| 3436 | } |
| 3437 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3438 | void LocationsBuilderX86::VisitArrayGet(HArrayGet* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3439 | LocationSummary* locations = |
| 3440 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3441 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3442 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 3443 | if (Primitive::IsFloatingPointType(instruction->GetType())) { |
| 3444 | locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap); |
| 3445 | } else { |
| 3446 | // The output overlaps in case of long: we don't want the low move to overwrite |
| 3447 | // the array's location. |
| 3448 | locations->SetOut(Location::RequiresRegister(), |
| 3449 | (instruction->GetType() == Primitive::kPrimLong) ? Location::kOutputOverlap |
| 3450 | : Location::kNoOutputOverlap); |
| 3451 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3452 | } |
| 3453 | |
| 3454 | void InstructionCodeGeneratorX86::VisitArrayGet(HArrayGet* instruction) { |
| 3455 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3456 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3457 | Location index = locations->InAt(1); |
| 3458 | |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3459 | Primitive::Type type = instruction->GetType(); |
| 3460 | switch (type) { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3461 | case Primitive::kPrimBoolean: { |
| 3462 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3463 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3464 | if (index.IsConstant()) { |
| 3465 | __ movzxb(out, Address(obj, |
| 3466 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset)); |
| 3467 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3468 | __ movzxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3469 | } |
| 3470 | break; |
| 3471 | } |
| 3472 | |
| 3473 | case Primitive::kPrimByte: { |
| 3474 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3475 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3476 | if (index.IsConstant()) { |
| 3477 | __ movsxb(out, Address(obj, |
| 3478 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset)); |
| 3479 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3480 | __ movsxb(out, Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3481 | } |
| 3482 | break; |
| 3483 | } |
| 3484 | |
| 3485 | case Primitive::kPrimShort: { |
| 3486 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3487 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3488 | if (index.IsConstant()) { |
| 3489 | __ movsxw(out, Address(obj, |
| 3490 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset)); |
| 3491 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3492 | __ movsxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3493 | } |
| 3494 | break; |
| 3495 | } |
| 3496 | |
| 3497 | case Primitive::kPrimChar: { |
| 3498 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3499 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3500 | if (index.IsConstant()) { |
| 3501 | __ movzxw(out, Address(obj, |
| 3502 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset)); |
| 3503 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3504 | __ movzxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3505 | } |
| 3506 | break; |
| 3507 | } |
| 3508 | |
| 3509 | case Primitive::kPrimInt: |
| 3510 | case Primitive::kPrimNot: { |
| 3511 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3512 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3513 | if (index.IsConstant()) { |
| 3514 | __ movl(out, Address(obj, |
| 3515 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset)); |
| 3516 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3517 | __ movl(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3518 | } |
| 3519 | break; |
| 3520 | } |
| 3521 | |
| 3522 | case Primitive::kPrimLong: { |
| 3523 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value(); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3524 | Location out = locations->Out(); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3525 | DCHECK_NE(obj, out.AsRegisterPairLow<Register>()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3526 | if (index.IsConstant()) { |
| 3527 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3528 | __ movl(out.AsRegisterPairLow<Register>(), Address(obj, offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3529 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3530 | __ movl(out.AsRegisterPairHigh<Register>(), Address(obj, offset + kX86WordSize)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3531 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3532 | __ movl(out.AsRegisterPairLow<Register>(), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3533 | Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3534 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3535 | __ movl(out.AsRegisterPairHigh<Register>(), |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3536 | Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize)); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3537 | } |
| 3538 | break; |
| 3539 | } |
| 3540 | |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3541 | case Primitive::kPrimFloat: { |
| 3542 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value(); |
| 3543 | XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>(); |
| 3544 | if (index.IsConstant()) { |
| 3545 | __ movss(out, Address(obj, |
| 3546 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset)); |
| 3547 | } else { |
| 3548 | __ movss(out, Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset)); |
| 3549 | } |
| 3550 | break; |
| 3551 | } |
| 3552 | |
| 3553 | case Primitive::kPrimDouble: { |
| 3554 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value(); |
| 3555 | XmmRegister out = locations->Out().AsFpuRegister<XmmRegister>(); |
| 3556 | if (index.IsConstant()) { |
| 3557 | __ movsd(out, Address(obj, |
| 3558 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset)); |
| 3559 | } else { |
| 3560 | __ movsd(out, Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset)); |
| 3561 | } |
| 3562 | break; |
| 3563 | } |
| 3564 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3565 | case Primitive::kPrimVoid: |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3566 | LOG(FATAL) << "Unreachable type " << type; |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3567 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3568 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3569 | |
| 3570 | if (type != Primitive::kPrimLong) { |
| 3571 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
| 3572 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3573 | } |
| 3574 | |
| 3575 | void LocationsBuilderX86::VisitArraySet(HArraySet* instruction) { |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 3576 | // This location builder might end up asking to up to four registers, which is |
| 3577 | // not currently possible for baseline. The situation in which we need four |
| 3578 | // registers cannot be met by baseline though, because it has not run any |
| 3579 | // optimization. |
| 3580 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3581 | Primitive::Type value_type = instruction->GetComponentType(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3582 | bool needs_write_barrier = |
| 3583 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
| 3584 | |
Mark Mendell | 5f87418 | 2015-03-04 15:42:45 -0500 | [diff] [blame] | 3585 | bool needs_runtime_call = instruction->NeedsTypeCheck(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3586 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3587 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary( |
| 3588 | instruction, |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3589 | needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3590 | |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3591 | if (needs_runtime_call) { |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3592 | InvokeRuntimeCallingConvention calling_convention; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3593 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 3594 | locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1))); |
| 3595 | locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3596 | } else { |
Nicolas Geoffray | 7adfcc8 | 2014-10-07 12:24:52 +0100 | [diff] [blame] | 3597 | bool is_byte_type = (value_type == Primitive::kPrimBoolean) |
| 3598 | || (value_type == Primitive::kPrimByte); |
Nicolas Geoffray | 9ae0daa | 2014-09-30 22:40:23 +0100 | [diff] [blame] | 3599 | // We need the inputs to be different than the output in case of long operation. |
Nicolas Geoffray | 7adfcc8 | 2014-10-07 12:24:52 +0100 | [diff] [blame] | 3600 | // In case of a byte operation, the register allocator does not support multiple |
| 3601 | // inputs that die at entry with one in a specific register. |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3602 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3603 | locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1))); |
Nicolas Geoffray | 7adfcc8 | 2014-10-07 12:24:52 +0100 | [diff] [blame] | 3604 | if (is_byte_type) { |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3605 | // Ensure the value is in a byte register. |
| 3606 | locations->SetInAt(2, Location::ByteRegisterOrConstant(EAX, instruction->InputAt(2))); |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 3607 | } else if (Primitive::IsFloatingPointType(value_type)) { |
| 3608 | locations->SetInAt(2, Location::RequiresFpuRegister()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3609 | } else { |
Alexandre Rames | 88c13cd | 2015-04-14 17:35:39 +0100 | [diff] [blame] | 3610 | locations->SetInAt(2, Location::RegisterOrConstant(instruction->InputAt(2))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3611 | } |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3612 | // Temporary registers for the write barrier. |
| 3613 | if (needs_write_barrier) { |
| 3614 | locations->AddTemp(Location::RequiresRegister()); |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3615 | // Ensure the card is in a byte register. |
| 3616 | locations->AddTemp(Location::RegisterLocation(ECX)); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3617 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3618 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3619 | } |
| 3620 | |
| 3621 | void InstructionCodeGeneratorX86::VisitArraySet(HArraySet* instruction) { |
| 3622 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3623 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3624 | Location index = locations->InAt(1); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3625 | Location value = locations->InAt(2); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3626 | Primitive::Type value_type = instruction->GetComponentType(); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3627 | bool needs_runtime_call = locations->WillCall(); |
| 3628 | bool needs_write_barrier = |
| 3629 | CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3630 | |
| 3631 | switch (value_type) { |
| 3632 | case Primitive::kPrimBoolean: |
| 3633 | case Primitive::kPrimByte: { |
| 3634 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3635 | if (index.IsConstant()) { |
| 3636 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset; |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3637 | if (value.IsRegister()) { |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3638 | __ movb(Address(obj, offset), value.AsRegister<ByteRegister>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3639 | } else { |
| 3640 | __ movb(Address(obj, offset), |
| 3641 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3642 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3643 | } else { |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3644 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3645 | __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset), |
Nicolas Geoffray | 5b4b898 | 2014-12-18 17:45:56 +0000 | [diff] [blame] | 3646 | value.AsRegister<ByteRegister>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3647 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3648 | __ movb(Address(obj, index.AsRegister<Register>(), TIMES_1, data_offset), |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3649 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3650 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3651 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3652 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3653 | break; |
| 3654 | } |
| 3655 | |
| 3656 | case Primitive::kPrimShort: |
| 3657 | case Primitive::kPrimChar: { |
| 3658 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3659 | if (index.IsConstant()) { |
| 3660 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset; |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3661 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3662 | __ movw(Address(obj, offset), value.AsRegister<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3663 | } else { |
| 3664 | __ movw(Address(obj, offset), |
| 3665 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3666 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3667 | } else { |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3668 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3669 | __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset), |
| 3670 | value.AsRegister<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3671 | } else { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3672 | __ movw(Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset), |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3673 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3674 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3675 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3676 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3677 | break; |
| 3678 | } |
| 3679 | |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3680 | case Primitive::kPrimInt: |
| 3681 | case Primitive::kPrimNot: { |
| 3682 | if (!needs_runtime_call) { |
| 3683 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value(); |
| 3684 | if (index.IsConstant()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 3685 | size_t offset = |
| 3686 | (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset; |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3687 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3688 | __ movl(Address(obj, offset), value.AsRegister<Register>()); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3689 | } else { |
| 3690 | DCHECK(value.IsConstant()) << value; |
| 3691 | __ movl(Address(obj, offset), |
| 3692 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3693 | } |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3694 | } else { |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3695 | DCHECK(index.IsRegister()) << index; |
| 3696 | if (value.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3697 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset), |
| 3698 | value.AsRegister<Register>()); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3699 | } else { |
| 3700 | DCHECK(value.IsConstant()) << value; |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3701 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset), |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3702 | Immediate(value.GetConstant()->AsIntConstant()->GetValue())); |
| 3703 | } |
| 3704 | } |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3705 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3706 | |
| 3707 | if (needs_write_barrier) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3708 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
| 3709 | Register card = locations->GetTemp(1).AsRegister<Register>(); |
| 3710 | codegen_->MarkGCCard(temp, card, obj, value.AsRegister<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3711 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3712 | } else { |
Nicolas Geoffray | af07bc1 | 2014-11-12 18:08:09 +0000 | [diff] [blame] | 3713 | DCHECK_EQ(value_type, Primitive::kPrimNot); |
| 3714 | DCHECK(!codegen_->IsLeafMethod()); |
| 3715 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pAputObject))); |
| 3716 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3717 | } |
| 3718 | break; |
| 3719 | } |
| 3720 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3721 | case Primitive::kPrimLong: { |
| 3722 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3723 | if (index.IsConstant()) { |
| 3724 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset; |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3725 | if (value.IsRegisterPair()) { |
| 3726 | __ movl(Address(obj, offset), value.AsRegisterPairLow<Register>()); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3727 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3728 | __ movl(Address(obj, offset + kX86WordSize), value.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3729 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3730 | DCHECK(value.IsConstant()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3731 | int64_t val = value.GetConstant()->AsLongConstant()->GetValue(); |
| 3732 | __ movl(Address(obj, offset), Immediate(Low32Bits(val))); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3733 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3734 | __ movl(Address(obj, offset + kX86WordSize), Immediate(High32Bits(val))); |
| 3735 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3736 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3737 | if (value.IsRegisterPair()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3738 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset), |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3739 | value.AsRegisterPairLow<Register>()); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3740 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3741 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize), |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3742 | value.AsRegisterPairHigh<Register>()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3743 | } else { |
Nicolas Geoffray | 56b9ee6 | 2014-10-09 11:47:51 +0100 | [diff] [blame] | 3744 | DCHECK(value.IsConstant()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3745 | int64_t val = value.GetConstant()->AsLongConstant()->GetValue(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3746 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset), |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3747 | Immediate(Low32Bits(val))); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3748 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3749 | __ movl(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset + kX86WordSize), |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3750 | Immediate(High32Bits(val))); |
| 3751 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3752 | } |
| 3753 | break; |
| 3754 | } |
| 3755 | |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3756 | case Primitive::kPrimFloat: { |
| 3757 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value(); |
| 3758 | DCHECK(value.IsFpuRegister()); |
| 3759 | if (index.IsConstant()) { |
| 3760 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset; |
| 3761 | __ movss(Address(obj, offset), value.AsFpuRegister<XmmRegister>()); |
| 3762 | } else { |
| 3763 | __ movss(Address(obj, index.AsRegister<Register>(), TIMES_4, data_offset), |
| 3764 | value.AsFpuRegister<XmmRegister>()); |
| 3765 | } |
| 3766 | break; |
| 3767 | } |
| 3768 | |
| 3769 | case Primitive::kPrimDouble: { |
| 3770 | uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value(); |
| 3771 | DCHECK(value.IsFpuRegister()); |
| 3772 | if (index.IsConstant()) { |
| 3773 | size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset; |
| 3774 | __ movsd(Address(obj, offset), value.AsFpuRegister<XmmRegister>()); |
| 3775 | } else { |
| 3776 | __ movsd(Address(obj, index.AsRegister<Register>(), TIMES_8, data_offset), |
| 3777 | value.AsFpuRegister<XmmRegister>()); |
| 3778 | } |
| 3779 | break; |
| 3780 | } |
| 3781 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3782 | case Primitive::kPrimVoid: |
| 3783 | LOG(FATAL) << "Unreachable type " << instruction->GetType(); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3784 | UNREACHABLE(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3785 | } |
| 3786 | } |
| 3787 | |
| 3788 | void LocationsBuilderX86::VisitArrayLength(HArrayLength* instruction) { |
| 3789 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction); |
Nicolas Geoffray | 8e3964b | 2014-10-17 11:06:38 +0100 | [diff] [blame] | 3790 | locations->SetInAt(0, Location::RequiresRegister()); |
| 3791 | locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3792 | instruction->SetLocations(locations); |
| 3793 | } |
| 3794 | |
| 3795 | void InstructionCodeGeneratorX86::VisitArrayLength(HArrayLength* instruction) { |
| 3796 | LocationSummary* locations = instruction->GetLocations(); |
| 3797 | uint32_t offset = mirror::Array::LengthOffset().Uint32Value(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3798 | Register obj = locations->InAt(0).AsRegister<Register>(); |
| 3799 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3800 | __ movl(out, Address(obj, offset)); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 3801 | codegen_->MaybeRecordImplicitNullCheck(instruction); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3802 | } |
| 3803 | |
| 3804 | void LocationsBuilderX86::VisitBoundsCheck(HBoundsCheck* instruction) { |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 3805 | LocationSummary* locations = |
| 3806 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 3807 | locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0))); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3808 | locations->SetInAt(1, Location::RequiresRegister()); |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 3809 | if (instruction->HasUses()) { |
| 3810 | locations->SetOut(Location::SameAsFirstInput()); |
| 3811 | } |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3812 | } |
| 3813 | |
| 3814 | void InstructionCodeGeneratorX86::VisitBoundsCheck(HBoundsCheck* instruction) { |
| 3815 | LocationSummary* locations = instruction->GetLocations(); |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 3816 | Location index_loc = locations->InAt(0); |
| 3817 | Location length_loc = locations->InAt(1); |
| 3818 | SlowPathCodeX86* slow_path = |
| 3819 | new (GetGraph()->GetArena()) BoundsCheckSlowPathX86(instruction, index_loc, length_loc); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3820 | codegen_->AddSlowPath(slow_path); |
| 3821 | |
Mark Mendell | f60c90b | 2015-03-04 15:12:59 -0500 | [diff] [blame] | 3822 | Register length = length_loc.AsRegister<Register>(); |
| 3823 | if (index_loc.IsConstant()) { |
| 3824 | int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant()); |
| 3825 | __ cmpl(length, Immediate(value)); |
| 3826 | } else { |
| 3827 | __ cmpl(length, index_loc.AsRegister<Register>()); |
| 3828 | } |
| 3829 | __ j(kBelowEqual, slow_path->GetEntryLabel()); |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 3830 | } |
| 3831 | |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3832 | void LocationsBuilderX86::VisitTemporary(HTemporary* temp) { |
| 3833 | temp->SetLocations(nullptr); |
| 3834 | } |
| 3835 | |
| 3836 | void InstructionCodeGeneratorX86::VisitTemporary(HTemporary* temp) { |
| 3837 | // Nothing to do, this is driven by the code generator. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 3838 | UNUSED(temp); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 3839 | } |
| 3840 | |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 3841 | void LocationsBuilderX86::VisitParallelMove(HParallelMove* instruction) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 3842 | UNUSED(instruction); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3843 | LOG(FATAL) << "Unreachable"; |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 3844 | } |
| 3845 | |
| 3846 | void InstructionCodeGeneratorX86::VisitParallelMove(HParallelMove* instruction) { |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3847 | codegen_->GetMoveResolver()->EmitNativeCode(instruction); |
| 3848 | } |
| 3849 | |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3850 | void LocationsBuilderX86::VisitSuspendCheck(HSuspendCheck* instruction) { |
| 3851 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath); |
| 3852 | } |
| 3853 | |
| 3854 | void InstructionCodeGeneratorX86::VisitSuspendCheck(HSuspendCheck* instruction) { |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3855 | HBasicBlock* block = instruction->GetBlock(); |
| 3856 | if (block->GetLoopInformation() != nullptr) { |
| 3857 | DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction); |
| 3858 | // The back edge will generate the suspend check. |
| 3859 | return; |
| 3860 | } |
| 3861 | if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) { |
| 3862 | // The goto will generate the suspend check. |
| 3863 | return; |
| 3864 | } |
| 3865 | GenerateSuspendCheck(instruction, nullptr); |
| 3866 | } |
| 3867 | |
| 3868 | void InstructionCodeGeneratorX86::GenerateSuspendCheck(HSuspendCheck* instruction, |
| 3869 | HBasicBlock* successor) { |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3870 | SuspendCheckSlowPathX86* slow_path = |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3871 | new (GetGraph()->GetArena()) SuspendCheckSlowPathX86(instruction, successor); |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3872 | codegen_->AddSlowPath(slow_path); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3873 | __ fs()->cmpw(Address::Absolute( |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3874 | Thread::ThreadFlagsOffset<kX86WordSize>().Int32Value()), Immediate(0)); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 3875 | if (successor == nullptr) { |
| 3876 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 3877 | __ Bind(slow_path->GetReturnLabel()); |
| 3878 | } else { |
| 3879 | __ j(kEqual, codegen_->GetLabelOf(successor)); |
| 3880 | __ jmp(slow_path->GetEntryLabel()); |
| 3881 | } |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 3882 | } |
| 3883 | |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3884 | X86Assembler* ParallelMoveResolverX86::GetAssembler() const { |
| 3885 | return codegen_->GetAssembler(); |
| 3886 | } |
| 3887 | |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3888 | void ParallelMoveResolverX86::MoveMemoryToMemory32(int dst, int src) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 3889 | ScratchRegisterScope ensure_scratch( |
| 3890 | this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters()); |
| 3891 | Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister()); |
| 3892 | int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; |
| 3893 | __ movl(temp_reg, Address(ESP, src + stack_offset)); |
| 3894 | __ movl(Address(ESP, dst + stack_offset), temp_reg); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3895 | } |
| 3896 | |
| 3897 | void ParallelMoveResolverX86::MoveMemoryToMemory64(int dst, int src) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 3898 | ScratchRegisterScope ensure_scratch( |
| 3899 | this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters()); |
| 3900 | Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister()); |
| 3901 | int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; |
| 3902 | __ movl(temp_reg, Address(ESP, src + stack_offset)); |
| 3903 | __ movl(Address(ESP, dst + stack_offset), temp_reg); |
| 3904 | __ movl(temp_reg, Address(ESP, src + stack_offset + kX86WordSize)); |
| 3905 | __ movl(Address(ESP, dst + stack_offset + kX86WordSize), temp_reg); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3906 | } |
| 3907 | |
| 3908 | void ParallelMoveResolverX86::EmitMove(size_t index) { |
| 3909 | MoveOperands* move = moves_.Get(index); |
| 3910 | Location source = move->GetSource(); |
| 3911 | Location destination = move->GetDestination(); |
| 3912 | |
| 3913 | if (source.IsRegister()) { |
| 3914 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3915 | __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3916 | } else { |
| 3917 | DCHECK(destination.IsStackSlot()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3918 | __ movl(Address(ESP, destination.GetStackIndex()), source.AsRegister<Register>()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3919 | } |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3920 | } else if (source.IsFpuRegister()) { |
| 3921 | if (destination.IsFpuRegister()) { |
| 3922 | __ movaps(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
| 3923 | } else if (destination.IsStackSlot()) { |
| 3924 | __ movss(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>()); |
| 3925 | } else { |
| 3926 | DCHECK(destination.IsDoubleStackSlot()); |
| 3927 | __ movsd(Address(ESP, destination.GetStackIndex()), source.AsFpuRegister<XmmRegister>()); |
| 3928 | } |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3929 | } else if (source.IsStackSlot()) { |
| 3930 | if (destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 3931 | __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex())); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3932 | } else if (destination.IsFpuRegister()) { |
| 3933 | __ movss(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex())); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3934 | } else { |
| 3935 | DCHECK(destination.IsStackSlot()); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3936 | MoveMemoryToMemory32(destination.GetStackIndex(), source.GetStackIndex()); |
| 3937 | } |
| 3938 | } else if (source.IsDoubleStackSlot()) { |
| 3939 | if (destination.IsFpuRegister()) { |
| 3940 | __ movsd(destination.AsFpuRegister<XmmRegister>(), Address(ESP, source.GetStackIndex())); |
| 3941 | } else { |
| 3942 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
| 3943 | MoveMemoryToMemory64(destination.GetStackIndex(), source.GetStackIndex()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 3944 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 3945 | } else if (source.IsConstant()) { |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3946 | HConstant* constant = source.GetConstant(); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 3947 | if (constant->IsIntConstant() || constant->IsNullConstant()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3948 | int32_t value = CodeGenerator::GetInt32ValueOf(constant); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3949 | if (destination.IsRegister()) { |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3950 | if (value == 0) { |
| 3951 | __ xorl(destination.AsRegister<Register>(), destination.AsRegister<Register>()); |
| 3952 | } else { |
| 3953 | __ movl(destination.AsRegister<Register>(), Immediate(value)); |
| 3954 | } |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3955 | } else { |
| 3956 | DCHECK(destination.IsStackSlot()) << destination; |
Mark Mendell | 09b8463 | 2015-02-13 17:48:38 -0500 | [diff] [blame] | 3957 | __ movl(Address(ESP, destination.GetStackIndex()), Immediate(value)); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3958 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3959 | } else if (constant->IsFloatConstant()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3960 | float fp_value = constant->AsFloatConstant()->GetValue(); |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 3961 | int32_t value = bit_cast<int32_t, float>(fp_value); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3962 | Immediate imm(value); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3963 | if (destination.IsFpuRegister()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3964 | XmmRegister dest = destination.AsFpuRegister<XmmRegister>(); |
| 3965 | if (value == 0) { |
| 3966 | // Easy handling of 0.0. |
| 3967 | __ xorps(dest, dest); |
| 3968 | } else { |
| 3969 | ScratchRegisterScope ensure_scratch( |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 3970 | this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters()); |
| 3971 | Register temp = static_cast<Register>(ensure_scratch.GetRegister()); |
| 3972 | __ movl(temp, Immediate(value)); |
| 3973 | __ movd(dest, temp); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 3974 | } |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 3975 | } else { |
| 3976 | DCHECK(destination.IsStackSlot()) << destination; |
| 3977 | __ movl(Address(ESP, destination.GetStackIndex()), imm); |
| 3978 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3979 | } else if (constant->IsLongConstant()) { |
| 3980 | int64_t value = constant->AsLongConstant()->GetValue(); |
| 3981 | int32_t low_value = Low32Bits(value); |
| 3982 | int32_t high_value = High32Bits(value); |
| 3983 | Immediate low(low_value); |
| 3984 | Immediate high(high_value); |
| 3985 | if (destination.IsDoubleStackSlot()) { |
| 3986 | __ movl(Address(ESP, destination.GetStackIndex()), low); |
| 3987 | __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high); |
| 3988 | } else { |
| 3989 | __ movl(destination.AsRegisterPairLow<Register>(), low); |
| 3990 | __ movl(destination.AsRegisterPairHigh<Register>(), high); |
| 3991 | } |
| 3992 | } else { |
| 3993 | DCHECK(constant->IsDoubleConstant()); |
| 3994 | double dbl_value = constant->AsDoubleConstant()->GetValue(); |
Roland Levillain | da4d79b | 2015-03-24 14:36:11 +0000 | [diff] [blame] | 3995 | int64_t value = bit_cast<int64_t, double>(dbl_value); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 3996 | int32_t low_value = Low32Bits(value); |
| 3997 | int32_t high_value = High32Bits(value); |
| 3998 | Immediate low(low_value); |
| 3999 | Immediate high(high_value); |
| 4000 | if (destination.IsFpuRegister()) { |
| 4001 | XmmRegister dest = destination.AsFpuRegister<XmmRegister>(); |
| 4002 | if (value == 0) { |
| 4003 | // Easy handling of 0.0. |
| 4004 | __ xorpd(dest, dest); |
| 4005 | } else { |
| 4006 | __ pushl(high); |
| 4007 | __ pushl(low); |
| 4008 | __ movsd(dest, Address(ESP, 0)); |
| 4009 | __ addl(ESP, Immediate(8)); |
| 4010 | } |
| 4011 | } else { |
| 4012 | DCHECK(destination.IsDoubleStackSlot()) << destination; |
| 4013 | __ movl(Address(ESP, destination.GetStackIndex()), low); |
| 4014 | __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high); |
| 4015 | } |
Nicolas Geoffray | 96f89a2 | 2014-07-11 10:57:49 +0100 | [diff] [blame] | 4016 | } |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4017 | } else { |
Nicolas Geoffray | 42d1f5f | 2015-01-16 09:14:18 +0000 | [diff] [blame] | 4018 | LOG(FATAL) << "Unimplemented move: " << destination << " <- " << source; |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4019 | } |
| 4020 | } |
| 4021 | |
Mark Mendell | a5c19ce | 2015-04-01 12:51:05 -0400 | [diff] [blame] | 4022 | void ParallelMoveResolverX86::Exchange(Register reg, int mem) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4023 | Register suggested_scratch = reg == EAX ? EBX : EAX; |
| 4024 | ScratchRegisterScope ensure_scratch( |
| 4025 | this, reg, suggested_scratch, codegen_->GetNumberOfCoreRegisters()); |
| 4026 | |
| 4027 | int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; |
| 4028 | __ movl(static_cast<Register>(ensure_scratch.GetRegister()), Address(ESP, mem + stack_offset)); |
| 4029 | __ movl(Address(ESP, mem + stack_offset), reg); |
| 4030 | __ movl(reg, static_cast<Register>(ensure_scratch.GetRegister())); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4031 | } |
| 4032 | |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 4033 | void ParallelMoveResolverX86::Exchange32(XmmRegister reg, int mem) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4034 | ScratchRegisterScope ensure_scratch( |
| 4035 | this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters()); |
| 4036 | |
| 4037 | Register temp_reg = static_cast<Register>(ensure_scratch.GetRegister()); |
| 4038 | int stack_offset = ensure_scratch.IsSpilled() ? kX86WordSize : 0; |
| 4039 | __ movl(temp_reg, Address(ESP, mem + stack_offset)); |
| 4040 | __ movss(Address(ESP, mem + stack_offset), reg); |
| 4041 | __ movd(reg, temp_reg); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 4042 | } |
| 4043 | |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4044 | void ParallelMoveResolverX86::Exchange(int mem1, int mem2) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4045 | ScratchRegisterScope ensure_scratch1( |
| 4046 | this, kNoRegister, EAX, codegen_->GetNumberOfCoreRegisters()); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 4047 | |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4048 | Register suggested_scratch = ensure_scratch1.GetRegister() == EAX ? EBX : EAX; |
| 4049 | ScratchRegisterScope ensure_scratch2( |
| 4050 | this, ensure_scratch1.GetRegister(), suggested_scratch, codegen_->GetNumberOfCoreRegisters()); |
Nicolas Geoffray | e27f31a | 2014-06-12 17:53:14 +0100 | [diff] [blame] | 4051 | |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4052 | int stack_offset = ensure_scratch1.IsSpilled() ? kX86WordSize : 0; |
| 4053 | stack_offset += ensure_scratch2.IsSpilled() ? kX86WordSize : 0; |
| 4054 | __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset)); |
| 4055 | __ movl(static_cast<Register>(ensure_scratch2.GetRegister()), Address(ESP, mem2 + stack_offset)); |
| 4056 | __ movl(Address(ESP, mem2 + stack_offset), static_cast<Register>(ensure_scratch1.GetRegister())); |
| 4057 | __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister())); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4058 | } |
| 4059 | |
| 4060 | void ParallelMoveResolverX86::EmitSwap(size_t index) { |
| 4061 | MoveOperands* move = moves_.Get(index); |
| 4062 | Location source = move->GetSource(); |
| 4063 | Location destination = move->GetDestination(); |
| 4064 | |
| 4065 | if (source.IsRegister() && destination.IsRegister()) { |
Guillaume Sanchez | e14590b | 2015-04-15 18:57:27 +0000 | [diff] [blame] | 4066 | __ xchgl(destination.AsRegister<Register>(), source.AsRegister<Register>()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4067 | } else if (source.IsRegister() && destination.IsStackSlot()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4068 | Exchange(source.AsRegister<Register>(), destination.GetStackIndex()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4069 | } else if (source.IsStackSlot() && destination.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4070 | Exchange(destination.AsRegister<Register>(), source.GetStackIndex()); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4071 | } else if (source.IsStackSlot() && destination.IsStackSlot()) { |
| 4072 | Exchange(destination.GetStackIndex(), source.GetStackIndex()); |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 4073 | } else if (source.IsFpuRegister() && destination.IsFpuRegister()) { |
| 4074 | // Use XOR Swap algorithm to avoid a temporary. |
| 4075 | DCHECK_NE(source.reg(), destination.reg()); |
| 4076 | __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
| 4077 | __ xorpd(source.AsFpuRegister<XmmRegister>(), destination.AsFpuRegister<XmmRegister>()); |
| 4078 | __ xorpd(destination.AsFpuRegister<XmmRegister>(), source.AsFpuRegister<XmmRegister>()); |
| 4079 | } else if (source.IsFpuRegister() && destination.IsStackSlot()) { |
| 4080 | Exchange32(source.AsFpuRegister<XmmRegister>(), destination.GetStackIndex()); |
| 4081 | } else if (destination.IsFpuRegister() && source.IsStackSlot()) { |
| 4082 | Exchange32(destination.AsFpuRegister<XmmRegister>(), source.GetStackIndex()); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4083 | } else if (source.IsFpuRegister() && destination.IsDoubleStackSlot()) { |
| 4084 | // Take advantage of the 16 bytes in the XMM register. |
| 4085 | XmmRegister reg = source.AsFpuRegister<XmmRegister>(); |
| 4086 | Address stack(ESP, destination.GetStackIndex()); |
| 4087 | // Load the double into the high doubleword. |
| 4088 | __ movhpd(reg, stack); |
| 4089 | |
| 4090 | // Store the low double into the destination. |
| 4091 | __ movsd(stack, reg); |
| 4092 | |
| 4093 | // Move the high double to the low double. |
| 4094 | __ psrldq(reg, Immediate(8)); |
| 4095 | } else if (destination.IsFpuRegister() && source.IsDoubleStackSlot()) { |
| 4096 | // Take advantage of the 16 bytes in the XMM register. |
| 4097 | XmmRegister reg = destination.AsFpuRegister<XmmRegister>(); |
| 4098 | Address stack(ESP, source.GetStackIndex()); |
| 4099 | // Load the double into the high doubleword. |
| 4100 | __ movhpd(reg, stack); |
| 4101 | |
| 4102 | // Store the low double into the destination. |
| 4103 | __ movsd(stack, reg); |
| 4104 | |
| 4105 | // Move the high double to the low double. |
| 4106 | __ psrldq(reg, Immediate(8)); |
| 4107 | } else if (destination.IsDoubleStackSlot() && source.IsDoubleStackSlot()) { |
| 4108 | Exchange(destination.GetStackIndex(), source.GetStackIndex()); |
| 4109 | Exchange(destination.GetHighStackIndex(kX86WordSize), source.GetHighStackIndex(kX86WordSize)); |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4110 | } else { |
Mark Mendell | 7c8d009 | 2015-01-26 11:21:33 -0500 | [diff] [blame] | 4111 | LOG(FATAL) << "Unimplemented: source: " << source << ", destination: " << destination; |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 4112 | } |
| 4113 | } |
| 4114 | |
| 4115 | void ParallelMoveResolverX86::SpillScratch(int reg) { |
| 4116 | __ pushl(static_cast<Register>(reg)); |
| 4117 | } |
| 4118 | |
| 4119 | void ParallelMoveResolverX86::RestoreScratch(int reg) { |
| 4120 | __ popl(static_cast<Register>(reg)); |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 4121 | } |
| 4122 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4123 | void LocationsBuilderX86::VisitLoadClass(HLoadClass* cls) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4124 | LocationSummary::CallKind call_kind = cls->CanCallRuntime() |
| 4125 | ? LocationSummary::kCallOnSlowPath |
| 4126 | : LocationSummary::kNoCall; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4127 | LocationSummary* locations = |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4128 | new (GetGraph()->GetArena()) LocationSummary(cls, call_kind); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4129 | locations->SetOut(Location::RequiresRegister()); |
| 4130 | } |
| 4131 | |
| 4132 | void InstructionCodeGeneratorX86::VisitLoadClass(HLoadClass* cls) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4133 | Register out = cls->GetLocations()->Out().AsRegister<Register>(); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4134 | if (cls->IsReferrersClass()) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4135 | DCHECK(!cls->CanCallRuntime()); |
| 4136 | DCHECK(!cls->MustGenerateClinitCheck()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4137 | codegen_->LoadCurrentMethod(out); |
| 4138 | __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value())); |
| 4139 | } else { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4140 | DCHECK(cls->CanCallRuntime()); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4141 | codegen_->LoadCurrentMethod(out); |
| 4142 | __ movl(out, Address(out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value())); |
| 4143 | __ movl(out, Address(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()))); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4144 | |
| 4145 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86( |
| 4146 | cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck()); |
| 4147 | codegen_->AddSlowPath(slow_path); |
| 4148 | __ testl(out, out); |
| 4149 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4150 | if (cls->MustGenerateClinitCheck()) { |
| 4151 | GenerateClassInitializationCheck(slow_path, out); |
| 4152 | } else { |
| 4153 | __ Bind(slow_path->GetExitLabel()); |
| 4154 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4155 | } |
| 4156 | } |
| 4157 | |
| 4158 | void LocationsBuilderX86::VisitClinitCheck(HClinitCheck* check) { |
| 4159 | LocationSummary* locations = |
| 4160 | new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath); |
| 4161 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4162 | if (check->HasUses()) { |
| 4163 | locations->SetOut(Location::SameAsFirstInput()); |
| 4164 | } |
| 4165 | } |
| 4166 | |
| 4167 | void InstructionCodeGeneratorX86::VisitClinitCheck(HClinitCheck* check) { |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4168 | // We assume the class to not be null. |
| 4169 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathX86( |
| 4170 | check->GetLoadClass(), check, check->GetDexPc(), true); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4171 | codegen_->AddSlowPath(slow_path); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 4172 | GenerateClassInitializationCheck(slow_path, |
| 4173 | check->GetLocations()->InAt(0).AsRegister<Register>()); |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4174 | } |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4175 | |
Nicolas Geoffray | 424f676 | 2014-11-03 14:51:25 +0000 | [diff] [blame] | 4176 | void InstructionCodeGeneratorX86::GenerateClassInitializationCheck( |
| 4177 | SlowPathCodeX86* slow_path, Register class_reg) { |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 4178 | __ cmpl(Address(class_reg, mirror::Class::StatusOffset().Int32Value()), |
| 4179 | Immediate(mirror::Class::kStatusInitialized)); |
| 4180 | __ j(kLess, slow_path->GetEntryLabel()); |
| 4181 | __ Bind(slow_path->GetExitLabel()); |
| 4182 | // No need for memory fence, thanks to the X86 memory model. |
| 4183 | } |
| 4184 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 4185 | void LocationsBuilderX86::VisitLoadString(HLoadString* load) { |
| 4186 | LocationSummary* locations = |
| 4187 | new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath); |
| 4188 | locations->SetOut(Location::RequiresRegister()); |
| 4189 | } |
| 4190 | |
| 4191 | void InstructionCodeGeneratorX86::VisitLoadString(HLoadString* load) { |
| 4192 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathX86(load); |
| 4193 | codegen_->AddSlowPath(slow_path); |
| 4194 | |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4195 | Register out = load->GetLocations()->Out().AsRegister<Register>(); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 4196 | codegen_->LoadCurrentMethod(out); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 4197 | __ movl(out, Address(out, mirror::ArtMethod::DeclaringClassOffset().Int32Value())); |
| 4198 | __ movl(out, Address(out, mirror::Class::DexCacheStringsOffset().Int32Value())); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 4199 | __ movl(out, Address(out, CodeGenerator::GetCacheOffset(load->GetStringIndex()))); |
| 4200 | __ testl(out, out); |
| 4201 | __ j(kEqual, slow_path->GetEntryLabel()); |
| 4202 | __ Bind(slow_path->GetExitLabel()); |
| 4203 | } |
| 4204 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 4205 | void LocationsBuilderX86::VisitLoadException(HLoadException* load) { |
| 4206 | LocationSummary* locations = |
| 4207 | new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall); |
| 4208 | locations->SetOut(Location::RequiresRegister()); |
| 4209 | } |
| 4210 | |
| 4211 | void InstructionCodeGeneratorX86::VisitLoadException(HLoadException* load) { |
| 4212 | Address address = Address::Absolute(Thread::ExceptionOffset<kX86WordSize>().Int32Value()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4213 | __ fs()->movl(load->GetLocations()->Out().AsRegister<Register>(), address); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 4214 | __ fs()->movl(address, Immediate(0)); |
| 4215 | } |
| 4216 | |
| 4217 | void LocationsBuilderX86::VisitThrow(HThrow* instruction) { |
| 4218 | LocationSummary* locations = |
| 4219 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 4220 | InvokeRuntimeCallingConvention calling_convention; |
| 4221 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 4222 | } |
| 4223 | |
| 4224 | void InstructionCodeGeneratorX86::VisitThrow(HThrow* instruction) { |
| 4225 | __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pDeliverException))); |
| 4226 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
| 4227 | } |
| 4228 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4229 | void LocationsBuilderX86::VisitInstanceOf(HInstanceOf* instruction) { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4230 | LocationSummary::CallKind call_kind = instruction->IsClassFinal() |
| 4231 | ? LocationSummary::kNoCall |
| 4232 | : LocationSummary::kCallOnSlowPath; |
| 4233 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind); |
| 4234 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4235 | locations->SetInAt(1, Location::Any()); |
| 4236 | locations->SetOut(Location::RequiresRegister()); |
| 4237 | } |
| 4238 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4239 | void InstructionCodeGeneratorX86::VisitInstanceOf(HInstanceOf* instruction) { |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4240 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4241 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4242 | Location cls = locations->InAt(1); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4243 | Register out = locations->Out().AsRegister<Register>(); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4244 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 4245 | Label done, zero; |
| 4246 | SlowPathCodeX86* slow_path = nullptr; |
| 4247 | |
| 4248 | // Return 0 if `obj` is null. |
| 4249 | // TODO: avoid this check if we know obj is not null. |
| 4250 | __ testl(obj, obj); |
| 4251 | __ j(kEqual, &zero); |
| 4252 | __ movl(out, Address(obj, class_offset)); |
| 4253 | // Compare the class of `obj` with `cls`. |
| 4254 | if (cls.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4255 | __ cmpl(out, cls.AsRegister<Register>()); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4256 | } else { |
| 4257 | DCHECK(cls.IsStackSlot()) << cls; |
| 4258 | __ cmpl(out, Address(ESP, cls.GetStackIndex())); |
| 4259 | } |
| 4260 | |
| 4261 | if (instruction->IsClassFinal()) { |
| 4262 | // Classes must be equal for the instanceof to succeed. |
| 4263 | __ j(kNotEqual, &zero); |
| 4264 | __ movl(out, Immediate(1)); |
| 4265 | __ jmp(&done); |
| 4266 | } else { |
| 4267 | // If the classes are not equal, we go into a slow path. |
| 4268 | DCHECK(locations->OnlyCallsOnSlowPath()); |
| 4269 | slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86( |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4270 | instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc()); |
Nicolas Geoffray | 6f5c41f | 2014-11-06 08:59:20 +0000 | [diff] [blame] | 4271 | codegen_->AddSlowPath(slow_path); |
| 4272 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 4273 | __ movl(out, Immediate(1)); |
| 4274 | __ jmp(&done); |
| 4275 | } |
| 4276 | __ Bind(&zero); |
| 4277 | __ movl(out, Immediate(0)); |
| 4278 | if (slow_path != nullptr) { |
| 4279 | __ Bind(slow_path->GetExitLabel()); |
| 4280 | } |
| 4281 | __ Bind(&done); |
| 4282 | } |
| 4283 | |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4284 | void LocationsBuilderX86::VisitCheckCast(HCheckCast* instruction) { |
| 4285 | LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary( |
| 4286 | instruction, LocationSummary::kCallOnSlowPath); |
| 4287 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4288 | locations->SetInAt(1, Location::Any()); |
| 4289 | locations->AddTemp(Location::RequiresRegister()); |
| 4290 | } |
| 4291 | |
| 4292 | void InstructionCodeGeneratorX86::VisitCheckCast(HCheckCast* instruction) { |
| 4293 | LocationSummary* locations = instruction->GetLocations(); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4294 | Register obj = locations->InAt(0).AsRegister<Register>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4295 | Location cls = locations->InAt(1); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4296 | Register temp = locations->GetTemp(0).AsRegister<Register>(); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4297 | uint32_t class_offset = mirror::Object::ClassOffset().Int32Value(); |
| 4298 | SlowPathCodeX86* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathX86( |
| 4299 | instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc()); |
| 4300 | codegen_->AddSlowPath(slow_path); |
| 4301 | |
| 4302 | // TODO: avoid this check if we know obj is not null. |
| 4303 | __ testl(obj, obj); |
| 4304 | __ j(kEqual, slow_path->GetExitLabel()); |
| 4305 | __ movl(temp, Address(obj, class_offset)); |
| 4306 | |
| 4307 | // Compare the class of `obj` with `cls`. |
| 4308 | if (cls.IsRegister()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4309 | __ cmpl(temp, cls.AsRegister<Register>()); |
Nicolas Geoffray | 57a88d4 | 2014-11-10 15:09:21 +0000 | [diff] [blame] | 4310 | } else { |
| 4311 | DCHECK(cls.IsStackSlot()) << cls; |
| 4312 | __ cmpl(temp, Address(ESP, cls.GetStackIndex())); |
| 4313 | } |
| 4314 | |
| 4315 | __ j(kNotEqual, slow_path->GetEntryLabel()); |
| 4316 | __ Bind(slow_path->GetExitLabel()); |
| 4317 | } |
| 4318 | |
Nicolas Geoffray | b7baf5c | 2014-11-11 16:29:44 +0000 | [diff] [blame] | 4319 | void LocationsBuilderX86::VisitMonitorOperation(HMonitorOperation* instruction) { |
| 4320 | LocationSummary* locations = |
| 4321 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall); |
| 4322 | InvokeRuntimeCallingConvention calling_convention; |
| 4323 | locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0))); |
| 4324 | } |
| 4325 | |
| 4326 | void InstructionCodeGeneratorX86::VisitMonitorOperation(HMonitorOperation* instruction) { |
| 4327 | __ fs()->call(Address::Absolute(instruction->IsEnter() |
| 4328 | ? QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pLockObject) |
| 4329 | : QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pUnlockObject))); |
| 4330 | codegen_->RecordPcInfo(instruction, instruction->GetDexPc()); |
| 4331 | } |
| 4332 | |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4333 | void LocationsBuilderX86::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); } |
| 4334 | void LocationsBuilderX86::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); } |
| 4335 | void LocationsBuilderX86::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); } |
| 4336 | |
| 4337 | void LocationsBuilderX86::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 4338 | LocationSummary* locations = |
| 4339 | new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall); |
| 4340 | DCHECK(instruction->GetResultType() == Primitive::kPrimInt |
| 4341 | || instruction->GetResultType() == Primitive::kPrimLong); |
| 4342 | locations->SetInAt(0, Location::RequiresRegister()); |
| 4343 | locations->SetInAt(1, Location::Any()); |
| 4344 | locations->SetOut(Location::SameAsFirstInput()); |
| 4345 | } |
| 4346 | |
| 4347 | void InstructionCodeGeneratorX86::VisitAnd(HAnd* instruction) { |
| 4348 | HandleBitwiseOperation(instruction); |
| 4349 | } |
| 4350 | |
| 4351 | void InstructionCodeGeneratorX86::VisitOr(HOr* instruction) { |
| 4352 | HandleBitwiseOperation(instruction); |
| 4353 | } |
| 4354 | |
| 4355 | void InstructionCodeGeneratorX86::VisitXor(HXor* instruction) { |
| 4356 | HandleBitwiseOperation(instruction); |
| 4357 | } |
| 4358 | |
| 4359 | void InstructionCodeGeneratorX86::HandleBitwiseOperation(HBinaryOperation* instruction) { |
| 4360 | LocationSummary* locations = instruction->GetLocations(); |
| 4361 | Location first = locations->InAt(0); |
| 4362 | Location second = locations->InAt(1); |
| 4363 | DCHECK(first.Equals(locations->Out())); |
| 4364 | |
| 4365 | if (instruction->GetResultType() == Primitive::kPrimInt) { |
| 4366 | if (second.IsRegister()) { |
| 4367 | if (instruction->IsAnd()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4368 | __ andl(first.AsRegister<Register>(), second.AsRegister<Register>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4369 | } else if (instruction->IsOr()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4370 | __ orl(first.AsRegister<Register>(), second.AsRegister<Register>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4371 | } else { |
| 4372 | DCHECK(instruction->IsXor()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4373 | __ xorl(first.AsRegister<Register>(), second.AsRegister<Register>()); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4374 | } |
| 4375 | } else if (second.IsConstant()) { |
| 4376 | if (instruction->IsAnd()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 4377 | __ andl(first.AsRegister<Register>(), |
| 4378 | Immediate(second.GetConstant()->AsIntConstant()->GetValue())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4379 | } else if (instruction->IsOr()) { |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 4380 | __ orl(first.AsRegister<Register>(), |
| 4381 | Immediate(second.GetConstant()->AsIntConstant()->GetValue())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4382 | } else { |
| 4383 | DCHECK(instruction->IsXor()); |
Roland Levillain | 199f336 | 2014-11-27 17:15:16 +0000 | [diff] [blame] | 4384 | __ xorl(first.AsRegister<Register>(), |
| 4385 | Immediate(second.GetConstant()->AsIntConstant()->GetValue())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4386 | } |
| 4387 | } else { |
| 4388 | if (instruction->IsAnd()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4389 | __ andl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4390 | } else if (instruction->IsOr()) { |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4391 | __ orl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4392 | } else { |
| 4393 | DCHECK(instruction->IsXor()); |
Roland Levillain | 271ab9c | 2014-11-27 15:23:57 +0000 | [diff] [blame] | 4394 | __ xorl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4395 | } |
| 4396 | } |
| 4397 | } else { |
| 4398 | DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong); |
| 4399 | if (second.IsRegisterPair()) { |
| 4400 | if (instruction->IsAnd()) { |
| 4401 | __ andl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); |
| 4402 | __ andl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); |
| 4403 | } else if (instruction->IsOr()) { |
| 4404 | __ orl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); |
| 4405 | __ orl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); |
| 4406 | } else { |
| 4407 | DCHECK(instruction->IsXor()); |
| 4408 | __ xorl(first.AsRegisterPairLow<Register>(), second.AsRegisterPairLow<Register>()); |
| 4409 | __ xorl(first.AsRegisterPairHigh<Register>(), second.AsRegisterPairHigh<Register>()); |
| 4410 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4411 | } else if (second.IsDoubleStackSlot()) { |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4412 | if (instruction->IsAnd()) { |
| 4413 | __ andl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); |
| 4414 | __ andl(first.AsRegisterPairHigh<Register>(), |
| 4415 | Address(ESP, second.GetHighStackIndex(kX86WordSize))); |
| 4416 | } else if (instruction->IsOr()) { |
| 4417 | __ orl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); |
| 4418 | __ orl(first.AsRegisterPairHigh<Register>(), |
| 4419 | Address(ESP, second.GetHighStackIndex(kX86WordSize))); |
| 4420 | } else { |
| 4421 | DCHECK(instruction->IsXor()); |
| 4422 | __ xorl(first.AsRegisterPairLow<Register>(), Address(ESP, second.GetStackIndex())); |
| 4423 | __ xorl(first.AsRegisterPairHigh<Register>(), |
| 4424 | Address(ESP, second.GetHighStackIndex(kX86WordSize))); |
| 4425 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4426 | } else { |
| 4427 | DCHECK(second.IsConstant()) << second; |
| 4428 | int64_t value = second.GetConstant()->AsLongConstant()->GetValue(); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 4429 | int32_t low_value = Low32Bits(value); |
| 4430 | int32_t high_value = High32Bits(value); |
| 4431 | Immediate low(low_value); |
| 4432 | Immediate high(high_value); |
| 4433 | Register first_low = first.AsRegisterPairLow<Register>(); |
| 4434 | Register first_high = first.AsRegisterPairHigh<Register>(); |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4435 | if (instruction->IsAnd()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 4436 | if (low_value == 0) { |
| 4437 | __ xorl(first_low, first_low); |
| 4438 | } else if (low_value != -1) { |
| 4439 | __ andl(first_low, low); |
| 4440 | } |
| 4441 | if (high_value == 0) { |
| 4442 | __ xorl(first_high, first_high); |
| 4443 | } else if (high_value != -1) { |
| 4444 | __ andl(first_high, high); |
| 4445 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4446 | } else if (instruction->IsOr()) { |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 4447 | if (low_value != 0) { |
| 4448 | __ orl(first_low, low); |
| 4449 | } |
| 4450 | if (high_value != 0) { |
| 4451 | __ orl(first_high, high); |
| 4452 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4453 | } else { |
| 4454 | DCHECK(instruction->IsXor()); |
Mark Mendell | 3f6c7f6 | 2015-03-13 13:47:53 -0400 | [diff] [blame] | 4455 | if (low_value != 0) { |
| 4456 | __ xorl(first_low, low); |
| 4457 | } |
| 4458 | if (high_value != 0) { |
| 4459 | __ xorl(first_high, high); |
| 4460 | } |
Nicolas Geoffray | 234d69d | 2015-03-09 10:28:50 +0000 | [diff] [blame] | 4461 | } |
Nicolas Geoffray | 9574c4b | 2014-11-12 13:19:37 +0000 | [diff] [blame] | 4462 | } |
| 4463 | } |
| 4464 | } |
| 4465 | |
Calin Juravle | b1498f6 | 2015-02-16 13:13:29 +0000 | [diff] [blame] | 4466 | void LocationsBuilderX86::VisitBoundType(HBoundType* instruction) { |
| 4467 | // Nothing to do, this should be removed during prepare for register allocator. |
| 4468 | UNUSED(instruction); |
| 4469 | LOG(FATAL) << "Unreachable"; |
| 4470 | } |
| 4471 | |
| 4472 | void InstructionCodeGeneratorX86::VisitBoundType(HBoundType* instruction) { |
| 4473 | // Nothing to do, this should be removed during prepare for register allocator. |
| 4474 | UNUSED(instruction); |
| 4475 | LOG(FATAL) << "Unreachable"; |
| 4476 | } |
| 4477 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 4478 | } // namespace x86 |
| 4479 | } // namespace art |